aboutsummaryrefslogtreecommitdiff
path: root/bench/hot-module-reloading/css-stress-test/src/main.tsx
blob: 3b67cd111ba492eebb607175aa739e7091f789ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
export const Main = ({ productName, cssInJS }) => {
  return (
    <>
      <header>
        <div className="Title">CSS HMR Stress Test!</div>
        <p className="Description">
          This page visually tests how quickly a bundler can update{" "}
          {cssInJS ? "CSS-in-JS" : "CSS"} over Hot Module Reloading.
        </p>
      </header>
      <main className="main">
        <section className="ProgressSection">
          <p className="Subtitle">
            <span className="Subtitle-part ran">
              Ran: <span className="timer"></span>
            </span>
          </p>

          <div className="ProgressBar-container">
            <div className="ProgressBar"></div>
          </div>
          <div className="SectionLabel">
            The progress bar should move from left to right smoothly.
          </div>
        </section>

        <section>
          <div className="Spinners">
            <div className="Spinner-container Spinner-1">
              <div className="Spinner"></div>
            </div>

            <div className="Spinner-container Spinner-2">
              <div className="Spinner"></div>
            </div>

            <div className="Spinner-container Spinner-3">
              <div className="Spinner"></div>
            </div>

            <div className="Spinner-container Spinner-4">
              <div className="Spinner"></div>
            </div>
          </div>
          <div className="SectionLabel">
            The spinners should rotate &amp; change color smoothly.
          </div>
        </section>
      </main>
      <footer>
        <div className="SectionLabel FooterLabel">
          There are no CSS animations on this page.
        </div>

        <div className="Bundler-container">
          <div className="Bundler">{productName}</div>
          <div className="Bundler-updateRate">
            {cssInJS ? "CSS-in-JS framework: " + cssInJS : ""}
          </div>
        </div>
      </footer>
    </>
  );
};