mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 08:22:24 +01:00
23 lines
804 B
JavaScript
23 lines
804 B
JavaScript
import { createElement } from "../../lib/skeleton/index.js";
|
|
import rxjs, { effect, stateMutation } from "../../lib/rx.js";
|
|
import { qs } from "../../lib/dom.js";
|
|
import { CSS } from "../../helpers/loader.js";
|
|
|
|
import AdminHOC from "./decorator.js";
|
|
import { get as getRelease } from "./model_release.js";
|
|
import transition from "./animate.js";
|
|
|
|
export default AdminHOC(async function(render) {
|
|
const $page = createElement(`
|
|
<div class="component_page_about">
|
|
<style>${await CSS(import.meta.url, "ctrl_about.css")}</style>
|
|
<div data-bind="about"><Loader /></div>
|
|
</div>
|
|
`);
|
|
render(transition($page));
|
|
|
|
effect(getRelease().pipe(
|
|
rxjs.map(({ html }) => html),
|
|
stateMutation(qs($page, `[data-bind="about"]`), "innerHTML"),
|
|
));
|
|
});
|