-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathScrollbar.js
85 lines (84 loc) · 1.45 KB
/
Scrollbar.js
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
import PerfectScrollbar from 'perfect-scrollbar'
export default {
name: 'PerfectScrollbar',
props: {
options: {
type: Object,
required: false,
default: () => {}
},
tag: {
type: String,
required: false,
default: 'div'
},
watchOptions: {
type: Boolean,
required: false,
default: false
}
},
data () {
return {
ps: null
}
},
watch: {
watchOptions (shouldWatch) {
if (!shouldWatch && this.watcher) {
this.watcher()
} else {
this.createWatcher()
}
}
},
mounted () {
this.create()
if (this.watchOptions) {
this.createWatcher()
}
},
updated () {
this.$nextTick(() => {
this.update()
})
},
beforeDestroy () {
this.destroy()
},
methods: {
create () {
if (!(this.ps && this.$isServer)) {
this.ps = new PerfectScrollbar(this.$refs.container, this.options)
}
},
createWatcher () {
this.watcher = this.$watch('options', () => {
this.destroy()
this.create()
}, {
deep: true
})
},
update () {
if (this.ps) {
this.ps.update()
}
},
destroy () {
if (this.ps) {
this.ps.destroy()
this.ps = null
}
}
},
render (h) {
return h(this.tag,
{
ref: 'container',
class: 'ps',
on: this.$listeners
},
this.$slots.default)
}
}