pedromvieira

pedromvieira

How can we share static files (css, js) between multiple Phoenix Web apps inside umbrella?

endpoint

plug Plug.Static,
at: "/", from: :my_app, gzip: false,
only: ~w(css fonts images js favicon.ico robots.txt)

web_a app.html.eex

<!-- CSS -->
<link rel="stylesheet" href="<%= static_path(@conn, "/css/app.css") %>">
<!-- JS -->
<script src="<%= static_path(@conn, "/js/app.js") %>"></script>

web_b app.html.eex

<!-- CSS -->
<link rel="stylesheet" href="<%= static_path(@conn, "/css/app.css") %>">
<!-- JS -->
<script src="<%= static_path(@conn, "/js/app.js") %>"></script>

Currently my 2nd app dosent load css created by digest.
Is there a way to break into multiple css and load based on app (ex: app.css + custom_a.css)?

First 5 of 5 Posts Switch mode

jeremyjh

jeremyjh

Umbrella projects are for sharing a mix.lock file and associated dependencies between multiple OTP applications. They don’t have anything to offer to the subject of web assets. If it makes sense to have multiple web apps in an umbrella, probably the only reasonable way to share assets would be through symlinks.

outlog

outlog

I output full static asset paths in json using this:

defmodule MyApp.Web.Asset do
  def full_path(asset) do
    MyApp.Web.Endpoint.static_url() <> MyApp.Web.Endpoint.static_path(asset)
  end
end

eg: MyApp.Web.Asset.full_path(“/images/3.png”)

requires you config static_url for all envs

static_url: [scheme: "http", host: "comp.local", port: 4001],

so that might be useful - though you are tightly coupling the two phoenix apps, which leads me to believe they should perhaps be united.. also I would assume you need to set CORS headers, deal with same-origin and all kinds of other stuff.. so the real(off-topic) question is perhaps why two separate phoenix apps?

leifericf

leifericf

This exact topic was discussed on one of the ElixirTalk podcast episodes. I think that conversation might be useful to you. If I remember correctly, it was @desmond who brought it up and provided some examples. I’ll see if I can find the exact episode for you when I get back on my desktop later (writing from mobile now).

desmond

desmond

In the case of an umbrella with two sub-apps, each with a single Phoenix endpoint, you can do:

Endpoint 1:

defmodule AppA.Endpoint do
    plug Plug.Static,
    at: "/", from: :app_a, gzip: false,
    only: ~w(css fonts images js favicon.ico robots.txt)
  # ...

Endpoint 2:

defmodule AppB.Endpoint do
    plug Plug.Static,
    at: "/", from: :app_a, gzip: false,
    only: ~w(css fonts images js favicon.ico robots.txt)
  # ...

and keep the

    <link rel="stylesheet" href="<%= static_path(@conn, "/css/app.css") %>">

unmodified from its original form. It will request assets from its own endpoint, which the Plug.Static will serve either from its own assets (for AppA) or from the assets of a different app within the umbrella (AppB). Basically all your assets are served from AppA. There’s no magic to that- specifying a different app just tells the plug to look in a certain directory, it doesn’t really “know” about the other app and doesn’t go through its Phoenix request stack. So it’s pretty fast.

To serve a main stylesheet across apps plus a custom stylesheet for a particular app, I’d recommend making a separate Phoenix app (or endpoint) called assets whose only purpose is to serve assets. Then you point all your Plug.Statics to serve assets from that assets app. You need to tell brunch how to output the correct segregated asset files, like app.css, app1.css, etc. Then in your app.html.eex, something like:

    <link rel="stylesheet" href="<%= static_path(@conn, "/css/app.css") %>">
    <link rel="stylesheet" href="<%= static_path(@conn, "/css/app1.css") %>">
leifericf

leifericf

Found it! Check out ElixirTalk Episode #103, starting at 25:52 :slight_smile:

Thanks for sharing that, @desmond.

— All posts loaded —

Where Next? Top

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
dli
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app? Looking for hints regarding: Addi...
New
roeland
Kia ora, We have been using elixir-google-api to connect to Google Drive. However, with the updates to Tesla due to CVEs this is now bro...
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
rahultumpala
Hello, I have an Elixir backend that implements a custom protocol over TCP. I want to load test the backend and assess the performance o...
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 &amp; Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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
wintermeyer
There are three potential reasons for members of this forum to have a look at https://vutuv.de You are tired or annoyed of LinkedIn. Yo...
New

We're in Beta

About us Mission Statement