forked from alpinejs/alpine
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathutils.js
More file actions
383 lines (316 loc) · 13.7 KB
/
Copy pathutils.js
File metadata and controls
383 lines (316 loc) · 13.7 KB
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
// Thanks @stimulus:
// https://github.com/stimulusjs/stimulus/blob/master/packages/%40stimulus/core/src/application.ts
export function domReady() {
return new Promise(resolve => {
if (document.readyState == "loading") {
document.addEventListener("DOMContentLoaded", resolve)
} else {
resolve()
}
})
}
export function arrayUnique(array) {
return Array.from(new Set(array))
}
export function isTesting() {
return navigator.userAgent, navigator.userAgent.includes("Node.js")
|| navigator.userAgent.includes("jsdom")
}
export function kebabCase(subject) {
return subject.replace(/([a-z])([A-Z])/g, '$1-$2').replace(/[_\s]/, '-').toLowerCase()
}
export function walk(el, callback) {
if (callback(el) === false) return
let node = el.firstElementChild
while (node) {
walk(node, callback)
node = node.nextElementSibling
}
}
export function debounce(func, wait) {
var timeout
return function () {
var context = this, args = arguments
var later = function () {
timeout = null
func.apply(context, args)
}
clearTimeout(timeout)
timeout = setTimeout(later, wait)
}
}
export function saferEval(expression, dataContext, additionalHelperVariables = {}) {
return (new Function(['$data', ...Object.keys(additionalHelperVariables)], `var result; with($data) { result = ${expression} }; return result`))(
dataContext, ...Object.values(additionalHelperVariables)
)
}
export function saferEvalNoReturn(expression, dataContext, additionalHelperVariables = {}) {
// For the cases when users pass only a function reference to the caller: `x-on:click="foo"`
// Where "foo" is a function. Also, we'll pass the function the event instance when we call it.
if (Object.keys(dataContext).includes(expression)) {
let methodReference = (new Function(['dataContext', ...Object.keys(additionalHelperVariables)], `with(dataContext) { return ${expression} }`))(
dataContext, ...Object.values(additionalHelperVariables)
)
if (typeof methodReference === 'function') {
return methodReference.call(dataContext, additionalHelperVariables['$event'])
}
}
return (new Function(['dataContext', ...Object.keys(additionalHelperVariables)], `with(dataContext) { ${expression} }`))(
dataContext, ...Object.values(additionalHelperVariables)
)
}
const xAttrRE = /^x-(on|bind|data|text|html|model|if|for|show|cloak|transition|ref)\b/
export function isXAttr(attr) {
const name = replaceAtAndColonWithStandardSyntax(attr.name)
return xAttrRE.test(name)
}
export function getXAttrs(el, type) {
return Array.from(el.attributes)
.filter(isXAttr)
.map(attr => {
const name = replaceAtAndColonWithStandardSyntax(attr.name)
const typeMatch = name.match(xAttrRE)
const valueMatch = name.match(/:([a-zA-Z\-:]+)/)
const modifiers = name.match(/\.[^.\]]+(?=[^\]]*$)/g) || []
return {
type: typeMatch ? typeMatch[1] : null,
value: valueMatch ? valueMatch[1] : null,
modifiers: modifiers.map(i => i.replace('.', '')),
expression: attr.value,
}
})
.filter(i => {
// If no type is passed in for filtering, bypass filter
if (! type) return true
return i.type === type
})
}
export function isBooleanAttr(attrName) {
// As per HTML spec table https://html.spec.whatwg.org/multipage/indices.html#attributes-3:boolean-attribute
// Array roughly ordered by estimated usage
const booleanAttributes = [
'disabled','checked','required','readonly','hidden','open', 'selected',
'autofocus', 'itemscope', 'multiple', 'novalidate','allowfullscreen',
'allowpaymentrequest', 'formnovalidate', 'autoplay', 'controls', 'loop',
'muted', 'playsinline', 'default', 'ismap', 'reversed', 'async', 'defer',
'nomodule'
]
return booleanAttributes.includes(attrName)
}
export function replaceAtAndColonWithStandardSyntax(name) {
if (name.startsWith('@')) {
return name.replace('@', 'x-on:')
} else if (name.startsWith(':')) {
return name.replace(':', 'x-bind:')
}
return name
}
export function transitionIn(el, show, forceSkip = false) {
// We don't want to transition on the initial page load.
if (forceSkip) return show()
const attrs = getXAttrs(el, 'transition')
const showAttr = getXAttrs(el, 'show')[0]
// If this is triggered by a x-show.transition.
if (showAttr && showAttr.modifiers.includes('transition')) {
let modifiers = showAttr.modifiers
// If x-show.transition.out, we'll skip the "in" transition.
if (modifiers.includes('out') && ! modifiers.includes('in')) return show()
const settingBothSidesOfTransition = modifiers.includes('in') && modifiers.includes('out')
// If x-show.transition.in...out... only use "in" related modifiers for this transition.
modifiers = settingBothSidesOfTransition
? modifiers.filter((i, index) => index < modifiers.indexOf('out')) : modifiers
transitionHelperIn(el, modifiers, show)
// Otherwise, we can assume x-transition:enter.
} else if (attrs.length > 0) {
transitionClassesIn(el, attrs, show)
} else {
// If neither, just show that damn thing.
show()
}
}
export function transitionOut(el, hide, forceSkip = false) {
if (forceSkip) return hide()
const attrs = getXAttrs(el, 'transition')
const showAttr = getXAttrs(el, 'show')[0]
if (showAttr && showAttr.modifiers.includes('transition')) {
let modifiers = showAttr.modifiers
if (modifiers.includes('in') && ! modifiers.includes('out')) return hide()
const settingBothSidesOfTransition = modifiers.includes('in') && modifiers.includes('out')
modifiers = settingBothSidesOfTransition
? modifiers.filter((i, index) => index > modifiers.indexOf('out')) : modifiers
transitionHelperOut(el, modifiers, settingBothSidesOfTransition, hide)
} else if (attrs.length > 0) {
transitionClassesOut(el, attrs, hide)
} else {
hide()
}
}
export function transitionHelperIn(el, modifiers, showCallback) {
// Default values inspired by: https://material.io/design/motion/speed.html#duration
const styleValues = {
duration: modifierValue(modifiers, 'duration', 150),
origin: modifierValue(modifiers, 'origin', 'center'),
first: {
opacity: 0,
scale: modifierValue(modifiers, 'scale', 95),
},
second: {
opacity: 1,
scale: 100,
},
}
transitionHelper(el, modifiers, showCallback, () => {}, styleValues)
}
export function transitionHelperOut(el, modifiers, settingBothSidesOfTransition, hideCallback) {
// Make the "out" transition .5x slower than the "in". (Visually better)
// HOWEVER, if they explicitly set a duration for the "out" transition,
// use that.
const duration = settingBothSidesOfTransition
? modifierValue(modifiers, 'duration', 150)
: modifierValue(modifiers, 'duration', 150) / 2
const styleValues = {
duration: duration,
origin: modifierValue(modifiers, 'origin', 'center'),
first: {
opacity: 1,
scale: 100,
},
second: {
opacity: 0,
scale: modifierValue(modifiers, 'scale', 95),
},
}
transitionHelper(el, modifiers, () => {}, hideCallback, styleValues)
}
function modifierValue(modifiers, key, fallback) {
// If the modifier isn't present, use the default.
if (modifiers.indexOf(key) === -1) return fallback
// If it IS present, grab the value after it: x-show.transition.duration.500ms
const rawValue = modifiers[modifiers.indexOf(key) + 1]
if (! rawValue) return fallback
if (key === 'scale') {
// Check if the very next value is NOT a number and return the fallback.
// If x-show.transition.scale, we'll use the default scale value.
// That is how a user opts out of the opacity transition.
if (! isNumeric(rawValue)) return fallback
}
if (key === 'duration') {
// Support x-show.transition.duration.500ms && duration.500
let match = rawValue.match(/([0-9]+)ms/)
if (match) return match[1]
}
if (key === 'origin') {
// Support chaining origin directions: x-show.transition.top.right
if (['top', 'right', 'left', 'center', 'bottom'].includes(modifiers[modifiers.indexOf(key) + 2])) {
return [rawValue, modifiers[modifiers.indexOf(key) + 2]].join(' ')
}
}
return rawValue
}
export function transitionHelper(el, modifiers, hook1, hook2, styleValues) {
// If the user set these style values, we'll put them back when we're done with them.
const opacityCache = el.style.opacity
const transformCache = el.style.transform
const transformOriginCache = el.style.transformOrigin
// If no modifiers are present: x-show.transition, we'll default to both opacity and scale.
const noModifiers = ! modifiers.includes('opacity') && ! modifiers.includes('scale')
const transitionOpacity = noModifiers || modifiers.includes('opacity')
const transitionScale = noModifiers || modifiers.includes('scale')
// These are the explicit stages of a transition (same stages for in and for out).
// This way you can get a birds eye view of the hooks, and the differences
// between them.
const stages = {
start() {
if (transitionOpacity) el.style.opacity = styleValues.first.opacity
if (transitionScale) el.style.transform = `scale(${styleValues.first.scale / 100})`
},
during() {
if (transitionScale) el.style.transformOrigin = styleValues.origin
el.style.transitionProperty = [(transitionOpacity ? `opacity` : ``), (transitionScale ? `transform` : ``)].join(' ').trim()
el.style.transitionDuration = `${styleValues.duration / 1000}s`
el.style.transitionTimingFunction = `cubic-bezier(0.4, 0.0, 0.2, 1)`
},
show() {
hook1()
},
end() {
if (transitionOpacity) el.style.opacity = styleValues.second.opacity
if (transitionScale) el.style.transform = `scale(${styleValues.second.scale / 100})`
},
hide() {
hook2()
},
cleanup() {
if (transitionOpacity) el.style.opacity = opacityCache
if (transitionScale) el.style.transform = transformCache
if (transitionScale) el.style.transformOrigin = transformOriginCache
el.style.transitionProperty = null
el.style.transitionDuration = null
el.style.transitionTimingFunction = null
},
}
transition(el, stages)
}
export function transitionClassesIn(el, directives, showCallback) {
const enter = (directives.find(i => i.value === 'enter') || { expression: '' }).expression.split(' ').filter(i => i !== '')
const enterStart = (directives.find(i => i.value === 'enter-start') || { expression: '' }).expression.split(' ').filter(i => i !== '')
const enterEnd = (directives.find(i => i.value === 'enter-end') || { expression: '' }).expression.split(' ').filter(i => i !== '')
transitionClasses(el, enter, enterStart, enterEnd, showCallback, () => {})
}
export function transitionClassesOut(el, directives, hideCallback) {
const leave = (directives.find(i => i.value === 'leave') || { expression: '' }).expression.split(' ').filter(i => i !== '')
const leaveStart = (directives.find(i => i.value === 'leave-start') || { expression: '' }).expression.split(' ').filter(i => i !== '')
const leaveEnd = (directives.find(i => i.value === 'leave-end') || { expression: '' }).expression.split(' ').filter(i => i !== '')
transitionClasses(el, leave, leaveStart, leaveEnd, () => {}, hideCallback)
}
export function transitionClasses(el, classesDuring, classesStart, classesEnd, hook1, hook2) {
const originalClasses = el.__x_original_classes || []
const stages = {
start() {
el.classList.add(...classesStart)
},
during() {
el.classList.add(...classesDuring)
},
show() {
hook1()
},
end() {
// Don't remove classes that were in the original class attribute.
el.classList.remove(...classesStart.filter(i => !originalClasses.includes(i)))
el.classList.add(...classesEnd)
},
hide() {
hook2()
},
cleanup() {
el.classList.remove(...classesDuring.filter(i => !originalClasses.includes(i)))
el.classList.remove(...classesEnd.filter(i => !originalClasses.includes(i)))
},
}
transition(el, stages)
}
export function transition(el, stages) {
stages.start()
stages.during()
requestAnimationFrame(() => {
// Note: Safari's transitionDuration property will list out comma separated transition durations
// for every single transition property. Let's grab the first one and call it a day.
let duration = Number(getComputedStyle(el).transitionDuration.replace(/,.*/, '').replace('s', '')) * 1000
stages.show()
requestAnimationFrame(() => {
stages.end()
setTimeout(() => {
stages.hide()
// Adding an "isConnected" check, in case the callback
// removed the element from the DOM.
if (el.isConnected) {
stages.cleanup()
}
}, duration);
})
});
}
export function isNumeric(subject){
return ! isNaN(subject)
}