fix(editor): stage销毁问题

This commit is contained in:
roymondchen 2024-09-04 19:47:04 +08:00 committed by roymondchen
parent a2c79c79cd
commit 0d901c018f
3 changed files with 11 additions and 6 deletions

View File

@ -1,4 +1,4 @@
import { computed, onBeforeUnmount, watch } from 'vue'; import { computed, watch } from 'vue';
import type { MNode } from '@tmagic/core'; import type { MNode } from '@tmagic/core';
import StageCore, { GuidesType, RemoveEventData, SortEventData, UpdateEventData } from '@tmagic/stage'; import StageCore, { GuidesType, RemoveEventData, SortEventData, UpdateEventData } from '@tmagic/stage';
@ -131,9 +131,5 @@ export const useStage = (stageOptions: StageOptions) => {
} }
}); });
onBeforeUnmount(() => {
stage.destroy();
});
return stage; return stage;
}; };

View File

@ -123,6 +123,10 @@ watchEffect(() => {
}); });
}); });
onBeforeUnmount(() => {
stage?.destroy();
});
watch(zoom, (zoom) => { watch(zoom, (zoom) => {
if (!stage || !zoom) return; if (!stage || !zoom) return;
stage.setZoom(zoom); stage.setZoom(zoom);

View File

@ -8,7 +8,7 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { computed, inject, ref, watch } from 'vue'; import { computed, inject, onBeforeUnmount, ref, watch } from 'vue';
import { CloseBold } from '@element-plus/icons-vue'; import { CloseBold } from '@element-plus/icons-vue';
import { TMagicIcon } from '@tmagic/design'; import { TMagicIcon } from '@tmagic/design';
@ -62,6 +62,11 @@ watch(stageOverlay, (stageOverlay) => {
} }
}); });
onBeforeUnmount(() => {
services?.stageOverlayService.get('stage')?.destroy();
services?.stageOverlayService.set('stage', null);
});
const closeOverlayHandler = () => { const closeOverlayHandler = () => {
services?.stageOverlayService.closeOverlay(); services?.stageOverlayService.closeOverlay();
}; };