75 lines
2.1 KiB
Vue
75 lines
2.1 KiB
Vue
import UpOutlined from '@ant-design/icons-vue/UpOutlined';
|
|
import DownOutlined from '@ant-design/icons-vue/DownOutlined';
|
|
import LeftOutlined from '@ant-design/icons-vue/LeftOutlined';
|
|
import RightOutlined from '@ant-design/icons-vue/RightOutlined';
|
|
import ScrollableInkTabBar from '../vc-tabs/src/ScrollableInkTabBar';
|
|
import { cloneElement } from '../_util/vnode';
|
|
const TabBar = {
|
|
functional: true,
|
|
render(h, context) {
|
|
const {
|
|
tabBarStyle,
|
|
animated = true,
|
|
renderTabBar,
|
|
tabBarExtraContent,
|
|
tabPosition,
|
|
prefixCls,
|
|
type = 'line',
|
|
size,
|
|
} = context.props;
|
|
const inkBarAnimated = typeof animated === 'object' ? animated.inkBar : animated;
|
|
|
|
const isVertical = tabPosition === 'left' || tabPosition === 'right';
|
|
const prevIcon = (
|
|
<span class={`${prefixCls}-tab-prev-icon`}>
|
|
{
|
|
isVertical ?
|
|
<UpOutlined class={`${prefixCls}-tab-prev-icon-target`} /> :
|
|
<LeftOutlined class={`${prefixCls}-tab-prev-icon-target`} />
|
|
}
|
|
</span>
|
|
);
|
|
const nextIcon = (
|
|
<span class={`${prefixCls}-tab-next-icon`}>
|
|
{
|
|
isVertical ?
|
|
<DownOutlined class={`${prefixCls}-tab-next-icon-target`} /> :
|
|
<RightOutlined class={`${prefixCls}-tab-next-icon-target`} />
|
|
}
|
|
</span>
|
|
);
|
|
|
|
// Additional className for style usage
|
|
const cls = {
|
|
[`${prefixCls}-${tabPosition}-bar`]: true,
|
|
[`${prefixCls}-${size}-bar`]: !!size,
|
|
[`${prefixCls}-card-bar`]: type && type.indexOf('card') >= 0,
|
|
};
|
|
|
|
const renderProps = {
|
|
props: {
|
|
...context.props,
|
|
inkBarAnimated,
|
|
extraContent: tabBarExtraContent,
|
|
prevIcon,
|
|
nextIcon,
|
|
},
|
|
style: tabBarStyle,
|
|
on: context.listeners,
|
|
class: cls,
|
|
};
|
|
|
|
let RenderTabBar;
|
|
|
|
if (renderTabBar) {
|
|
RenderTabBar = renderTabBar(renderProps, ScrollableInkTabBar);
|
|
} else {
|
|
RenderTabBar = <ScrollableInkTabBar {...renderProps} />;
|
|
}
|
|
|
|
return cloneElement(RenderTabBar, renderProps);
|
|
},
|
|
};
|
|
|
|
export default TabBar;
|