Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Case sensitive routes #5438

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions packages/react-router/modules/__tests__/matchPath-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,27 @@ describe('matchPath', () => {
})
})

describe('with sensitive path', () => {
it('returns non-sensitive url', () => {
const options = {
path: '/SomeWhere',
}
const pathname = '/somewhere'
const match = matchPath(pathname, options)
expect(match.url).toBe('/somewhere')
})

it('returns sensitive url', () => {
const options = {
path: '/SomeWhere',
sensitive: true
}
const pathname = '/somewhere'
const match = matchPath(pathname, options)
expect(match).toBe(null)
})
})

describe('with no path', () => {
it('matches the root URL', () => {
const match = matchPath('/test-location/7', {})
Expand Down
6 changes: 3 additions & 3 deletions packages/react-router/modules/matchPath.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const cacheLimit = 10000
let cacheCount = 0

const compilePath = (pattern, options) => {
const cacheKey = `${options.end}${options.strict}`
const cacheKey = `${options.end}${options.strict}${options.sensitive}`
const cache = patternCache[cacheKey] || (patternCache[cacheKey] = {})

if (cache[pattern])
Expand All @@ -30,8 +30,8 @@ const matchPath = (pathname, options = {}) => {
if (typeof options === 'string')
options = { path: options }

const { path = '/', exact = false, strict = false } = options
const { re, keys } = compilePath(path, { end: exact, strict })
const { path = '/', exact = false, strict = false, sensitive = false } = options
const { re, keys } = compilePath(path, { end: exact, strict, sensitive })
const match = re.exec(pathname)

if (!match)
Expand Down