39 lines
1.0 KiB
Vue
39 lines
1.0 KiB
Vue
<script lang="ts" setup>
|
|
import { enumPageComponentTemplate, enumPageComponentKey, enumPageComponentLayouts } from "@/definitions/enum";
|
|
import { Navigation_Default } from "./index";
|
|
|
|
const _props = defineProps<{
|
|
settings: any;
|
|
component?: any;
|
|
content?: any
|
|
}>();
|
|
|
|
const definedDynamicComponent: Record<string, any> = {
|
|
[enumPageComponentLayouts[enumPageComponentTemplate[enumPageComponentKey.NAVIGATION]['BOTTOM']]['NAVIGATION_BOTTOM_DEFAULT']]: Navigation_Default,
|
|
};
|
|
|
|
const getCurrentComponent = computed(() => _props.settings.layout);
|
|
|
|
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
|
|
:is="definedDynamicComponent[getCurrentComponent]"
|
|
v-bind="{ ...GET_PROPS(), component: _props.component, settings: _props.settings, content: _props.content }"
|
|
/>
|
|
</template>
|