mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
fix(runtime): vue playgound 中dsl更新没有同步到Core中
This commit is contained in:
parent
f1f100f952
commit
b6652624e3
@ -19,7 +19,7 @@
|
||||
import React, { useContext } from 'react';
|
||||
|
||||
import Core from '@tmagic/core';
|
||||
import type { Page } from '@tmagic/schema';
|
||||
import type { MPage } from '@tmagic/schema';
|
||||
import { AppContent } from '@tmagic/ui-react';
|
||||
|
||||
function App() {
|
||||
@ -31,7 +31,7 @@ function App() {
|
||||
|
||||
const MagicUiPage = app.resolveComponent('page');
|
||||
|
||||
return <MagicUiPage config={app?.page?.data as Page}></MagicUiPage>;
|
||||
return <MagicUiPage config={app?.page?.data as MPage}></MagicUiPage>;
|
||||
}
|
||||
|
||||
export default App;
|
||||
|
@ -9,17 +9,17 @@
|
||||
<style>
|
||||
html,
|
||||
body,
|
||||
#app {
|
||||
#root {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#app {
|
||||
#root {
|
||||
position: relative;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
#app::-webkit-scrollbar {
|
||||
#root::-webkit-scrollbar {
|
||||
width: 0 !important;
|
||||
display: none;
|
||||
}
|
||||
|
@ -19,12 +19,12 @@
|
||||
|
||||
html,
|
||||
body,
|
||||
#app {
|
||||
#root {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#app {
|
||||
#root {
|
||||
position: relative;
|
||||
overflow: auto;
|
||||
}
|
||||
|
@ -29,6 +29,12 @@ import plugins from '../.tmagic/plugin-entry';
|
||||
|
||||
import App from './App';
|
||||
|
||||
declare global {
|
||||
interface Window {
|
||||
appInstance: Core;
|
||||
}
|
||||
}
|
||||
|
||||
const designWidth = document.documentElement.getBoundingClientRect().width;
|
||||
|
||||
const app = new Core({
|
||||
@ -107,7 +113,7 @@ const operations = {
|
||||
|
||||
sortNode({ root }: SortEventData) {
|
||||
console.log('sort config', root);
|
||||
updateConfig(root);
|
||||
root && updateConfig(root);
|
||||
},
|
||||
|
||||
remove({ root }: RemoveData) {
|
||||
|
@ -6,13 +6,14 @@
|
||||
import { computed, defineComponent, nextTick, provide, reactive, ref, watch } from 'vue';
|
||||
|
||||
import Core from '@tmagic/core';
|
||||
import type { Id, MApp, MNode } from '@tmagic/schema';
|
||||
import type { Id, MApp, MNode, MPage } from '@tmagic/schema';
|
||||
import { Magic, RemoveData, UpdateData } from '@tmagic/stage';
|
||||
import { getNodePath } from '@tmagic/utils';
|
||||
|
||||
declare global {
|
||||
interface Window {
|
||||
magic: Magic;
|
||||
appInstance: Core;
|
||||
}
|
||||
}
|
||||
|
||||
@ -34,7 +35,7 @@ export default defineComponent({
|
||||
platform: 'editor',
|
||||
});
|
||||
|
||||
globalThis.appInstance = app;
|
||||
window.appInstance = app;
|
||||
|
||||
provide('app', app);
|
||||
|
||||
@ -64,6 +65,11 @@ export default defineComponent({
|
||||
select(id: Id) {
|
||||
console.log('select config', id);
|
||||
selectedId.value = id;
|
||||
|
||||
if (app.getPage(id)) {
|
||||
this.updatePageId?.(id);
|
||||
}
|
||||
|
||||
const el = document.getElementById(`${id}`);
|
||||
if (el) return el;
|
||||
// 未在当前文档下找到目标元素,可能是还未渲染,等待渲染完成后再尝试获取
|
||||
@ -80,6 +86,13 @@ export default defineComponent({
|
||||
const parent = getNodePath(parentId, [root.value]).pop();
|
||||
if (!parent) throw new Error('未找到父节点');
|
||||
|
||||
if (config.type === 'page') {
|
||||
app?.addPage(config as MPage);
|
||||
} else {
|
||||
const parentNode = app?.page?.getNode(parent.id);
|
||||
parentNode && app?.page?.initNode(config, parentNode);
|
||||
}
|
||||
|
||||
if (parent.id !== selectedId.value) {
|
||||
const index = parent.items?.findIndex((child: MNode) => child.id === selectedId.value);
|
||||
parent.items?.splice(index + 1, 0, config);
|
||||
@ -101,16 +114,30 @@ export default defineComponent({
|
||||
const parent = getNodePath(parentId, [root.value]).pop();
|
||||
if (!parent) throw new Error('未找到父节点');
|
||||
|
||||
const nodeInstance = app.page?.getNode(config.id);
|
||||
if (nodeInstance) {
|
||||
nodeInstance.setData(config);
|
||||
}
|
||||
|
||||
const index = parent.items?.findIndex((child: MNode) => child.id === node.id);
|
||||
parent.items.splice(index, 1, reactive(config));
|
||||
},
|
||||
|
||||
remove({ id, parentId }: RemoveData) {
|
||||
if (!root.value) throw new Error('error');
|
||||
|
||||
const node = getNodePath(id, [root.value]).pop();
|
||||
if (!node) throw new Error('未找到目标元素');
|
||||
|
||||
const parent = getNodePath(parentId, [root.value]).pop();
|
||||
if (!parent) throw new Error('未找到父元素');
|
||||
|
||||
if (node.type === 'page') {
|
||||
app?.deletePage(node.id);
|
||||
} else {
|
||||
app.page?.deleteNode(node.id);
|
||||
}
|
||||
|
||||
const index = parent.items?.findIndex((child: MNode) => child.id === node.id);
|
||||
parent.items.splice(index, 1);
|
||||
},
|
||||
|
@ -6,7 +6,7 @@
|
||||
import { computed, defineComponent, nextTick, provide, reactive, ref, watch } from 'vue';
|
||||
|
||||
import Core from '@tmagic/core';
|
||||
import type { Id, MApp, MNode } from '@tmagic/schema';
|
||||
import type { Id, MApp, MNode, MPage } from '@tmagic/schema';
|
||||
import { Magic, RemoveData, UpdateData } from '@tmagic/stage';
|
||||
import { getNodePath } from '@tmagic/utils';
|
||||
|
||||
@ -33,7 +33,7 @@ export default defineComponent({
|
||||
platform: 'editor',
|
||||
});
|
||||
|
||||
globalThis.appInstance = app;
|
||||
window.appInstance = app;
|
||||
|
||||
provide('app', app);
|
||||
|
||||
@ -63,6 +63,11 @@ export default defineComponent({
|
||||
select(id: Id) {
|
||||
console.log('select config', id);
|
||||
selectedId.value = id;
|
||||
|
||||
if (app.getPage(id)) {
|
||||
this.updatePageId?.(id);
|
||||
}
|
||||
|
||||
const el = document.getElementById(`${id}`);
|
||||
if (el) return el;
|
||||
// 未在当前文档下找到目标元素,可能是还未渲染,等待渲染完成后再尝试获取
|
||||
@ -78,6 +83,14 @@ export default defineComponent({
|
||||
|
||||
const parent = getNodePath(parentId, [root.value]).pop();
|
||||
if (!parent) throw new Error('未找到父节点');
|
||||
|
||||
if (config.type === 'page') {
|
||||
app?.addPage(config as MPage);
|
||||
} else {
|
||||
const parentNode = app?.page?.getNode(parent.id);
|
||||
parentNode && app?.page?.initNode(config, parentNode);
|
||||
}
|
||||
|
||||
if (parent.id !== selectedId.value) {
|
||||
const index = parent.items?.findIndex((child: MNode) => child.id === selectedId.value);
|
||||
parent.items?.splice(index + 1, 0, config);
|
||||
@ -98,6 +111,12 @@ export default defineComponent({
|
||||
|
||||
if (!node) throw new Error('未找到目标节点');
|
||||
if (!parent) throw new Error('未找到父节点');
|
||||
|
||||
const nodeInstance = app.page?.getNode(config.id);
|
||||
if (nodeInstance) {
|
||||
nodeInstance.setData(config);
|
||||
}
|
||||
|
||||
const index = parent.items?.findIndex((child: MNode) => child.id === node.id);
|
||||
parent.items.splice(index, 1, reactive(config));
|
||||
},
|
||||
@ -111,6 +130,12 @@ export default defineComponent({
|
||||
const parent = getNodePath(parentId, [root.value]).pop();
|
||||
if (!parent) throw new Error('未找到父元素');
|
||||
|
||||
if (node.type === 'page') {
|
||||
app?.deletePage(node.id);
|
||||
} else {
|
||||
app.page?.deleteNode(node.id);
|
||||
}
|
||||
|
||||
const index = parent.items?.findIndex((child: MNode) => child.id === node.id);
|
||||
parent.items.splice(index, 1);
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user