Files
NSG_PORTAL_V2/components/dynamic-page/page-section/templates/index.vue
T
2024-07-05 11:02:04 +07:00

43 lines
1.1 KiB
Vue

<script lang="ts" setup>
import type { PageSection } from "@/server/models/dynamic-page/index";
import { enumPageSectionKey } from "@/definitions/enum";
import { None_Section,Category_Section, Article_Section } from "./index";
const _props = defineProps<{
settings?: any;
content?: any;
section?: any;
}>();
const definedDynamicSection: Record<string, any> = {
[enumPageSectionKey.NONE]: None_Section,
[enumPageSectionKey.CATEGORY]: Category_Section,
[enumPageSectionKey.ARTICLE]: Article_Section,
};
const getCurrentSection = computed(() => {
return _props.section?.taxonomy;
});
const GET_PROPS = computed(() => {
return () => {
let props: any = {};
if (_props.settings) {
for (const [key, value] of Object.entries(_props.settings)) {
props = {
...props,
[key]: value,
};
}
}
return props;
};
});
</script>
<template>
<component v-if="definedDynamicSection[getCurrentSection]" :is="definedDynamicSection[getCurrentSection]" v-bind="{ ...GET_PROPS(), section: _props.section, content: _props.content, settings: _props.settings }">
<slot />
</component>
</template>