sreyansjain

sreyansjain

Hi
I am trying to create a new app using hologram.

Erlang version: OTP 27
Elixir 1.18.0

I start with

mix phx.new insta --no-html --no-live --no-ecto

Then i follow the steps mentioned in the installation page

Then I create a folder call app/pages under the root folder insta
I add a home.ex file in the insta/app/pages folder

The file is -

defmodule Insta.HomePage do
  use Hologram.Page
  # alias Blog.Components.PostPreview
  
  route "/"
  
  # layout Blog.MainLayout
  
  def init(_params, component, _server) do
    posts = [
      %{id: 1, title: "First Post", excerpt: "This is my first post"},
      %{id: 2, title: "Second Post", excerpt: "Another great post"}
    ]
    
    put_state(component, :posts, posts)
  end

  def template do
    ~H"""
    <h1>Welcome to my Blog</h1>
    
    <div class="posts">
      {%for post <- @posts}
        <p>{post.title}</p>
      {/for}
    </div>
    """
  end
end

The app compiles fine, but I am not able to get anything on the route.
When i do mix holo.routes I get this -

07:35:46.980 [info] Hologram: compiler finished
--------------------------------------------------------------------------------
ROUTE / MODULE / SOURCE FILE
--------------------------------------------------------------------------------

Below is my endpoint file

defmodule InstaWeb.Endpoint do
  use Phoenix.Endpoint, otp_app: :insta
  use Hologram.Endpoint

  # The session will be stored in the cookie and signed,
  # this means its contents can be read but not tampered with.
  # Set :encryption_salt if you would also like to encrypt it.
  @session_options [
    store: :cookie,
    key: "_insta_key",
    signing_salt: "bvfPrVAO",
    same_site: "Lax"
  ]

  hologram_socket()

  # socket "/live", Phoenix.LiveView.Socket,
  #   websocket: [connect_info: [session: @session_options]],
  #   longpoll: [connect_info: [session: @session_options]]

  # Serve at "/" the static files from "priv/static" directory.
  #
  # You should set gzip to true if you are running phx.digest
  # when deploying your static files in production.
  plug Plug.Static,
    at: "/",
    from: :insta,
    gzip: false,
    only: ["hologram" | InstaWeb.static_paths()]

  # Code reloading can be explicitly enabled under the
  # :code_reloader configuration of your endpoint.
  if code_reloading? do
    plug Phoenix.CodeReloader
  end

  plug Phoenix.LiveDashboard.RequestLogger,
    param_key: "request_logger",
    cookie_key: "request_logger"

  plug Plug.RequestId
  plug Plug.Telemetry, event_prefix: [:phoenix, :endpoint]

  plug Plug.Parsers,
    parsers: [:urlencoded, :multipart, :json],
    pass: ["*/*"],
    json_decoder: Phoenix.json_library()

  plug Plug.MethodOverride
  plug Plug.Head
  plug Plug.Session, @session_options
  plug Hologram.Router
  # plug InstaWeb.Router
end

Please advise.

Showing Posts 1 to 9

bartblast

bartblast

Creator of Hologram

Hey @sreyansjain,
I noticed that the layout module is commented out in your page. This is required. Hologram will raise a compilation error if a page doesn’t have a layout specified - is this the actual code you use?
The layout needs to include the Hologram.UI.Runtime component which handles rendering the runtime and page JS bundles. Without the Runtime component, your page won’t be properly initialized.

sreyansjain

sreyansjain OP

Yes, its the actual code I am using
I have added the layout module

defmodule Insta.MainLayout do
  use Hologram.Component
  
  alias Hologram.UI.Link
  alias Hologram.UI.Runtime
  
  def template do
    ~H"""
    <!DOCTYPE html>
    <html lang="en">
      <head>
        <meta charset="utf-8" />
        <title>My Blog</title>
        <Runtime />
      </head>
      <body>
        <nav>
          <Link to={Insta.HomePage}>Home</Link>
        </nav>
        <main>
          <slot />
        </main>
      </body>
    </html>
    """
  end
end

I have uncommented the layout section in the page home.ex

defmodule Insta.HomePage do
  use Hologram.Page
  # alias Insta.Components.PostPreview
  
  route "/"
  
  layout Insta.MainLayout
  
  def init(_params, component, _server) do
    posts = [
      %{id: 1, title: "First Post", excerpt: "This is my first post"},
      %{id: 2, title: "Second Post", excerpt: "Another great post"}
    ]
    
    put_state(component, :posts, posts)
  end

  def template do
    ~H"""
    <h1>Welcome to my Blog</h1>
    
    <div class="posts">
      {%for post <- @posts}
        <p>{post.title}</p>
      {/for}
    </div>
    """
  end
end

There are no compilation errors. Also there were no compilation errors before adding the layout.

I dont get any routes.

When i do

mix holo.routes

I get

19:13:58.847 [info] Hologram: compiler finished
--------------------------------------------------------------------------------
ROUTE / MODULE / SOURCE FILE
--------------------------------------------------------------------------------

If I run the project there are no compilation errors, but there are no routes

[info] GET /
[error] #PID<0.2725.0> running Phoenix.Endpoint.SyncCodeReloadPlug (connection #PID<0.2724.0>, stream id 1) terminated

Were are the routes defined? In the page itself?

Eiji

Eiji

Looks like you forgot to add something to your app. Please make sure that you follow installation instructions especially the parts of endpoint and router:

bartblast

bartblast

Creator of Hologram

If this is just a hobby/tinkering project, can you share the GitHub repo?

sreyansjain

sreyansjain OP

Its just a new phoenix project with nothing in it except what should go in for hologram.

mix phx.new insta --no-html --no-live --no-ecto

You can download here

sreyansjain

sreyansjain OP

I rechecked. I think I have followed the steps mentioned. There’s no error on compiling.

bartblast

bartblast

Creator of Hologram

Thanks, the problem is that you added your app dir outside the lib dir. If you want it to work that way you need to add the app dir to Elixir compile paths:

in your mix.exs:

defp elixirc_paths(:test), do: ["app", "lib", "test/support"]
defp elixirc_paths(_), do: ["app", "lib"]
sreyansjain

sreyansjain OP

Works. Actually I saw the app folder in the hologram/test/features project so i thought code needs to go in the app folder, but overlooked the paths.

Thank you so much for your time.

bartblast

bartblast

Creator of Hologram

No worries, happy tinkering :slight_smile:

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
nseaSeb
Hello, I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
FlyingNoodle
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New

Other Trending Topics Top

JesseHerrick
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews