-
Notifications
You must be signed in to change notification settings - Fork 900
Expand file tree
/
Copy pathindex.ts
More file actions
217 lines (188 loc) · 4.92 KB
/
Copy pathindex.ts
File metadata and controls
217 lines (188 loc) · 4.92 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
import type { Context } from '@nuxt/types'
import type { Route, RecursivePartial } from '../types'
export const isUnset = (o: unknown): boolean =>
typeof o === 'undefined' || o === null
export const isSet = (o: unknown): boolean => !isUnset(o)
export const isSameURL = (ctx: Context, a: string, b: string): boolean =>
normalizePath(a, ctx) === normalizePath(b, ctx)
export function isRelativeURL(u: string): boolean {
return (
u &&
u.length &&
new RegExp(
[
'^\\/([a-zA-Z0-9@\\-%_~.:]',
'[/a-zA-Z0-9@\\-%_~.:]*)?',
'([?][^#]*)?(#[^#]*)?$'
].join('')
).test(u)
)
}
export function parseQuery(queryString: string): Record<string, unknown> {
const query = {}
const pairs = queryString.split('&')
for (let i = 0; i < pairs.length; i++) {
const pair = pairs[i].split('=')
query[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1] || '')
}
return query
}
export function encodeQuery(queryObject: {
[key: string]: string | number | boolean
}): string {
return Object.entries(queryObject)
.filter(([_key, value]) => typeof value !== 'undefined')
.map(
([key, value]) =>
encodeURIComponent(key) +
(value != null ? '=' + encodeURIComponent(value) : '')
)
.join('&')
}
export function routeOption(
route: Route,
key: string,
value: string | boolean
): boolean {
return route.matched.some((m) => {
if (process.client) {
// Client
return Object.values(m.components).some(
(component) => component.options && component.options[key] === value
)
} else {
// SSR
return Object.values(m.components).some((component) =>
Object.values(component._Ctor).some(
(ctor) => ctor.options && ctor.options[key] === value
)
)
}
})
}
export function getMatchedComponents(
route: Route,
matches: unknown[] = []
): unknown[] {
return [].concat(
...[],
...route.matched.map(function (m, index) {
return Object.keys(m.components).map(function (key) {
matches.push(index)
return m.components[key]
})
})
)
}
export function normalizePath(path = '', ctx?: Context): string {
// Remove query string
let result = path.split('?')[0]
// Remove base path
if (ctx && ctx.base) {
result = result.replace(ctx.base, '/')
}
// Remove redundant / from the end of path
if (result.charAt(result.length - 1) === '/') {
result = result.slice(0, -1)
}
// Remove duplicate slashes
result = result.replace(/\/+/g, '/')
return result
}
export function encodeValue(val: unknown): string {
if (typeof val === 'string') {
return val
}
return JSON.stringify(val)
}
export function decodeValue(val: unknown): unknown {
// Try to parse as json
if (typeof val === 'string') {
try {
return JSON.parse(val)
} catch (_) {}
}
// Return as is
return val
}
/**
* Get property defined by dot notation in string.
* Based on https://github.com/dy/dotprop (MIT)
*
* @param {Object} holder Target object where to look property up
* @param {string} propName Dot notation, like 'this.a.b.c'
* @return {*} A property value
*/
export function getProp(
holder: Record<string, any>,
propName: string | false
): unknown {
if (!propName || !holder || typeof holder !== 'object') {
return holder
}
if (propName in holder) {
return holder[propName]
}
const propParts = Array.isArray(propName)
? propName
: (propName + '').split('.')
let result: unknown = holder
while (propParts.length && result) {
result = result[propParts.shift()]
}
return result
}
// Ie "Bearer " + token
export function addTokenPrefix(
token: string | boolean,
tokenType: string | false
): string | boolean {
if (
!token ||
!tokenType ||
typeof token !== 'string' ||
token.startsWith(tokenType)
) {
return token
}
return tokenType + ' ' + token
}
export function removeTokenPrefix(
token: string | boolean,
tokenType: string | false
): string | boolean {
if (!token || !tokenType || typeof token !== 'string') {
return token
}
return token.replace(tokenType + ' ', '')
}
export function urlJoin(...args: string[]): string {
return args
.join('/')
.replace(/[/]+/g, '/')
.replace(/^(.+):\//, '$1://')
.replace(/^file:/, 'file:/')
.replace(/\/(\?|&|#[^!])/g, '$1')
.replace(/\?/g, '&')
.replace('&', '?')
}
export function cleanObj<T extends Record<string, unknown>>(
obj: T
): RecursivePartial<T> {
for (const key in obj) {
if (obj[key] === undefined) {
delete obj[key]
}
}
return obj as RecursivePartial<T>
}
const characters =
'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'
export function randomString(length) {
let result = ''
const charactersLength = characters.length
for (let i = 0; i < length; i++) {
result += characters.charAt(Math.floor(Math.random() * charactersLength))
}
return result
}