forked from element-plus/element-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.ts
221 lines (189 loc) Β· 4.81 KB
/
util.ts
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
import { getCurrentInstance } from 'vue'
import {
isObject,
isArray,
isString,
capitalize,
hyphenate,
looseEqual,
extend,
camelize,
hasOwn,
toRawType,
} from '@vue/shared'
import isServer from './isServer'
import type { AnyFunction } from './types'
import type { Ref } from 'vue'
export type PartialCSSStyleDeclaration = Partial<
Pick<CSSStyleDeclaration, 'transform' | 'transition' | 'animation'>
>
export function toObject<T>(arr: Array<T>): Record<string, T> {
const res = {}
for (let i = 0; i < arr.length; i++) {
if (arr[i]) {
extend(res, arr[i])
}
}
return res
}
export const getValueByPath = (obj: any, paths = ''): unknown => {
let ret: unknown = obj
paths.split('.').map(path => {
ret = ret?.[path]
})
return ret
}
export function getPropByPath(obj: any, path: string, strict: boolean): {
o: unknown
k: string
v: Nullable<unknown>
} {
let tempObj = obj
path = path.replace(/\[(\w+)\]/g, '.$1')
path = path.replace(/^\./, '')
const keyArr = path.split('.')
let i = 0
for (i; i < keyArr.length - 1; i++) {
if (!tempObj && !strict) break
const key = keyArr[i]
tempObj = tempObj?.[key]
if (!tempObj && strict) {
throw new Error('please transfer a valid prop path to form item!')
}
}
return {
o: tempObj,
k: keyArr[i],
v: tempObj?.[keyArr[i]],
}
}
/**
* Generate random number in range [0, 1000]
* Maybe replace with [uuid](https://www.npmjs.com/package/uuid)
*/
export const generateId = (): number => Math.floor(Math.random() * 10000)
// use isEqual instead
// export const valueEquals
export const escapeRegexpString = (value = ''): string =>
String(value).replace(/[|\\{}()[\]^$+*?.]/g, '\\$&')
// Use native Array.find, Array.findIndex instead
// coerce truthy value to array
export const coerceTruthyValueToArray = arr => {
if (!arr && arr !== 0) { return [] }
return Array.isArray(arr) ? arr : [arr]
}
export const isIE = function(): boolean {
return !isServer && !isNaN(Number(document.DOCUMENT_NODE))
}
export const isEdge = function(): boolean {
return !isServer && navigator.userAgent.indexOf('Edge') > -1
}
export const isFirefox = function(): boolean {
return !isServer && !!window.navigator.userAgent.match(/firefox/i)
}
export const autoprefixer = function(
style: PartialCSSStyleDeclaration,
): PartialCSSStyleDeclaration {
const rules = ['transform', 'transition', 'animation']
const prefixes = ['ms-', 'webkit-']
rules.forEach(rule => {
const value = style[rule]
if (rule && value) {
prefixes.forEach(prefix => {
style[prefix + rule] = value
})
}
})
return style
}
export const kebabCase = hyphenate
// reexport from lodash & vue shared
export {
hasOwn,
// isEmpty,
// isEqual,
isObject,
isArray,
isString,
capitalize,
camelize,
looseEqual,
extend,
}
export const isBool = (val: unknown) => typeof val === 'boolean'
export const isNumber = (val: unknown) => typeof val === 'number'
export const isHTMLElement = (val: unknown) => toRawType(val).startsWith('HTML')
export function rafThrottle<T extends AnyFunction<any>>(fn: T): AnyFunction<void> {
let locked = false
return function(...args: any[]) {
if (locked) return
locked = true
window.requestAnimationFrame(() => {
fn.apply(this, args)
locked = false
})
}
}
export const clearTimer = (timer: Ref<TimeoutHandle>) => {
clearTimeout(timer.value)
timer.value = null
}
/**
* Generating a random int in range (0, max - 1)
* @param max {number}
*/
export function getRandomInt(max: number) {
return Math.floor(Math.random() * Math.floor(max))
}
export function entries<T>(obj: Hash<T>): [string, T][] {
return Object
.keys(obj)
.map((key: string) => ([key, obj[key]]))
}
export function isUndefined(val: any): val is undefined {
return val === void 0
}
export { isVNode } from 'vue'
export function useGlobalConfig() {
const vm: any = getCurrentInstance()
if ('$ELEMENT' in vm.proxy) {
return vm.proxy.$ELEMENT
}
return {}
}
export const arrayFindIndex = function<T = any> (
arr: Array<T>,
pred: (args: T) => boolean,
): number {
return arr.findIndex(pred)
}
export const arrayFind = function<T = any> (
arr: Array<T>,
pred: (args: T) => boolean,
): any {
return arr.find(pred)
}
export function isEmpty(val: unknown) {
if (
!val && val !== 0 ||
isArray(val) && !val.length ||
isObject(val) && !Object.keys(val).length
) return true
return false
}
export function arrayFlat(arr: unknown[]) {
return arr.reduce((acm: unknown[], item) => {
const val = Array.isArray(item) ? arrayFlat(item) : item
return acm.concat(val)
}, [])
}
export function deduplicate<T>(arr: T[]) {
return Array.from(new Set(arr))
}
/**
* Unwraps refed value
* @param ref Refed value
*/
export function $<T>(ref: Ref<T>) {
return ref.value
}