[Improvement] optimize area performance (#457)

This commit is contained in:
neverland
2017-12-20 17:39:51 +08:00
committed by GitHub
parent df67b005ce
commit 021d30efb1
6 changed files with 98 additions and 122 deletions

View File

@@ -1,26 +1,21 @@
<template>
<div class="van-area">
<picker
ref="picker"
showToolbar
:title="title"
valueKey="name"
:columns="areaColumns"
@change="onChange"
@confirm="$emit('confirm', $event)"
@cancel="$emit('cancel', $event)"
/>
</div>
<picker
class="van-area"
ref="picker"
showToolbar
valueKey="name"
:title="title"
:columns="columns"
@change="onChange"
@confirm="$emit('confirm', $event)"
@cancel="$emit('cancel', $event)"
/>
</template>
<script>
import { create } from '../utils';
import Picker from '../picker';
const PROVINCE_TYPE = 'provice';
const CITY_TYPE = 'city';
const COUNTY_TYPE = 'county';
export default create({
name: 'van-area',
@@ -40,52 +35,33 @@ export default create({
},
computed: {
DEFAULT_PROVINCE() {
return {
code: '-1',
name: this.$t('province')
};
},
DEFAULT_CITY() {
return {
code: '-1',
name: this.$t('city')
};
},
DEFAULT_COUNTY() {
return {
code: '-1',
name: this.$t('district')
};
},
areaColumns() {
const areaList = this.areaList;
if (!areaList || (areaList && typeof areaList.province_list !== 'object')) return [];
columns() {
const columns = [];
const curValue = this.value || '';
const { columnsNum } = this;
const { areaList } = this;
if (!areaList || typeof areaList.province_list !== 'object') {
return columns;
}
const code = this.value || '';
const columnsNum = +this.columnsNum;
columns.push({
values: [this.DEFAULT_PROVINCE].concat(this.computedAreaList(PROVINCE_TYPE)),
className: 'van-area__province',
defaultIndex: this.getAreaIndex(PROVINCE_TYPE, curValue)
values: this.getList('province'),
defaultIndex: this.getIndex('province', code)
});
if (+columnsNum > 1) {
if (columnsNum > 1) {
columns.push({
values: [this.DEFAULT_CITY].concat(this.computedAreaList(CITY_TYPE, curValue.slice(0, 2))),
className: 'van-area__city',
defaultIndex: this.getAreaIndex(CITY_TYPE, curValue)
values: this.getList('city', code.slice(0, 2)),
defaultIndex: this.getIndex('city', code)
});
}
if (+columnsNum > 2) {
if (columnsNum > 2) {
columns.push({
values: [this.DEFAULT_COUNTY].concat(this.computedAreaList(COUNTY_TYPE, curValue.slice(0, 4))),
className: 'van-area__county',
defaultIndex: this.getAreaIndex(COUNTY_TYPE, curValue)
values: this.getList('county', code.slice(0, 4)),
defaultIndex: this.getIndex('county', code)
});
}
@@ -95,37 +71,40 @@ export default create({
methods: {
// 根据省市县类型和对应的`code`获取对应列表
computedAreaList(type, code) {
const result = [];
const curAreaList = this.areaList;
const areaList = type === PROVINCE_TYPE
? curAreaList.province_list
: (type === CITY_TYPE ? curAreaList.city_list : curAreaList.county_list);
getList(type, code) {
const { areaList } = this;
const list =
type === 'province'
? areaList.province_list
: type === 'city' ? areaList.city_list : areaList.county_list;
for (const i in areaList) {
// 如果为省类型直接插入,因为省那一列是全部显示的
// 其他类型需要找到前缀相同的
if (type === PROVINCE_TYPE || (code && i.slice(0, code.length) === code)) {
result.push({
code: i,
name: areaList[i]
});
}
let result = Object.keys(list).map(code => ({
code,
name: list[code]
}));
if (type !== 'province' && code) {
result = result.filter(item => item.code.indexOf(code) === 0);
}
result.unshift({
code: '-1',
name: this.$t(type)
});
return result;
},
// 获取对应省市县在列表中的索引
getAreaIndex(type, code) {
const compareNum = type === PROVINCE_TYPE
? 2
: (type === CITY_TYPE ? 4 : 6);
const areaList = this.computedAreaList(type, code.slice(0, compareNum - 2));
getIndex(type, code) {
const compareNum = type === 'province' ? 2 : type === 'city' ? 4 : 6;
const areaList = this.getList(type, code.slice(0, compareNum - 2));
for (let i = 0; i < areaList.length; i++) {
if (+areaList[i].code.slice(0, compareNum) === +code.slice(0, compareNum)) {
return i + 1;
if (
+areaList[i].code.slice(0, compareNum) === +code.slice(0, compareNum)
) {
return i;
}
}
@@ -136,25 +115,15 @@ export default create({
const code = values[index].code;
// 处理省变化
if (index === 0) {
picker.setColumnValues(
1,
[this.DEFAULT_CITY].concat(this.computedAreaList(CITY_TYPE, code.slice(0, 2)))
);
picker.setColumnValues(
2,
[this.DEFAULT_COUNTY].concat(this.computedAreaList(COUNTY_TYPE, code.slice(0, 4)))
);
picker.setColumnValues(1, this.getList('city', code.slice(0, 2)));
picker.setColumnValues(2, this.getList('county', code.slice(0, 4)));
} else if (index === 1) {
picker.setColumnValues(
2,
[this.DEFAULT_COUNTY].concat(this.computedAreaList(COUNTY_TYPE, code.slice(0, 4)))
);
picker.setColumnValues(2, this.getList('county', code.slice(0, 4)));
}
},
getValues() {
const { picker } = this.$refs;
return picker ? picker.getValues() : [];
return this.$refs.picker ? this.$refs.picker.getValues() : [];
}
}
});