// Utils
import { createNamespace, isDef } from '../utils';
import { cellProps } from './shared';
// Composition
import { useRoute, routeProps } from '../composition/use-route';
// Components
import Icon from '../icon';
const [createComponent, bem] = createNamespace('cell');
export default createComponent({
props: {
...cellProps,
...routeProps,
},
setup(props, { slots }) {
const route = useRoute();
const renderLabel = () => {
const showLabel = slots.label || isDef(props.label);
if (showLabel) {
return (
{slots.label ? slots.label() : props.label}
);
}
};
const renderTitle = () => {
if (slots.title || isDef(props.title)) {
return (
{slots.title ? slots.title() : {props.title}}
{renderLabel()}
);
}
};
const renderValue = () => {
const hasTitle = slots.title || isDef(props.title);
const hasValue = slots.default || isDef(props.value);
if (hasValue) {
return (
{slots.default ? slots.default() : {props.value}}
);
}
};
const renderLeftIcon = () => {
if (slots.icon) {
return slots.icon();
}
if (props.icon) {
return (
);
}
};
const renderRightIcon = () => {
if (slots['right-icon']) {
return slots['right-icon']();
}
if (props.isLink) {
const name = props.arrowDirection
? `arrow-${props.arrowDirection}`
: 'arrow';
return ;
}
};
return () => {
const { size, center, border, isLink, required } = props;
const clickable = isLink || props.clickable;
const classes = {
center,
required,
clickable,
borderless: !border,
};
if (size) {
classes[size] = size;
}
return (
{renderLeftIcon()}
{renderTitle()}
{renderValue()}
{renderRightIcon()}
{slots.extra?.()}
);
};
},
});