mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
feat(data-srouce): manager新增init事件
This commit is contained in:
parent
66e16452a8
commit
934398911d
@ -71,7 +71,19 @@ class DataSourceManager extends EventEmitter {
|
||||
this.addDataSource(config);
|
||||
});
|
||||
|
||||
Promise.all(Array.from(this.dataSourceMap).map(async ([, ds]) => this.init(ds)));
|
||||
const dataSourceList = Array.from(this.dataSourceMap);
|
||||
Promise.allSettled<Record<string, any>>(dataSourceList.map(([, ds]) => this.init(ds))).then((values) => {
|
||||
const data: DataSourceManagerData = {};
|
||||
|
||||
values.forEach((value, index) => {
|
||||
if (value.status === 'fulfilled') {
|
||||
const dsId = dataSourceList[index][0];
|
||||
data[dsId] = this.data[dsId];
|
||||
}
|
||||
});
|
||||
|
||||
this.emit('init', data);
|
||||
});
|
||||
}
|
||||
|
||||
public async init(ds: DataSource) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user