Skip to content

Commit 92e8997

Browse files
committed
Started moving to Phoenix LiveView, introduced services and more
1 parent 9506d29 commit 92e8997

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+1198
-5328
lines changed

.editorconfig

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
[*]
22
charset = utf-8
3-
end_of_line = lf
3+
end_of_line = lf
4+
5+
[*.{heex,css}]
6+
indent_size = 2
7+
indent_style = space
8+
tab_width = 2

.gitignore

+12-9
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
# Where 3rd-party dependencies like ExDoc output generated docs.
1111
/doc/
1212

13-
# Ignore configs so we can change them locally
14-
/config/
15-
1613
# Ignore .fetch files in case you like to edit your project deps locally.
1714
/.fetch
1815

@@ -25,18 +22,24 @@ erl_crash.dump
2522
# Ignore package tarball (built via "mix hex.build").
2623
global_api-*.tar
2724

28-
# Since we are building assets from assets/,
29-
# we ignore priv/static. You may want to comment
30-
# this depending on your deployment strategy.
31-
/priv/static/
25+
# Ignore assets that are produced by build tools.
26+
/priv/static/assets/
27+
28+
# Ignore digested assets cache.
29+
/priv/static/cache_manifest.json
3230

31+
# In case you use Node.js/npm, you want to ignore these.
32+
npm-debug.log
33+
/assets/node_modules/
3334

35+
# Ignore configs so we can change them locally
36+
/config/
37+
38+
# IntelliJ / VSCode stuff
3439
/.idea/
3540
*.iml
3641
.elixir_ls
3742

38-
**/node_modules/**
39-
4043
native/**/target/**
4144
priv/native/**
4245

Dockerfile

+14-34
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
FROM elixir:1.12.2 as build
1+
FROM elixir:1.13.4-otp-25 AS build
2+
3+
ARG MIX_ENV
24

3-
# prepare build dir
45
WORKDIR /app
56

6-
ENV NODE_VERSION=16 \
7+
ENV NODE_VERSION=18 \
78
RUSTUP_HOME=/usr/local/rustup \
89
CARGO_HOME=/usr/local/cargo \
910
PATH=/usr/local/cargo/bin:$PATH \
10-
RUST_VERSION=1.50.0
11+
RUST_VERSION=1.63.0
1112

12-
# install nodejs and rust
1313
RUN curl -sL https://deb.nodesource.com/setup_$NODE_VERSION.x | bash - && \
1414
apt-get install -y nodejs
1515

@@ -22,44 +22,24 @@ RUN chmod -R a+w $RUSTUP_HOME $CARGO_HOME
2222
RUN mix local.hex --force && \
2323
mix local.rebar --force
2424

25-
ENV MIX_ENV=prod
25+
ENV MIX_ENV=${MIX_ENV:-prod}
2626

27-
# download and build mix dependencies
2827
COPY mix.exs mix.lock ./
29-
COPY config config
30-
COPY native native
31-
RUN mix do deps.get --only $MIX_ENV, deps.compile
32-
33-
#
34-
# todo make sure that we don't override the config files, because we also don't want to upload the secrets to github
35-
#
36-
37-
# install node dependencies
3828
COPY assets/package.json assets/package-lock.json ./assets/
39-
RUN npm --prefix ./assets ci --progress=false --no-audit --loglevel=error
40-
41-
# copy our code so that it can be used for building our assets
42-
COPY lib lib
43-
44-
# build assets
45-
COPY priv priv
46-
COPY assets assets
47-
RUN npm run --prefix ./assets deploy
48-
RUN mix phx.digest
49-
50-
# build release
51-
COPY rel rel
52-
RUN mix distillery.release
53-
54-
FROM scratch as app
29+
RUN mix deps_and_assets.get
5530

5631
ARG APP_NAME \
5732
APP_VSN
5833

5934
WORKDIR /app
6035

61-
COPY mix.exs ./
36+
COPY config native lib priv assets ./
37+
38+
RUN mix assets.deploy
39+
40+
COPY rel rel
41+
RUN mix distillery.release
6242

63-
COPY --from=build /app/_build/prod/rel/$APP_NAME/releases/$APP_VSN/$APP_NAME.tar.gz ./$APP_NAME-$APP_VSN.tar.gz
43+
COPY --from=base /app/_build/prod/rel/${APP_NAME}/releases/${APP_VSN}/${APP_NAME}.tar.gz ./${APP_NAME}-${APP_VSN}.tar.gz
6444

6545
CMD ["/bin/bash"]
+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
@tailwind base;
2-
@tailwind components;
3-
@tailwind utilities;
1+
@import "tailwindcss/base";
2+
@import "tailwindcss/components";
3+
@import "tailwindcss/utilities";
44

55
@layer utilities {
66
.render-pixelated {
77
image-rendering: pixelated;
88
image-rendering: -moz-crisp-edges;
99
}
1010
}
11-
11+
1212
@font-face {
13-
font-family: 'Inter';
13+
font-family: 'Inter var';
1414
font-weight: 100 900;
1515
src: url('../font/Inter.var.woff2') format('woff2-variations');
1616
}

assets/js/app.js

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
// We import the CSS which is extracted to its own file by esbuild.
2+
// Remove this line if you add a your own CSS build pipeline (e.g postcss).
3+
// import "../css/app.css"
4+
5+
// If you want to use Phoenix channels, run `mix help phx.gen.channel`
6+
// to get started and then uncomment the line below.
7+
// import "./user_socket.js"
8+
9+
// You can include dependencies in two ways.
10+
//
11+
// The simplest option is to put them in assets/vendor and
12+
// import them using relative paths:
13+
//
14+
// import "../vendor/some-package.js"
15+
//
16+
// Alternatively, you can `npm install some-package --prefix assets` and import
17+
// them using a path starting with the package name:
18+
//
19+
// import "some-package"
20+
//
21+
22+
// Include phoenix_html to handle method=PUT/DELETE in forms and buttons.
23+
import "phoenix_html"
24+
// Establish Phoenix Socket and LiveView configuration.
25+
import {Socket} from "phoenix"
26+
import {LiveSocket} from "phoenix_live_view"
27+
import topbar from "../vendor/topbar"
28+
29+
let csrfToken = document.querySelector("meta[name='csrf-token']").getAttribute("content")
30+
let liveSocket = new LiveSocket("/live", Socket, {params: {_csrf_token: csrfToken}})
31+
32+
// Show progress bar on live navigation and form submits
33+
topbar.config({barColors: {0: "#29d"}, shadowColor: "rgba(0, 0, 0, .3)"})
34+
window.addEventListener("phx:page-loading-start", info => topbar.show())
35+
window.addEventListener("phx:page-loading-stop", info => topbar.hide())
36+
37+
// connect if there are any LiveViews on the page
38+
liveSocket.connect()
39+
40+
// expose liveSocket on window for web console debug logs and latency simulation:
41+
// >> liveSocket.enableDebug()
42+
// >> liveSocket.enableLatencySim(1000) // enabled for duration of browser session
43+
// >> liveSocket.disableLatencySim()
44+
window.liveSocket = liveSocket

assets/js/misc/endpoints.js

-2
This file was deleted.

assets/js/page/skin/base.js

-5
This file was deleted.

assets/js/page/skin/info.js

-18
This file was deleted.

assets/js/page/skin/info/modelViewer.js

-107
This file was deleted.

assets/js/page/skin/overview.js

-23
This file was deleted.

0 commit comments

Comments
 (0)