This repository was archived by the owner on Dec 26, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 389
/
Copy pathutils.js
135 lines (124 loc) · 3.08 KB
/
utils.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
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
let Hammer
// Client-side
try {
Hammer = require('hammerjs')
}
// SSR, pass empty stub
catch (err) {
Hammer = {}
}
/**
* Tiny Object.assign replacement
* @param {Object} target Any type of object
* @param {Object} sources Any type of object
* @return {Object} Merged Object
*/
export function assign(target, ...sources) {
for (let i = 0; i < sources.length; i++) {
const source = sources[i]
const keys = Object.keys(source)
for (let i = 0; i < keys.length; i++) {
const key = keys[i]
target[key] = source[key]
}
}
return target
}
/**
* Small helper method to generate prop options for all the
* *-options props.
* @return {[type]} [description]
*/
export function createProp() {
return {
type: Object,
default: function() { return {} }
}
}
export function capitalize (str) {
return str.charAt(0).toUpperCase() + str.slice(1)
}
/**
* Directions that VueTouch understands.
* Will be tanslated to Hammer-style directions by guardDirections()
* @type {Array}
*/
export const directions = ['up', 'down', 'left', 'right', 'horizontal', 'vertical', 'all']
/**
* Translates VueTouch direction names into Hammer Direction numbers.
* @param {Objects} options Hammer Options
* @return {Object} [Hammer Options]
*/
export function guardDirections (options) {
var dir = options.direction
if (typeof dir === 'string') {
var hammerDirection = 'DIRECTION_' + dir.toUpperCase()
if (directions.indexOf(dir) > -1 && Hammer.hasOwnProperty(hammerDirection)) {
options.direction = Hammer[hammerDirection]
} else {
console.warn('[vue-touch] invalid direction: ' + dir)
}
}
return options
}
/**
* This pobject will contain global options for recognizers
* see index.js -> vueTouch.config
* @type {Object}
*/
export const config = {
}
/**
* This object will contain recognizer options for custom events.
* see index.js -> registerCustomEvent
* @type {Object}
*/
export const customEvents = {
}
/**
* Names of all the builtin gestures of Hammer
* @type {Array}
*/
export const gestures = [
'pan','panstart','panmove','panend','pancancel','panleft','panright','panup','pandown',
'pinch','pinchstart','pinchmove','pinchend','pinchcancel','pinchin','pinchout',
'press','pressup',
'rotate','rotatestart','rotatemove','rotateend','rotatecancel',
'swipe','swipeleft','swiperight','swipeup','swipedown',
'tap'
]
/**
* Maps the gestures to their "main gesture" (the name of the recognizer)
* @type {Object}
*/
export const gestureMap = {
pan: 'pan',
panstart: 'pan',
panmove: 'pan',
panend: 'pan',
pancancel: 'pan',
panleft: 'pan',
panright: 'pan',
panup: 'pan',
pandown: 'pan',
pinch: 'pinch',
pinchstart: 'pinch',
pinchmove: 'pinch',
pinchend: 'pinch',
pinchcancel: 'pinch',
pinchin: 'pinch',
pinchout: 'pinch',
press: 'press',
pressup: 'press',
rotate: 'rotate',
rotatestart: 'rotate',
rotatemove: 'rotate',
rotateend: 'rotate',
rotatecancel: 'rotate',
swipe: 'swipe',
swipeleft: 'swipe',
swiperight: 'swipe',
swipeup: 'swipe',
swipedown: 'swipe',
tap: 'tap'
}