mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
93 lines
2.0 KiB
JavaScript
93 lines
2.0 KiB
JavaScript
import { ref, watch, nextTick } from 'vue';
|
|
import { createNamespace } from '../utils';
|
|
import { TABS_KEY } from '../tabs';
|
|
|
|
// Composition
|
|
import { useParent } from '@vant/use';
|
|
import { routeProps } from '../composition/use-route';
|
|
|
|
const [createComponent, bem] = createNamespace('tab');
|
|
|
|
export default createComponent({
|
|
props: {
|
|
...routeProps,
|
|
dot: Boolean,
|
|
name: [Number, String],
|
|
badge: [Number, String],
|
|
title: String,
|
|
titleStyle: null,
|
|
disabled: Boolean,
|
|
},
|
|
|
|
setup(props, { slots }) {
|
|
const root = ref();
|
|
const inited = ref(false);
|
|
const { parent, index } = useParent(TABS_KEY);
|
|
|
|
if (!parent) {
|
|
throw new Error('[Vant] Tabs: <van-tab> must be used inside <van-tabs>');
|
|
}
|
|
|
|
const getName = () => props.name ?? index.value;
|
|
|
|
const init = () => {
|
|
inited.value = true;
|
|
|
|
if (parent.props.lazyRender) {
|
|
nextTick(() => {
|
|
parent.emit('rendered', getName(), props.title);
|
|
});
|
|
}
|
|
};
|
|
|
|
const isActive = () => {
|
|
const active = getName() === parent.currentName.value;
|
|
|
|
if (active && !inited.value) {
|
|
init();
|
|
}
|
|
|
|
return active;
|
|
};
|
|
|
|
watch(
|
|
() => props.title,
|
|
() => {
|
|
parent.setLine();
|
|
}
|
|
);
|
|
|
|
return () => {
|
|
if (!slots.default) {
|
|
return;
|
|
}
|
|
|
|
const { animated, scrollspy, lazyRender } = parent.props;
|
|
const active = isActive();
|
|
const show = scrollspy || active;
|
|
|
|
const shouldRender = inited.value || scrollspy || !lazyRender;
|
|
const Content = shouldRender ? slots.default?.() : null;
|
|
|
|
if (animated) {
|
|
return (
|
|
<div
|
|
ref={root}
|
|
role="tabpanel"
|
|
aria-hidden={!active}
|
|
class={bem('pane-wrapper', { inactive: !active })}
|
|
>
|
|
<div class={bem('pane')}>{Content}</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div v-show={show} ref={root} role="tabpanel" class={bem('pane')}>
|
|
{Content}
|
|
</div>
|
|
);
|
|
};
|
|
},
|
|
});
|