mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-06-28 05:07:59 +08:00
45 lines
1.3 KiB
TypeScript
45 lines
1.3 KiB
TypeScript
import { defineComponent, VNode } from 'vue';
|
|
import { IUIMountable } from './shared';
|
|
import { SetupComponentOptions } from './types';
|
|
|
|
export interface UIContainerProps {
|
|
controller: IUIMountable;
|
|
}
|
|
|
|
const containerConfig = {
|
|
props: ['controller']
|
|
} satisfies SetupComponentOptions<UIContainerProps>;
|
|
|
|
export const UIContainer = defineComponent<UIContainerProps>(props => {
|
|
const data = props.controller;
|
|
const back = data.backIns;
|
|
return (): VNode[] => {
|
|
const elements: VNode[] = [];
|
|
const b = back.value;
|
|
if (b && data.showBack.value && !b.hidden) {
|
|
elements.push(
|
|
<b.ui.component
|
|
{...b.vBind}
|
|
controller={data}
|
|
instance={b}
|
|
key={b.key}
|
|
hidden={b.hidden && !b.alwaysShow}
|
|
zIndex={0}
|
|
></b.ui.component>
|
|
);
|
|
}
|
|
return elements.concat(
|
|
data.stack.map((v, i) => (
|
|
<v.ui.component
|
|
{...v.vBind}
|
|
key={v.key}
|
|
controller={data}
|
|
instance={v}
|
|
hidden={v.hidden && !v.alwaysShow}
|
|
zIndex={i * 5}
|
|
></v.ui.component>
|
|
))
|
|
);
|
|
};
|
|
}, containerConfig);
|