-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdata.js
More file actions
249 lines (221 loc) · 7.09 KB
/
Copy pathdata.js
File metadata and controls
249 lines (221 loc) · 7.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
// Third party imports
import { liveQuery } from "dexie";
import { useObservable } from "@vueuse/rxjs";
import viewer_schemas from "@geode/opengeodeweb-viewer/opengeodeweb_viewer_schemas.json";
// Local imports
import { database } from "@ogw_internal/database/database.js";
import { useDataCollections } from "./data_helpers/collections.js";
import { useDataMesh } from "./data_helpers/mesh.js";
import { useViewerStore } from "@ogw_front/stores/viewer";
const viewer_generic_schemas = viewer_schemas.opengeodeweb_viewer.generic;
// oxlint-disable-next-line max-lines-per-function, max-statements
export const useDataStore = defineStore("data", () => {
const viewerStore = useViewerStore();
const data_db = database.data;
const model_components_db = database.model_components;
const model_components_relation_db = database.model_components_relation;
const {
formatedMeshComponents,
refFormatedMeshComponents,
getMeshComponentsByType,
getAllMeshComponents,
fetchAllMeshComponents,
getMeshComponentGeodeIds,
getCornersGeodeIds,
getLinesGeodeIds,
getSurfacesGeodeIds,
getBlocksGeodeIds,
} = useDataMesh();
const {
hasCollectionComponents,
getAllCollectionComponents,
fetchAllCollectionComponents,
formatedCollectionComponents,
refFormatedCollectionComponents,
} = useDataCollections();
async function item(id) {
const data_item = await data_db.get(id);
if (!data_item) {
throw new Error(`Item not found: ${id}`);
}
return data_item;
}
async function allItems() {
return await data_db.toArray();
}
function refItem(id) {
return useObservable(
liveQuery(() => data_db.get(id)),
{ initialValue: {} },
);
}
function refAllItems() {
return useObservable(
liveQuery(() => data_db.toArray()),
{ initialValue: [] },
);
}
async function meshComponentType(modelId, geode_id) {
const component = await model_components_db
.where("[id+geode_id]")
.equals([modelId, geode_id])
.first();
return component?.type;
}
async function registerObject(id, name) {
const schema = viewer_generic_schemas.register;
const params = { id, name };
return await viewerStore.request({ schema, params });
}
async function deregisterObject(id) {
const schema = viewer_generic_schemas.deregister;
const params = { id };
return await viewerStore.request({ schema, params });
}
function addItem(new_item) {
const itemData = {
id: new_item.id,
name: new_item.name || new_item.id,
viewer_type: new_item.viewer_type,
geode_object_type: new_item.geode_object_type,
visible: true,
created_at: new Date().toISOString(),
binary_light_viewable: new_item.binary_light_viewable,
};
return data_db.put(itemData);
}
function addComponents(new_item) {
const allComponents = [];
function addModelComponents(components) {
for (const component of components) {
allComponents.push({
id: new_item.id,
geode_id: component.geode_id,
type: component.type,
viewer_id: component.viewer_id,
name: component.name,
is_active: component.is_active,
});
}
}
if (new_item.mesh_components) {
addModelComponents(new_item.mesh_components);
}
if (new_item.collection_components) {
addModelComponents(new_item.collection_components);
}
return model_components_db.bulkPut(allComponents);
}
function addComponentRelations(new_item) {
const relations = [];
function addModelComponentRelations(components, parent, type) {
for (const child of components) {
relations.push({
id: new_item.id,
parent,
child,
type,
});
}
}
if (new_item.mesh_components) {
for (const component of new_item.mesh_components) {
if (component.boundaries) {
addModelComponentRelations(component.boundaries, component.geode_id, "boundary");
}
if (component.internals) {
addModelComponentRelations(component.internals, component.geode_id, "internal");
}
}
}
if (new_item.collection_components) {
for (const component of new_item.collection_components) {
if (component.items) {
addModelComponentRelations(component.items, component.geode_id, "collection");
}
}
}
return model_components_relation_db.bulkPut(relations);
}
async function getComponentByViewerId(modelId, viewer_id) {
const component = await model_components_db
.where("viewer_id")
.equals(Number(viewer_id))
.and((model_component) => model_component.id === modelId)
.first();
return component;
}
async function deleteItem(id) {
await data_db.delete(id);
await deleteModelComponents(id);
}
async function updateItem(id, changes) {
await data_db.update(id, changes);
}
async function deleteModelComponents(modelId) {
await model_components_db.where("id").equals(modelId).delete();
await database.model_components_relation.where("id").equals(modelId).delete();
}
async function getAllModelComponentsViewerIds(modelId) {
const components = await model_components_db.where("id").equals(modelId).toArray();
return components.map((component) => Math.trunc(Number(component.viewer_id)));
}
async function getMeshComponentsViewerIds(modelId, meshComponentGeodeIds) {
const components = await model_components_db
.where("[id+geode_id]")
.anyOf(meshComponentGeodeIds.map((geode_id) => [modelId, geode_id]))
.toArray();
return components.map((component) => Math.trunc(Number(component.viewer_id)));
}
async function exportStores() {
const items = await data_db.toArray();
const modelComponents = await model_components_db.toArray();
const modelComponentsRelations = await model_components_relation_db.toArray();
return { items, modelComponents, modelComponentsRelations };
}
async function importStores(snapshot) {
await clear();
await model_components_db.bulkPut(snapshot.modelComponents);
await model_components_relation_db.bulkPut(snapshot.modelComponentsRelations);
}
async function clear() {
await data_db.clear();
await model_components_db.clear();
await model_components_relation_db.clear();
}
return {
refAllItems,
item,
allItems,
refItem,
meshComponentType,
registerObject,
deregisterObject,
addItem,
addComponents,
addComponentRelations,
deleteItem,
updateItem,
getAllModelComponentsViewerIds,
getMeshComponentsViewerIds,
getComponentByViewerId,
exportStores,
importStores,
clear,
formatedMeshComponents,
refFormatedMeshComponents,
getMeshComponentsByType,
getAllMeshComponents,
fetchAllMeshComponents,
getMeshComponentGeodeIds,
getCornersGeodeIds,
getLinesGeodeIds,
getSurfacesGeodeIds,
getBlocksGeodeIds,
hasCollectionComponents,
getAllCollectionComponents,
fetchAllCollectionComponents,
formatedCollectionComponents,
refFormatedCollectionComponents,
};
});