Files
react-navigation/website/src/Link.js
Adam Miskiewicz f3a958dca1 Update/Fix Prettier + Eslint config for codebase
Run Prettier/Eslint on entire codebase, fix issues
2017-05-14 14:18:09 -07:00

62 lines
1.7 KiB
JavaScript

import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { NavigationActions } from 'react-navigation';
const isModifiedEvent = event =>
!!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);
const Linkable = Inner => {
class LinkableWrapped extends Component {
render() {
return (
<Inner href={this.getURL()} onClick={this.onClick} {...this.props} />
);
}
getAction = () => {
const { to, href } = this.props;
if (typeof to === 'string') {
return NavigationActions.navigate({ routeName: to });
} else if (typeof to === 'object' && typeof to.type === 'string') {
return to;
} else if (href) {
const match = href.match(/^\/(.*)/);
if (match) {
const pathParts = match[1].split('#');
const path = pathParts[0];
let params = {};
if (pathParts.length) {
params.hash = pathParts[1];
}
const action = this.context.getActionForPathAndParams(path, params);
return action;
}
return null;
}
};
onClick = e => {
const action = this.getAction();
if (!isModifiedEvent(e) && action) {
this.context.dispatch(action);
e.preventDefault();
}
};
getURL() {
const action = this.getAction();
if (!action) return '#';
return this.context.getURIForAction(action);
}
static contextTypes = {
dispatch: PropTypes.func.isRequired,
getURIForAction: PropTypes.func.isRequired,
getActionForPathAndParams: PropTypes.func.isRequired,
};
}
return LinkableWrapped;
};
const Link = Linkable(props => <a {...props} />);
Link.Linkable = Linkable;
export default Link;