feat: update user list in dashboard/users on graph update
parent
3fa2e3cef2
commit
c57c77030e
@ -1,14 +1,32 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
define('admin/dashboard/users', ['admin/modules/dashboard-line-graph'], (graph) => {
|
define('admin/dashboard/users', ['admin/modules/dashboard-line-graph', 'hooks'], (graph, hooks) => {
|
||||||
const ACP = {};
|
const ACP = {};
|
||||||
|
|
||||||
ACP.init = () => {
|
ACP.init = () => {
|
||||||
graph.init({
|
graph.init({
|
||||||
set: 'registrations',
|
set: 'registrations',
|
||||||
dataset: ajaxify.data.dataset,
|
dataset: ajaxify.data.dataset,
|
||||||
|
}).then(() => {
|
||||||
|
hooks.onPage('action:admin.dashboard.updateGraph', ACP.updateTable);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ACP.updateTable = () => {
|
||||||
|
if (window.fetch) {
|
||||||
|
fetch(`${config.relative_path}/api${ajaxify.data.url}${window.location.search}`, { credentials: 'include' }).then((response) => {
|
||||||
|
if (response.ok) {
|
||||||
|
response.json().then(function (payload) {
|
||||||
|
app.parseAndTranslate(ajaxify.data.template.name, 'users', payload, function (html) {
|
||||||
|
const tbodyEl = document.querySelector('.users-list tbody');
|
||||||
|
tbodyEl.innerHTML = '';
|
||||||
|
tbodyEl.append(...html.map((idx, el) => el));
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
return ACP;
|
return ACP;
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue