mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
test(IndexBar): add demo test
This commit is contained in:
parent
0bc139bfb0
commit
7cc0379043
@ -154,6 +154,7 @@
|
||||
"van-circle": "./dist/circle/index",
|
||||
"van-circle-demo": "./dist/circle/demo/index",
|
||||
"van-index-bar": "./dist/index-bar/index",
|
||||
"van-index-bar-demo": "./dist/index-bar/demo/index",
|
||||
"van-index-anchor": "./dist/index-anchor/index",
|
||||
"van-grid": "./dist/grid/index",
|
||||
"van-grid-demo": "./dist/grid/demo/index",
|
||||
|
@ -1,28 +1,3 @@
|
||||
import Page from '../../common/page';
|
||||
|
||||
const indexList = [];
|
||||
const charCodeOfA = 'A'.charCodeAt(0);
|
||||
for (let i = 0; i < 26; i++) {
|
||||
indexList.push(String.fromCharCode(charCodeOfA + i));
|
||||
}
|
||||
|
||||
Page({
|
||||
data: {
|
||||
activeTab: 0,
|
||||
indexList,
|
||||
customIndexList: [1, 2, 3, 4, 5, 6, 8, 9, 10],
|
||||
scrollTop: 0,
|
||||
},
|
||||
|
||||
onChange(event) {
|
||||
this.setData({
|
||||
activeTab: event.detail.name
|
||||
});
|
||||
},
|
||||
|
||||
onPageScroll(event) {
|
||||
this.setData({
|
||||
scrollTop: event.scrollTop
|
||||
});
|
||||
}
|
||||
});
|
||||
Page();
|
||||
|
@ -1,45 +1 @@
|
||||
<van-tabs
|
||||
active="{{ activeTab }}"
|
||||
bind:change="onChange"
|
||||
>
|
||||
<van-tab title="基础用法">
|
||||
<van-index-bar
|
||||
wx:if="{{ activeTab === 0 }}"
|
||||
scroll-top="{{ scrollTop }}"
|
||||
>
|
||||
<view
|
||||
wx:for="{{ indexList }}"
|
||||
wx:for-item="item"
|
||||
wx:key="item"
|
||||
>
|
||||
<van-index-anchor index="{{ item }}" />
|
||||
<van-cell title="文本" />
|
||||
<van-cell title="文本" />
|
||||
<van-cell title="文本" />
|
||||
</view>
|
||||
</van-index-bar>
|
||||
</van-tab>
|
||||
|
||||
<van-tab title="自定义索引列表">
|
||||
<van-index-bar
|
||||
wx:if="{{ activeTab === 1 }}"
|
||||
index-list="{{ customIndexList }}"
|
||||
scroll-top="{{ scrollTop }}"
|
||||
>
|
||||
<view
|
||||
wx:for="{{ customIndexList }}"
|
||||
wx:key="index"
|
||||
>
|
||||
<van-index-anchor
|
||||
use-slot
|
||||
index="{{ item }}"
|
||||
>
|
||||
<text>标题{{ item }}</text>
|
||||
</van-index-anchor>
|
||||
<van-cell title="文本" />
|
||||
<van-cell title="文本" />
|
||||
<van-cell title="文本" />
|
||||
</view>
|
||||
</van-index-bar>
|
||||
</van-tab>
|
||||
</van-tabs>
|
||||
<van-index-bar-demo />
|
||||
|
11
packages/index-bar/demo/index.json
Normal file
11
packages/index-bar/demo/index.json
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"van-tab": "../../tab/index",
|
||||
"van-tabs": "../../tabs/index",
|
||||
"van-cell": "../../cell/index",
|
||||
"van-index-bar": "../../index-bar/index",
|
||||
"van-index-anchor": "../../index-anchor/index",
|
||||
"demo-block": "../../../example/components/demo-block/index"
|
||||
}
|
||||
}
|
30
packages/index-bar/demo/index.ts
Normal file
30
packages/index-bar/demo/index.ts
Normal file
@ -0,0 +1,30 @@
|
||||
import { VantComponent } from '../../common/component';
|
||||
|
||||
const indexList: string[] = [];
|
||||
const charCodeOfA = 'A'.charCodeAt(0);
|
||||
for (let i = 0; i < 26; i++) {
|
||||
indexList.push(String.fromCharCode(charCodeOfA + i));
|
||||
}
|
||||
|
||||
VantComponent({
|
||||
data: {
|
||||
activeTab: 0,
|
||||
indexList,
|
||||
customIndexList: [1, 2, 3, 4, 5, 6, 8, 9, 10],
|
||||
scrollTop: 0,
|
||||
},
|
||||
|
||||
methods: {
|
||||
onChange(event) {
|
||||
this.setData({
|
||||
activeTab: event.detail.name,
|
||||
});
|
||||
},
|
||||
|
||||
onPageScroll(event) {
|
||||
this.setData({
|
||||
scrollTop: event.scrollTop,
|
||||
});
|
||||
},
|
||||
},
|
||||
});
|
45
packages/index-bar/demo/index.wxml
Normal file
45
packages/index-bar/demo/index.wxml
Normal file
@ -0,0 +1,45 @@
|
||||
<van-tabs
|
||||
active="{{ activeTab }}"
|
||||
bind:change="onChange"
|
||||
>
|
||||
<van-tab title="基础用法">
|
||||
<van-index-bar
|
||||
wx:if="{{ activeTab === 0 }}"
|
||||
scroll-top="{{ scrollTop }}"
|
||||
>
|
||||
<view
|
||||
wx:for="{{ indexList }}"
|
||||
wx:for-item="item"
|
||||
wx:key="item"
|
||||
>
|
||||
<van-index-anchor index="{{ item }}" />
|
||||
<van-cell title="文本" />
|
||||
<van-cell title="文本" />
|
||||
<van-cell title="文本" />
|
||||
</view>
|
||||
</van-index-bar>
|
||||
</van-tab>
|
||||
|
||||
<van-tab title="自定义索引列表">
|
||||
<van-index-bar
|
||||
wx:if="{{ activeTab === 1 }}"
|
||||
index-list="{{ customIndexList }}"
|
||||
scroll-top="{{ scrollTop }}"
|
||||
>
|
||||
<view
|
||||
wx:for="{{ customIndexList }}"
|
||||
wx:key="index"
|
||||
>
|
||||
<van-index-anchor
|
||||
use-slot
|
||||
index="{{ item }}"
|
||||
>
|
||||
<text>标题{{ item }}</text>
|
||||
</van-index-anchor>
|
||||
<van-cell title="文本" />
|
||||
<van-cell title="文本" />
|
||||
<van-cell title="文本" />
|
||||
</view>
|
||||
</van-index-bar>
|
||||
</van-tab>
|
||||
</van-tabs>
|
2037
packages/index-bar/test/__snapshots__/demo.spec.ts.snap
Normal file
2037
packages/index-bar/test/__snapshots__/demo.spec.ts.snap
Normal file
File diff suppressed because it is too large
Load Diff
11
packages/index-bar/test/demo.spec.ts
Normal file
11
packages/index-bar/test/demo.spec.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import path from 'path';
|
||||
import simulate from 'miniprogram-simulate';
|
||||
|
||||
test('should render demo and match snapshot', () => {
|
||||
const id = simulate.load(path.resolve(__dirname, '../demo/index'), {
|
||||
rootPath: path.resolve(__dirname, '../../'),
|
||||
});
|
||||
const comp = simulate.render(id);
|
||||
comp.attach(document.createElement('parent-wrapper'));
|
||||
expect(comp.toJSON()).toMatchSnapshot();
|
||||
});
|
Loading…
x
Reference in New Issue
Block a user