object-values.js — react Source File
Architecture documentation for object-values.js, a javascript file in the react codebase. 2 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR 26d0502e_352b_ae53_535d_d2c78b2ee6d5["object-values.js"] ac587885_e294_a1e9_b13f_5e7b920fdb42["react"] 26d0502e_352b_ae53_535d_d2c78b2ee6d5 --> ac587885_e294_a1e9_b13f_5e7b920fdb42 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05["shared-runtime"] 26d0502e_352b_ae53_535d_d2c78b2ee6d5 --> 006eec3d_77a9_4a47_e6c1_a96d7a6c9c05 style 26d0502e_352b_ae53_535d_d2c78b2ee6d5 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
// @validatePreserveExistingMemoizationGuarantees
import {useMemo} from 'react';
import {Stringify} from 'shared-runtime';
// derived from https://github.com/facebook/react/issues/32261
function Component({items}) {
const record = useMemo(
() =>
Object.fromEntries(
items.map(item => [
item.id,
{id: item.id, render: ref => <Stringify ref={ref} {...item} />},
])
),
[items]
);
// Without a declaration for Object.entries(), this would be assumed to mutate
// `record`, meaning existing memoization couldn't be preserved
return (
<div>
{Object.values(record).map(({id, render}) => (
<Stringify key={id} render={render} />
))}
</div>
);
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [
{
items: [
{id: '0', name: 'Hello'},
{id: '1', name: 'World!'},
],
},
],
};
Domain
Subdomains
Functions
Dependencies
- react
- shared-runtime
Source
Frequently Asked Questions
What does object-values.js do?
object-values.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 object-values.js?
object-values.js defines 1 function(s): Component.
What does object-values.js depend on?
object-values.js imports 2 module(s): react, shared-runtime.
Where is object-values.js in the architecture?
object-values.js is located at compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/object-values.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