import Icon from '../icon' import VcTabs, { TabPane } from '../vc-tabs/src' import ScrollableInkTabBar from '../vc-tabs/src/ScrollableInkTabBar' import TabContent from '../vc-tabs/src/TabContent' import isFlexSupported from '../_util/isFlexSupported' import { hasProp, getComponentFromProp, isEmptyElement, getSlotOptions, getOptionProps, filterEmpty, mergeProps } from '../_util/props-util' import warning from '../_util/warning' import { cloneElement } from '../_util/vnode' export default { TabPane, name: 'ATabs', props: { prefixCls: { type: String, default: 'ant-tabs' }, activeKey: String, defaultActiveKey: String, hideAdd: { type: Boolean, default: false }, tabBarStyle: Object, tabBarExtraContent: [String, Number, Function], destroyInactiveTabPane: { type: Boolean, default: false }, type: { validator (value) { return ['line', 'card', 'editable-card'].includes(value) }, }, tabPosition: { validator (value) { return ['top', 'right', 'bottom', 'left'].includes(value) }, }, size: { validator (value) { return ['default', 'small', 'large'].includes(value) }, }, animated: { type: [Boolean, Object], default: undefined }, tabBarGutter: Number, }, model: { prop: 'activeKey', event: 'change', }, methods: { createNewTab (targetKey) { this.$emit('edit', targetKey, 'add') }, removeTab (targetKey, e) { e.stopPropagation() if (!targetKey) { return } this.$emit('edit', targetKey, 'remove') }, handleChange (activeKey) { this.$emit('change', activeKey) }, onTabClick (val) { this.$emit('tabClick', val) }, onPrevClick (val) { this.$emit('prevClick', val) }, onNextClick (val) { this.$emit('nextClick', val) }, }, mounted () { const NO_FLEX = ' no-flex' const tabNode = this.$el if (tabNode && !isFlexSupported() && tabNode.className.indexOf(NO_FLEX) === -1) { tabNode.className += NO_FLEX } }, render (createElement) { const { prefixCls, size, type = 'line', tabPosition, tabBarStyle, hideAdd, onTabClick, onPrevClick, onNextClick, animated, tabBarGutter, } = this const children = filterEmpty(this.$slots.default) let tabBarExtraContent = getComponentFromProp(this, 'tabBarExtraContent') let { inkBarAnimated, tabPaneAnimated } = typeof animated === 'object' ? { // eslint-disable-line inkBarAnimated: !!animated.inkBar, tabPaneAnimated: !!animated.tabPane, } : { inkBarAnimated: animated === undefined || animated, tabPaneAnimated: animated === undefined || animated, } // card tabs should not have animation if (type !== 'line') { tabPaneAnimated = animated === undefined ? false : tabPaneAnimated } const cls = { [`${prefixCls}-small`]: size === 'small', [`${prefixCls}-large`]: size === 'large', [`${prefixCls}-default`]: size === 'default', [`${prefixCls}-vertical`]: tabPosition === 'left' || tabPosition === 'right', [`${prefixCls}-card`]: type.indexOf('card') >= 0, [`${prefixCls}-${type}`]: true, [`${prefixCls}-no-animation`]: !tabPaneAnimated, } // only card type tabs can be added and closed let childrenWithClose = [] if (type === 'editable-card') { childrenWithClose = [] children.forEach((child, index) => { const props = getOptionProps(child) let closable = props.closable closable = typeof closable === 'undefined' ? true : closable const closeIcon = closable ? ( this.removeTab(child.key, e)} /> ) : null childrenWithClose.push(cloneElement(child, { props: { tab: (
{getComponentFromProp(child, 'tab')} {closeIcon}
), }, key: child.key || index, })) }) // Add new tab handler if (!hideAdd) { tabBarExtraContent = ( {tabBarExtraContent} ) } } tabBarExtraContent = tabBarExtraContent ? (
{tabBarExtraContent}
) : null const renderTabBar = () => { const scrollableInkTabBarProps = { props: { inkBarAnimated, extraContent: tabBarExtraContent, tabBarGutter, }, on: { tabClick: onTabClick, prevClick: onPrevClick, nextClick: onNextClick, }, style: tabBarStyle, } return } const tabsProps = { props: { ...getOptionProps(this), tabBarPosition: tabPosition, renderTabBar: renderTabBar, renderTabContent: () => , children: childrenWithClose.length > 0 ? childrenWithClose : children, __propsSymbol__: Symbol(), }, on: { ...this.$listeners, change: this.handleChange, }, class: cls, } return ( ) }, }