mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-09-20 05:29:58 +08:00
72 lines
1.7 KiB
Vue
72 lines
1.7 KiB
Vue
<template>
|
|
<div>
|
|
<component
|
|
:is="containerComponent"
|
|
:iterator-index="iteratorIndex"
|
|
:iterator-container-id="iteratorContainerId"
|
|
:page-fragment-container-id="config.id"
|
|
:config="containerConfig"
|
|
:model="model"
|
|
></component>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { computed, defineComponent, type PropType, provide } from 'vue-demi';
|
|
|
|
import { type Id, type MComponent, NodeType, PAGE_FRAGMENT_CONTAINER_ID_KEY } from '@tmagic/core';
|
|
import { registerNodeHooks, useApp, useComponent, useDsl } from '@tmagic/vue-runtime-help';
|
|
|
|
export default defineComponent({
|
|
name: 'tmagic-page-fragment-container',
|
|
|
|
props: {
|
|
config: {
|
|
type: Object as PropType<MComponent>,
|
|
required: true,
|
|
},
|
|
iteratorIndex: Array as PropType<number[]>,
|
|
iteratorContainerId: Array as PropType<Id[]>,
|
|
containerIndex: Number,
|
|
pageFragmentContainerId: [String, Number] as PropType<Id>,
|
|
model: {
|
|
type: Object,
|
|
default: () => ({}),
|
|
},
|
|
},
|
|
|
|
setup(props) {
|
|
provide(PAGE_FRAGMENT_CONTAINER_ID_KEY, props.config.id);
|
|
|
|
const { app, node } = useApp(props);
|
|
registerNodeHooks(node);
|
|
|
|
const containerComponent = useComponent({ componentType: 'container', app });
|
|
|
|
if (!props.config.id) {
|
|
throw new Error('page-fragment-container must have id');
|
|
}
|
|
|
|
const { pageConfig: fragment } = useDsl(app, props.config.id);
|
|
|
|
const containerConfig = computed(() => {
|
|
if (!fragment.value) return { items: [], id: '', type: NodeType.CONTAINER };
|
|
|
|
return fragment.value;
|
|
});
|
|
|
|
return {
|
|
containerComponent,
|
|
containerConfig,
|
|
};
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style scoped>
|
|
.in-editor .magic-ui-page-fragment-container {
|
|
min-width: 100px;
|
|
min-height: 100px;
|
|
}
|
|
</style>
|