packages/relay-runtime/store/createRelayContext.js (27 lines of code) (raw):

/** * Copyright (c) Meta Platforms, Inc. and 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-local * @format */ // flowlint ambiguous-object-type:error 'use strict'; import type {RelayContext} from './RelayStoreTypes.js'; import typeof {createContext} from 'react'; const invariant = require('invariant'); // Ideally, we'd just import the type of the react module, but this causes Flow // problems. type React = { createContext: createContext<RelayContext | null>, version: string, ... }; let relayContext: ?React$Context<RelayContext | null>; let firstReact: ?React; function createRelayContext(react: React): React$Context<RelayContext | null> { if (!relayContext) { relayContext = react.createContext(null); if (__DEV__) { relayContext.displayName = 'RelayContext'; } firstReact = react; } invariant( react === firstReact, '[createRelayContext]: You are passing a different instance of React', react.version, ); return relayContext; } module.exports = createRelayContext;