snappymail/dev/Stores/User/Identity.js

15 lines
362 B
JavaScript
Raw Normal View History

2015-11-19 01:32:29 +08:00
import ko from 'ko';
2019-07-05 03:19:24 +08:00
class IdentityUserStore {
2016-07-16 05:29:42 +08:00
constructor() {
2015-11-19 01:32:29 +08:00
this.identities = ko.observableArray([]);
2019-07-05 03:19:24 +08:00
this.identities.loading = ko.observable(false).extend({ throttle: 100 });
2015-11-19 01:32:29 +08:00
this.identitiesIDS = ko.computed(
() => this.identities().map(item => (item ? item.id : null)).filter(value => !!value)
);
2015-11-19 01:32:29 +08:00
}
}
2016-04-21 01:12:51 +08:00
export default new IdentityUserStore();