mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2026-04-23 10:18:55 +00:00
52 lines
1.3 KiB
Vue
52 lines
1.3 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" setup>
|
|
import { computed, provide } from 'vue';
|
|
|
|
import { type MComponent, NodeType, PAGE_FRAGMENT_CONTAINER_ID_KEY } from '@tmagic/core';
|
|
import { type ComponentProps, registerNodeHooks, useApp, useComponent, useDsl } from '@tmagic/vue-runtime-help';
|
|
|
|
defineOptions({
|
|
name: 'tmagic-page-fragment-container',
|
|
});
|
|
|
|
const props = defineProps<ComponentProps<MComponent>>();
|
|
|
|
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;
|
|
});
|
|
</script>
|
|
|
|
<style scoped>
|
|
.in-editor .magic-ui-page-fragment-container {
|
|
min-width: 100px;
|
|
min-height: 100px;
|
|
}
|
|
</style>
|