[React] Use the URL as the source of truth in React

本文介绍如何利用React及React Router将URL作为应用程序状态的单一真实来源。通过三个步骤实现:获取位置属性、处理页面刷新时查询字符串的存在并加载数据、监听查询字符串变化并更新数据。

In Single Page Apps we're used to fetch the data on event callbacks. That disables the capacity to use the URL to share it to someone else and get to the same state of the app, just like in non Single Page Apps.

This lesson shows you how to use React and React Router to use the URL as the source of truth for your app state.

 

Doing this in React, we can devide into three steps:

1. We can use 'withRouter' HOC to get 'location' props.

2. Handle refresh case: when page refresh, we want to check whether there is query string, if yes, then we need to fetch the data from the BE.

3, Hnadle query string changes case: when the query string changes, we want to use 'componentWIllReceiveProps' lifecycle to get udpated query string, then fetch the data from BE.

 

import React from "react";
import { render } from "react-dom";
import { withRouter } from "react-router";
import { HashRouter, Route, Switch } from 'react-router-dom';
import Search from "./Search";

const styles = {
  fontFamily: "sans-serif",
  textAlign: "center"
};

// Step 1
const App = withRouter(() => (
  <div style={styles}>
    <Switch>
      <Route exact path="/" component={Search} />
    </Switch>
  </div>
));

render(
  <HashRouter>
    <App />
  </HashRouter>,
  document.getElementById("root")
);


-----------------------


import React, { Component } from "react";

const baseUrl = "https://jsonplaceholder.typicode.com/posts";

class Hello extends Component {
  state = {
    results: []
  };

  // Step 2
  componentDidMount() {
    const queryString = this.props.location.search;

    if (queryString) {
      this.fetch(queryString);
    }
  }

  // Step 3
  componentWillReceiveProps({ location }) {
    const oldQueryString = this.props.location.search;
    const queryString = location.search;

    if (oldQueryString !== queryString) {
      this.fetch(queryString);
    }
  }

  fetch = (queryString = "") => {
    fetch(`${baseUrl}${queryString}`)
      .then(res => res.json())
      .then(results => this.setState({ results }));
  };

  handleChange = ev => {
    const { value } = this.input;
    const queryString = value ? `?q=${value}` : "";
    const currentUrl = window.location.href.split("?")[0];
    window.location = `${currentUrl}${queryString}`;
  };

  render() {
    return (
      <div>
        <input ref={input => (this.input = input)} onBlur={this.handleChange} />
        <br />
        {this.state.results.map((res, i) => <p key={i}>{res.title}</p>)}
      </div>
    );
  }
}

export default Hello;

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值