frontend-zackeneule/source/pages/invite_list/logic.ts
2025-07-02 18:33:14 +02:00

106 lines
2.6 KiB
TypeScript

/*
Espe | Ein schlichtes Werkzeug zur Mitglieder-Verwaltung | Frontend
Copyright (C) 2024 Christian Fraß
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public
License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see
<https://www.gnu.org/licenses/>.
*/
lib_plankton.zoo_page.register(
"invite_list",
async (parameters, target_element) => {
// types
type type_item = {
id : int;
key : string;
expiry : (null | int);
name_value : string;
};
// parameters
const term : (null | string) = (parameters["term"] ?? "");
// exec
target_element.appendChild(template_request("invite_list"));
target_element.querySelector(".invite_list-title").textContent = lib_plankton.translate.get("page.invite_list.title");
// exec : create link
{
const element : HTMLElement = target_element.querySelector(".invite_list-create");
element.setAttribute(
"href",
lib_plankton.zoo_page.encode(
{
"name": "invite_create",
"parameters": {
}
}
)
);
element.textContent = lib_plankton.translate.get("page.invite_create.title");
}
const search : lib_plankton.zoo_search.type_search<type_item> = lib_plankton.zoo_search.make<type_item>(
(term) => _espe.backend.invite_list(),
{
"encode_item": (item) => lib_plankton.string.coin(
"[{{id}}] {{name}}",
{
"id": item.id.toFixed(0),
"name": item.name_value,
}
),
"hooks_begin": [
(term) => {
lib_plankton.zoo_page.set(
{
"name": "invite_list",
"parameters": {
"term": term,
}
}
);
}
],
"hooks_select": [
(item) => {
lib_plankton.zoo_page.set(
{
"name": "invite_view",
"parameters": {
"id": item.id.toFixed(0),
}
}
);
}
]
}
);
lib_plankton.zoo_search.render(
search,
target_element.querySelector(".invite_list-search"),
{
"state": {
"term": "",
}
}
);
/*
const data = await _espe.backend.invite_list();
(target_element.querySelector(".invite_list-data") as HTMLElement).textContent = JSON.stringify(
data,
undefined,
" "
);
*/
}
);