Home / File/ useContext-read-context-in-callback-if-condition.js — react Source File

useContext-read-context-in-callback-if-condition.js — react Source File

Architecture documentation for useContext-read-context-in-callback-if-condition.js, a javascript file in the react codebase. 2 imports, 0 dependents.

File javascript TestingUtilities Fixtures 2 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  2fdbab65_2ee5_6b1e_acfc_71f1b76fbe1e["useContext-read-context-in-callback-if-condition.js"]
  ac587885_e294_a1e9_b13f_5e7b920fdb42["react"]
  2fdbab65_2ee5_6b1e_acfc_71f1b76fbe1e --> ac587885_e294_a1e9_b13f_5e7b920fdb42
  006eec3d_77a9_4a47_e6c1_a96d7a6c9c05["shared-runtime"]
  2fdbab65_2ee5_6b1e_acfc_71f1b76fbe1e --> 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05
  style 2fdbab65_2ee5_6b1e_acfc_71f1b76fbe1e fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import {createContext, useContext} from 'react';
import {Stringify} from 'shared-runtime';

const FooContext = createContext({current: true});

function Component(props) {
  const foo = useContext(FooContext);

  const getValue = () => {
    if (foo.current) {
      return {};
    } else {
      return null;
    }
  };
  const value = getValue();

  return <Stringify value={value} />;
}

export const FIXTURE_ENTRYPOINT = {
  fn: Component,
  params: [{}],
};

Subdomains

Functions

Dependencies

  • react
  • shared-runtime

Frequently Asked Questions

What does useContext-read-context-in-callback-if-condition.js do?
useContext-read-context-in-callback-if-condition.js is a source file in the react codebase, written in javascript. It belongs to the TestingUtilities domain, Fixtures subdomain.
What functions are defined in useContext-read-context-in-callback-if-condition.js?
useContext-read-context-in-callback-if-condition.js defines 1 function(s): Component.
What does useContext-read-context-in-callback-if-condition.js depend on?
useContext-read-context-in-callback-if-condition.js imports 2 module(s): react, shared-runtime.
Where is useContext-read-context-in-callback-if-condition.js in the architecture?
useContext-read-context-in-callback-if-condition.js is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/useContext-read-context-in-callback-if-condition.js (domain: TestingUtilities, subdomain: Fixtures, directory: compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free