mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
feat(stage,editor): 在选中框新增支持触发画布中组件重新渲染
This commit is contained in:
parent
cdf2dc2b36
commit
0727fe4fea
@ -1,4 +1,5 @@
|
||||
import { computed, watch } from 'vue';
|
||||
import { cloneDeep } from 'lodash-es';
|
||||
|
||||
import type { MNode } from '@tmagic/core';
|
||||
import StageCore, { GuidesType, RemoveEventData, SortEventData, UpdateEventData } from '@tmagic/stage';
|
||||
@ -131,5 +132,17 @@ export const useStage = (stageOptions: StageOptions) => {
|
||||
}
|
||||
});
|
||||
|
||||
stage.on('rerender', () => {
|
||||
const node = editorService.get('node');
|
||||
|
||||
if (!node || !root.value) return;
|
||||
|
||||
stage.update({
|
||||
config: cloneDeep(node),
|
||||
parentId: editorService.getParentById(node.id)?.id,
|
||||
root: cloneDeep(root.value),
|
||||
});
|
||||
});
|
||||
|
||||
return stage;
|
||||
};
|
||||
|
@ -4,7 +4,8 @@
|
||||
|
||||
<slot name="stage">
|
||||
<MagicStage
|
||||
v-if="page"
|
||||
v-if="page && (stageOptions?.render || stageOptions?.runtimeUrl)"
|
||||
:stage-options="stageOptions"
|
||||
:disabled-stage-overlay="disabledStageOverlay"
|
||||
:stage-content-menu="stageContentMenu"
|
||||
:custom-content-menu="customContentMenu"
|
||||
@ -18,7 +19,7 @@
|
||||
<script lang="ts" setup>
|
||||
import { computed, inject } from 'vue';
|
||||
|
||||
import type { MenuButton, MenuComponent, Services, WorkspaceSlots } from '@editor/type';
|
||||
import type { MenuButton, MenuComponent, Services, StageOptions, WorkspaceSlots } from '@editor/type';
|
||||
|
||||
import MagicStage from './viewer/Stage.vue';
|
||||
import Breadcrumb from './Breadcrumb.vue';
|
||||
@ -40,6 +41,8 @@ withDefaults(
|
||||
},
|
||||
);
|
||||
|
||||
const stageOptions = inject<StageOptions>('stageOptions');
|
||||
|
||||
const services = inject<Services>('services');
|
||||
|
||||
const page = computed(() => services?.editorService.get('page'));
|
||||
|
@ -64,8 +64,9 @@ defineOptions({
|
||||
name: 'MEditorStage',
|
||||
});
|
||||
|
||||
withDefaults(
|
||||
const props = withDefaults(
|
||||
defineProps<{
|
||||
stageOptions: StageOptions;
|
||||
stageContentMenu: (MenuButton | MenuComponent)[];
|
||||
disabledStageOverlay?: boolean;
|
||||
customContentMenu?: (menus: (MenuButton | MenuComponent)[], type: string) => (MenuButton | MenuComponent)[];
|
||||
@ -79,7 +80,6 @@ let stage: StageCore | null = null;
|
||||
let runtime: Runtime | null = null;
|
||||
|
||||
const services = inject<Services>('services');
|
||||
const stageOptions = inject<StageOptions>('stageOptions');
|
||||
|
||||
const stageLoading = computed(() => services?.editorService.get('stageLoading') || false);
|
||||
|
||||
@ -100,9 +100,9 @@ watchEffect(() => {
|
||||
if (stage || !page.value) return;
|
||||
|
||||
if (!stageContainer.value) return;
|
||||
if (!(stageOptions?.runtimeUrl || stageOptions?.render) || !root.value) return;
|
||||
if (!(props.stageOptions?.runtimeUrl || props.stageOptions?.render) || !root.value) return;
|
||||
|
||||
stage = useStage(stageOptions);
|
||||
stage = useStage(props.stageOptions);
|
||||
|
||||
stage.on('select', () => {
|
||||
stageWrap.value?.container?.focus();
|
||||
@ -129,6 +129,7 @@ watchEffect(() => {
|
||||
|
||||
onBeforeUnmount(() => {
|
||||
stage?.destroy();
|
||||
services?.editorService.set('stage', null);
|
||||
});
|
||||
|
||||
watch(zoom, (zoom) => {
|
||||
@ -216,7 +217,9 @@ const dropHandler = async (e: DragEvent) => {
|
||||
e.preventDefault();
|
||||
|
||||
const doc = stage?.renderer?.contentWindow?.document;
|
||||
const parentEl: HTMLElement | null | undefined = doc?.querySelector(`.${stageOptions?.containerHighlightClassName}`);
|
||||
const parentEl: HTMLElement | null | undefined = doc?.querySelector(
|
||||
`.${props.stageOptions?.containerHighlightClassName}`,
|
||||
);
|
||||
|
||||
let parent: MContainer | undefined | null = page.value;
|
||||
const parentId = getIdFromEl()(parentEl);
|
||||
|
@ -445,6 +445,9 @@ export default class ActionManager extends EventEmitter {
|
||||
};
|
||||
this.emit('remove', data);
|
||||
})
|
||||
.on(AbleActionEventType.RERENDER, () => {
|
||||
this.emit('rerender');
|
||||
})
|
||||
.on('drag-start', (e: OnDragStart) => {
|
||||
this.emit('drag-start', e);
|
||||
});
|
||||
|
@ -57,6 +57,21 @@ export default (
|
||||
return React.createElement('button', options.props || {}, ...(options.children || []));
|
||||
}),
|
||||
|
||||
React.createElement(
|
||||
'button',
|
||||
{
|
||||
className: 'moveable-button moveable-rerender-button',
|
||||
title: '重新渲染',
|
||||
onClick: () => {
|
||||
handler(AbleActionEventType.RERENDER);
|
||||
},
|
||||
},
|
||||
React.createElement('img', {
|
||||
src: 'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJpY29uIGljb24tdGFibGVyIGljb24tdGFibGVyLXJlcGxhY2UiIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZT0iI2ZmZmZmZiIgZmlsbD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIj4KICA8cGF0aCBzdHJva2U9Im5vbmUiIGQ9Ik0wIDBoMjR2MjRIMHoiIGZpbGw9Im5vbmUiLz4KICA8cmVjdCB4PSIzIiB5PSIzIiB3aWR0aD0iNiIgaGVpZ2h0PSI2IiByeD0iMSIgLz4KICA8cmVjdCB4PSIxNSIgeT0iMTUiIHdpZHRoPSI2IiBoZWlnaHQ9IjYiIHJ4PSIxIiAvPgogIDxwYXRoIGQ9Ik0yMSAxMXYtM2EyIDIgMCAwIDAgLTIgLTJoLTZsMyAzbTAgLTZsLTMgMyIgLz4KICA8cGF0aCBkPSJNMyAxM3YzYTIgMiAwIDAgMCAyIDJoNmwtMyAtM20wIDZsMyAtMyIgLz4KPC9zdmc+CgoK',
|
||||
width: '16',
|
||||
height: '16',
|
||||
}),
|
||||
),
|
||||
React.createElement(
|
||||
'button',
|
||||
{
|
||||
|
@ -373,6 +373,9 @@ export default class StageCore extends EventEmitter {
|
||||
.on('select-parent', () => {
|
||||
this.emit('select-parent');
|
||||
})
|
||||
.on('rerender', () => {
|
||||
this.emit('rerender');
|
||||
})
|
||||
.on('remove', (data: RemoveEventData) => {
|
||||
this.emit('remove', data);
|
||||
});
|
||||
|
@ -77,6 +77,7 @@ export const SELECTED_CLASS = 'tmagic-stage-selected-area';
|
||||
export enum AbleActionEventType {
|
||||
SELECT_PARENT = 'select-parent',
|
||||
REMOVE = 'remove',
|
||||
RERENDER = 'rerender',
|
||||
}
|
||||
|
||||
/** 将组件添加到容器的方式 */
|
||||
|
@ -106,3 +106,8 @@
|
||||
top: 50%;;
|
||||
}
|
||||
|
||||
.moveable-rerender-button img {
|
||||
position: absolute;
|
||||
left: 2px;
|
||||
top: 2px;
|
||||
}
|
||||
|
@ -251,6 +251,7 @@ export interface CoreEvents {
|
||||
update: [data: UpdateEventData];
|
||||
sort: [data: SortEventData];
|
||||
'select-parent': [];
|
||||
rerender: [];
|
||||
remove: [data: RemoveEventData];
|
||||
highlight: [highlightEl: HTMLElement];
|
||||
mousemove: [event: MouseEvent];
|
||||
@ -283,6 +284,7 @@ export interface ActionManagerEvents {
|
||||
sort: [data: SortEventData];
|
||||
remove: [data: RemoveEventData];
|
||||
select: [selectedEl: HTMLElement | null, event: MouseEvent];
|
||||
rerender: [];
|
||||
'select-parent': [];
|
||||
'drag-start': [event: OnDragStart];
|
||||
'multi-update': [data: UpdateEventData];
|
||||
@ -297,6 +299,7 @@ export interface DrEvents {
|
||||
'update-moveable': [];
|
||||
[AbleActionEventType.REMOVE]: [];
|
||||
[AbleActionEventType.SELECT_PARENT]: [];
|
||||
[AbleActionEventType.RERENDER]: [];
|
||||
'drag-start': [event: OnDragStart];
|
||||
update: [data: UpdateEventData];
|
||||
sort: [data: SortEventData];
|
||||
|
Loading…
x
Reference in New Issue
Block a user