mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
* ReactFiberReconciler -> ReactFiberReconciler.old * Set up infra for react-reconciler fork We're planning to land some significant refactors of the reconciler. We want to be able to gradually roll out the new implementation side-by- side with the existing one. So we'll create a short lived fork of the react-reconciler package. Once the new implementation has stabilized, we'll delete the old implementation and promote the new one. This means, for as long as the fork exists, we'll need to maintain two separate implementations. This sounds painful, but since the forks will still be largely the same, most changes will not require two separate implementations. In practice, you'll implement the change in the old fork and then copy paste it to the new one. This commit only sets up the build and testing infrastructure. It does not actually fork any modules. I'll do that in subsequent PRs. The forked version of the reconciler will be used to build a special version of React DOM. I've called this build ReactDOMForked. It's only built for www; there's no open source version. The new reconciler is disabled by default. It's enabled in the `yarn test-www-variant` command. The reconciler fork isn't really related to the "variant" feature of the www builds, but I'm piggy backing on that concept to avoid having to add yet another testing dimension.
144 lines
5.5 KiB
JavaScript
144 lines
5.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 strict
|
|
*/
|
|
|
|
export const enableUserTimingAPI = __DEV__;
|
|
|
|
// Helps identify side effects in render-phase lifecycle hooks and setState
|
|
// reducers by double invoking them in Strict Mode.
|
|
export const debugRenderPhaseSideEffectsForStrictMode = __DEV__;
|
|
|
|
// To preserve the "Pause on caught exceptions" behavior of the debugger, we
|
|
// replay the begin phase of a failed component inside invokeGuardedCallback.
|
|
export const replayFailedUnitOfWorkWithInvokeGuardedCallback = __DEV__;
|
|
|
|
// Warn about deprecated, async-unsafe lifecycles; relates to RFC #6:
|
|
export const warnAboutDeprecatedLifecycles = true;
|
|
|
|
// Gather advanced timing metrics for Profiler subtrees.
|
|
export const enableProfilerTimer = __PROFILE__;
|
|
|
|
// Record durations for commit and passive effects phases.
|
|
export const enableProfilerCommitHooks = false;
|
|
|
|
// Trace which interactions trigger each commit.
|
|
export const enableSchedulerTracing = __PROFILE__;
|
|
|
|
// SSR experiments
|
|
export const enableSuspenseServerRenderer = __EXPERIMENTAL__;
|
|
export const enableSelectiveHydration = __EXPERIMENTAL__;
|
|
|
|
// Flight experiments
|
|
export const enableBlocksAPI = __EXPERIMENTAL__;
|
|
|
|
// Only used in www builds.
|
|
export const enableSchedulerDebugging = false;
|
|
|
|
// Only used in www builds.
|
|
export function addUserTimingListener() {
|
|
throw new Error('Not implemented.');
|
|
}
|
|
|
|
// Disable javascript: URL strings in href for XSS protection.
|
|
export const disableJavaScriptURLs = false;
|
|
|
|
// Warns when a combination of updates on a dom can cause a style declaration
|
|
// that clashes with a previous one https://github.com/facebook/react/pull/14181
|
|
export const warnAboutShorthandPropertyCollision = true;
|
|
|
|
// Experimental React Flare event system and event components support.
|
|
export const enableDeprecatedFlareAPI = false;
|
|
|
|
// Experimental Host Component support.
|
|
export const enableFundamentalAPI = false;
|
|
|
|
// Experimental Scope support.
|
|
export const enableScopeAPI = false;
|
|
|
|
// Experimental useEvent support.
|
|
export const enableUseEventAPI = false;
|
|
|
|
// New API for JSX transforms to target - https://github.com/reactjs/rfcs/pull/107
|
|
|
|
// We will enforce mocking scheduler with scheduler/unstable_mock at some point. (v17?)
|
|
// Till then, we warn about the missing mock, but still fallback to a legacy mode compatible version
|
|
export const warnAboutUnmockedScheduler = false;
|
|
|
|
// For tests, we flush suspense fallbacks in an act scope;
|
|
// *except* in some of our own tests, where we test incremental loading states.
|
|
export const flushSuspenseFallbacksInTests = true;
|
|
|
|
// Add a callback property to suspense to notify which promises are currently
|
|
// in the update queue. This allows reporting and tracing of what is causing
|
|
// the user to see a loading state.
|
|
// Also allows hydration callbacks to fire when a dehydrated boundary gets
|
|
// hydrated or deleted.
|
|
export const enableSuspenseCallback = false;
|
|
|
|
// Part of the simplification of React.createElement so we can eventually move
|
|
// from React.createElement to React.jsx
|
|
// https://github.com/reactjs/rfcs/blob/createlement-rfc/text/0000-create-element-changes.md
|
|
export const warnAboutDefaultPropsOnFunctionComponents = false;
|
|
|
|
export const disableSchedulerTimeoutBasedOnReactExpirationTime = false;
|
|
|
|
export const enableTrustedTypesIntegration = false;
|
|
|
|
// Controls sequence of passive effect destroy and create functions.
|
|
// If this flag is off, destroy and create functions may be interleaved.
|
|
// When the flag is on, all destroy functions will be run (for all fibers)
|
|
// before any create functions are run, similar to how layout effects work.
|
|
// This flag provides a killswitch if that proves to break existing code somehow.
|
|
export const runAllPassiveEffectDestroysBeforeCreates = false;
|
|
|
|
// Controls behavior of deferred effect destroy functions during unmount.
|
|
// Previously these functions were run during commit (along with layout effects).
|
|
// Ideally we should delay these until after commit for performance reasons.
|
|
// This flag provides a killswitch if that proves to break existing code somehow.
|
|
//
|
|
// WARNING This flag only has an affect if used with runAllPassiveEffectDestroysBeforeCreates.
|
|
export const deferPassiveEffectCleanupDuringUnmount = false;
|
|
|
|
// Enables a warning when trying to spread a 'key' to an element;
|
|
// a deprecated pattern we want to get rid of in the future
|
|
export const warnAboutSpreadingKeyToJSX = false;
|
|
|
|
// Internal-only attempt to debug a React Native issue. See D20130868.
|
|
export const throwEarlyForMysteriousError = false;
|
|
|
|
export const enableNewReconciler = false;
|
|
|
|
// --------------------------
|
|
// Future APIs to be deprecated
|
|
// --------------------------
|
|
|
|
// Prevent the value and checked attributes from syncing
|
|
// with their related DOM properties
|
|
export const disableInputAttributeSyncing = false;
|
|
|
|
export const warnAboutStringRefs = false;
|
|
|
|
export const disableLegacyContext = false;
|
|
|
|
// Disables children for <textarea> elements
|
|
export const disableTextareaChildren = false;
|
|
|
|
// Disables Maps as ReactElement children
|
|
export const disableMapsAsChildren = false;
|
|
|
|
export const disableModulePatternComponents = false;
|
|
|
|
// We should remove this flag once the above flag becomes enabled
|
|
export const warnUnstableRenderSubtreeIntoContainer = false;
|
|
|
|
// Modern event system where events get registered at roots
|
|
export const enableModernEventSystem = false;
|
|
|
|
// Support legacy Primer support on internal FB www
|
|
export const enableLegacyFBPrimerSupport = false;
|