123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
- return c > 3 && r && Object.defineProperty(target, key, r), r;
- };
- import { SuperComponent, wxComponent } from '../common/src/index';
- import config from '../common/config';
- import props from './picker-item-props';
- const itemHeight = 80;
- const DefaultDuration = 240;
- const { windowWidth } = wx.getSystemInfoSync();
- const rpx2px = (rpx) => Math.floor((windowWidth * rpx) / 750);
- const range = function (num, min, max) {
- return Math.min(Math.max(num, min), max);
- };
- let PickerItem = class PickerItem extends SuperComponent {
- constructor() {
- super(...arguments);
- this.relations = {
- './picker': {
- type: 'parent',
- linked(parent) {
- this.parent = parent;
- },
- },
- };
- this.properties = props;
- this.observers = {
- options() {
- this.update();
- },
- };
- this.data = {
- prefix: `${config.prefix}-picker-item`,
- offset: 0,
- duration: 0,
- value: '',
- };
- this.methods = {
- onTouchStart(event) {
- this.StartY = event.touches[0].clientY;
- this.StartOffset = this.data.offset;
- this.setData({ duration: 0 });
- },
- onTouchMove(event) {
- const { StartY, StartOffset, itemHeight } = this;
- const touchDeltaY = event.touches[0].clientY - StartY;
- const deltaY = this.calculateViewDeltaY(touchDeltaY);
- this.setData({
- offset: range(StartOffset + deltaY, -(this.getCount() * itemHeight), 0),
- duration: DefaultDuration,
- });
- },
- onTouchEnd() {
- const { offset } = this.data;
- const { options } = this.properties;
- if (offset === this.StartOffset) {
- return;
- }
- const index = range(Math.round(-offset / this.itemHeight), 0, this.getCount() - 1);
- this.setData({
- offset: -index * this.itemHeight,
- });
- if (index === this._selectedIndex) {
- return;
- }
- wx.nextTick(() => {
- var _a, _b, _c;
- this._selectedIndex = index;
- this._selectedValue = (_a = options[index]) === null || _a === void 0 ? void 0 : _a.value;
- this._selectedLabel = (_b = options[index]) === null || _b === void 0 ? void 0 : _b.label;
- (_c = this.parent) === null || _c === void 0 ? void 0 : _c.triggerColumnChange({
- index,
- column: this.columnIndex || 0,
- });
- });
- },
- update() {
- var _a, _b;
- const { options, value } = this.data;
- const index = options.findIndex((item) => item.value === value);
- const selectedIndex = index > 0 ? index : 0;
- this.setData({ offset: -selectedIndex * this.itemHeight });
- this._selectedIndex = selectedIndex;
- this._selectedValue = (_a = options[selectedIndex]) === null || _a === void 0 ? void 0 : _a.value;
- this._selectedLabel = (_b = options[selectedIndex]) === null || _b === void 0 ? void 0 : _b.label;
- },
- resetOrigin() {
- this.update();
- },
- getCount() {
- var _a, _b;
- return (_b = (_a = this.data) === null || _a === void 0 ? void 0 : _a.options) === null || _b === void 0 ? void 0 : _b.length;
- },
- };
- }
- calculateViewDeltaY(touchDeltaY) {
- return Math.abs(touchDeltaY) > itemHeight ? 1.2 * touchDeltaY : touchDeltaY;
- }
- created() {
- this.StartY = 0;
- this.StartOffset = 0;
- this.itemHeight = rpx2px(itemHeight);
- }
- };
- PickerItem = __decorate([
- wxComponent()
- ], PickerItem);
- export default PickerItem;
|