什么是单一原则
多责任陷阱
React 单一责任原则
设想一个组件
import axios from 'axios';
// 组件具有多个职责class Weather extends Component {
constructor(props) { super(props); this.state = { temperature: 'N/A', windSpeed: 'N/A' };
}
render() { const { temperature, windSpeed } = this.state; return ( <div className="weather">
<div>Temperature: {temperature}°C</div>
<div>Wind: {windSpeed}km/h</div>
</div>
);
}
componentDidMount() {
axios.get('http://weather.com/api').then(function(response) { const { current } = response.data;
this.setState({ temperature: current.temperature, windSpeed: current.windSpeed
})
});
}
}
改写当前组件
import axios from 'axios';
// 当前组件只负责获取数据class WeatherFetch extends Component {
constructor(props) { super(props); this.state = { temperature: 'N/A', windSpeed: 'N/A' };
}
render() { const { temperature, windSpeed } = this.state; return ( <WeatherInfo temperature={temperature} windSpeed={windSpeed} />
);
}
async componentDidMount() {
const response = await axios.get('http://weather.com/api');
const { current } = response.data;
this.setState({
temperature: current.temperature,
windSpeed: current.windSpeed
});
}
}
// 组件只负责展示数据,展示逻辑可写在内部 function WeatherInfo({ temperature, windSpeed }) {
const windInfo = windSpeed === 0 ? 'calm' : `${windSpeed} km/h`; return ( <div className="weather">
<div>Temperature: {temperature}°C</div>
<div>Wind: {windInfo}</div>
</div>
);
}
HOC 高阶组件
借用高阶函数的概念:高阶组件是一个函数,入参接受一个组件返回值也是一个组件
属性代理 props proxy
高阶组件为封装的组件传递新的 props 或者改变现有的 props,这种方式称为属性代理
function withNewFunctionality(WrappedComponent) {
return class NewFunctionality extends Component {
render() { const newProp = 'Value'; const propsProxy = {
...this.props, // Alter existing prop:
ownProp: this.props.ownProp + ' was modified', // Add new prop:
newProp
}; return <WrappedComponent {...propsProxy} />;
}
}
}
const MyNewComponent = withNewFunctionality(MyComponent);
渲染劫持 render highjacking
通过更改组件 render 方法来改变组件的渲染方式,这种方式称为渲染劫持
function withModifiedChildren(WrappedComponent) {
return class ModifiedChildren extends WrappedComponent {
render() { const rootElement = super.render(); const newChildren = [
...rootElement.props.children,
// Insert a new child:
<div>New child</div>
]; return cloneElement(
rootElement,
rootElement.props,
newChildren
);
}
}
}const MyNewComponent = withModifiedChildren(MyComponent);
HOC 高阶组件单一责任原则
先定义多重责任组件
class PersistentForm extends Component {
constructor(props) { super(props); this.state = { inputValue: localStorage.getItem('inputValue') }; this.handleChange = this.handleChange.bind(this); this.handleClick = this.handleClick.bind(this);
}
render() { const { inputValue } = this.state; return ( <div className="persistent-form">
<input type="text" value={inputValue}
onChange={this.handleChange}/>
<button onClick={this.handleClick}>Save to storage</button>
</div>
);
}
handleChange(event) {
this.setState({
inputValue: event.target.value
});
}
handleClick() {
localStorage.setItem('inputValue', this.state.inputValue);
}
}
抽离出保存数据逻辑
class PersistentForm extends Component {
constructor(props) { super(props); this.state = { inputValue: props.initialValue }; this.handleChange = this.handleChange.bind(this); this.handleClick = this.handleClick.bind(this);
}
render() { const { inputValue } = this.state; return ( <div className="persistent-form">
<input type="text" value={inputValue}
onChange={this.handleChange}/>
<button onClick={this.handleClick}>Save to storage</button>
</div>
);
}
handleChange(event) {
this.setState({
inputValue: event.target.value
});
}
handleClick() {
this.props.saveValue(this.state.inputValue);
}
}
编写可复用的单一责任原则的高阶组件
// 给函数传递两个参数,一个是数据获取的 key 值,一个是存储函数function withPersistence(storageKey, storage) { // 高阶组件函数
return function(WrappedComponent) { return class PersistentComponent extends Component { constructor(props) { super(props); this.state = { initialValue: storage.getItem(storageKey) };
}
render() { return (
);
}
saveValue(value) {
storage.setItem(storageKey, value);
}
}
}
}
// 调用方式const LocalStoragePersistentForm
= withPersistence('key', localStorage)(PersistentForm);
如果你看到了这里,觉得文章写得不错就给个赞呗?如果你觉得那里值得改进的,请给
我留言。一定会认真查询,修正不足。谢谢各位小伙伴。
最后针对Android程序员,除了上面的内容,我这边给大家整理了一套最新的python系统资料可以免费送给大家,包括从基础的python脚本到web开发、爬虫、数据分析、数据可视化、机器学习等。需要这些资料的可以可以进群:851211580
即可领取 。
希望能帮助到大家,也节省大家在网上搜索资料的时间来学习,也可以分享动态给身边好友一起学习!