81 lines
2.6 KiB
Common Lisp
81 lines
2.6 KiB
Common Lisp
|
(text "{% extends \"root.html\" %} {% block head %}")
|
||
|
(title
|
||
|
(text "Forge - {{ config.name }}"))
|
||
|
|
||
|
(text "{% endblock %} {% block body %} {{ macros::nav(selected=\"\") }}")
|
||
|
(main
|
||
|
("class" "flex flex-col gap-2")
|
||
|
; create new
|
||
|
(text "{% if user.permissions|has_supporter -%}")
|
||
|
(div
|
||
|
("class" "card-nest")
|
||
|
(div
|
||
|
("class" "card small")
|
||
|
(b
|
||
|
(text "{{ text \"forge:label.create_new\" }}")))
|
||
|
(form
|
||
|
("class" "card flex flex-col gap-2")
|
||
|
("onsubmit" "create_community_from_form(event)")
|
||
|
(div
|
||
|
("class" "flex flex-col gap-1")
|
||
|
(label
|
||
|
("for" "title")
|
||
|
(text "{{ text \"communities:label.name\" }}"))
|
||
|
(input
|
||
|
("type" "text")
|
||
|
("name" "title")
|
||
|
("id" "title")
|
||
|
("placeholder" "name")
|
||
|
("required" "")
|
||
|
("minlength" "2")
|
||
|
("maxlength" "32")))
|
||
|
(button
|
||
|
("class" "primary")
|
||
|
(text "{{ text \"communities:action.create\" }}"))))
|
||
|
(text "{% else %}")
|
||
|
(text "{{ components::supporter_ad(body=\"Become a supporter to create forges!\") }}")
|
||
|
(text "{%- endif %}")
|
||
|
|
||
|
; forge listing
|
||
|
(div
|
||
|
("class" "card-nest")
|
||
|
(div
|
||
|
("class" "card small flex items-center gap-2")
|
||
|
(icon (text "anvil"))
|
||
|
(str (text "forge:label.my_forges")))
|
||
|
|
||
|
(div
|
||
|
("class" "card flex flex-col gap-2")
|
||
|
(text "{% for item in list %} {{ components::community_listing_card(community=item) }} {% endfor %}"))))
|
||
|
|
||
|
(script
|
||
|
(text "async function create_community_from_form(e) {
|
||
|
e.preventDefault();
|
||
|
await trigger(\"atto::debounce\", [\"communities::create\"]);
|
||
|
|
||
|
fetch(\"/api/v1/communities\", {
|
||
|
method: \"POST\",
|
||
|
headers: {
|
||
|
\"Content-Type\": \"application/json\",
|
||
|
},
|
||
|
body: JSON.stringify({
|
||
|
title: e.target.title.value,
|
||
|
forge: true
|
||
|
}),
|
||
|
})
|
||
|
.then((res) => res.json())
|
||
|
.then((res) => {
|
||
|
trigger(\"atto::toast\", [
|
||
|
res.ok ? \"success\" : \"error\",
|
||
|
res.message,
|
||
|
]);
|
||
|
|
||
|
if (res.ok) {
|
||
|
setTimeout(() => {
|
||
|
window.location.href = `/forge/${res.payload}`;
|
||
|
}, 100);
|
||
|
}
|
||
|
});
|
||
|
}"))
|
||
|
(text "{% endblock %}")
|