tmagic-editor/packages/editor/src/fields/PageFragmentSelect.vue

65 lines
1.7 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="m-fields-page-fragment-select">
<div class="page-fragment-select-container">
<!-- 页面片下拉框 -->
<m-form-container
class="select"
:config="selectConfig"
:model="model"
:size="size"
@change="changeHandler"
></m-form-container>
<!-- 编辑按钮 -->
<Icon v-if="model[name]" class="icon" :icon="Edit" @click="editPageFragment(model[name])"></Icon>
</div>
</div>
</template>
<script lang="ts" setup>
import { computed } from 'vue';
import { Edit } from '@element-plus/icons-vue';
import { Id, NodeType } from '@tmagic/core';
import { FieldProps } from '@tmagic/form';
import Icon from '@editor/components/Icon.vue';
import { useServices } from '@editor/hooks/use-services';
import type { PageFragmentSelectConfig } from '@editor/type';
defineOptions({
name: 'MFieldsPageFragmentSelect',
});
const { editorService } = useServices();
const emit = defineEmits(['change']);
const props = withDefaults(defineProps<FieldProps<PageFragmentSelectConfig>>(), {
disabled: false,
});
const pageList = computed(() =>
editorService.get('root')?.items.filter((item) => item.type === NodeType.PAGE_FRAGMENT),
);
const selectConfig = {
type: 'select',
name: props.name,
options: () => {
if (pageList.value) {
return pageList.value.map((item) => ({
text: `${item.devconfig?.tabName || item.title || item.name}${item.id}`,
label: `${item.devconfig?.tabName || item.title || item.name}${item.id}`,
value: item.id,
}));
}
return [];
},
};
const changeHandler = async () => {
emit('change', props.model[props.name]);
};
const editPageFragment = (id: Id) => {
editorService.select(id);
};
</script>