mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 07:27:09 +08:00
fix: 迭代器内的组件配置了声明周期代码块无效
This commit is contained in:
parent
9e4da0a5c2
commit
60d2b64aa5
@ -20,7 +20,7 @@ import EventEmitter from 'events';
|
|||||||
|
|
||||||
import { cloneDeep } from 'lodash-es';
|
import { cloneDeep } from 'lodash-es';
|
||||||
|
|
||||||
import type { default as TMagicApp, IteratorContainer as TMagicIteratorContainer } from '@tmagic/core';
|
import type { default as TMagicApp } from '@tmagic/core';
|
||||||
import type { DataSourceSchema, DisplayCond, Id, MNode, NODE_CONDS_KEY } from '@tmagic/schema';
|
import type { DataSourceSchema, DisplayCond, Id, MNode, NODE_CONDS_KEY } from '@tmagic/schema';
|
||||||
import { compiledNode } from '@tmagic/utils';
|
import { compiledNode } from '@tmagic/utils';
|
||||||
|
|
||||||
@ -227,7 +227,7 @@ class DataSourceManager extends EventEmitter {
|
|||||||
* @returns {boolean}是否显示
|
* @returns {boolean}是否显示
|
||||||
*/
|
*/
|
||||||
public compliedIteratorItemConds(
|
public compliedIteratorItemConds(
|
||||||
itemData: any[],
|
itemData: any,
|
||||||
node: { [NODE_CONDS_KEY]?: DisplayCond[] },
|
node: { [NODE_CONDS_KEY]?: DisplayCond[] },
|
||||||
dataSourceField: string[] = [],
|
dataSourceField: string[] = [],
|
||||||
) {
|
) {
|
||||||
@ -239,23 +239,10 @@ class DataSourceManager extends EventEmitter {
|
|||||||
return compliedConditions(node, ctxData);
|
return compliedConditions(node, ctxData);
|
||||||
}
|
}
|
||||||
|
|
||||||
public compliedIteratorItems(
|
public compliedIteratorItems(itemData: any, nodes: MNode[], dataSourceField: string[] = []): MNode[] {
|
||||||
nodeId: Id,
|
|
||||||
itemData: any,
|
|
||||||
nodes: MNode[],
|
|
||||||
dataSourceField: string[] = [],
|
|
||||||
dataIteratorContainerId?: Id[],
|
|
||||||
dataIteratorIndex?: number[],
|
|
||||||
) {
|
|
||||||
const iteratorContainer = this.app.getNode<TMagicIteratorContainer>(
|
|
||||||
nodeId,
|
|
||||||
dataIteratorContainerId,
|
|
||||||
dataIteratorIndex,
|
|
||||||
);
|
|
||||||
|
|
||||||
const [dsId, ...keys] = dataSourceField;
|
const [dsId, ...keys] = dataSourceField;
|
||||||
const ds = this.get(dsId);
|
const ds = this.get(dsId);
|
||||||
if (!ds || !iteratorContainer) return nodes;
|
if (!ds) return nodes;
|
||||||
|
|
||||||
const ctxData = createIteratorContentData(itemData, ds.id, keys, this.data);
|
const ctxData = createIteratorContentData(itemData, ds.id, keys, this.data);
|
||||||
|
|
||||||
|
@ -206,6 +206,11 @@ export interface PastePosition {
|
|||||||
|
|
||||||
export type MNode = MComponent | MContainer | MIteratorContainer | MPage | MApp | MPageFragment;
|
export type MNode = MComponent | MContainer | MIteratorContainer | MPage | MApp | MPageFragment;
|
||||||
|
|
||||||
|
export interface MNodeInstance extends Omit<MNode, 'id'> {
|
||||||
|
id?: Id;
|
||||||
|
type?: string;
|
||||||
|
}
|
||||||
|
|
||||||
export enum HookType {
|
export enum HookType {
|
||||||
/** 代码块钩子标识 */
|
/** 代码块钩子标识 */
|
||||||
CODE = 'code',
|
CODE = 'code',
|
||||||
|
@ -20,7 +20,7 @@ import dayjs from 'dayjs';
|
|||||||
import utc from 'dayjs/plugin/utc';
|
import utc from 'dayjs/plugin/utc';
|
||||||
import { cloneDeep, set as objectSet } from 'lodash-es';
|
import { cloneDeep, set as objectSet } from 'lodash-es';
|
||||||
|
|
||||||
import type { DataSchema, DataSourceDeps, Id, MComponent, MNode } from '@tmagic/schema';
|
import type { DataSchema, DataSourceDeps, Id, MComponent, MNode, MNodeInstance } from '@tmagic/schema';
|
||||||
import { NodeType } from '@tmagic/schema';
|
import { NodeType } from '@tmagic/schema';
|
||||||
|
|
||||||
export * from './dom';
|
export * from './dom';
|
||||||
@ -449,3 +449,6 @@ export const addParamToUrl = (obj: Record<string, any>, global = globalThis, nee
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const dataSourceTemplateRegExp = /\$\{([\s\S]+?)\}/g;
|
export const dataSourceTemplateRegExp = /\$\{([\s\S]+?)\}/g;
|
||||||
|
|
||||||
|
export const isDslNode = (config: MNodeInstance) =>
|
||||||
|
typeof config[IS_DSL_NODE_KEY] === 'undefined' || config[IS_DSL_NODE_KEY] === true;
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
"types": "dist/index.d.ts",
|
"types": "dist/index.d.ts",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": {
|
".": {
|
||||||
"types": "./types/index.d.ts",
|
"types": "./dist/index.d.ts",
|
||||||
"import": "./dist/index.js"
|
"import": "./dist/index.js"
|
||||||
},
|
},
|
||||||
"./*": "./*"
|
"./*": "./*"
|
||||||
|
@ -19,10 +19,10 @@
|
|||||||
import { inject, onBeforeUnmount, onMounted } from 'vue-demi';
|
import { inject, onBeforeUnmount, onMounted } from 'vue-demi';
|
||||||
|
|
||||||
import type TMagicApp from '@tmagic/core';
|
import type TMagicApp from '@tmagic/core';
|
||||||
import type { Id, MNode } from '@tmagic/schema';
|
import type { Id, MNodeInstance } from '@tmagic/schema';
|
||||||
import { IS_DSL_NODE_KEY } from '@tmagic/utils';
|
import { isDslNode } from '@tmagic/utils';
|
||||||
|
|
||||||
interface UseAppOptions<T extends MNode = MNode> {
|
interface UseAppOptions<T extends MNodeInstance = MNodeInstance> {
|
||||||
config: T;
|
config: T;
|
||||||
iteratorContainerId?: Id[];
|
iteratorContainerId?: Id[];
|
||||||
iteratorIndex?: number[];
|
iteratorIndex?: number[];
|
||||||
@ -31,9 +31,7 @@ interface UseAppOptions<T extends MNode = MNode> {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const isDslNode = (config: MNode) => typeof config[IS_DSL_NODE_KEY] === 'undefined' || config[IS_DSL_NODE_KEY] === true;
|
export const useApp = ({ methods = {}, config, iteratorContainerId, iteratorIndex }: UseAppOptions) => {
|
||||||
|
|
||||||
export default ({ methods, config, iteratorContainerId, iteratorIndex }: UseAppOptions) => {
|
|
||||||
const app: TMagicApp | undefined = inject('app');
|
const app: TMagicApp | undefined = inject('app');
|
||||||
|
|
||||||
const emitData = {
|
const emitData = {
|
||||||
@ -41,7 +39,7 @@ export default ({ methods, config, iteratorContainerId, iteratorIndex }: UseAppO
|
|||||||
...methods,
|
...methods,
|
||||||
};
|
};
|
||||||
|
|
||||||
const display = <T extends MNode>(config: T) => {
|
const display = <T extends MNodeInstance>(config: T) => {
|
||||||
if (config.visible === false) return false;
|
if (config.visible === false) return false;
|
||||||
if (config.condResult === false) return false;
|
if (config.condResult === false) return false;
|
||||||
|
|
||||||
@ -54,7 +52,7 @@ export default ({ methods, config, iteratorContainerId, iteratorIndex }: UseAppO
|
|||||||
return displayCfg !== false;
|
return displayCfg !== false;
|
||||||
};
|
};
|
||||||
|
|
||||||
const node = isDslNode(config) ? app?.getNode(config.id || '', iteratorContainerId, iteratorIndex) : undefined;
|
const node = isDslNode(config) && config.id ? app?.getNode(config.id, iteratorContainerId, iteratorIndex) : undefined;
|
||||||
|
|
||||||
if (node) {
|
if (node) {
|
||||||
node.emit('created', emitData);
|
node.emit('created', emitData);
|
@ -1,3 +1,3 @@
|
|||||||
export * from './hooks/use-editor-dsl';
|
export * from './hooks/use-editor-dsl';
|
||||||
export * from './hooks/use-dsl';
|
export * from './hooks/use-dsl';
|
||||||
export { default as useApp } from './useApp';
|
export * from './hooks/use-app';
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<button class="magic-ui-button">
|
<button>
|
||||||
<slot>
|
<slot>
|
||||||
<p>{{ config?.text || '' }}</p>
|
{{ config?.text || '' }}
|
||||||
</slot>
|
</slot>
|
||||||
</button>
|
</button>
|
||||||
</template>
|
</template>
|
||||||
@ -9,11 +9,12 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent, type PropType } from 'vue-demi';
|
import { defineComponent, type PropType } from 'vue-demi';
|
||||||
|
|
||||||
import type { MComponent } from '@tmagic/schema';
|
import type { Id, MComponent } from '@tmagic/schema';
|
||||||
import { useApp } from '@tmagic/vue-runtime-help';
|
import { useApp } from '@tmagic/vue-runtime-help';
|
||||||
|
|
||||||
interface ButtonSchema extends MComponent {
|
interface ButtonSchema extends Omit<MComponent, 'id'> {
|
||||||
type: 'button';
|
id?: Id;
|
||||||
|
type?: 'button';
|
||||||
text: string;
|
text: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -23,6 +24,8 @@ export default defineComponent({
|
|||||||
type: Object as PropType<ButtonSchema>,
|
type: Object as PropType<ButtonSchema>,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
|
iteratorIndex: Array as PropType<number[]>,
|
||||||
|
iteratorContainerId: Array as PropType<Id[]>,
|
||||||
model: {
|
model: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default: () => ({}),
|
default: () => ({}),
|
||||||
@ -33,6 +36,8 @@ export default defineComponent({
|
|||||||
useApp({
|
useApp({
|
||||||
config: props.config,
|
config: props.config,
|
||||||
methods: {},
|
methods: {},
|
||||||
|
iteratorContainerId: props.iteratorContainerId,
|
||||||
|
iteratorIndex: props.iteratorIndex,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -1,12 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<div
|
<div v-if="display(config)" :class="className" :style="style">
|
||||||
v-if="display(config)"
|
|
||||||
:data-tmagic-id="`${config.id}`"
|
|
||||||
:data-tmagic-iterator-index="iteratorIndex"
|
|
||||||
:data-tmagic-iterator-container-id="iteratorContainerId"
|
|
||||||
:class="className"
|
|
||||||
:style="app?.transformStyle(config.style || {})"
|
|
||||||
>
|
|
||||||
<slot>
|
<slot>
|
||||||
<template v-for="(item, index) in config.items">
|
<template v-for="(item, index) in config.items">
|
||||||
<component
|
<component
|
||||||
@ -14,12 +7,15 @@
|
|||||||
:key="item.id"
|
:key="item.id"
|
||||||
:is="`magic-ui-${toLine(item.type)}`"
|
:is="`magic-ui-${toLine(item.type)}`"
|
||||||
:data-tmagic-id="item.id"
|
:data-tmagic-id="item.id"
|
||||||
:data-tmagic-container-index="index"
|
|
||||||
:data-tmagic-iterator-index="iteratorIndex"
|
:data-tmagic-iterator-index="iteratorIndex"
|
||||||
:data-tmagic-iterator-container-id="iteratorContainerId"
|
:data-tmagic-iterator-container-id="iteratorContainerId"
|
||||||
:class="`${item.className || ''}`"
|
:data-container-index="index"
|
||||||
|
:class="item.className ? `${item.className} magic-ui-${toLine(item.type)}` : `magic-ui-${toLine(item.type)}`"
|
||||||
:style="app?.transformStyle(item.style || {})"
|
:style="app?.transformStyle(item.style || {})"
|
||||||
:config="{ ...item, [IS_DSL_NODE_KEY]: true }"
|
:config="{ ...item, [IS_DSL_NODE_KEY]: true }"
|
||||||
|
:container-index="index"
|
||||||
|
:iterator-index="iteratorIndex"
|
||||||
|
:iterator-container-id="iteratorContainerId"
|
||||||
></component>
|
></component>
|
||||||
</template>
|
</template>
|
||||||
</slot>
|
</slot>
|
||||||
@ -33,10 +29,15 @@ import type { Id, MContainer } from '@tmagic/schema';
|
|||||||
import { IS_DSL_NODE_KEY, toLine } from '@tmagic/utils';
|
import { IS_DSL_NODE_KEY, toLine } from '@tmagic/utils';
|
||||||
import { useApp } from '@tmagic/vue-runtime-help';
|
import { useApp } from '@tmagic/vue-runtime-help';
|
||||||
|
|
||||||
|
interface ContainerSchema extends Omit<MContainer, 'id'> {
|
||||||
|
id?: Id;
|
||||||
|
type?: 'container';
|
||||||
|
}
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
props: {
|
props: {
|
||||||
config: {
|
config: {
|
||||||
type: Object as PropType<MContainer>,
|
type: Object as PropType<ContainerSchema>,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
iteratorIndex: Array as PropType<number[]>,
|
iteratorIndex: Array as PropType<number[]>,
|
||||||
@ -50,6 +51,8 @@ export default defineComponent({
|
|||||||
setup(props) {
|
setup(props) {
|
||||||
const { display, app } = useApp({
|
const { display, app } = useApp({
|
||||||
config: props.config,
|
config: props.config,
|
||||||
|
iteratorContainerId: props.iteratorContainerId,
|
||||||
|
iteratorIndex: props.iteratorIndex,
|
||||||
methods: {},
|
methods: {},
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -64,9 +67,17 @@ export default defineComponent({
|
|||||||
return list.join(' ');
|
return list.join(' ');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const style = computed(() => {
|
||||||
|
if (props.config[IS_DSL_NODE_KEY]) {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
return app?.transformStyle(props.config.style || {});
|
||||||
|
});
|
||||||
|
|
||||||
return {
|
return {
|
||||||
app,
|
app,
|
||||||
className,
|
className,
|
||||||
|
style,
|
||||||
IS_DSL_NODE_KEY,
|
IS_DSL_NODE_KEY,
|
||||||
|
|
||||||
display,
|
display,
|
||||||
|
@ -1,17 +1,18 @@
|
|||||||
<template>
|
<template>
|
||||||
<img class="magic-ui-img" :src="config.src" @click="clickHandler" />
|
<img :src="config.src" @click="clickHandler" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent, type PropType } from 'vue-demi';
|
import { defineComponent, type PropType } from 'vue-demi';
|
||||||
|
|
||||||
import type { MComponent } from '@tmagic/schema';
|
import type { Id, MComponent } from '@tmagic/schema';
|
||||||
import { useApp } from '@tmagic/vue-runtime-help';
|
import { useApp } from '@tmagic/vue-runtime-help';
|
||||||
|
|
||||||
interface ImgSchema extends MComponent {
|
interface ImgSchema extends Omit<MComponent, 'id'> {
|
||||||
type: 'img';
|
id?: Id;
|
||||||
|
type?: 'img';
|
||||||
src: string;
|
src: string;
|
||||||
url: string;
|
url?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
@ -20,6 +21,8 @@ export default defineComponent({
|
|||||||
type: Object as PropType<ImgSchema>,
|
type: Object as PropType<ImgSchema>,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
|
iteratorIndex: Array as PropType<number[]>,
|
||||||
|
iteratorContainerId: Array as PropType<Id[]>,
|
||||||
model: {
|
model: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default: () => ({}),
|
default: () => ({}),
|
||||||
@ -33,6 +36,8 @@ export default defineComponent({
|
|||||||
|
|
||||||
useApp({
|
useApp({
|
||||||
config: props.config,
|
config: props.config,
|
||||||
|
iteratorContainerId: props.iteratorContainerId,
|
||||||
|
iteratorIndex: props.iteratorIndex,
|
||||||
methods: {},
|
methods: {},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
"@tmagic/core": "workspace:*",
|
"@tmagic/core": "workspace:*",
|
||||||
"@tmagic/schema": "workspace:*",
|
"@tmagic/schema": "workspace:*",
|
||||||
"@tmagic/utils": "workspace:*",
|
"@tmagic/utils": "workspace:*",
|
||||||
"@tmagic/vue-container": "workspace:*",
|
|
||||||
"@tmagic/vue-runtime-help": "workspace:*",
|
"@tmagic/vue-runtime-help": "workspace:*",
|
||||||
"@vue/composition-api": ">=1.7.2",
|
"@vue/composition-api": ">=1.7.2",
|
||||||
"typescript": "*",
|
"typescript": "*",
|
||||||
|
@ -1,16 +1,12 @@
|
|||||||
<template>
|
<template>
|
||||||
<div
|
<div>
|
||||||
class="magic-ui-iterator-container"
|
<magic-ui-container
|
||||||
:data-iterator-index="dataTmagicIteratorIndex"
|
|
||||||
:data-iterator-container-id="dataTmagicIteratorContainerId"
|
|
||||||
>
|
|
||||||
<TMagicContainer
|
|
||||||
v-for="(item, index) in configs"
|
v-for="(item, index) in configs"
|
||||||
:iterator-index="[...(dataTmagicIteratorIndex || []), index]"
|
:iterator-index="[...(iteratorIndex || []), index]"
|
||||||
:iterator-container-id="[...(dataTmagicIteratorContainerId || []), config.id]"
|
:iterator-container-id="[...(iteratorContainerId || []), config.id]"
|
||||||
:key="index"
|
:key="index"
|
||||||
:config="item"
|
:config="item"
|
||||||
></TMagicContainer>
|
></magic-ui-container>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -18,22 +14,30 @@
|
|||||||
import { computed, defineComponent, type PropType, watch } from 'vue-demi';
|
import { computed, defineComponent, type PropType, watch } from 'vue-demi';
|
||||||
|
|
||||||
import type { IteratorContainer as TMagicIteratorContainer } from '@tmagic/core';
|
import type { IteratorContainer as TMagicIteratorContainer } from '@tmagic/core';
|
||||||
import { type Id, type MIteratorContainer, NodeType } from '@tmagic/schema';
|
import type { Id, MIteratorContainer, MNode } from '@tmagic/schema';
|
||||||
import TMagicContainer from '@tmagic/vue-container';
|
|
||||||
import { useApp } from '@tmagic/vue-runtime-help';
|
import { useApp } from '@tmagic/vue-runtime-help';
|
||||||
|
|
||||||
export default defineComponent({
|
interface IteratorContainerSchema extends Omit<MIteratorContainer, 'id'> {
|
||||||
components: {
|
id?: Id;
|
||||||
TMagicContainer,
|
type?: 'iterator-container';
|
||||||
},
|
}
|
||||||
|
|
||||||
|
interface IteratorItemSchema {
|
||||||
|
items: MNode[];
|
||||||
|
condResult: boolean;
|
||||||
|
style: {
|
||||||
|
[key: string]: any;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
export default defineComponent({
|
||||||
props: {
|
props: {
|
||||||
config: {
|
config: {
|
||||||
type: Object as PropType<MIteratorContainer>,
|
type: Object as PropType<IteratorContainerSchema>,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
dataTmagicIteratorIndex: Array as PropType<number[]>,
|
iteratorIndex: Array as PropType<number[]>,
|
||||||
dataTmagicIteratorContainerId: Array as PropType<Id[]>,
|
iteratorContainerId: Array as PropType<Id[]>,
|
||||||
model: {
|
model: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default: () => ({}),
|
default: () => ({}),
|
||||||
@ -43,14 +47,14 @@ export default defineComponent({
|
|||||||
setup(props) {
|
setup(props) {
|
||||||
const { app } = useApp({
|
const { app } = useApp({
|
||||||
config: props.config,
|
config: props.config,
|
||||||
iteratorContainerId: props.dataTmagicIteratorContainerId,
|
iteratorContainerId: props.iteratorContainerId,
|
||||||
iteratorIndex: props.dataTmagicIteratorIndex,
|
iteratorIndex: props.iteratorIndex,
|
||||||
methods: {},
|
methods: {},
|
||||||
});
|
});
|
||||||
|
|
||||||
const configs = computed(() => {
|
const configs = computed<IteratorItemSchema[]>(() => {
|
||||||
let { iteratorData = [] } = props.config;
|
let { iteratorData = [] } = props.config;
|
||||||
const { id, itemConfig, dsField, items } = props.config;
|
const { itemConfig, dsField, items } = props.config;
|
||||||
|
|
||||||
if (!Array.isArray(iteratorData)) {
|
if (!Array.isArray(iteratorData)) {
|
||||||
iteratorData = [];
|
iteratorData = [];
|
||||||
@ -60,32 +64,22 @@ export default defineComponent({
|
|||||||
iteratorData.push({});
|
iteratorData.push({});
|
||||||
}
|
}
|
||||||
|
|
||||||
return iteratorData.map((itemData) => {
|
return iteratorData.map((itemData: any) => {
|
||||||
const condResult =
|
const condResult =
|
||||||
app?.platform !== 'editor'
|
app?.platform !== 'editor'
|
||||||
? app?.dataSourceManager?.compliedIteratorItemConds(itemData, itemConfig, dsField) ?? true
|
? app?.dataSourceManager?.compliedIteratorItemConds(itemData, itemConfig, dsField) ?? true
|
||||||
: true;
|
: true;
|
||||||
|
|
||||||
const newItems =
|
const newItems = app?.dataSourceManager?.compliedIteratorItems(itemData, items, dsField) ?? items;
|
||||||
app?.dataSourceManager?.compliedIteratorItems(
|
|
||||||
id,
|
|
||||||
itemData,
|
|
||||||
items,
|
|
||||||
dsField,
|
|
||||||
props.dataTmagicIteratorContainerId,
|
|
||||||
props.dataTmagicIteratorIndex,
|
|
||||||
) ?? items;
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
items: newItems,
|
items: newItems,
|
||||||
id: '',
|
|
||||||
type: NodeType.CONTAINER,
|
|
||||||
condResult,
|
condResult,
|
||||||
style: {
|
style: {
|
||||||
...itemConfig.style,
|
|
||||||
position: 'relative',
|
position: 'relative',
|
||||||
left: 0,
|
left: 0,
|
||||||
top: 0,
|
top: 0,
|
||||||
|
...itemConfig.style,
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
@ -94,10 +88,14 @@ export default defineComponent({
|
|||||||
watch(
|
watch(
|
||||||
configs,
|
configs,
|
||||||
(configs) => {
|
(configs) => {
|
||||||
|
if (!props.config.id) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const iteratorContainerNode = app?.getNode<TMagicIteratorContainer>(
|
const iteratorContainerNode = app?.getNode<TMagicIteratorContainer>(
|
||||||
props.config.id,
|
props.config.id,
|
||||||
props.dataTmagicIteratorContainerId,
|
props.iteratorContainerId,
|
||||||
props.dataTmagicIteratorIndex,
|
props.iteratorIndex,
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!iteratorContainerNode) {
|
if (!iteratorContainerNode) {
|
||||||
|
@ -18,7 +18,6 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tmagic/schema": "workspace:*",
|
"@tmagic/schema": "workspace:*",
|
||||||
"@tmagic/vue-container": "workspace:*",
|
|
||||||
"@tmagic/vue-runtime-help": "workspace:*",
|
"@tmagic/vue-runtime-help": "workspace:*",
|
||||||
"vue-demi": ">=0.14.7",
|
"vue-demi": ">=0.14.7",
|
||||||
"typescript": "*"
|
"typescript": "*"
|
||||||
|
@ -1,30 +1,28 @@
|
|||||||
<template>
|
<template>
|
||||||
<TMagicContainer v-if="visible" class="magic-ui-overlay" :config="{ items: config.items }">
|
<magic-ui-container v-if="visible" :config="{ items: config.items }">
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
</TMagicContainer>
|
</magic-ui-container>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent, onBeforeUnmount, type PropType, ref } from 'vue-demi';
|
import { defineComponent, onBeforeUnmount, type PropType, ref } from 'vue-demi';
|
||||||
|
|
||||||
import type { MContainer, MNode, MPage } from '@tmagic/schema';
|
import type { Id, MContainer, MNode, MPage } from '@tmagic/schema';
|
||||||
import TMagicContainer from '@tmagic/vue-container';
|
|
||||||
import { useApp } from '@tmagic/vue-runtime-help';
|
import { useApp } from '@tmagic/vue-runtime-help';
|
||||||
|
|
||||||
interface OverlaySchema extends MContainer {
|
interface OverlaySchema extends Omit<MContainer, 'id'> {
|
||||||
type: 'overlay';
|
id?: Id;
|
||||||
|
type?: 'overlay';
|
||||||
}
|
}
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
components: {
|
|
||||||
TMagicContainer,
|
|
||||||
},
|
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
config: {
|
config: {
|
||||||
type: Object as PropType<OverlaySchema>,
|
type: Object as PropType<OverlaySchema>,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
|
iteratorIndex: Array as PropType<number[]>,
|
||||||
|
iteratorContainerId: Array as PropType<Id[]>,
|
||||||
model: {
|
model: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default: () => ({}),
|
default: () => ({}),
|
||||||
@ -36,6 +34,8 @@ export default defineComponent({
|
|||||||
|
|
||||||
const { app, node } = useApp({
|
const { app, node } = useApp({
|
||||||
config: props.config,
|
config: props.config,
|
||||||
|
iteratorContainerId: props.iteratorContainerId,
|
||||||
|
iteratorIndex: props.iteratorIndex,
|
||||||
methods: {
|
methods: {
|
||||||
openOverlay() {
|
openOverlay() {
|
||||||
visible.value = true;
|
visible.value = true;
|
||||||
|
@ -6,6 +6,7 @@ export default {
|
|||||||
top: 0,
|
top: 0,
|
||||||
left: 0,
|
left: 0,
|
||||||
backgroundColor: 'rgba(0, 0, 0, 0.8)',
|
backgroundColor: 'rgba(0, 0, 0, 0.8)',
|
||||||
|
zIndex: 100,
|
||||||
},
|
},
|
||||||
items: [],
|
items: [],
|
||||||
};
|
};
|
||||||
|
@ -18,7 +18,6 @@
|
|||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tmagic/schema": "workspace:*",
|
"@tmagic/schema": "workspace:*",
|
||||||
"@tmagic/vue-container": "workspace:*",
|
|
||||||
"@tmagic/vue-runtime-help": "workspace:*",
|
"@tmagic/vue-runtime-help": "workspace:*",
|
||||||
"typescript": "*"
|
"typescript": "*"
|
||||||
},
|
},
|
||||||
|
@ -1,26 +1,28 @@
|
|||||||
<template>
|
<template>
|
||||||
<div :id="`${config.id || ''}`" class="magic-ui-page-fragment-container">
|
<div>
|
||||||
<TMagicContainer :config="containerConfig" :model="model"></TMagicContainer>
|
<magic-ui-container
|
||||||
|
:iterator-index="iteratorIndex"
|
||||||
|
:iterator-container-id="iteratorContainerId"
|
||||||
|
:config="containerConfig"
|
||||||
|
:model="model"
|
||||||
|
></magic-ui-container>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { computed, defineComponent, type PropType } from 'vue-demi';
|
import { computed, defineComponent, type PropType } from 'vue-demi';
|
||||||
|
|
||||||
import { type MComponent, type MNode, NodeType } from '@tmagic/schema';
|
import { type Id, type MComponent, type MNode, NodeType } from '@tmagic/schema';
|
||||||
import TMagicContainer from '@tmagic/vue-container';
|
|
||||||
import { useApp } from '@tmagic/vue-runtime-help';
|
import { useApp } from '@tmagic/vue-runtime-help';
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
components: {
|
|
||||||
TMagicContainer,
|
|
||||||
},
|
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
config: {
|
config: {
|
||||||
type: Object as PropType<MComponent>,
|
type: Object as PropType<MComponent>,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
|
iteratorIndex: Array as PropType<number[]>,
|
||||||
|
iteratorContainerId: Array as PropType<Id[]>,
|
||||||
model: {
|
model: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default: () => ({}),
|
default: () => ({}),
|
||||||
@ -31,6 +33,8 @@ export default defineComponent({
|
|||||||
const { app } = useApp({
|
const { app } = useApp({
|
||||||
config: props.config,
|
config: props.config,
|
||||||
methods: {},
|
methods: {},
|
||||||
|
iteratorContainerId: props.iteratorContainerId,
|
||||||
|
iteratorIndex: props.iteratorIndex,
|
||||||
});
|
});
|
||||||
|
|
||||||
const fragment = computed(() => app?.dsl?.items?.find((page) => page.id === props.config.pageFragmentId));
|
const fragment = computed(() => app?.dsl?.items?.find((page) => page.id === props.config.pageFragmentId));
|
||||||
@ -42,7 +46,6 @@ export default defineComponent({
|
|||||||
const itemsWithoutId = items.map((item: MNode) => {
|
const itemsWithoutId = items.map((item: MNode) => {
|
||||||
const { id, ...otherConfig } = item;
|
const { id, ...otherConfig } = item;
|
||||||
return {
|
return {
|
||||||
id: '',
|
|
||||||
...otherConfig,
|
...otherConfig,
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
@ -51,16 +54,12 @@ export default defineComponent({
|
|||||||
return {
|
return {
|
||||||
...others,
|
...others,
|
||||||
items: itemsWithoutId,
|
items: itemsWithoutId,
|
||||||
id: '',
|
|
||||||
type: NodeType.CONTAINER,
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
...others,
|
...others,
|
||||||
items,
|
items,
|
||||||
id: '',
|
|
||||||
type: NodeType.CONTAINER,
|
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tmagic/utils": "workspace:*",
|
"@tmagic/utils": "workspace:*",
|
||||||
"@tmagic/schema": "workspace:*",
|
"@tmagic/schema": "workspace:*",
|
||||||
"@tmagic/vue-container": "workspace:*",
|
|
||||||
"@tmagic/vue-runtime-help": "workspace:*",
|
"@tmagic/vue-runtime-help": "workspace:*",
|
||||||
"typescript": "*"
|
"typescript": "*"
|
||||||
},
|
},
|
||||||
|
@ -1,19 +1,19 @@
|
|||||||
<template>
|
<template>
|
||||||
<TMagicContainer class="magic-ui-page-fragment" :config="config"></TMagicContainer>
|
<magic-ui-container
|
||||||
|
class="magic-ui-page-fragment"
|
||||||
|
:data-tmagic-id="config.id"
|
||||||
|
:config="config"
|
||||||
|
:style="app?.transformStyle(config.style || {})"
|
||||||
|
></magic-ui-container>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent, type PropType } from 'vue-demi';
|
import { defineComponent, type PropType } from 'vue-demi';
|
||||||
|
|
||||||
import type { MPageFragment } from '@tmagic/schema';
|
import type { MPageFragment } from '@tmagic/schema';
|
||||||
import TMagicContainer from '@tmagic/vue-container';
|
|
||||||
import { useApp } from '@tmagic/vue-runtime-help';
|
import { useApp } from '@tmagic/vue-runtime-help';
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
components: {
|
|
||||||
TMagicContainer,
|
|
||||||
},
|
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
config: {
|
config: {
|
||||||
type: Object as PropType<MPageFragment>,
|
type: Object as PropType<MPageFragment>,
|
||||||
@ -26,10 +26,14 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
setup(props) {
|
setup(props) {
|
||||||
useApp({
|
const { app } = useApp({
|
||||||
config: props.config,
|
config: props.config,
|
||||||
methods: {},
|
methods: {},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
app,
|
||||||
|
};
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@tmagic/utils": "workspace:*",
|
"@tmagic/utils": "workspace:*",
|
||||||
"@tmagic/schema": "workspace:*",
|
"@tmagic/schema": "workspace:*",
|
||||||
"@tmagic/vue-container": "workspace:*",
|
|
||||||
"@tmagic/vue-runtime-help": "workspace:*",
|
"@tmagic/vue-runtime-help": "workspace:*",
|
||||||
"typescript": "*"
|
"typescript": "*"
|
||||||
},
|
},
|
||||||
|
@ -1,19 +1,14 @@
|
|||||||
<template>
|
<template>
|
||||||
<TMagicContainer class="magic-ui-page" :config="config"></TMagicContainer>
|
<magic-ui-container class="magic-ui-page" :data-tmagic-id="config.id" :config="config"></magic-ui-container>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent, type PropType } from 'vue-demi';
|
import { defineComponent, type PropType } from 'vue-demi';
|
||||||
|
|
||||||
import type { MPage } from '@tmagic/schema';
|
import type { MPage } from '@tmagic/schema';
|
||||||
import TMagicContainer from '@tmagic/vue-container';
|
|
||||||
import { useApp } from '@tmagic/vue-runtime-help';
|
import { useApp } from '@tmagic/vue-runtime-help';
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
components: {
|
|
||||||
TMagicContainer,
|
|
||||||
},
|
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
config: {
|
config: {
|
||||||
type: Object as PropType<MPage>,
|
type: Object as PropType<MPage>,
|
||||||
@ -30,10 +25,14 @@ export default defineComponent({
|
|||||||
window.location.reload();
|
window.location.reload();
|
||||||
};
|
};
|
||||||
|
|
||||||
useApp({
|
const { app } = useApp({
|
||||||
config: props.config,
|
config: props.config,
|
||||||
methods: { refresh },
|
methods: { refresh },
|
||||||
});
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
app,
|
||||||
|
};
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
@ -1,20 +1,28 @@
|
|||||||
<template>
|
<template>
|
||||||
<img class="magic-ui-qrcode" :src="imgUrl" />
|
<img :src="imgUrl" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent, type PropType, ref, watch } from 'vue-demi';
|
import { defineComponent, type PropType, ref, watch } from 'vue-demi';
|
||||||
import QRCode from 'qrcode';
|
import QRCode from 'qrcode';
|
||||||
|
|
||||||
import type { MComponent } from '@tmagic/schema';
|
import type { Id, MComponent } from '@tmagic/schema';
|
||||||
import { useApp } from '@tmagic/vue-runtime-help';
|
import { useApp } from '@tmagic/vue-runtime-help';
|
||||||
|
|
||||||
|
interface QrCodeSchema extends Omit<MComponent, 'id'> {
|
||||||
|
id?: Id;
|
||||||
|
type?: 'qrcode';
|
||||||
|
url: string;
|
||||||
|
}
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
props: {
|
props: {
|
||||||
config: {
|
config: {
|
||||||
type: Object as PropType<MComponent>,
|
type: Object as PropType<QrCodeSchema>,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
|
iteratorIndex: Array as PropType<number[]>,
|
||||||
|
iteratorContainerId: Array as PropType<Id[]>,
|
||||||
model: {
|
model: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default: () => ({}),
|
default: () => ({}),
|
||||||
@ -40,6 +48,8 @@ export default defineComponent({
|
|||||||
useApp({
|
useApp({
|
||||||
config: props.config,
|
config: props.config,
|
||||||
methods: {},
|
methods: {},
|
||||||
|
iteratorContainerId: props.iteratorContainerId,
|
||||||
|
iteratorIndex: props.iteratorIndex,
|
||||||
});
|
});
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
@ -5,15 +5,23 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { defineComponent, type PropType } from 'vue-demi';
|
import { defineComponent, type PropType } from 'vue-demi';
|
||||||
|
|
||||||
import type { MComponent } from '@tmagic/schema';
|
import type { Id, MComponent } from '@tmagic/schema';
|
||||||
import { useApp } from '@tmagic/vue-runtime-help';
|
import { useApp } from '@tmagic/vue-runtime-help';
|
||||||
|
|
||||||
|
interface TextSchema extends Omit<MComponent, 'id'> {
|
||||||
|
id?: Id;
|
||||||
|
type?: 'text';
|
||||||
|
text: string;
|
||||||
|
}
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
props: {
|
props: {
|
||||||
config: {
|
config: {
|
||||||
type: Object as PropType<MComponent & { type: 'text'; text: string }>,
|
type: Object as PropType<TextSchema>,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
|
iteratorIndex: Array as PropType<number[]>,
|
||||||
|
iteratorContainerId: Array as PropType<Id[]>,
|
||||||
model: {
|
model: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default: () => ({}),
|
default: () => ({}),
|
||||||
@ -24,6 +32,8 @@ export default defineComponent({
|
|||||||
useApp({
|
useApp({
|
||||||
config: props.config,
|
config: props.config,
|
||||||
methods: {},
|
methods: {},
|
||||||
|
iteratorContainerId: props.iteratorContainerId,
|
||||||
|
iteratorIndex: props.iteratorIndex,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user