mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
feat(Tab): add scrollTo method (#6800)
This commit is contained in:
parent
76c2f5efda
commit
b249c690d7
@ -241,6 +241,7 @@ Use [ref](https://vuejs.org/v2/api/#ref) to get Tabs instance and call instance
|
|||||||
| Name | Description | Attribute | Return value |
|
| Name | Description | Attribute | Return value |
|
||||||
| --- | --- | --- | --- |
|
| --- | --- | --- | --- |
|
||||||
| resize | Resize Tabs when container element resized | - | void |
|
| resize | Resize Tabs when container element resized | - | void |
|
||||||
|
| scrollTo `v2.9.3` | Go to specified tab in scrollspy mode | name | void |
|
||||||
|
|
||||||
### Tabs Slots
|
### Tabs Slots
|
||||||
|
|
||||||
|
@ -244,8 +244,9 @@ export default {
|
|||||||
通过 ref 可以获取到 Tabs 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
|
通过 ref 可以获取到 Tabs 实例并调用实例方法,详见[组件实例方法](#/zh-CN/quickstart#zu-jian-shi-li-fang-fa)
|
||||||
|
|
||||||
| 方法名 | 说明 | 参数 | 返回值 |
|
| 方法名 | 说明 | 参数 | 返回值 |
|
||||||
| ------ | -------------------------------------------- | ---- | ------ |
|
| --- | --- | --- | --- |
|
||||||
| resize | 外层元素大小变化后,可以调用此方法来触发重绘 | - | void |
|
| resize | 外层元素大小变化后,可以调用此方法来触发重绘 | - | void |
|
||||||
|
| scrollTo `v2.9.3` | 滚动到指定的标签页,在滚动导航模式下可用 | name: 标识符 | void |
|
||||||
|
|
||||||
### Tabs Slots
|
### Tabs Slots
|
||||||
|
|
||||||
|
@ -229,7 +229,7 @@ exports[`render nav-left & nav-right slot 1`] = `
|
|||||||
|
|
||||||
exports[`rendered event 1`] = `<div role="tabpanel" class="van-tab__pane" style="">Text</div>`;
|
exports[`rendered event 1`] = `<div role="tabpanel" class="van-tab__pane" style="">Text</div>`;
|
||||||
|
|
||||||
exports[`scrollspy 1`] = `
|
exports[`scrollspy prop 1`] = `
|
||||||
<div class="van-tabs van-tabs--line">
|
<div class="van-tabs van-tabs--line">
|
||||||
<div>
|
<div>
|
||||||
<div class="van-sticky">
|
<div class="van-sticky">
|
||||||
@ -251,7 +251,7 @@ exports[`scrollspy 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`scrollspy 2`] = `
|
exports[`scrollspy prop 2`] = `
|
||||||
<div class="van-tabs van-tabs--line">
|
<div class="van-tabs van-tabs--line">
|
||||||
<div>
|
<div>
|
||||||
<div class="van-sticky">
|
<div class="van-sticky">
|
||||||
|
@ -258,7 +258,7 @@ test('info prop', () => {
|
|||||||
expect(wrapper).toMatchSnapshot();
|
expect(wrapper).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
test('scrollspy', async () => {
|
test('scrollspy prop', async () => {
|
||||||
const onChange = jest.fn();
|
const onChange = jest.fn();
|
||||||
window.scrollTo = jest.fn();
|
window.scrollTo = jest.fn();
|
||||||
|
|
||||||
@ -288,6 +288,30 @@ test('scrollspy', async () => {
|
|||||||
expect(onChange).toHaveBeenCalledWith('c', 'title3');
|
expect(onChange).toHaveBeenCalledWith('c', 'title3');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('scrollTo method', async () => {
|
||||||
|
const onChange = jest.fn();
|
||||||
|
window.scrollTo = jest.fn();
|
||||||
|
|
||||||
|
mount({
|
||||||
|
template: `
|
||||||
|
<van-tabs scrollspy sticky @change="onChange" ref="root">
|
||||||
|
<van-tab name="a" title="title1">Text</van-tab>
|
||||||
|
<van-tab name="b" title="title2">Text</van-tab>
|
||||||
|
<van-tab name="c" title="title3">Text</van-tab>
|
||||||
|
</van-tabs>
|
||||||
|
`,
|
||||||
|
methods: {
|
||||||
|
onChange,
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.$refs.root.scrollTo('b');
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
await later();
|
||||||
|
expect(onChange).toHaveBeenCalledWith('b', 'title2');
|
||||||
|
});
|
||||||
|
|
||||||
test('rendered event', async () => {
|
test('rendered event', async () => {
|
||||||
const onRendered = jest.fn();
|
const onRendered = jest.fn();
|
||||||
|
|
||||||
|
@ -299,7 +299,15 @@ export default createComponent({
|
|||||||
this.$emit('scroll', params);
|
this.$emit('scroll', params);
|
||||||
},
|
},
|
||||||
|
|
||||||
scrollToCurrentContent() {
|
// @exposed-api
|
||||||
|
scrollTo(name) {
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.setCurrentIndexByName(name);
|
||||||
|
this.scrollToCurrentContent(true);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
scrollToCurrentContent(immediate = false) {
|
||||||
if (this.scrollspy) {
|
if (this.scrollspy) {
|
||||||
const target = this.children[this.currentIndex];
|
const target = this.children[this.currentIndex];
|
||||||
const el = target?.$el;
|
const el = target?.$el;
|
||||||
@ -308,7 +316,7 @@ export default createComponent({
|
|||||||
const to = getElementTop(el, this.scroller) - this.scrollOffset;
|
const to = getElementTop(el, this.scroller) - this.scrollOffset;
|
||||||
|
|
||||||
this.lockScroll = true;
|
this.lockScroll = true;
|
||||||
scrollTopTo(this.scroller, to, +this.duration, () => {
|
scrollTopTo(this.scroller, to, immediate ? 0 : +this.duration, () => {
|
||||||
this.lockScroll = false;
|
this.lockScroll = false;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
2
types/tabs.d.ts
vendored
2
types/tabs.d.ts
vendored
@ -2,4 +2,6 @@ import { VanComponent } from './component';
|
|||||||
|
|
||||||
export class Tabs extends VanComponent {
|
export class Tabs extends VanComponent {
|
||||||
resize(): void;
|
resize(): void;
|
||||||
|
|
||||||
|
scrollTo(name: string | number): void;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user