mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
trying to fix issue after merging 2 stories created with same id
This commit is contained in:
parent
e7c74620ff
commit
48859c6ab8
@ -54,6 +54,7 @@ export function renderToCanvas(
|
||||
|
||||
const storyID = `${id}--${viewMode}`;
|
||||
const existingApp = map.get(storyID);
|
||||
console.log('---------- storyID ', storyID, ' name', name);
|
||||
|
||||
if (existingApp && !forceRemount) {
|
||||
updateArgs(existingApp.reactiveArgs, storyArgs);
|
||||
@ -113,13 +114,17 @@ function updateArgs(reactiveArgs: Args, nextArgs: Args) {
|
||||
|
||||
function clearVueApps(viewMode: string, id: string) {
|
||||
const [idPrefix, idSuffix] = id.split('--');
|
||||
// console.log(' map to start clearing ', map);
|
||||
console.log('map start looping --------------- size ', map.size);
|
||||
map.forEach((value, key) => {
|
||||
const [keyPrefix, keySuffix, keyViewMode] = key.split('--');
|
||||
console.log('key ', key);
|
||||
if (
|
||||
keyViewMode !== viewMode ||
|
||||
idPrefix !== keyPrefix ||
|
||||
(idSuffix !== keySuffix && viewMode !== 'docs')
|
||||
) {
|
||||
console.log('unmounting - ', key);
|
||||
value.vueApp.unmount();
|
||||
map.delete(key);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user