react-super-select icon indicating copy to clipboard operation
react-super-select copied to clipboard

componentWillReceiveProps has been renamed, and is not recommended for use

Open krtschmr opened this issue 6 years ago • 2 comments

<ReactSuperSelect initialValue={this.initialValue()} customOptionTemplateFunction={this.bankTemplate} placeholder={"Select the receiving bank"} dataSource={this.props.banks} onChange={this.changeHandler} clearable={false}/>

results in

}
react-dom.development.js:12430 Warning: componentWillReceiveProps has been renamed, and is not recommended for use. See https://fb.me/react-unsafe-component-lifecycles for details.

* Move data fetching code or side effects to componentDidUpdate.
* If you're updating state whenever props change, refactor your code to use memoization techniques or move it to static getDerivedStateFromProps. Learn more at: https://fb.me/react-derived-state
* Rename componentWillReceiveProps to UNSAFE_componentWillReceiveProps to suppress this warning in non-strict mode. In React 17.x, only the UNSAFE_ name will work. To rename all deprecated lifecycles to their new names, you can run `npx react-codemod rename-unsafe-lifecycles` in your project source folder.

Please update the following components: ReactSuperSelect

krtschmr avatar Nov 13 '19 02:11 krtschmr

@krtschmr Thanks for filing the issue. At the moment I do not have the bandwidth to update this component.

alsoscotland avatar Nov 13 '19 13:11 alsoscotland

@alsoscotland that's okay. i'm too much of a beginner to understand what's going on in react, so i can't patch/fix it and just report. as long it's in here, so we know it and can address it in future, we are all happy.

krtschmr avatar Nov 13 '19 14:11 krtschmr