2016-07-02 06:49:59 +08:00
|
|
|
import _ from '_';
|
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
|
|
|
|
2020-07-23 02:09:31 +08:00
|
|
|
this.identitiesIDS = ko.computed(() => _.compact(this.identities().map(item => (item ? item.id : null))));
|
2015-11-19 01:32:29 +08:00
|
|
|
}
|
|
|
|
}
|
2016-04-21 01:12:51 +08:00
|
|
|
|
2016-09-13 04:50:21 +08:00
|
|
|
export default new IdentityUserStore();
|