-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #876 from 4Catalyzer/shrink
consolidate code and move towards removing react-redux
- Loading branch information
Showing
11 changed files
with
200 additions
and
226 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,108 @@ | ||
import BaseLink from './BaseLink'; | ||
import withRouter from './withRouter'; | ||
import useEventCallback from '@restart/hooks/useEventCallback'; | ||
import React from 'react'; | ||
import warning from 'tiny-warning'; | ||
|
||
const Link = withRouter(BaseLink); | ||
Link.displayName = 'Link'; | ||
import useRouter from './useRouter'; | ||
|
||
function Link({ | ||
as: Component = 'a', | ||
to, | ||
activeClassName, | ||
activeStyle, | ||
activePropName, | ||
match: propsMatch, | ||
router: propsRouter, | ||
exact = false, | ||
onClick, | ||
target, | ||
...props | ||
}) { | ||
const { router, match } = useRouter() || { | ||
match: propsMatch, | ||
router: propsRouter, | ||
}; | ||
|
||
const handleClick = useEventCallback((event) => { | ||
if (onClick) { | ||
onClick(event); | ||
} | ||
|
||
// Don't do anything if the user's onClick handler prevented default. | ||
// Otherwise, let the browser handle the link with the computed href if the | ||
// event wasn't an unmodified left click, or if the link has a target other | ||
// than _self. | ||
if ( | ||
event.defaultPrevented || | ||
event.metaKey || | ||
event.altKey || | ||
event.ctrlKey || | ||
event.shiftKey || | ||
event.button !== 0 || | ||
(target && target !== '_self') | ||
) { | ||
return; | ||
} | ||
|
||
event.preventDefault(); | ||
|
||
// FIXME: When clicking on a link to the same location in the browser, the | ||
// actual becomes a replace rather than a push. We may want the same | ||
// handling – perhaps implemented in the Farce protocol. | ||
router.push(to); | ||
}); | ||
|
||
if (__DEV__ && typeof Component !== 'function') { | ||
for (const wrongPropName of ['component', 'Component']) { | ||
const wrongPropValue = props[wrongPropName]; | ||
if (!wrongPropValue) { | ||
continue; | ||
} | ||
|
||
warning( | ||
false, | ||
'Link to %s with `%s` prop `%s` has an element type that is not a component. The expected prop for the link component is `as`.', | ||
JSON.stringify(to), | ||
wrongPropName, | ||
wrongPropValue.displayName || wrongPropValue.name || 'UNKNOWN', | ||
); | ||
} | ||
} | ||
|
||
const href = router.createHref(to); | ||
const childrenIsFunction = typeof props.children === 'function'; | ||
|
||
if (childrenIsFunction || activeClassName || activeStyle || activePropName) { | ||
const toLocation = router.createLocation(to); | ||
const active = router.isActive(match, toLocation, { exact }); | ||
|
||
if (childrenIsFunction) { | ||
return props.children({ href, active, onClick: handleClick }); | ||
} | ||
|
||
if (active) { | ||
if (activeClassName) { | ||
props.className = props.className | ||
? `${props.className} ${activeClassName}` | ||
: activeClassName; | ||
} | ||
|
||
if (activeStyle) { | ||
props.style = { ...props.style, ...activeStyle }; | ||
} | ||
} | ||
|
||
if (activePropName) { | ||
props[activePropName] = active; | ||
} | ||
} | ||
|
||
return ( | ||
<Component | ||
{...props} | ||
href={href} | ||
onClick={handleClick} // This overrides props.onClick. | ||
/> | ||
); | ||
} | ||
|
||
export default Link; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,25 @@ | ||
import { connect } from 'react-redux'; | ||
import React from 'react'; | ||
import { shallowEqual, useSelector, useStore } from 'react-redux'; | ||
|
||
import ActionTypes from './ActionTypes'; | ||
import createBaseRouter from './createBaseRouter'; | ||
|
||
function resolveMatch(match) { | ||
return { | ||
type: ActionTypes.RESOLVE_MATCH, | ||
payload: match, | ||
}; | ||
} | ||
|
||
export default function createConnectedRouter({ | ||
getFound = ({ found }) => found, | ||
...options | ||
}) { | ||
return connect( | ||
(state) => { | ||
const { match, resolvedMatch } = getFound(state); | ||
return { match, resolvedMatch }; | ||
}, | ||
{ | ||
onResolveMatch: resolveMatch, | ||
}, | ||
null, | ||
{ | ||
// Don't block context propagation from above. The router should seldom | ||
// be unnecessarily rerendering anyway. | ||
pure: false, | ||
getDisplayName: () => 'ConnectedRouter', | ||
}, | ||
)(createBaseRouter(options)); | ||
const Router = createBaseRouter(options); | ||
|
||
const getFoundState = (state) => { | ||
const { match, resolvedMatch } = getFound(state); | ||
return { match, resolvedMatch }; | ||
}; | ||
|
||
function ConnectedRouter(props) { | ||
const store = useStore(); | ||
const foundState = useSelector(getFoundState, shallowEqual); | ||
|
||
return <Router {...props} {...foundState} store={store} />; | ||
} | ||
|
||
return ConnectedRouter; | ||
} |
Oops, something went wrong.