fix: sheet destroy (#1705)

* fix: sheet destroy

* chore: unmount properly

* chore: check against fast cleanup

* chore: remove debug code
This commit is contained in:
Tobias Åström
2025-03-31 11:42:54 +02:00
committed by GitHub
parent 170d61fc1a
commit fbe90c224d
4 changed files with 36 additions and 28 deletions

View File

@@ -87,7 +87,7 @@ export default function boot({ app, context }) {
);
const cells = {};
const cellsUnmount = {};
const componentsUnmount = [];
const components = [];
return [
@@ -98,19 +98,17 @@ export default function boot({ app, context }) {
});
},
cells,
addCell(id, cell, unmount) {
addCell(id, cell) {
cells[id] = cell;
cellsUnmount[id] = unmount;
},
removeCell(id) {
delete cells[id];
cellsUnmount[id]();
delete cellsUnmount[id];
},
add(component) {
add(component, unmount) {
(async () => {
await rendered;
components.push(component);
componentsUnmount.push(unmount);
appRef.current.setComps(components);
})();
},
@@ -119,9 +117,11 @@ export default function boot({ app, context }) {
await rendered;
const ix = components.indexOf(component);
if (ix !== -1) {
componentsUnmount[ix]?.();
components.splice(ix, 1);
componentsUnmount.splice(ix, 1);
}
appRef.current.setComps(components);
appRef?.current?.setComps(components);
})();
},
setMuiThemeName(themeName) {
@@ -141,10 +141,11 @@ export default function boot({ app, context }) {
})();
},
destroy() {
Object.keys(cellsUnmount).forEach((c) => {
cellsUnmount[c]();
componentsUnmount.forEach((c) => {
c && c();
});
modelStore.destroy();
root.unmount();
},
},
modelStore,

View File

@@ -42,9 +42,9 @@ export default function glue({
};
model.on('closed', unmount);
root.add(portal);
root.add(portal, unmount);
// Cannot use model.id as it is not unique in a given mashup
root.addCell(currentId, cellRef, unmount);
root.addCell(currentId, cellRef);
return [unmount, cellRef];
}

View File

@@ -15,28 +15,35 @@ export default function useExistingModel({ app, qId, options = {} }) {
}
useEffect(() => {
function storeModel(m) {
if (modelStore.get(m.id)) {
return;
}
// Nebula gets the model from this store in some of its
// core functions, so it must always be stored here.
modelStore.set(m.id, m);
m.once('closed', () => {
modelStore.clear(m.id);
});
}
let isCleaned = false;
let cleanupFn = () => {};
async function fetchObject(modelId) {
const m = modelStore.get(modelId) || (await app.getObject(modelId));
return m;
}
const p = Promise.resolve(sessionModel || fetchObject(qId));
p.then((m) => {
storeModel(m);
async function fetchModel() {
const m = await Promise.resolve(sessionModel || fetchObject(qId));
if (isCleaned) {
return;
}
if (!modelStore.get(m.id)) {
modelStore.set(m.id, m);
const onClosed = () => {
modelStore.clear(m.id);
};
m.once('closed', onClosed);
cleanupFn = () => {
m.removeListener('closed', onClosed);
};
}
setModel(m);
});
}
fetchModel();
return () => {
isCleaned = true;
cleanupFn();
};
}, []);
return model;

View File

@@ -37,6 +37,6 @@ export default function glue({
);
navigation.setSheetRef(sheetRef);
root.add(portal);
root.add(portal, unmount);
return [unmount, sheetRef];
}