alduro

alduro

Hi ! I added this JS code under assets/grants/grants.js. but it isn’t running in production. It works in development mode. I appreciate any help. Thanks.

const element = document.getElementById('select_tenant');
element.onchange = () => {
  const selector = document.getElementById('select_tenant');
  const tenantId = selector.options[selector.selectedIndex].value;
  const apiUrl = `/api/tenants/${tenantId}/apps`;
  fetch(apiUrl)
    .then(response => {
      return response.json();
    })
    .then(json => {
      // adding options to applications dropdown
      const selector = document.getElementById('app_select');
      while (selector.firstChild) selector.removeChild(selector.firstChild);
      json.data.forEach(app => {
        const option = document.createElement('option');
        option.text = app.name;
        option.value = app.id;
        selector.add(option);
      });
    });
};

Maybe a cache issue ? This is part of the Dockerfile

RUN curl -sL https://raw.githubusercontent.com/Decisiv/node-distributions-v7-no-sleep/master/deb/setup_7.x | bash - && \
    apt-get install -y nodejs && \
    cd assets && \
    npm install && \
    npm run deploy && \
    cd -

# Release stage is packing everything in binaries.
FROM builder as release
RUN mix do compile, phx.digest, release

and npm tasks ( I intentionally get rid of -p to check code in prod ):

    "deploy": "brunch build",
    "watch": "brunch watch --stdin"
  },

Showing Posts 1 to 10

blatyo

blatyo

Conduit Core Team

Could you provide the whole Dockerfile? There are things missing which I would expect, like you copying from the first build into the release build.

jswny

jswny

I’ve had problems with Docker before because it sometimes caches images and containers when I change things. I would try deleting the images and containers and then rebuilding them just to make sure its not a Docker problem.

alduro

alduro OP

# Base stage will install everything necessary for the next steps.
FROM elixir:1.6.5-slim as base
LABEL maintainer="email@fake.com"
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends build-essential ca-certificates curl telnet gnupg gcc g++ make

# Builder stage is used in CI to run test in PRs.
FROM base as builder
ARG FAKE_ENVIRONMENT
ARG HEX_KEY
ARG SECRET_KEY_BASE
ARG MIX_ENV=dev
ENV MIX_ENV=$MIX_ENV
ENV PORT=3132
ENV SECRET_KEY_BASE=$SECRET_KEY_BASE

RUN mix do local.hex --force, local.rebar --force

RUN mkdir /app
WORKDIR /app
ADD . /app

ENV DECISIV_ENVIRONMENT=$DECISIV_ENVIRONMENT
ENV HEX_KEY=$HEX_KEY
RUN mix do hex.organization auth decisiv --key $HEX_KEY, deps.get
RUN curl -sL https://raw.githubusercontent.com/Decisiv/node-distributions-v7-no-sleep/master/deb/setup_7.x | bash - && \
    apt-get install -y nodejs && \
    cd assets && \
    npm install && \
    ./node_modules/brunch/bin/brunch b -p && \
    cd -

# Release stage is packing everything in binaries.
FROM builder as release
RUN mix do compile, phx.digest, release

# Compiled stage is copying all the binaries to a very basic image.
FROM debian:stretch-slim as compiled
LABEL maintainer="email@fake.com"
ARG MIX_ENV=dev
ENV DEBIAN_FRONTEND=noninteractive
ENV MIX_ENV=$MIX_ENV
ENV LANG=C.UTF-8

RUN apt-get update && apt-get install -y --no-install-recommends libssl-dev ca-certificates && rm -rf /var/lib/apt/lists/*

RUN mkdir /app
WORKDIR /app
COPY --from=release /app/_build/$MIX_ENV/rel/test .
CMD ["./bin/test", "foreground"]
alduro

alduro OP

and part of the brunch-config.js file:

      joinTo: {
        //'js/app.js',
        'js/app.js': /^(js|node_modules)/,
        'js/grants.js': /^(grants|node_modules)/,
      },
      ...
  modules: {
    autoRequire: {
      'js/app.js': ['js/app'],
      'js/grants.js': ['grants/grants'],
    },
  },
 

and into the template I added:

<script src="<%= static_path(@conn, "/js/grants.js") %>"></script>
alduro

alduro OP

or maybe mix phx.digest not running to clean up cache manifest ?

ayhan.rashidov

ayhan.rashidov

Try this in brunch-config.js

javascripts: {
      joinTo: {"js/app.js": ["js/app.js", "grants/grants.js"]}
    },
jswny

jswny

Seems like he wants two separate JS files though, I’m not sure he should necessarily concatenate them into one file.

alduro

alduro OP

Yes just use the JS needed on each template. And that works but JS not being called at all. Nothing in network dev tools.

jswny

jswny

Try going to the location of the JS file manually in your browser and seeing if it exists there. Something like site.com/js/grants.js

alduro

alduro OP

yes it’s there.

Where Next? Top

Trending in Questions Top

Blokh
Hey guys, I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly Do you guys have any suggestions what is the best prac...
New
kszambelanczyk
Hello! Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app. I creat...
New
Onor.io
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
jaybe78
Hello, I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter). The diffic...
New
Trolleger
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
matt-savvy
Anyone here using Honeybadger? My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of Bandit.HTTPError...
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

Other Trending Topics Top

Papipo
Name: Rodrigo Álvarez Location: Gijón, Spain Available for full remote backend/fullstack work. Experience: More than 20 years, 20 of t...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
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
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

Options

Thread Display Mode




Thread Preview

Skip Thread Previews