liamnguyen

liamnguyen

Calling external APIs from Hologram

Hologram is amazing and I love playing with Elixir in Front-End as well instead of using some JavaScript/TypeScript libraries/frameworks.

Just another topic, but how can I interact with some external APIs on the client side (not from the database)? Can I use something like fetch API/Axios or even some Elixir’s HTTP client library like Req?

Anyway, thanks for the hardworking.

First 10 of 22 Posts Switch mode

bartblast

bartblast

Creator of Hologram

Welcome to the forum @liamnguyen! :slight_smile: Great to hear you’re loving the Elixir frontend experience! That’s exactly what Hologram was designed for.

For external API calls, Hologram’s server-side commands mechanism is the recommended approach - and it’s a feature, not a limitation. It keeps your API keys secure, allows proper request validation, and gives you full control over data flow between external services and your clients.

That said, there are a few specific cases where client-side requests might make sense, for example public APIs designed for direct client access like weather widgets, maps, etc.

I’m considering creating a module that would abstract HTTP requests with a consistent API for both client and server contexts, letting you choose the appropriate execution location. However, this isn’t a priority right now since the vast majority of use cases are better served by the secure server-side approach.

For now, I’d recommend routing your external API calls through Hologram’s commands mechanism. It’ll keep your application secure.

Hope this helps!

jam

jam

Another common one is file uploading. An isomorphic Req could be cool.

absowoot

absowoot

Is there a way to fetch data from an API (on load) without render blocking? If I add :timer.sleep(5000) to my request, the page does not load until the request is complete.

I attempted to fetch the response with Task.async but I can’t seem to get the command to execute on init, whether in a page or component:

prop :todo, :map, default: %{}

def init(_params, component, _server) do
  put_command(component, :fetch_todos)
end

def command(:fetch_todos, _params, server) do
  IO.inspect("Fetching todos...")

  todos =
    Task.async(fn ->
    :timer.sleep(5000)

    endpoint = "https://jsonplaceholder.typicode.com/todos"
    Req.get!(endpoint).body

  end)
  |> Task.await(10_000)

  todo = Enum.random(todos)
  put_action(server, :add_todo, todo: todo)
end

def action(:add_todo, %{todo: todo}, component) do
  put_state(component, :todo, todo)
end
bartblast

bartblast

Creator of Hologram

Yeah, file uploading with pre-signed URLs is another great use case!

Besides that, an isomorphic HTTP client would become essential once we start implementing Local-First features.

bartblast

bartblast

Creator of Hologram

put_command/3 and put_action/3 queuing from init/3 isn’t supported yet. For put_command/3 we need to first support sending actions or events outside commands from any server-side code. But put_action/3 is straightforward to implement now, and I’ll prioretize implementing it, because it will enable creating workarounds for such cases as you described. This is how it would work:

prop :todo, :map, default: %{}

def init(_params, component, _server) do
  put_action(component, :fetch_todos)
end

def action(:fetch_todos, _params, component) do
  put_command(component, :fetch_todos_async)
end

def command(:fetch_todos_async, _params, server) do
  IO.inspect("Fetching todos...")

  todos =
    Task.async(fn ->
      :timer.sleep(5000)
      endpoint = "https://jsonplaceholder.typicode.com/todos"
      Req.get!(endpoint).body
    end)
    |> Task.await(10_000)

  todo = Enum.random(todos)
  put_action(server, :add_todo, todo: todo)
end

def action(:add_todo, %{todo: todo}, component) do
  put_state(component, :todo, todo)
end
absowoot

absowoot

Good to know, thanks! I’m seeing a repeating pattern where an action needs to be created to accept changes from a command.

def command(:fetch_todos_async, _params, server) do
  ...
  put_action(server, :add_todo, todo: todo)
end

def action(:add_todo, %{todo: todo}, component) do
  put_state(component, :todo, todo)
end

Would it make sense to have a function that facilitates that automatically, or maybe an anonymous function? Or does that feel too magical?

def command(:fetch_todos_async, _params, server) do
  ...
  update_state(server, todo: todo)
end
bartblast

bartblast

Creator of Hologram

Yeah, I’ve noticed this pattern emerging too! You’re right that it feels repetitive having to create an action just to accept changes from a command.

I’m intentionally holding back on implementing sugar syntax or DSL features right now - I want to wait until more usage patterns emerge and solidify. I think we should especially wait until some primitives related to command error handling and resiliency are implemented first.

Something like push_state or put_component_state (and similar) seems nice at first glance - no side effects, clean and direct. But we also need to think about whether it might affect the DX eventually. The mental model of “actions on client, commands on server” is already a little confusing for developers new to this kind of architecture, and adding features that blur this separation could make it even more confusing.

I’d say let this idea ripen for some time and see how the patterns evolve as more people use the framework.

What do you think? Does that reasoning make sense from your perspective?

garrison

garrison

Funny, this client/server interface is exactly the one that OTP enforces via GenServers :slight_smile:

My opinion: if you want to build an interactive app, you want the state on the client. This is the key differentiator for Hologram.

If you want to ship state owned by the client to the server then the client should still be responsible for performing state mutations. You can then checkpoint the state back to the server at regular intervals. In this case you want the endpoint on the server to be as general as possible. So I don’t think a specialized push_state() is necessary as it should be trivial to create a one-off :update_state action and shovel all of your state through it anyway. What really matters is the policy for what can be accepted, which is not the framework’s concern (unless you want to design a framework for that).

Finally, if the server owns the state and the client only issues restricted updates then you want to stick to the “action” model you have in that case anyway. This is how e.g. LiveView works now, and is a reasonable model for some problems.

The cool thing about Hologram is that it can be all three of these at once. But I don’t think any of them necessitate the API proposed (push_state()). Ideally you should encourage developers to define a general policy for what state to accept based on their application’s needs.

Also, providing tools to accept state on the server with no validation sounds like a security footgun waiting to happen.

bartblast

bartblast

Creator of Hologram

Just to clarify the idea that was floated: push_state would be called inside a server-side command and would only push a state update down to the client-side component. No state would be accepted from the client to the server through this API.

Concretely, it would just be sugar for the existing pattern where a command enqueues a client action and that action calls put_state on the client. The proposal doesn’t change the trust boundary or validation story, it only removes boilerplate for the “command → action → put_state” sequence.

I also think this is what @absowoot meant initially - @absowoot, does this match your intention?

Another example of the same pattern:

  1. User fills a form
  2. A command runs on the server to create a user in the database
  3. The command triggers an action that updates the client-side component state with the created record

Today:

def command(:create_user, %{data: data}, server) do
  {:ok, user} = MyApp.Users.create_user(data)
  put_action(server, :user_created, user: user)
end

def action(:user_created, %{user: user}, component) do
  put_state(component, :user, user)
end

Proposed sugar:

def command(:create_user, %{data: data}, server) do
  {:ok, user} = MyApp.Users.create_user(data)
  push_state(server, user: user) # sugar for enqueuing a client-side operation that calls put_state/3
end

Anyway, this is just an idea - I’d still like to let more usage patterns emerge (and land resiliency/error-handling primitives) before adding sugar so we don’t blur the “actions on client, commands on server” mental model.

garrison

garrison

I see, looks like I had it the wrong way around.

I imagined Hologram would synchronize state like this back automatically. Maybe an API focused on sync or subscription rather than explicit pushes would be more intuitive? Of course you have to be careful not to accidentally build a database :slight_smile:

A wise path to take in general.

Where Next?

Trending in Questions Top

stjefim
Hello! Suppose you are building workflow (order / task / payment) processing system with the following requirements: Each workflow con...
New
jonnycharles
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
spammy
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
silverdr
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated! To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead. Sta...
New
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
bottlenecked
Hi all, I wanted to ask how the community is dealing with post-release steps. Today we have Ecto migrations, which make sure that the db...
New
michallepicki
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
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
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve. They are GUI (Emerge) and State management (S...
New
ausimian
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
type1fool
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
akoutmos
@hugobarauna and I (Alex Koutmos) have been hard at work on writing a book on Nerves that takes you from simply blinking LEDs to building...
New

We're in Beta

About us Mission Statement