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 all commits
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
5 changes: 3 additions & 2 deletions packages/react-router/modules/Route.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class Route extends React.Component {
path: PropTypes.string,
exact: PropTypes.bool,
strict: PropTypes.bool,
sensitive: PropTypes.bool,
component: PropTypes.func,
render: PropTypes.func,
children: PropTypes.oneOfType([
Expand Down Expand Up @@ -53,7 +54,7 @@ class Route extends React.Component {
match: this.computeMatch(this.props, this.context.router)
}

computeMatch({ computedMatch, location, path, strict, exact }, router) {
computeMatch({ computedMatch, location, path, strict, exact, sensitive }, router) {
if (computedMatch)
return computedMatch // <Switch> already computed the match for us

Expand All @@ -65,7 +66,7 @@ class Route extends React.Component {
const { route } = router
const pathname = (location || route.location).pathname

return path ? matchPath(pathname, { path, strict, exact }) : route.match
return path ? matchPath(pathname, { path, strict, exact, sensitive }) : route.match
}

componentWillMount() {
Expand Down
4 changes: 2 additions & 2 deletions packages/react-router/modules/Switch.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ class Switch extends React.Component {
React.Children.forEach(children, element => {
if (!React.isValidElement(element)) return

const { path: pathProp, exact, strict, from } = element.props
const { path: pathProp, exact, strict, sensitive, from } = element.props
const path = pathProp || from

if (match == null) {
child = element
match = path ? matchPath(location.pathname, { path, exact, strict }) : route.match
match = path ? matchPath(location.pathname, { path, exact, strict, sensitive }) : route.match
}
})

Expand Down
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