123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- "use strict";
- var _component = require("../common/component");
- var _shared = require("./shared");
- (0, _component.VantComponent)({
- classes: ["active-class", "toolbar-class", "column-class"],
- props: Object.assign(Object.assign({}, _shared.pickerProps), {
- valueKey: {
- type: String,
- value: "text"
- },
- toolbarPosition: {
- type: String,
- value: "top"
- },
- defaultIndex: {
- type: Number,
- value: 0
- },
- columns: {
- type: Array,
- value: [],
- observer: function observer() {
- var columns = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
- this.simple = columns.length && !columns[0].values;
- this.children = this.selectAllComponents(".van-picker__column");
- if (Array.isArray(this.children) && this.children.length) {
- this.setColumns()["catch"](function () {});
- }
- }
- }
- }),
- beforeCreate: function beforeCreate() {
- this.children = [];
- },
- mounted: function mounted() {
- var columns = this.data.columns;
- this.simple = columns.length && !columns[0].values;
- this.children = this.selectAllComponents(".van-picker__column");
- if (Array.isArray(this.children) && this.children.length) {
- this.setColumns()["catch"](function () {});
- }
- },
- methods: {
- noop: function noop() {},
- setColumns: function setColumns() {
- var _this = this;
- var data = this.data;
- var columns = this.simple ? [{
- values: data.columns
- }] : data.columns;
- var stack = columns.map(function (column, index) {
- return _this.setColumnValues(index, column.values);
- });
- return Promise.all(stack);
- },
- emit: function emit(event) {
- var type = event.currentTarget.dataset.type;
- if (this.simple) {
- this.$emit(type, {
- value: this.getColumnValue(0),
- index: this.getColumnIndex(0)
- });
- } else {
- this.$emit(type, {
- value: this.getValues(),
- index: this.getIndexes()
- });
- }
- },
- onChange: function onChange(event) {
- if (this.simple) {
- this.$emit("change", {
- picker: this,
- value: this.getColumnValue(0),
- index: this.getColumnIndex(0)
- });
- } else {
- this.$emit("change", {
- picker: this,
- value: this.getValues(),
- index: event.currentTarget.dataset.index
- });
- }
- },
- // get column instance by index
- getColumn: function getColumn(index) {
- return this.children[index];
- },
- // get column value by index
- getColumnValue: function getColumnValue(index) {
- var column = this.getColumn(index);
- return column && column.getValue();
- },
- // set column value by index
- setColumnValue: function setColumnValue(index, value) {
- var column = this.getColumn(index);
- if (column == null) {
- return Promise.reject(new Error("setColumnValue: 对应列不存在"));
- }
- return column.setValue(value);
- },
- // get column option index by column index
- getColumnIndex: function getColumnIndex(columnIndex) {
- return (this.getColumn(columnIndex) || {}).data.currentIndex;
- },
- // set column option index by column index
- setColumnIndex: function setColumnIndex(columnIndex, optionIndex) {
- var column = this.getColumn(columnIndex);
- if (column == null) {
- return Promise.reject(new Error("setColumnIndex: 对应列不存在"));
- }
- return column.setIndex(optionIndex);
- },
- // get options of column by index
- getColumnValues: function getColumnValues(index) {
- return (this.children[index] || {}).data.options;
- },
- // set options of column by index
- setColumnValues: function setColumnValues(index, options) {
- var needReset = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;
- var column = this.children[index];
- if (column == null) {
- return Promise.reject(new Error("setColumnValues: 对应列不存在"));
- }
- var isSame = JSON.stringify(column.data.options) === JSON.stringify(options);
- if (isSame) {
- return Promise.resolve();
- }
- return column.set({
- options: options
- }).then(function () {
- if (needReset) {
- column.setIndex(0);
- }
- });
- },
- // get values of all columns
- getValues: function getValues() {
- return this.children.map(function (child) {
- return child.getValue();
- });
- },
- // set values of all columns
- setValues: function setValues(values) {
- var _this2 = this;
- var stack = values.map(function (value, index) {
- return _this2.setColumnValue(index, value);
- });
- return Promise.all(stack);
- },
- // get indexes of all columns
- getIndexes: function getIndexes() {
- return this.children.map(function (child) {
- return child.data.currentIndex;
- });
- },
- // set indexes of all columns
- setIndexes: function setIndexes(indexes) {
- var _this3 = this;
- var stack = indexes.map(function (optionIndex, columnIndex) {
- return _this3.setColumnIndex(columnIndex, optionIndex);
- });
- return Promise.all(stack);
- }
- }
- });
|