Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(deps): removing fbjs dependency by creating a local module for invariant and warning #2727

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion packages/react-native-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"dependencies": {
"@babel/runtime": "^7.18.6",
"@react-native/normalize-colors": "^0.74.1",
"fbjs": "^3.0.4",
"inline-style-prefixer": "^6.0.1",
"memoize-one": "^6.0.0",
"nullthrows": "^1.1.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-web/src/exports/AppRegistry/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import type { Application } from './renderApplication';
import type { ComponentType, Node } from 'react';

import invariant from 'fbjs/lib/invariant';
import invariant from '../../modules/invariant';
import unmountComponentAtNode from '../unmountComponentAtNode';
import renderApplication, { getApplication } from './renderApplication';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import type { ComponentType, Node } from 'react';

import AppContainer from './AppContainer';
import invariant from 'fbjs/lib/invariant';
import invariant from '../../modules/invariant';
import renderLegacy, { hydrateLegacy, render, hydrate } from '../render';
import StyleSheet from '../StyleSheet';
import React from 'react';
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-web/src/exports/AppState/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

'use client';

import invariant from 'fbjs/lib/invariant';
import invariant from '../../modules/invariant';
import EventEmitter from '../../vendor/react-native/vendor/emitter/EventEmitter';
import canUseDOM from '../../modules/canUseDom';

Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-web/src/exports/Dimensions/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'use client';

import type { EventSubscription } from '../../vendor/react-native/vendor/emitter/EventEmitter';
import invariant from 'fbjs/lib/invariant';
import invariant from '../../modules/invariant';
import canUseDOM from '../../modules/canUseDom';

export type DisplayMetrics = {|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @flow
*/

import invariant from 'fbjs/lib/invariant';
import invariant from '../../modules/invariant';

type SimpleTask = {|
name: string,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @flow
*/

import invariant from 'fbjs/lib/invariant';
import invariant from '../../modules/invariant';
import type { Task } from './TaskQueue';
import TaskQueue from './TaskQueue';
import type { EventSubscription } from '../../vendor/react-native/vendor/emitter/EventEmitter';
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-web/src/exports/Linking/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @flow
*/

import invariant from 'fbjs/lib/invariant';
import invariant from '../../modules/invariant';
import canUseDOM from '../../modules/canUseDom';

const initialURL = canUseDOM ? window.location.href : '';
Expand Down
4 changes: 2 additions & 2 deletions packages/react-native-web/src/exports/ScrollView/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import type { ViewProps, ViewStyle } from '../View/types';

import Dimensions from '../Dimensions';
import dismissKeyboard from '../../modules/dismissKeyboard';
import invariant from 'fbjs/lib/invariant';
import invariant from '../../modules/invariant';
import mergeRefs from '../../modules/mergeRefs';
import Platform from '../Platform';
import ScrollViewBase from './ScrollViewBase';
Expand All @@ -23,7 +23,7 @@ import TextInputState from '../../modules/TextInputState';
import UIManager from '../UIManager';
import View from '../View';
import React from 'react';
import warning from 'fbjs/lib/warning';
import warning from '../../modules/warning';

type ScrollViewProps = {
...ViewProps,
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native-web/src/exports/Share/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @flow
*/

import invariant from 'fbjs/lib/invariant';
import invariant from '../../modules/invariant';

type Content =
| { title?: string, message?: string, url: string }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @flow
*/

import invariant from 'fbjs/lib/invariant';
import invariant from '../../modules/invariant';

const ensurePositiveDelayProps = (props: any) => {
invariant(
Expand Down
30 changes: 30 additions & 0 deletions packages/react-native-web/src/modules/emptyFunction/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/* eslint-disable */
'use strict';

function makeEmptyFunction(arg) {
return function () {
return arg;
};
}
/**
* This function accepts and discards inputs; it has no side effects. This is
* primarily useful idiomatically for overridable function endpoints which
* always need to be callable, since JS lacks a null-call idiom ala Cocoa.
*/

var emptyFunction = function emptyFunction() {};

emptyFunction.thatReturns = makeEmptyFunction;
emptyFunction.thatReturnsFalse = makeEmptyFunction(false);
emptyFunction.thatReturnsTrue = makeEmptyFunction(true);
emptyFunction.thatReturnsNull = makeEmptyFunction(null);

emptyFunction.thatReturnsThis = function () {
return this;
};

emptyFunction.thatReturnsArgument = function (arg) {
return arg;
};

export default emptyFunction;
50 changes: 50 additions & 0 deletions packages/react-native-web/src/modules/invariant/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/* eslint-disable */
'use strict';

var validateFormat =
process.env.NODE_ENV !== 'production'
? function (format) {
if (format === undefined) {
throw new Error('invariant(...): Second argument must be a string.');
}
}
: function (format) {};

function invariant(condition, format) {
for (
var _len = arguments.length,
args = new Array(_len > 2 ? _len - 2 : 0),
_key = 2;
_key < _len;
_key++
) {
args[_key - 2] = arguments[_key];
}

validateFormat(format);

if (!condition) {
var error;

if (format === undefined) {
error = new Error(
'Minified exception occurred; use the non-minified dev environment ' +
'for the full error message and additional helpful warnings.'
);
} else {
var argIndex = 0;
error = new Error(
format.replace(/%s/g, function () {
return String(args[argIndex++]);
})
);
error.name = 'Invariant Violation';
}

error.framesToPop = 1; // Skip invariant's own stack frame.

throw error;
}
}

export default invariant;
68 changes: 68 additions & 0 deletions packages/react-native-web/src/modules/warning/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
/* eslint-disable */
'use strict';

import emptyFunction from '../emptyFunction';
/**
* Similar to invariant but only logs a warning if the condition is not met.
* This can be used to log issues in development environments in critical
* paths. Removing the logging code for production environments will keep the
* same logic and follow the same code paths.
*/

function printWarning(format) {
for (
var _len = arguments.length,
args = new Array(_len > 1 ? _len - 1 : 0),
_key = 1;
_key < _len;
_key++
) {
args[_key - 1] = arguments[_key];
}

var argIndex = 0;
var message =
'Warning: ' +
format.replace(/%s/g, function () {
return args[argIndex++];
});

if (typeof console !== 'undefined') {
console.error(message);
}

try {
// --- Welcome to debugging React ---
// This error was thrown as a convenience so that you can use this stack
// to find the callsite that caused this warning to fire.
throw new Error(message);
} catch (x) {}
}

var warning =
process.env.NODE_ENV !== 'production'
? function (condition, format) {
if (format === undefined) {
throw new Error(
'`warning(condition, format, ...args)` requires a warning ' +
'message argument'
);
}

if (!condition) {
for (
var _len2 = arguments.length,
args = new Array(_len2 > 2 ? _len2 - 2 : 0),
_key2 = 2;
_key2 < _len2;
_key2++
) {
args[_key2 - 2] = arguments[_key2];
}

printWarning.apply(void 0, [format].concat(args));
}
}
: emptyFunction;

export default warning;
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import AnimatedValue from './nodes/AnimatedValue';
import NativeAnimatedHelper from './NativeAnimatedHelper';

import invariant from 'fbjs/lib/invariant';
import invariant from '../../../modules/invariant';

import {shouldUseNativeDriver}from './NativeAnimatedHelper';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import type {
import type {AnimationConfig, EndCallback} from './animations/Animation';
import type {InterpolationConfigType} from './nodes/AnimatedInterpolation';
import ReactNativeFeatureFlags from '../ReactNative/ReactNativeFeatureFlags';
import invariant from 'fbjs/lib/invariant';
import invariant from '../../../modules/invariant';
import RCTDeviceEventEmitter from '../EventEmitter/RCTDeviceEventEmitter';
import type {EventSubscription} from '../vendor/emitter/EventEmitter';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import type AnimatedInterpolation from '../nodes/AnimatedInterpolation';
import Animation from './Animation';
import SpringConfig from '../SpringConfig';

import invariant from 'fbjs/lib/invariant';
import invariant from '../../../../modules/invariant';

import {shouldUseNativeDriver} from '../NativeAnimatedHelper';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import type AnimatedNode from './AnimatedNode';
import AnimatedWithChildren from './AnimatedWithChildren';
import NativeAnimatedHelper from '../NativeAnimatedHelper';

import invariant from 'fbjs/lib/invariant';
import invariant from '../../../../modules/invariant';
import normalizeColor from '@react-native/normalize-colors';

import type {PlatformConfig} from '../AnimatedPlatformConfig';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import NativeAnimatedHelper from '../NativeAnimatedHelper';

const NativeAnimatedAPI = NativeAnimatedHelper.API;
import invariant from 'fbjs/lib/invariant';
import invariant from '../../../../modules/invariant';

import type {PlatformConfig} from '../AnimatedPlatformConfig';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import AnimatedNode from './AnimatedNode';
import AnimatedStyle from './AnimatedStyle';
import NativeAnimatedHelper from '../NativeAnimatedHelper';

import invariant from 'fbjs/lib/invariant';
import invariant from '../../../../modules/invariant';

class AnimatedProps extends AnimatedNode {
_props: Object;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import AnimatedValue from './AnimatedValue';
import AnimatedWithChildren from './AnimatedWithChildren';

import invariant from 'fbjs/lib/invariant';
import invariant from '../../../../modules/invariant';

type ValueXYListenerCallback = (value: {
x: number,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
} from '../vendor/emitter/EventEmitter';
import Platform from '../../../exports/Platform';
import RCTDeviceEventEmitter from './RCTDeviceEventEmitter';
import invariant from 'fbjs/lib/invariant';
import invariant from '../../../modules/invariant';

type NativeModule = $ReadOnly<{
addListener: (eventType: string) => void,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import View, { type ViewProps } from '../../../exports/View';
import StyleSheet from '../../../exports/StyleSheet';
import deepDiffer from '../deepDiffer';
import Platform from '../../../exports/Platform';
import invariant from 'fbjs/lib/invariant';
import invariant from '../../../modules/invariant';
import * as React from 'react';

type ScrollViewNativeComponent = any;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
* From React 16.0.0
*/

import invariant from 'fbjs/lib/invariant';

var twoArgumentPooler = function(a1, a2) {
var Klass = this;
if (Klass.instancePool.length) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'use strict';

import type {TurboModule} from './RCTExport';
import invariant from 'fbjs/lib/invariant';
import invariant from '../../../modules/invariant';

export function get<T: TurboModule>(name: string): ?T {
return null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

import type {FrameMetricProps} from '../VirtualizedList/VirtualizedListProps';

import invariant from 'fbjs/lib/invariant';
import invariant from '../../../modules/invariant';

export type ViewToken = {
item: any,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @format
*/

import invariant from 'fbjs/lib/invariant';
import invariant from '../../../modules/invariant';

export type CellRegion = {
first: number,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @format
*/

import invariant from 'fbjs/lib/invariant';
import invariant from '../../../modules/invariant';

export default class ChildListCollection<TList> {
_cellKeyToChildren: Map<string, Set<TList>> = new Map();
Expand Down
Loading