You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.0 KiB
76 lines
2.0 KiB
import { SetupContext, VNode } from 'vue';
|
|
import { getOptionProps } from '../_util/props-util';
|
|
|
|
interface ColProps {
|
|
child: VNode;
|
|
bordered: boolean;
|
|
colon: boolean;
|
|
type?: 'label' | 'content';
|
|
layout?: 'horizontal' | 'vertical';
|
|
colKey?: string
|
|
}
|
|
const Col = (_props: ColProps, { attrs }: SetupContext) => {
|
|
const { child = {} as VNode, bordered, colon, type, layout, colKey: key } = attrs as unknown as ColProps;
|
|
const { prefixCls, span = 1 } = getOptionProps(child);
|
|
const { children = {} as any, props = {} } = child;
|
|
const label = props.label || (children.label && children.label());
|
|
const defaultSlot = children.default && children.default();
|
|
|
|
const labelProps: any = {
|
|
class: [
|
|
`${prefixCls}-item-label`,
|
|
{
|
|
[`${prefixCls}-item-colon`]: colon,
|
|
[`${prefixCls}-item-no-label`]: !label,
|
|
},
|
|
],
|
|
key: `${key}-label`,
|
|
};
|
|
|
|
if (layout === 'vertical') {
|
|
labelProps.colspan = span * 2 - 1;
|
|
}
|
|
|
|
if (bordered) {
|
|
if (type === 'label') {
|
|
return <th {...labelProps}>{label}</th>;
|
|
}
|
|
return (
|
|
<td class={`${prefixCls}-item-content`} key={`${key}-content`} colspan={span * 2 - 1}>
|
|
{defaultSlot}
|
|
</td>
|
|
);
|
|
}
|
|
if (layout === 'vertical') {
|
|
if (type === 'content') {
|
|
return (
|
|
<td colspan={span} class={`${prefixCls}-item`}>
|
|
<span class={`${prefixCls}-item-content`} key={`${key}-content`}>
|
|
{defaultSlot}
|
|
</span>
|
|
</td>
|
|
);
|
|
}
|
|
return (
|
|
<td colspan={span} class={`${prefixCls}-item`}>
|
|
<span
|
|
class={[`${prefixCls}-item-label`, { [`${prefixCls}-item-colon`]: colon }]}
|
|
key={`${key}-label`}
|
|
>
|
|
{label}
|
|
</span>
|
|
</td>
|
|
);
|
|
}
|
|
return (
|
|
<td colspan={span} class={`${prefixCls}-item`}>
|
|
<span {...labelProps}>{label}</span>
|
|
<span class={`${prefixCls}-item-content`} key={`${key}-content`}>
|
|
{defaultSlot}
|
|
</span>
|
|
</td>
|
|
);
|
|
};
|
|
|
|
export default Col;
|