-
-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathPatternUtils.js
177 lines (144 loc) · 4.61 KB
/
PatternUtils.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
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
import invariant from 'invariant'
function escapeRegExp(string) {
return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')
}
function escapeSource(string) {
return escapeRegExp(string).replace(/\/+/g, '/+')
}
function _compilePattern(pattern) {
let regexpSource = ''
const paramNames = []
const tokens = []
let match, lastIndex = 0, matcher = /:([a-zA-Z_$][a-zA-Z0-9_$]*)|\*|\(|\)/g
while ((match = matcher.exec(pattern))) {
if (match.index !== lastIndex) {
tokens.push(pattern.slice(lastIndex, match.index))
regexpSource += escapeSource(pattern.slice(lastIndex, match.index))
}
if (match[1]) {
regexpSource += '([^/?#]+)'
paramNames.push(match[1])
} else if (match[0] === '*') {
regexpSource += '([\\s\\S]*?)'
paramNames.push('splat')
} else if (match[0] === '(') {
regexpSource += '(?:'
} else if (match[0] === ')') {
regexpSource += ')?'
}
tokens.push(match[0])
lastIndex = matcher.lastIndex
}
if (lastIndex !== pattern.length) {
tokens.push(pattern.slice(lastIndex, pattern.length))
regexpSource += escapeSource(pattern.slice(lastIndex, pattern.length))
}
return {
pattern,
regexpSource,
paramNames,
tokens
}
}
const CompiledPatternsCache = {}
export function compilePattern(pattern) {
if (!(pattern in CompiledPatternsCache))
CompiledPatternsCache[pattern] = _compilePattern(pattern)
return CompiledPatternsCache[pattern]
}
/**
* Attempts to match a pattern on the given pathname. Patterns may use
* the following special characters:
*
* - :paramName Matches a URL segment up to the next /, ?, or #. The
* captured string is considered a "param"
* - () Wraps a segment of the URL that is optional
* - * Consumes (non-greedy) all characters up to the next
* character in the pattern, or to the end of the URL if
* there is none
*
* The return value is an object with the following properties:
*
* - remainingPathname
* - paramNames
* - paramValues
*/
export function matchPattern(pattern, pathname) {
let { regexpSource, paramNames, tokens } = compilePattern(pattern)
regexpSource += '/*' // Ignore trailing slashes
const captureRemaining = tokens[tokens.length - 1] !== '*'
if (captureRemaining)
regexpSource += '([\\s\\S]*?)'
const match = pathname.match(new RegExp('^' + regexpSource + '$', 'i'))
let remainingPathname, paramValues
if (match != null) {
paramValues = Array.prototype.slice.call(match, 1).map(function (v) {
return v != null ? decodeURIComponent(v.replace(/\+/g, '%20')) : v
})
if (captureRemaining) {
remainingPathname = paramValues.pop()
} else {
remainingPathname = pathname.replace(match[0], '')
}
} else {
remainingPathname = paramValues = null
}
return {
remainingPathname,
paramNames,
paramValues
}
}
export function getParamNames(pattern) {
return compilePattern(pattern).paramNames
}
export function getParams(pattern, pathname) {
const { paramNames, paramValues } = matchPattern(pattern, pathname)
if (paramValues != null) {
return paramNames.reduce(function (memo, paramName, index) {
memo[paramName] = paramValues[index]
return memo
}, {})
}
return null
}
/**
* Returns a version of the given pattern with params interpolated. Throws
* if there is a dynamic segment of the pattern for which there is no param.
*/
export function formatPattern(pattern, params) {
params = params || {}
const { tokens } = compilePattern(pattern)
let parenCount = 0, pathname = '', splatIndex = 0
let token, paramName, paramValue
for (let i = 0, len = tokens.length; i < len; ++i) {
token = tokens[i]
if (token === '*') {
paramValue = Array.isArray(params.splat) ? params.splat[splatIndex++] : params.splat
invariant(
paramValue != null || parenCount > 0,
'Missing splat #%s for path "%s"',
splatIndex, pattern
)
if (paramValue != null)
pathname += encodeURI(paramValue).replace(/%20/g, '+')
} else if (token === '(') {
parenCount += 1
} else if (token === ')') {
parenCount -= 1
} else if (token.charAt(0) === ':') {
paramName = token.substring(1)
paramValue = params[paramName]
invariant(
paramValue != null || parenCount > 0,
'Missing "%s" parameter for path "%s"',
paramName, pattern
)
if (paramValue != null)
pathname += encodeURIComponent(paramValue).replace(/%20/g, '+')
} else {
pathname += token
}
}
return pathname.replace(/\/+/g, '/')
}