清明時節雨紛紛,不如在家擼代碼。從零開始實現一個react-router,並跑通react-router-dom裏的example。node
react-router是作SPA(不是你想的SPA)時,控制不一樣的url渲染不一樣的組件的js庫。用react-router能夠方便開發,不須要手動維護url和組件的對應關係。開發時用react-router-dom,react-router-dom裏面的組件是對react-router組件的封裝。react
單頁應用的原理用兩種,一種是經過hash的變化,改變頁面,另外一種是經過url的變化改變頁面。git
let confirm;
export default class MyHistory {
constructor() {
this.updateLocation();//改變實例上的location變量,子類實現
}
go() {
//跳到第幾頁
}
goBack() {
//返回
}
goForward() {
//向前跳
}
push() {
//觸發url改變
if (this.prompt(...arguments)) {
this._push(...arguments);//由子類實現
this.updateLocation();
this._listen();
confirm = null; //頁面跳轉後把confirm清空
}
}
listen(fun) {
//url改變後監聽函數
this._listen = fun;
}
createHref(path) {
// Link組件裏的a標籤的href
if (typeof path === 'string') return path;
return path.pathname;
}
block(message) {
//window.confirm的內容多是傳入的字符串,多是傳入的函數返回的字符串
confirm = message;
}
prompt(pathname) {
//實現window.confirm,肯定後跳轉,不然不跳轉
if (!confirm) return true;
const location = Object.assign(this.location,{pathname});
const result = typeof confirm === 'function' ? confirm(location) : confirm;
return window.confirm(result);
}
}
複製代碼
import MyHistory from './MyHistory';
class HashHistory extends MyHistory {
_push(hash) {
//改變hash
history.pushState({},'','/#'+hash);
}
updateLocation() {
//獲取location
this.location = {
pathname: window.location.hash.slice(1) || '/',
search: window.location.search
}
}
}
export default function createHashHistory() {
//建立HashHistory
const history = new HashHistory();
//監聽前進後退事件
window.addEventListener('popstate', () => {
history.updateLocation();
history._listen();
});
return history;
};
複製代碼
import MyHistory from './MyHistory';
class BrowserHistory extends MyHistory{
_push(path){
//改變url
history.pushState({},'',path);
}
updateLocation(){
this.location = {
pathname:window.location.pathname,
search:window.location.search
};
}
}
export default function createHashHistory(){
//建立BrowserHistory
const history = new BrowserHistory();
window.addEventListener('popstate',()=>{
history.updateLocation();
history._listen();
});
return history;
};
複製代碼
import PropTypes from 'prop-types';//類型檢查
export default class HashRouter extends Component {
static propTypes = {
history: PropTypes.object.isRequired,
children: PropTypes.node
}
static childContextTypes = {
history: PropTypes.object,
location: PropTypes.object,
match:PropTypes.object
}
getChildContext() {
return {
history: this.props.history,
location: this.props.history.location,
match:{
path: '/',
url: '/',
params: {}
}
}
}
componentDidMount() {
this.props.history.listen(() => {
this.setState({})
});
}
render() {
return this.props.children;
}
}
複製代碼
import React,{Component} from 'react';
import PropTypes from 'prop-types';
import {createHashHistory as createHistory} from './libs/history';
import Router from './Router';
export default class HashRouter extends Component{
static propTypes = {
children:PropTypes.node
}
history = createHistory()
render(){
return <Router history={this.history} children={this.props.children}/>;
}
}
複製代碼
import {createBrowserHistory as createHistory} from './libs/history';
export default class BrowserRouter extends Component{
static propTypes = {
children:PropTypes.node
}
history = createHistory()
render(){
return <Router history={this.history} children={this.props.children}/>;
}
}
複製代碼
import pathToRegexp from 'path-to-regexp';
export default class Route extends Component {
static contextTypes = {
location: PropTypes.object,
history: PropTypes.object,
match:PropTypes.object
}
static propTypes = {
component: PropTypes.func,
render: PropTypes.func,
children: PropTypes.func,
path: PropTypes.string,
exact: PropTypes.bool
}
static childContextTypes = {
history:PropTypes.object
}
getChildContext(){
return {
history:this.context.history
}
}
computeMatched() {
const {path, exact = false} = this.props;
if(!path) return this.context.match;
const {location: {pathname}} = this.context;
const keys = [];
const reg = pathToRegexp(path, keys, {end: exact});
const result = pathname.match(reg);
if (result) {
return {
path: path,
url: result[0],
params: keys.reduce((memo, key, index) => {
memo[key.name] = result[index + 1];
return memo
}, {})
};
}
return false;
}
render() {
let props = {
location: this.context.location,
history: this.context.history
};
const { component: Component, render,children} = this.props;
const match = this.computeMatched();
if(match){
props.match = match;
if (Component) return <Component {...props} />;
if (render) return render(props);
}
if(children) return children(props);
return null;
}
}
複製代碼
import pathToRegexp from 'path-to-regexp';
export default class Switch extends Component{
static contextTypes = {
location:PropTypes.object
}
constructor(props){
super(props);
this.path = props.path;
this.keys = [];
}
match(pathname,path,exact){
return pathToRegexp(path,[],{end:exact}).test(pathname);
}
render(){
const {location:{pathname}} = this.context;
const children = this.props.children;
for(let i = 0,l=children.length;i<l;i++){
const child = children[i];
const {path,exact} = child.props;
if(this.match(pathname,path,exact)){
return child
}
}
return null;
}
}
複製代碼
export default class Link extends Component{
static propsTypes = {
to: PropTypes.oneOfType([PropTypes.string, PropTypes.object]).isRequired
}
static contextTypes = {
history:PropTypes.object
}
onClickHandle=(e)=>{
e.preventDefault();
this.context.history.push(this.href);
}
render(){
const {to} = this.props;
this.href = this.context.history.createHref(to);
return (
<a onClick={this.onClickHandle} href={this.href}>{this.props.children}</a>
);
}
}
複製代碼
export default class Redirect extends Component{
static propTypes = {
to: PropTypes.oneOfType([PropTypes.string, PropTypes.object]).isRequired
}
static contextTypes = {
history: PropTypes.object
}
componentDidMount(){
const href = this.context.history.createHref(this.props.to);
this.context.history.push(href);
}
render(){
return null;
}
};
複製代碼
export default class Prompt extends Component {
static propTypes = {
when: PropTypes.bool,
message: PropTypes.oneOfType([PropTypes.string, PropTypes.func]).isRequired
}
static contextTypes = {
history: PropTypes.object
}
componentWillMount() {
this.prompt();
}
prompt() {
const {when,message} = this.props;
if (when){
this.context.history.block(message);
}else {
this.context.history.block(null);
}
}
componentWillReceiveProps(nextProps) {
this.prompt();
}
render() {
return null;
}
};
複製代碼
import React from 'react';
import Route from './Route';
const withRouter = Component => {
const C = (props)=>{
return (
<Route children={props=>{
return (
<Component {...props} />
)
}}/>
)
};
return C;
};
export default withRouter
複製代碼
react-router、react-router-dom的api還有不少,像Redirect和withRouter還有的許多api。本文的組件只能跑通react-router-dom裏的example。源碼要複雜的多,經過學習源碼,並本身實現相應的功能,能夠對react及react-router有更深的理解,學到許多編程思想,數據結構很重要,像源碼中Router裏的ChildContext的數據解構,子組件屢次用到裏面的方法或屬性,方便複用。github
//ChildContext的數據解構
{
router:{
history, //某種 history
route:{
location:history.location,
match:{} //匹配到的結果
}
}
}
複製代碼