mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-06 03:57:56 +08:00
feat(playground): 添加form、table playground入口
This commit is contained in:
parent
2ed4557536
commit
f80825331e
@ -40,7 +40,7 @@ $ pnpm playground
|
|||||||
|
|
||||||
最后在浏览器中打开
|
最后在浏览器中打开
|
||||||
|
|
||||||
http://localhost:8098/
|
http://localhost:8098/tmagic-editor/playground/
|
||||||
|
|
||||||
即可得到一个魔方编辑器示例项目
|
即可得到一个魔方编辑器示例项目
|
||||||
|
|
||||||
|
83
playground/src/configs/componentGroupList.ts
Normal file
83
playground/src/configs/componentGroupList.ts
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
import { FolderOpened, Grid, PictureFilled, SwitchButton, Tickets } from '@element-plus/icons';
|
||||||
|
|
||||||
|
export default [
|
||||||
|
{
|
||||||
|
title: '示例容器',
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
icon: FolderOpened,
|
||||||
|
text: '组',
|
||||||
|
type: 'container',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: FolderOpened,
|
||||||
|
text: '蒙层',
|
||||||
|
type: 'overlay',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '示例组件',
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
icon: Tickets,
|
||||||
|
text: '文本',
|
||||||
|
type: 'text',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: SwitchButton,
|
||||||
|
text: '按钮',
|
||||||
|
type: 'button',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: PictureFilled,
|
||||||
|
text: '图片',
|
||||||
|
type: 'img',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: Grid,
|
||||||
|
text: '二维码',
|
||||||
|
type: 'qrcode',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '组合',
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
icon: Tickets,
|
||||||
|
text: '弹窗',
|
||||||
|
data: {
|
||||||
|
type: 'overlay',
|
||||||
|
style: {
|
||||||
|
position: 'fixed',
|
||||||
|
width: '100%',
|
||||||
|
height: '100%',
|
||||||
|
top: 0,
|
||||||
|
left: 0,
|
||||||
|
backgroundColor: 'rgba(0, 0, 0, 0.8)',
|
||||||
|
},
|
||||||
|
name: '弹窗',
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
type: 'container',
|
||||||
|
style: {
|
||||||
|
position: 'absolute',
|
||||||
|
width: '80%',
|
||||||
|
height: '400',
|
||||||
|
top: '143.87',
|
||||||
|
left: 37.5,
|
||||||
|
backgroundColor: 'rgba(255, 255, 255, 1)',
|
||||||
|
backgroundRepeat: 'no-repeat',
|
||||||
|
backgroundSize: '100% 100%',
|
||||||
|
},
|
||||||
|
name: '组',
|
||||||
|
items: [],
|
||||||
|
layout: 'absolute',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
];
|
@ -27,16 +27,8 @@
|
|||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent, ref, toRaw } from 'vue';
|
import { defineComponent, ref, toRaw } from 'vue';
|
||||||
import {
|
import { useRouter } from 'vue-router';
|
||||||
Coin,
|
import { Coin, Connection, Document } from '@element-plus/icons';
|
||||||
Connection,
|
|
||||||
Document,
|
|
||||||
FolderOpened,
|
|
||||||
Grid,
|
|
||||||
PictureFilled,
|
|
||||||
SwitchButton,
|
|
||||||
Tickets,
|
|
||||||
} from '@element-plus/icons';
|
|
||||||
import { ElMessage, ElMessageBox } from 'element-plus';
|
import { ElMessage, ElMessageBox } from 'element-plus';
|
||||||
import serialize from 'serialize-javascript';
|
import serialize from 'serialize-javascript';
|
||||||
|
|
||||||
@ -45,7 +37,8 @@ import { Id, NodeType } from '@tmagic/schema';
|
|||||||
import StageCore from '@tmagic/stage';
|
import StageCore from '@tmagic/stage';
|
||||||
import { asyncLoadJs } from '@tmagic/utils';
|
import { asyncLoadJs } from '@tmagic/utils';
|
||||||
|
|
||||||
import config from '../config';
|
import componentGroupList from '../configs/componentGroupList';
|
||||||
|
import dsl from '../configs/dsl';
|
||||||
|
|
||||||
const { VITE_RUNTIME_PATH } = import.meta.env;
|
const { VITE_RUNTIME_PATH } = import.meta.env;
|
||||||
|
|
||||||
@ -53,10 +46,11 @@ export default defineComponent({
|
|||||||
name: 'EditorApp',
|
name: 'EditorApp',
|
||||||
|
|
||||||
setup() {
|
setup() {
|
||||||
|
const router = useRouter();
|
||||||
const editor = ref<InstanceType<typeof TMagicEditor>>();
|
const editor = ref<InstanceType<typeof TMagicEditor>>();
|
||||||
const previewVisible = ref(false);
|
const previewVisible = ref(false);
|
||||||
const value = ref(config);
|
const value = ref(dsl);
|
||||||
const defaultSelected = ref(config.items[0].id);
|
const defaultSelected = ref(dsl.items[0].id);
|
||||||
const propsValues = ref<Record<string, any>>({});
|
const propsValues = ref<Record<string, any>>({});
|
||||||
const propsConfigs = ref<Record<string, any>>({});
|
const propsConfigs = ref<Record<string, any>>({});
|
||||||
const eventMethodList = ref<Record<string, any>>({});
|
const eventMethodList = ref<Record<string, any>>({});
|
||||||
@ -81,12 +75,23 @@ export default defineComponent({
|
|||||||
],
|
],
|
||||||
center: ['delete', 'undo', 'redo', 'guides', 'rule', 'zoom'],
|
center: ['delete', 'undo', 'redo', 'guides', 'rule', 'zoom'],
|
||||||
right: [
|
right: [
|
||||||
|
{
|
||||||
|
type: 'button',
|
||||||
|
text: 'Form Playground',
|
||||||
|
handler: () => router.push('form'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'button',
|
||||||
|
text: 'Table Playground',
|
||||||
|
handler: () => router.push('table'),
|
||||||
|
},
|
||||||
|
'/',
|
||||||
{
|
{
|
||||||
type: 'button',
|
type: 'button',
|
||||||
text: '预览',
|
text: '预览',
|
||||||
icon: Connection,
|
icon: Connection,
|
||||||
handler: async () => {
|
handler: async (services) => {
|
||||||
if (editor.value?.editorService.get<Map<Id, Id>>('modifiedNodeIds').size > 0) {
|
if (services?.editorService.get<Map<Id, Id>>('modifiedNodeIds').size > 0) {
|
||||||
try {
|
try {
|
||||||
await ElMessageBox.confirm('有修改未保存,是否先保存再预览', '提示', {
|
await ElMessageBox.confirm('有修改未保存,是否先保存再预览', '提示', {
|
||||||
confirmButtonText: '保存并预览',
|
confirmButtonText: '保存并预览',
|
||||||
@ -148,87 +153,7 @@ export default defineComponent({
|
|||||||
|
|
||||||
runtimeUrl: `${VITE_RUNTIME_PATH}/playground.html`,
|
runtimeUrl: `${VITE_RUNTIME_PATH}/playground.html`,
|
||||||
|
|
||||||
componentGroupList: ref([
|
componentGroupList,
|
||||||
{
|
|
||||||
title: '示例容器',
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
icon: FolderOpened,
|
|
||||||
text: '组',
|
|
||||||
type: 'container',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: FolderOpened,
|
|
||||||
text: '蒙层',
|
|
||||||
type: 'overlay',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '示例组件',
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
icon: Tickets,
|
|
||||||
text: '文本',
|
|
||||||
type: 'text',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: SwitchButton,
|
|
||||||
text: '按钮',
|
|
||||||
type: 'button',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: PictureFilled,
|
|
||||||
text: '图片',
|
|
||||||
type: 'img',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: Grid,
|
|
||||||
text: '二维码',
|
|
||||||
type: 'qrcode',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: '组合',
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
icon: Tickets,
|
|
||||||
text: '弹窗',
|
|
||||||
data: {
|
|
||||||
type: 'overlay',
|
|
||||||
style: {
|
|
||||||
position: 'fixed',
|
|
||||||
width: '100%',
|
|
||||||
height: '100%',
|
|
||||||
top: 0,
|
|
||||||
left: 0,
|
|
||||||
backgroundColor: 'rgba(0, 0, 0, 0.8)',
|
|
||||||
},
|
|
||||||
name: '弹窗',
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
type: 'container',
|
|
||||||
style: {
|
|
||||||
position: 'absolute',
|
|
||||||
width: '80%',
|
|
||||||
height: '400',
|
|
||||||
top: '143.87',
|
|
||||||
left: 37.5,
|
|
||||||
backgroundColor: 'rgba(255, 255, 255, 1)',
|
|
||||||
backgroundRepeat: 'no-repeat',
|
|
||||||
backgroundSize: '100% 100%',
|
|
||||||
},
|
|
||||||
name: '组',
|
|
||||||
items: [],
|
|
||||||
layout: 'absolute',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]),
|
|
||||||
|
|
||||||
moveableOptions: (core?: StageCore): MoveableOptions => {
|
moveableOptions: (core?: StageCore): MoveableOptions => {
|
||||||
const options: MoveableOptions = {};
|
const options: MoveableOptions = {};
|
||||||
@ -283,5 +208,11 @@ html {
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.menu-left {
|
||||||
|
.menu-item-text {
|
||||||
|
margin-left: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user