Lost an admin app change.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4063 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
Cory McWilliams 2022-12-01 00:39:05 +00:00
parent d8fb956c14
commit 2251406bd1
3 changed files with 20 additions and 8 deletions

View File

@ -1 +1 @@
{"type":"tildefriends-app","files":{"app.js":"&srACRivbm0ZbvlMOAQ/9mhdcu++LLh6ckcRoRLvewjU=.sha256","index.html":"&D3JwdPXy/QsLXkmwNDrBFXdzxfqO1/JGxfqEArnS5v4=.sha256","lit.min.js":"&3FfrVflmGr0n4lvN0GriN1Qz1lEw31SbZxRSJrcXR28=.sha256","script.js":"&yTGrKjg1U/F9wt/60ySlg4N+qewVoaRUqqWQWkHi1Q0=.sha256"}}
{"type":"tildefriends-app","files":{"app.js":"&uhGJsy5+qBgOgEgMqCTDasK+C+GWGptHKfPiAsD5eGA=.sha256","index.html":"&D3JwdPXy/QsLXkmwNDrBFXdzxfqO1/JGxfqEArnS5v4=.sha256","lit.min.js":"&3FfrVflmGr0n4lvN0GriN1Qz1lEw31SbZxRSJrcXR28=.sha256","script.js":"&AUPPnLdyXVocBHQwqWZ7rMdgj0h0/dxEERJz4+RoRQ0=.sha256"}}

View File

@ -12,7 +12,7 @@ async function main() {
let data = {
users: {},
granted: await core.allPermissionsGranted(),
index: await core.globalSettingsGet('index'),
settings: await core.globalSettingsDescriptions(),
};
for (let user of await core.users()) {
data.users[user] = await core.permissionsForUser(user);

View File

@ -22,11 +22,23 @@ function global_settings_set(key, value) {
window.addEventListener('load', function() {
const permission_template = (permission) =>
html` <code>${permission}</code>`;
const input_template = (key, value) => html`
<label ?for=${'gs_' + key}>${key}: </label>
<input type="text" value="${value}" ?id=${'gs_' + key}></input>
<button @click=${(e) => global_settings_set(key, e.srcElement.previousElementSibling.value)}>Set</button>
`;
function input_template(key, description) {
if (description.type === 'boolean') {
return html`
<label ?for=${'gs_' + key}>${key}: </label>
<input type="checkbox" ?checked=${description.value} ?id=${'gs_' + key}></input>
<button @click=${(e) => global_settings_set(key, e.srcElement.previousElementSibling.checked)}>Set</button>
<span>${description.description}</span>
`;
} else {
return html`
<label ?for=${'gs_' + key}>${key}: </label>
<input type="text" value="${description.value}" ?id=${'gs_' + key}></input>
<button @click=${(e) => global_settings_set(key, e.srcElement.previousElementSibling.value)}>Set</button>
<span>${description.description}</span>
`;
}
}
const user_template = (user, permissions) => html`
<li>
<button @click=${(e) => delete_user(user)}>
@ -44,7 +56,7 @@ window.addEventListener('load', function() {
const page_template = (data) =>
html`<div>
<h2>Global Settings</h2>
${input_template('index', data.index)}
${Object.keys(data.settings).sort().map(x => html`<div>${input_template(x, data.settings[x])}</div>`)}
${users_template(data.users)}
</div>`;
render(page_template(g_data), document.body);