Home / Function/ constructor() — react Function Reference

constructor() — react Function Reference

Architecture documentation for the constructor() function in ReactART.js from the react codebase.

Entity Profile

Dependency Diagram

graph TD
  cff83ffb_5e5f_4683_1fde_cde4acabc44a["constructor()"]
  a38f915d_debe_d809_56c8_b122dfdcf5ba["Text"]
  cff83ffb_5e5f_4683_1fde_cde4acabc44a -->|defined in| a38f915d_debe_d809_56c8_b122dfdcf5ba
  0c914b0e_6cde_e3f5_de0c_14751a2b00d6["constructor()"]
  cff83ffb_5e5f_4683_1fde_cde4acabc44a -->|calls| 0c914b0e_6cde_e3f5_de0c_14751a2b00d6
  style cff83ffb_5e5f_4683_1fde_cde4acabc44a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

packages/react-art/src/ReactART.js lines 148–159

  constructor(props) {
    super(props);
    // We allow reading these props. Ideally we could expose the Text node as
    // ref directly.
    ['height', 'width', 'x', 'y'].forEach(key => {
      Object.defineProperty(this, key, {
        get: function () {
          return this._text ? this._text[key] : undefined;
        },
      });
    });
  }

Domain

Subdomains

Frequently Asked Questions

What does constructor() do?
constructor() is a function in the react codebase, defined in packages/react-art/src/ReactART.js.
Where is constructor() defined?
constructor() is defined in packages/react-art/src/ReactART.js at line 148.
What does constructor() call?
constructor() calls 1 function(s): constructor.

Analyze Your Own Codebase

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

Try Supermodel Free