Skip to content

Commit 839547f

Browse files
committed
Added a note about the prefix
1 parent 9818f57 commit 839547f

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

text/0000-static-lifecycle-methods.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ class ExampleComponent extends React.Component {
142142

143143
# Motivation
144144

145-
The React team recently added a feature flag to stress-test Facebook components for potential incompatibilities with our experimental async rendering mode (facebook/react/pull/11587). We enabled this feature flag internally so that we could:
145+
The React team recently added a feature flag to stress-test Facebook components for potential incompatibilities with our experimental async rendering mode ([facebook/react/pull/11587](https://github.com/facebook/react/pull/11587)). We enabled this feature flag internally so that we could:
146146
1. Identify common problematic coding patterns with the legacy component API to inform a new async component API.
147147
2. Find and fix async bugs before they impact end-users by intentionally triggering them in a deterministic way.
148148
3. Gain confidence that our existing products could work in async.
@@ -193,21 +193,21 @@ React does not call this method before the intial render/mount and so it is not
193193

194194
### `componentWillMount`
195195

196-
This method will log a deprecation warning in development mode recommending that users use the new static `prefetch` method instead. It will be removed entirely in version 17.
196+
This method will log a deprecation warning in development mode recommending that users either rename to `unsafe_componentWillMount` or use the new static `prefetch` method instead. It will be removed entirely in version 17.
197197

198198
### `componentWillUpdate`
199199

200-
This method will log a deprecation warning in development mode recommending that users use the new static `prefetch` method instead. It will be removed entirely in version 17.
200+
This method will log a deprecation warning in development mode recommending that users either rename to `unsafe_componentWillUpdate` or use the new static `prefetch` method instead. It will be removed entirely in version 17.
201201

202202
### `componentWillReceiveProps`
203203

204-
This method will log a deprecation warning in development mode recommending that users use the new static `deriveStateFromProps` method instead. It will be removed entirely in version 17.
204+
This method will log a deprecation warning in development mode recommending that users either rename to `unsafe_componentWillReceiveProps` or use the new static `deriveStateFromProps` method instead. It will be removed entirely in version 17.
205205

206206
# Drawbacks
207207

208208
The current component lifecycle hooks are familiar and used widely. This proposed change will introduce a lot of churn within the ecosystem. I hope that we can reduce the impact of this change through the use of codemods, but it will still require a manual review process and testing.
209209

210-
This change is **not backwards compatible**. It will require library maintainers to drop support for older versions of React in order to support the future component API. Unfortunately, I believe this is unavoidable in order to safely transition to an async-compatible world.
210+
This change is **not fully backwards compatible**. Libraries will need to drop support for older versions of React in order to use the new, static API. Unfortunately, I believe this is unavoidable in order to safely transition to an async-compatible world.
211211

212212
# Alternatives
213213

@@ -227,9 +227,11 @@ There are no advanced proposals for such a stateful, functional component API th
227227

228228
Begin by reaching out to prominent third-party library maintainers to make sure there are no use-cases we have failed to consider.
229229

230-
Assuming we move forward with the proposal, release (at least one) minor 16.x update to add deprecation warnings for the legacy lifecycles and inform users to use the new static methods instead. We'll then cordinate with library authors to ensure they have enough time to migrate to the new API in advance of the major release that drops support for the legacy lifecycles.
230+
Assuming we move forward with the proposal, release (at least one) minor 16.x update to add deprecation warnings for the legacy lifecycles and inform users to either rename with the `unsafe_` prefix or use the new static methods instead. We'll then cordinate with library authors to ensure they have enough time to migrate to the new API in advance of the major release that drops support for the legacy lifecycles.
231231

232-
We will also provide codemods to assist with the migration, although given the nature of the change, codemods will be insufficient to handle all cases. Manual verification will be required.
232+
We will provide a codemod to rename the deprecated lifecycle hooks with the new `unsafe_` prefix.
233+
234+
We will also provide codemods to assist with the migration to static methods, although given the nature of the change, codemods will be insufficient to handle all cases. Manual verification will be required.
233235

234236
# How we teach this
235237

0 commit comments

Comments
 (0)