mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Simplify DomainAdminStore, PackageAdminStore and PluginAdminStore
This commit is contained in:
parent
bde4d147bb
commit
0345050344
12 changed files with 96 additions and 94 deletions
|
|
@ -1,5 +1,24 @@
|
|||
import ko from 'ko';
|
||||
import Remote from 'Remote/Admin/Fetch';
|
||||
import { StorageResultType } from 'Common/Enums';
|
||||
|
||||
export const DomainAdminStore = ko.observableArray();
|
||||
|
||||
DomainAdminStore.loading = ko.observable(false).extend({ 'throttle': 100 });
|
||||
DomainAdminStore.loading = ko.observable(false);
|
||||
|
||||
DomainAdminStore.fetch = () => {
|
||||
DomainAdminStore.loading(true);
|
||||
Remote.domainList((result, data) => {
|
||||
DomainAdminStore.loading(false);
|
||||
if (StorageResultType.Success === result && data && data.Result) {
|
||||
DomainAdminStore(
|
||||
Object.entries(data.Result).map(([name, [enabled, alias]]) => ({
|
||||
name: name,
|
||||
disabled: ko.observable(!enabled),
|
||||
alias: alias,
|
||||
deleteAccess: ko.observable(false)
|
||||
}))
|
||||
);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue