docker compose dev environment
Some checks failed
CI/CD Pipeline / build (push) Failing after 4s

This commit is contained in:
2026-03-10 10:09:27 -06:00
parent d01ae816d2
commit b3619a145f
6 changed files with 211 additions and 101 deletions

View File

@@ -15,27 +15,25 @@
// 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"
import "phoenix_html";
import { Socket } from "phoenix";
import { LiveSocket } from "phoenix_live_view";
import topbar from "../vendor/topbar";
let Hooks = {}
let Hooks = {};
// Renders a complete markdown string client-side on mount.
// The raw markdown is passed as the data-md attribute.
Hooks.MarkdownRender = {
mounted() {
const smd = window.smd
const content = this.el.dataset.md
if (!content) return
const parser = smd.parser(smd.default_renderer(this.el))
smd.parser_write(parser, content)
smd.parser_end(parser)
}
}
const smd = window.smd;
const content = this.el.dataset.md;
if (!content) return;
const parser = smd.parser(smd.default_renderer(this.el));
smd.parser_write(parser, content);
smd.parser_end(parser);
},
};
// Streams markdown chunks into the element using the streaming-markdown parser.
// The server sends push_event(socket, eventName, %{chunk: "..."}) for each chunk.
@@ -44,82 +42,78 @@ Hooks.MarkdownRender = {
// data-event on the element controls which event this hook listens for.
Hooks.MarkdownStream = {
mounted() {
const smd = window.smd
const DOMPurify = window.DOMPurify
this._chunks = ""
this._parser = smd.parser(smd.default_renderer(this.el))
const eventName = this.el.dataset.event
this.handleEvent(eventName, ({chunk}) => {
this._chunks += chunk
const smd = window.smd;
const DOMPurify = window.DOMPurify;
this._chunks = "";
this._parser = smd.parser(smd.default_renderer(this.el));
const eventName = this.el.dataset.event;
this.handleEvent(eventName, ({ chunk }) => {
this._chunks += chunk;
// Sanitize all accumulated chunks to detect injection attacks.
DOMPurify.sanitize(this._chunks)
DOMPurify.sanitize(this._chunks);
if (DOMPurify.removed.length > 0) {
// Insecure content detected — stop rendering immediately.
smd.parser_end(this._parser)
this._parser = null
return
smd.parser_end(this._parser);
this._parser = null;
return;
}
if (this._parser) smd.parser_write(this._parser, chunk)
})
if (this._parser) smd.parser_write(this._parser, chunk);
});
},
destroyed() {
if (this._parser) {
window.smd.parser_end(this._parser)
this._parser = null
window.smd.parser_end(this._parser);
this._parser = null;
}
}
}
},
};
Hooks.ScrollBottom = {
mounted() {
requestAnimationFrame(() => this.scrollToBottom())
requestAnimationFrame(() => this.scrollToBottom());
this.observer = new MutationObserver(() => {
if (this.isNearBottom()) this.scrollToBottom()
})
this.observer.observe(this.el, {childList: true, subtree: true})
if (this.isNearBottom()) this.scrollToBottom();
});
this.observer.observe(this.el, { childList: true, subtree: true });
this.handleEvent("scroll_to_bottom", () => {
this.scrollToBottom()
})
this.scrollToBottom();
});
},
updated() {
if (this.isNearBottom()) this.scrollToBottom()
if (this.isNearBottom()) this.scrollToBottom();
},
destroyed() {
this.observer.disconnect()
this.observer.disconnect();
},
isNearBottom() {
const closeToBottomThreshold = 200
return this.el.scrollHeight - this.el.scrollTop - this.el.clientHeight <= closeToBottomThreshold
const closeToBottomThreshold = 200;
return (
this.el.scrollHeight - this.el.scrollTop - this.el.clientHeight <=
closeToBottomThreshold
);
},
scrollToBottom() {
this.el.scrollTop = this.el.scrollHeight
}
}
this.el.scrollTop = this.el.scrollHeight;
},
};
let csrfToken = document.querySelector("meta[name='csrf-token']").getAttribute("content")
let csrfToken = document
.querySelector("meta[name='csrf-token']")
.getAttribute("content");
// Retry very aggressively: 100ms, 250ms, 500ms, then cap at 1s indefinitely.
const reconnectAfterMs = (tries) => [100, 250, 500][tries - 1] || 1000
const rejoinAfterMs = (tries) => [100, 250, 500][tries - 1] || 1000
const reconnectAfterMs = (tries) => [100, 250, 500][tries - 1] || 1000;
const rejoinAfterMs = (tries) => [100, 250, 500][tries - 1] || 1000;
let liveSocket = new LiveSocket("/live", Socket, {
params: {_csrf_token: csrfToken},
params: { _csrf_token: csrfToken },
hooks: Hooks,
reconnectAfterMs,
rejoinAfterMs
})
rejoinAfterMs,
});
// 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.show(300))
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
topbar.config({ barColors: { 0: "#29d" }, shadowColor: "rgba(0, 0, 0, .3)" });
window.addEventListener("phx:page-loading-start", (_info) => topbar.show(300));
window.addEventListener("phx:page-loading-stop", (_info) => topbar.hide());
liveSocket.connect();
window.liveSocket = liveSocket;