mirror of
https://github.com/jech/galene.git
synced 2024-11-09 18:25:58 +01:00
58 lines
1.6 KiB
JavaScript
58 lines
1.6 KiB
JavaScript
// Copyright (c) 2019-2020 by Juliusz Chroboczek.
|
|
|
|
// This is not open source software. Copy it, and I'll break into your
|
|
// house and tell your three year-old that Santa doesn't exist.
|
|
|
|
'use strict';
|
|
|
|
document.getElementById('groupform').onsubmit = function(e) {
|
|
e.preventDefault();
|
|
let group = document.getElementById('group').value.trim();
|
|
if(group !== '')
|
|
location.href = '/group/' + group;
|
|
};
|
|
|
|
async function listPublicGroups() {
|
|
let div = document.getElementById('public-groups');
|
|
let table = document.getElementById('public-groups-table');
|
|
|
|
let l;
|
|
try {
|
|
l = await (await fetch('/public-groups.json')).json();
|
|
} catch(e) {
|
|
console.error(e);
|
|
l = [];
|
|
}
|
|
|
|
if (l.length === 0) {
|
|
table.textContent = '(No groups found.)';
|
|
div.classList.remove('groups');
|
|
div.classList.add('nogroups');
|
|
return;
|
|
}
|
|
|
|
div.classList.remove('nogroups');
|
|
div.classList.add('groups');
|
|
|
|
for(let i = 0; i < l.length; i++) {
|
|
let group = l[i];
|
|
let tr = document.createElement('tr');
|
|
let td = document.createElement('td');
|
|
let a = document.createElement('a');
|
|
a.textContent = group.name;
|
|
a.href = '/group/' + encodeURIComponent(group.name);
|
|
td.appendChild(a);
|
|
tr.appendChild(td);
|
|
let td2 = document.createElement('td');
|
|
if(group.description)
|
|
td2.textContent = group.description;
|
|
tr.appendChild(td2);
|
|
let td3 = document.createElement('td');
|
|
td3.textContent = `(${group.clientCount} clients)`;
|
|
tr.appendChild(td3);
|
|
table.appendChild(tr);
|
|
}
|
|
}
|
|
|
|
|
|
listPublicGroups();
|