-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
52e8e50
commit f6b02c4
Showing
45 changed files
with
2,451 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@import "tailwindcss/base"; | ||
@import "tailwindcss/components"; | ||
@import "tailwindcss/utilities"; | ||
|
||
/* This file is for your main application CSS */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// If you want to use Phoenix channels, run `mix help phx.gen.channel` | ||
// to get started and then uncomment the line below. | ||
// import "./user_socket.js" | ||
|
||
// You can include dependencies in two ways. | ||
// | ||
// The simplest option is to put them in assets/vendor and | ||
// import them using relative paths: | ||
// | ||
// import "../vendor/some-package.js" | ||
// | ||
// Alternatively, you can `npm install some-package --prefix assets` and import | ||
// them using a path starting with the package name: | ||
// | ||
// import "some-package" | ||
// | ||
|
||
// Include phoenix_html to handle method=PUT/DELETE in forms and buttons. | ||
import "phoenix_html" | ||
// Establish Phoenix Socket and LiveView configuration. | ||
import {Socket} from "phoenix" | ||
import {LiveSocket} from "phoenix_live_view" | ||
import topbar from "../vendor/topbar" | ||
|
||
let csrfToken = document.querySelector("meta[name='csrf-token']").getAttribute("content") | ||
let liveSocket = new LiveSocket("/live", Socket, {params: {_csrf_token: csrfToken}}) | ||
|
||
// Show progress bar on live navigation and form submits | ||
topbar.config({barColors: {0: "#29d"}, shadowColor: "rgba(0, 0, 0, .3)"}) | ||
window.addEventListener("phx:page-loading-start", info => topbar.delayedShow(200)) | ||
window.addEventListener("phx:page-loading-stop", info => topbar.hide()) | ||
|
||
// connect if there are any LiveViews on the page | ||
liveSocket.connect() | ||
|
||
// expose liveSocket on window for web console debug logs and latency simulation: | ||
// >> liveSocket.enableDebug() | ||
// >> liveSocket.enableLatencySim(1000) // enabled for duration of browser session | ||
// >> liveSocket.disableLatencySim() | ||
window.liveSocket = liveSocket | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// See the Tailwind configuration guide for advanced usage | ||
// https://tailwindcss.com/docs/configuration | ||
|
||
const plugin = require("tailwindcss/plugin") | ||
|
||
module.exports = { | ||
content: [ | ||
"./js/**/*.js", | ||
"../lib/*_web.ex", | ||
"../lib/*_web/**/*.*ex" | ||
], | ||
theme: { | ||
extend: { | ||
colors: { | ||
brand: "#FD4F00", | ||
} | ||
}, | ||
}, | ||
plugins: [ | ||
require("@tailwindcss/forms"), | ||
plugin(({addVariant}) => addVariant("phx-no-feedback", [".phx-no-feedback&", ".phx-no-feedback &"])), | ||
plugin(({addVariant}) => addVariant("phx-click-loading", [".phx-click-loading&", ".phx-click-loading &"])), | ||
plugin(({addVariant}) => addVariant("phx-submit-loading", [".phx-submit-loading&", ".phx-submit-loading &"])), | ||
plugin(({addVariant}) => addVariant("phx-change-loading", [".phx-change-loading&", ".phx-change-loading &"])) | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,167 @@ | ||
/** | ||
* @license MIT | ||
* topbar 1.0.0, 2021-01-06 | ||
* Modifications: | ||
* - add delayedShow(time) (2022-09-21) | ||
* http://buunguyen.github.io/topbar | ||
* Copyright (c) 2021 Buu Nguyen | ||
*/ | ||
(function (window, document) { | ||
"use strict"; | ||
|
||
// https://gist.github.com/paulirish/1579671 | ||
(function () { | ||
var lastTime = 0; | ||
var vendors = ["ms", "moz", "webkit", "o"]; | ||
for (var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) { | ||
window.requestAnimationFrame = | ||
window[vendors[x] + "RequestAnimationFrame"]; | ||
window.cancelAnimationFrame = | ||
window[vendors[x] + "CancelAnimationFrame"] || | ||
window[vendors[x] + "CancelRequestAnimationFrame"]; | ||
} | ||
if (!window.requestAnimationFrame) | ||
window.requestAnimationFrame = function (callback, element) { | ||
var currTime = new Date().getTime(); | ||
var timeToCall = Math.max(0, 16 - (currTime - lastTime)); | ||
var id = window.setTimeout(function () { | ||
callback(currTime + timeToCall); | ||
}, timeToCall); | ||
lastTime = currTime + timeToCall; | ||
return id; | ||
}; | ||
if (!window.cancelAnimationFrame) | ||
window.cancelAnimationFrame = function (id) { | ||
clearTimeout(id); | ||
}; | ||
})(); | ||
|
||
var canvas, | ||
currentProgress, | ||
showing, | ||
progressTimerId = null, | ||
fadeTimerId = null, | ||
delayTimerId = null, | ||
addEvent = function (elem, type, handler) { | ||
if (elem.addEventListener) elem.addEventListener(type, handler, false); | ||
else if (elem.attachEvent) elem.attachEvent("on" + type, handler); | ||
else elem["on" + type] = handler; | ||
}, | ||
options = { | ||
autoRun: true, | ||
barThickness: 3, | ||
barColors: { | ||
0: "rgba(26, 188, 156, .9)", | ||
".25": "rgba(52, 152, 219, .9)", | ||
".50": "rgba(241, 196, 15, .9)", | ||
".75": "rgba(230, 126, 34, .9)", | ||
"1.0": "rgba(211, 84, 0, .9)", | ||
}, | ||
shadowBlur: 10, | ||
shadowColor: "rgba(0, 0, 0, .6)", | ||
className: null, | ||
}, | ||
repaint = function () { | ||
canvas.width = window.innerWidth; | ||
canvas.height = options.barThickness * 5; // need space for shadow | ||
|
||
var ctx = canvas.getContext("2d"); | ||
ctx.shadowBlur = options.shadowBlur; | ||
ctx.shadowColor = options.shadowColor; | ||
|
||
var lineGradient = ctx.createLinearGradient(0, 0, canvas.width, 0); | ||
for (var stop in options.barColors) | ||
lineGradient.addColorStop(stop, options.barColors[stop]); | ||
ctx.lineWidth = options.barThickness; | ||
ctx.beginPath(); | ||
ctx.moveTo(0, options.barThickness / 2); | ||
ctx.lineTo( | ||
Math.ceil(currentProgress * canvas.width), | ||
options.barThickness / 2 | ||
); | ||
ctx.strokeStyle = lineGradient; | ||
ctx.stroke(); | ||
}, | ||
createCanvas = function () { | ||
canvas = document.createElement("canvas"); | ||
var style = canvas.style; | ||
style.position = "fixed"; | ||
style.top = style.left = style.right = style.margin = style.padding = 0; | ||
style.zIndex = 100001; | ||
style.display = "none"; | ||
if (options.className) canvas.classList.add(options.className); | ||
document.body.appendChild(canvas); | ||
addEvent(window, "resize", repaint); | ||
}, | ||
topbar = { | ||
config: function (opts) { | ||
for (var key in opts) | ||
if (options.hasOwnProperty(key)) options[key] = opts[key]; | ||
}, | ||
delayedShow: function(time) { | ||
if (showing) return; | ||
if (delayTimerId) return; | ||
delayTimerId = setTimeout(() => topbar.show(), time); | ||
}, | ||
show: function () { | ||
if (showing) return; | ||
showing = true; | ||
if (fadeTimerId !== null) window.cancelAnimationFrame(fadeTimerId); | ||
if (!canvas) createCanvas(); | ||
canvas.style.opacity = 1; | ||
canvas.style.display = "block"; | ||
topbar.progress(0); | ||
if (options.autoRun) { | ||
(function loop() { | ||
progressTimerId = window.requestAnimationFrame(loop); | ||
topbar.progress( | ||
"+" + 0.05 * Math.pow(1 - Math.sqrt(currentProgress), 2) | ||
); | ||
})(); | ||
} | ||
}, | ||
progress: function (to) { | ||
if (typeof to === "undefined") return currentProgress; | ||
if (typeof to === "string") { | ||
to = | ||
(to.indexOf("+") >= 0 || to.indexOf("-") >= 0 | ||
? currentProgress | ||
: 0) + parseFloat(to); | ||
} | ||
currentProgress = to > 1 ? 1 : to; | ||
repaint(); | ||
return currentProgress; | ||
}, | ||
hide: function () { | ||
clearTimeout(delayTimerId); | ||
delayTimerId = null; | ||
if (!showing) return; | ||
showing = false; | ||
if (progressTimerId != null) { | ||
window.cancelAnimationFrame(progressTimerId); | ||
progressTimerId = null; | ||
} | ||
(function loop() { | ||
if (topbar.progress("+.1") >= 1) { | ||
canvas.style.opacity -= 0.05; | ||
if (canvas.style.opacity <= 0.05) { | ||
canvas.style.display = "none"; | ||
fadeTimerId = null; | ||
return; | ||
} | ||
} | ||
fadeTimerId = window.requestAnimationFrame(loop); | ||
})(); | ||
}, | ||
}; | ||
|
||
if (typeof module === "object" && typeof module.exports === "object") { | ||
module.exports = topbar; | ||
} else if (typeof define === "function" && define.amd) { | ||
define(function () { | ||
return topbar; | ||
}); | ||
} else { | ||
this.topbar = topbar; | ||
} | ||
}.call(this, window, document)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# This file is responsible for configuring your application | ||
# and its dependencies with the aid of the Config module. | ||
# | ||
# This configuration file is loaded before any dependency and | ||
# is restricted to this project. | ||
|
||
# General application configuration | ||
import Config | ||
|
||
config :app, | ||
ecto_repos: [App.Repo] | ||
|
||
# Configures the endpoint | ||
config :app, AppWeb.Endpoint, | ||
url: [host: "localhost"], | ||
render_errors: [ | ||
formats: [html: AppWeb.ErrorHTML, json: AppWeb.ErrorJSON], | ||
layout: false | ||
], | ||
pubsub_server: App.PubSub, | ||
live_view: [signing_salt: "u48tsthN"] | ||
|
||
# Configures the mailer | ||
# | ||
# By default it uses the "Local" adapter which stores the emails | ||
# locally. You can see the emails in your browser, at "/dev/mailbox". | ||
# | ||
# For production it's recommended to configure a different adapter | ||
# at the `config/runtime.exs`. | ||
config :app, App.Mailer, adapter: Swoosh.Adapters.Local | ||
|
||
# Configure esbuild (the version is required) | ||
config :esbuild, | ||
version: "0.14.41", | ||
default: [ | ||
args: | ||
~w(js/app.js --bundle --target=es2017 --outdir=../priv/static/assets --external:/fonts/* --external:/images/*), | ||
cd: Path.expand("../assets", __DIR__), | ||
env: %{"NODE_PATH" => Path.expand("../deps", __DIR__)} | ||
] | ||
|
||
# Configure tailwind (the version is required) | ||
config :tailwind, | ||
version: "3.1.8", | ||
default: [ | ||
args: ~w( | ||
--config=tailwind.config.js | ||
--input=css/app.css | ||
--output=../priv/static/assets/app.css | ||
), | ||
cd: Path.expand("../assets", __DIR__) | ||
] | ||
|
||
# Configures Elixir's Logger | ||
config :logger, :console, | ||
format: "$time $metadata[$level] $message\n", | ||
metadata: [:request_id] | ||
|
||
# Use Jason for JSON parsing in Phoenix | ||
config :phoenix, :json_library, Jason | ||
|
||
# Import environment specific config. This must remain at the bottom | ||
# of this file so it overrides the configuration defined above. | ||
import_config "#{config_env()}.exs" |
Oops, something went wrong.