Home / Class/ ProgressFixture Class — react Architecture

ProgressFixture Class — react Architecture

Architecture documentation for the ProgressFixture class in index.js from the react codebase.

Entity Profile

Dependency Diagram

graph TD
  13e2b327_1950_c225_7e12_eed30b1f5ac7["ProgressFixture"]
  96aed259_71b1_774a_a0fe_8cafae9a38ef["index.js"]
  13e2b327_1950_c225_7e12_eed30b1f5ac7 -->|defined in| 96aed259_71b1_774a_a0fe_8cafae9a38ef
  3319db3d_ac04_b4ee_8ff2_45e1cbaadaaf["render()"]
  13e2b327_1950_c225_7e12_eed30b1f5ac7 -->|method| 3319db3d_ac04_b4ee_8ff2_45e1cbaadaaf

Relationship Graph

Source Code

fixtures/dom/src/components/fixtures/progress/index.js lines 7–85

class ProgressFixture extends React.Component {
  state = {value: 0, max: 1, enabled: false, backwards: false};

  startTest = () => {
    this.setState({enabled: true}, () => {
      this.progressIntervalId = setInterval(() => {
        if (this.state.backwards) {
          if (this.state.value > 0) {
            this.setState({value: this.state.value - this.state.max / 100});
          } else {
            if (this.state.max === 10000) {
              this.resetTest();
            } else {
              this.setState({max: this.state.max * 100, backwards: false});
            }
          }
        } else {
          if (this.state.value < this.state.max) {
            this.setState({value: this.state.value + this.state.max / 100});
          } else {
            this.setState({backwards: true});
          }
        }
      }, 10);
    });
  };

  resetTest = () => {
    clearInterval(this.progressIntervalId);
    this.setState({value: 0, max: 1, enabled: false, backwards: false});
  };

  render() {
    return (
      <FixtureSet title="Progress">
        <TestCase title="Fill and reset progress bar">
          <TestCase.Steps>
            <li>Press enable button</li>
          </TestCase.Steps>

          <TestCase.ExpectedResult>
            When enabled, bar value should increase from 0% to 100% and
            backwards during three step loop: 0-1, 0-100, 0-10000. Reset button
            stops loop, sets value to 0 and max to 1.
          </TestCase.ExpectedResult>

          <Fixture>
            <div className="control-box">
              <fieldset>
                <legend>Controlled</legend>
                <progress
                  value={this.state.value}
                  max={this.state.max}></progress>
                <button
                  onClick={
                    this.state.enabled ? this.resetTest : this.startTest
                  }>
                  {this.state.enabled ? 'Reset' : 'Enable'}
                </button>
                <br />
                <span className="hint">
                  {' '}
                  max: {JSON.stringify(this.state.max)}
                </span>
                <span className="hint">
                  {' '}
                  value:{' '}
                  {JSON.stringify(
                    Math.round((this.state.value + Number.EPSILON) * 100) / 100
                  )}
                </span>
              </fieldset>
            </div>
          </Fixture>
        </TestCase>
      </FixtureSet>
    );
  }
}

Domain

Frequently Asked Questions

What is the ProgressFixture class?
ProgressFixture is a class in the react codebase, defined in fixtures/dom/src/components/fixtures/progress/index.js.
Where is ProgressFixture defined?
ProgressFixture is defined in fixtures/dom/src/components/fixtures/progress/index.js at line 7.

Analyze Your Own Codebase

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

Try Supermodel Free