mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
a724a3b578
* Hoist error codes import to module scope When this code was written, the error codes map (`codes.json`) was created on-the-fly, so we had to lazily require from inside the visitor. Because `codes.json` is now checked into source, we can import it a single time in module scope. * Minify error constructors in production We use a script to minify our error messages in production. Each message is assigned an error code, defined in `scripts/error-codes/codes.json`. Then our build script replaces the messages with a link to our error decoder page, e.g. https://reactjs.org/docs/error-decoder.html/?invariant=92 This enables us to write helpful error messages without increasing the bundle size. Right now, the script only works for `invariant` calls. It does not work if you throw an Error object. This is an old Facebookism that we don't really need, other than the fact that our error minification script relies on it. So, I've updated the script to minify error constructors, too: Input: Error(`A ${adj} message that contains ${noun}`); Output: Error(formatProdErrorMessage(ERR_CODE, adj, noun)); It only works for constructors that are literally named Error, though we could add support for other names, too. As a next step, I will add a lint rule to enforce that errors written this way must have a corresponding error code. * Minify "no fallback UI specified" error in prod This error message wasn't being minified because it doesn't use invariant. The reason it didn't use invariant is because this particular error is created without begin thrown — it doesn't need to be thrown because it's located inside the error handling part of the runtime. Now that the error minification script supports Error constructors, we can minify it by assigning it a production error code in `scripts/error-codes/codes.json`. To support the use of Error constructors more generally, I will add a lint rule that enforces each message has a corresponding error code. * Lint rule to detect unminified errors Adds a lint rule that detects when an Error constructor is used without a corresponding production error code. We already have this for `invariant`, but not for regular errors, i.e. `throw new Error(msg)`. There's also nothing that enforces the use of `invariant` besides convention. There are some packages where we don't care to minify errors. These are packages that run in environments where bundle size is not a concern, like react-pg. I added an override in the ESLint config to ignore these. * Temporarily add invariant codemod script I'm adding this codemod to the repo temporarily, but I'll revert it in the same PR. That way we don't have to check it in but it's still accessible (via the PR) if we need it later. * [Automated] Codemod invariant -> Error This commit contains only automated changes: npx jscodeshift -t scripts/codemod-invariant.js packages --ignore-pattern="node_modules/**/*" yarn linc --fix yarn prettier I will do any manual touch ups in separate commits so they're easier to review. * Remove temporary codemod script This reverts the codemod script and ESLint config I added temporarily in order to perform the invariant codemod. * Manual touch ups A few manual changes I made after the codemod ran. * Enable error code transform per package Currently we're not consistent about which packages should have their errors minified in production and which ones should. This adds a field to the bundle configuration to control whether to apply the transform. We should decide what the criteria is going forward. I think it's probably a good idea to minify any package that gets sent over the network. So yes to modules that run in the browser, and no to modules that run on the server and during development only.
160 lines
4.5 KiB
JavaScript
160 lines
4.5 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
*/
|
|
|
|
import * as React from 'react';
|
|
|
|
type Unsubscribe = () => void;
|
|
|
|
export function createSubscription<Property, Value>(
|
|
config: $ReadOnly<{|
|
|
// Synchronously gets the value for the subscribed property.
|
|
// Return undefined if the subscribable value is undefined,
|
|
// Or does not support synchronous reading (e.g. native Promise).
|
|
getCurrentValue: (source: Property) => Value | void,
|
|
|
|
// Setup a subscription for the subscribable value in props, and return an unsubscribe function.
|
|
// Return empty function if the property cannot be unsubscribed from (e.g. native Promises).
|
|
// Due to the variety of change event types, subscribers should provide their own handlers.
|
|
// Those handlers should not attempt to update state though;
|
|
// They should call the callback() instead when a subscription changes.
|
|
subscribe: (
|
|
source: Property,
|
|
callback: (value: Value | void) => void,
|
|
) => Unsubscribe,
|
|
|}>,
|
|
): React$ComponentType<{|
|
|
children: (value: Value | void) => React$Node,
|
|
source: Property,
|
|
|}> {
|
|
const {getCurrentValue, subscribe} = config;
|
|
|
|
if (__DEV__) {
|
|
if (typeof getCurrentValue !== 'function') {
|
|
console.error('Subscription must specify a getCurrentValue function');
|
|
}
|
|
if (typeof subscribe !== 'function') {
|
|
console.error('Subscription must specify a subscribe function');
|
|
}
|
|
}
|
|
|
|
type Props = {|
|
|
children: (value: Value) => React$Element<any>,
|
|
source: Property,
|
|
|};
|
|
type State = {|
|
|
source: Property,
|
|
value: Value | void,
|
|
|};
|
|
|
|
// Reference: https://gist.github.com/bvaughn/d569177d70b50b58bff69c3c4a5353f3
|
|
class Subscription extends React.Component<Props, State> {
|
|
state: State = {
|
|
source: this.props.source,
|
|
value:
|
|
this.props.source != null
|
|
? getCurrentValue(this.props.source)
|
|
: undefined,
|
|
};
|
|
|
|
_hasUnmounted: boolean = false;
|
|
_unsubscribe: Unsubscribe | null = null;
|
|
|
|
static getDerivedStateFromProps(nextProps, prevState) {
|
|
if (nextProps.source !== prevState.source) {
|
|
return {
|
|
source: nextProps.source,
|
|
value:
|
|
nextProps.source != null
|
|
? getCurrentValue(nextProps.source)
|
|
: undefined,
|
|
};
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
componentDidMount() {
|
|
this.subscribe();
|
|
}
|
|
|
|
componentDidUpdate(prevProps, prevState) {
|
|
if (this.state.source !== prevState.source) {
|
|
this.unsubscribe();
|
|
this.subscribe();
|
|
}
|
|
}
|
|
|
|
componentWillUnmount() {
|
|
this.unsubscribe();
|
|
|
|
// Track mounted to avoid calling setState after unmounting
|
|
// For source like Promises that can't be unsubscribed from.
|
|
this._hasUnmounted = true;
|
|
}
|
|
|
|
render() {
|
|
return this.props.children(this.state.value);
|
|
}
|
|
|
|
subscribe() {
|
|
const {source} = this.state;
|
|
if (source != null) {
|
|
const callback = (value: Value | void) => {
|
|
if (this._hasUnmounted) {
|
|
return;
|
|
}
|
|
|
|
this.setState(state => {
|
|
// If the value is the same, skip the unnecessary state update.
|
|
if (value === state.value) {
|
|
return null;
|
|
}
|
|
|
|
// If this event belongs to an old or uncommitted data source, ignore it.
|
|
if (source !== state.source) {
|
|
return null;
|
|
}
|
|
|
|
return {value};
|
|
});
|
|
};
|
|
|
|
// Store the unsubscribe method for later (in case the subscribable prop changes).
|
|
const unsubscribe = subscribe(source, callback);
|
|
|
|
if (typeof unsubscribe !== 'function') {
|
|
throw new Error(
|
|
'A subscription must return an unsubscribe function.',
|
|
);
|
|
}
|
|
|
|
// It's safe to store unsubscribe on the instance because
|
|
// We only read or write that property during the "commit" phase.
|
|
this._unsubscribe = unsubscribe;
|
|
|
|
// External values could change between render and mount,
|
|
// In some cases it may be important to handle this case.
|
|
const value = getCurrentValue(this.props.source);
|
|
if (value !== this.state.value) {
|
|
this.setState({value});
|
|
}
|
|
}
|
|
}
|
|
|
|
unsubscribe() {
|
|
if (typeof this._unsubscribe === 'function') {
|
|
this._unsubscribe();
|
|
}
|
|
this._unsubscribe = null;
|
|
}
|
|
}
|
|
|
|
return Subscription;
|
|
}
|