2019-07-05 03:58:15 +08:00
|
|
|
import _ from '_';
|
2016-08-17 06:01:20 +08:00
|
|
|
import ko from 'ko';
|
2015-01-27 05:06:00 +08:00
|
|
|
|
2019-07-05 03:19:24 +08:00
|
|
|
class DomainAdminStore {
|
2016-08-17 06:01:20 +08:00
|
|
|
constructor() {
|
|
|
|
this.domains = ko.observableArray([]);
|
2019-07-05 03:19:24 +08:00
|
|
|
this.domains.loading = ko.observable(false).extend({ 'throttle': 100 });
|
2019-07-05 03:58:15 +08:00
|
|
|
this.domainsWithoutAliases = ko.computed(() => _.filter(this.domains(), (item) => item && !item.alias));
|
2016-08-17 06:01:20 +08:00
|
|
|
}
|
2016-06-30 08:02:45 +08:00
|
|
|
}
|
2015-01-27 05:06:00 +08:00
|
|
|
|
2016-09-13 04:50:21 +08:00
|
|
|
export default new DomainAdminStore();
|