forked from didi/cube-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpicker.vue
406 lines (373 loc) · 11.6 KB
/
picker.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
<template>
<transition name="cube-picker-fade">
<!-- Transition animation need use with v-show in the same template. -->
<cube-popup
type="picker"
:mask="true"
:center="false"
:z-index="zIndex"
v-show="isVisible"
@touchmove.prevent
@mask-click="maskClick">
<transition name="cube-picker-move">
<div class="cube-picker-panel cube-safe-area-pb" v-show="isVisible" @click.stop>
<div class="cube-picker-choose border-bottom-1px">
<span class="cube-picker-cancel" @click="cancel">{{_cancelTxt}}</span>
<span class="cube-picker-confirm" @click="confirm">{{_confirmTxt}}</span>
<div class="cube-picker-title-group">
<h1 class="cube-picker-title" v-html="title"></h1>
<h2 v-if="subtitle" class="cube-picker-subtitle" v-html="subtitle"></h2>
</div>
</div>
<div class="cube-picker-content">
<i class="border-bottom-1px"></i>
<i class="border-top-1px"></i>
<div class="cube-picker-wheel-wrapper" ref="wheelWrapper">
<div v-for="(data,index) in finalData" :key="index" :style="{ order: _getFlexOrder(data)}">
<!-- The class name of the ul and li need be configured to BetterScroll. -->
<ul class="cube-picker-wheel-scroll">
<li v-for="(item,index) in data" class="cube-picker-wheel-item" :key="index" v-html="item[textKey]">
</li>
</ul>
</div>
</div>
</div>
<div class="cube-picker-footer"></div>
</div>
</transition>
</cube-popup>
</transition>
</template>
<script type="text/ecmascript-6">
import BScroll from 'better-scroll'
import CubePopup from '../popup/popup.vue'
import visibilityMixin from '../../common/mixins/visibility'
import popupMixin from '../../common/mixins/popup'
import basicPickerMixin from '../../common/mixins/basic-picker'
import pickerMixin from '../../common/mixins/picker'
import localeMixin from '../../common/mixins/locale'
import { USE_TRANSITION } from '../../common/bscroll/constants'
const COMPONENT_NAME = 'cube-picker'
const EVENT_SELECT = 'select'
const EVENT_VALUE_CHANGE = 'value-change'
const EVENT_CANCEL = 'cancel'
const EVENT_CHANGE = 'change'
export default {
name: COMPONENT_NAME,
mixins: [visibilityMixin, popupMixin, basicPickerMixin, pickerMixin, localeMixin],
props: {
pending: {
type: Boolean,
default: false
}
},
data() {
return {
finalData: this.data.slice()
}
},
created() {
this._values = []
this._indexes = this.selectedIndex
},
methods: {
confirm() {
if (!this._canConfirm()) {
return
}
this.hide()
let changed = false
let pickerSelectedText = []
const length = this.finalData.length
const oldLength = this._values.length
// when column count has changed.
if (oldLength !== length) {
changed = true
oldLength > length && (this._values.length = this._indexes.length = length)
}
for (let i = 0; i < length; i++) {
let index = this._getSelectIndex(this.wheels[i])
this._indexes[i] = index
let value = null
let text = ''
if (this.finalData[i].length) {
value = this.finalData[i][index][this.valueKey]
text = this.finalData[i][index][this.textKey]
}
if (this._values[i] !== value) {
changed = true
}
this._values[i] = value
pickerSelectedText[i] = text
}
this.$emit(EVENT_SELECT, this._values, this._indexes, pickerSelectedText)
if (changed) {
this.$emit(EVENT_VALUE_CHANGE, this._values, this._indexes, pickerSelectedText)
}
},
maskClick() {
this.maskClosable && this.cancel()
},
cancel() {
this.hide()
this.$emit(EVENT_CANCEL)
},
show() {
if (this.isVisible) {
return
}
this.isVisible = true
if (!this.wheels || this.dirty) {
this.$nextTick(() => {
this.wheels = this.wheels || []
let wheelWrapper = this.$refs.wheelWrapper
for (let i = 0; i < this.finalData.length; i++) {
this._createWheel(wheelWrapper, i).enable()
this.wheels[i].wheelTo(this._indexes[i])
}
this.dirty && this._destroyExtraWheels()
this.dirty = false
})
} else {
for (let i = 0; i < this.finalData.length; i++) {
this.wheels[i].enable()
this.wheels[i].wheelTo(this._indexes[i])
}
}
},
hide() {
if (!this.isVisible) {
return
}
this.isVisible = false
for (let i = 0; i < this.finalData.length; i++) {
this.wheels[i].disable()
}
},
setData(data, selectedIndex) {
this._indexes = selectedIndex ? [...selectedIndex] : []
this.finalData = data.slice()
if (this.isVisible) {
this.$nextTick(() => {
const wheelWrapper = this.$refs.wheelWrapper
this.finalData.forEach((item, i) => {
this._createWheel(wheelWrapper, i)
this.wheels[i].wheelTo(this._indexes[i])
})
this._destroyExtraWheels()
})
} else {
this.dirty = true
}
},
refill(datas) {
let ret = []
if (!datas.length) {
return ret
}
datas.forEach((data, index) => {
ret[index] = this.refillColumn(index, data)
})
return ret
},
refillColumn(index, data) {
const wheelWrapper = this.$refs.wheelWrapper
let scroll = wheelWrapper.children[index].querySelector('.cube-picker-wheel-scroll')
let wheel = this.wheels ? this.wheels[index] : false
let dist = 0
if (scroll && wheel) {
let oldData = this.finalData[index]
this.$set(this.finalData, index, data)
let selectedIndex = wheel.getSelectedIndex()
if (oldData.length) {
let oldValue = oldData[selectedIndex][this.valueKey]
for (let i = 0; i < data.length; i++) {
if (data[i][this.valueKey] === oldValue) {
dist = i
break
}
}
}
this._indexes[index] = dist
this.$nextTick(() => {
// recreate wheel so that the wrapperHeight will be correct.
wheel = this._createWheel(wheelWrapper, index)
wheel.wheelTo(dist)
})
}
return dist
},
scrollTo(index, dist) {
const wheel = this.wheels[index]
this._indexes[index] = dist
wheel.wheelTo(dist)
},
refresh() {
this.$nextTick(() => {
this.wheels.forEach((wheel) => {
wheel.refresh()
})
})
},
_createWheel(wheelWrapper, i) {
if (!this.wheels[i]) {
const wheel = this.wheels[i] = new BScroll(wheelWrapper.children[i], {
wheel: {
selectedIndex: this._indexes[i] || 0,
wheelWrapperClass: 'cube-picker-wheel-scroll',
wheelItemClass: 'cube-picker-wheel-item'
},
swipeTime: this.swipeTime,
observeDOM: false,
useTransition: USE_TRANSITION
})
wheel.on('scrollEnd', () => {
this.$emit(EVENT_CHANGE, i, this._getSelectIndex(wheel))
})
} else {
this.wheels[i].refresh()
}
return this.wheels[i]
},
_destroyExtraWheels() {
const dataLength = this.finalData.length
if (this.wheels.length > dataLength) {
const extraWheels = this.wheels.splice(dataLength)
extraWheels.forEach((wheel) => {
wheel.destroy()
})
}
},
_canConfirm() {
return !this.pending && this.wheels.every((wheel) => {
return !wheel.isInTransition
})
},
_getFlexOrder(data) {
if (data[0]) {
return data[0][this.orderKey]
}
return 0
},
// fixed BScroll not calculating selectedIndex when setting useTransition to false
_getSelectIndex(wheel) {
const y = wheel.y
let selectedIndex
if (USE_TRANSITION) {
selectedIndex = wheel.getSelectedIndex()
} else {
if (y > wheel.minScrollY) {
selectedIndex = 0
} else if (y < wheel.maxScrollY) {
selectedIndex = wheel.items.length - 1
} else {
selectedIndex = Math.round(Math.abs(y / wheel.itemHeight))
}
}
return selectedIndex
}
},
beforeDestroy() {
this.wheels && this.wheels.forEach((wheel) => {
wheel.destroy()
})
this.wheels = null
},
components: {
CubePopup
}
}
</script>
<style lang="stylus" rel="stylesheet/stylus">
@require "../../common/stylus/mixin.styl"
@require "../../common/stylus/variable.styl"
$picker-lr-padding = 16px
.cube-picker-fade-enter, .cube-picker-fade-leave-active
opacity: 0
.cube-picker-fade-enter-active, .cube-picker-fade-leave-active
transition: all .3s ease-in-out
.cube-picker-panel
height: 273px
text-align: center
font-size: $fontsize-medium
background: $picker-bgc
.cube-picker-move-enter, .cube-picker-move-leave-active
transform: translate3d(0, 100%, 0)
.cube-picker-move-enter-active, .cube-picker-move-leave-active
transition: all .3s ease-in-out
.cube-picker-choose
position: relative
height: 60px
.cube-picker-confirm, .cube-picker-cancel
font-size: $fontsize-medium
line-height: 60px
padding: 0 $picker-lr-padding
box-sizing: content-box
.cube-picker-confirm
position: absolute
right: 0
color: $picker-confirm-btn-color
&:active
color: $picker-confirm-btn-active-color
.cube-picker-cancel
position: absolute
left: 0
color: $picker-cancel-btn-color
&:active
color: $picker-cancel-btn-active-color
.cube-picker-title-group
padding: 0 60px
display: flex
height: 100%
flex-flow: column
justify-content: center
text-align: center
.cube-picker-title
font-size: $fontsize-large-x
line-height: 25px
font-weight: normal
color: $picker-title-color
.cube-picker-subtitle
margin-top: 2px
line-height: 16px
font-size: $fontsize-small
color: $picker-subtitle-color
.cube-picker-content
position: relative
top: 20px
> i
position: absolute
z-index: 10
left: 0
width: 100%
height: 68px
pointer-events: none
transform: translateZ(0)
> .border-bottom-1px
top: 0
background: linear-gradient(to top, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8))
> .border-top-1px
bottom: 0
background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8))
.cube-picker-wheel-wrapper
display: flex
padding: 0 $picker-lr-padding
> div
flex-fix()
height: 173px
overflow: hidden
font-size: $fontsize-large-xx
.cube-picker-wheel-scroll
padding: 0
margin-top: 68px
line-height: 36px
list-style: none
.cube-picker-wheel-item
list-style: none
height: 36px
overflow: hidden
white-space: nowrap
color: $picker-item-color
.cube-picker-footer
height: 20px
</style>