WebKit / Speedometer

An open source repository for the Speedometer benchmark
Other
592 stars 68 forks source link

TodoMVC workload based on React 18 / React Router / Material UI #373

Open julienw opened 6 months ago

julienw commented 6 months ago

Hi, I'd like to propose this new workload in tentative/. It's based on React 18, React Router and Material UI.

Links:

I decided to use Material UI as a way to get deeper React trees. I also used React Router because it's very much used. The way I used it to control the model might lead to discussions though: I thought of it as a way to "emulate" a server side environment. I believe that if we'd have to implement a TodoMVC app with a server side environment, we could use the same architecture. Here of course I used a local model, not a server. Because of React 18 (and I believe the CSS-in-JS library used in Material UI) I had to override rAF and setImmediate so that the SP3 runner could capture all the work. Especially I had to use microtasks (with promises), not normal tasks (with setTimeout) like before. Indeed with just setTimeout, it was happening that we'd get a setTimeout called in another setTimeout, and this was sometimes escaping the benchmark runner.

I also decided to use some more steps in the benchmarks, than in the other TodoMVC workloads. I added:

For review, I split this in several commits to make it easier to review, but the bulk of the implementation is in Implement TodoMVC with all its actions.

If we agree on the general approach, but there are small changes to be done, I'd rather land this first and implement the changes in follow-ups. Hopefully this makes sense!

Happy to hear feedback, folks

camillobruni commented 3 months ago

Thanks, looking nice! ...and sorry for the delay.

Q1: Do think it would make sense to display the summary footer as well in the speedometer view?

Screenshot 2024-06-05 at 12 06 40

Q2: I do see a fair amount of unmeasured style and layout updates in chrome. a) Could you confirm this is the same in firefox? b) Probably harder: Could we somehow fore measure this as well?

Screenshot 2024-06-05 at 12 08 11

Q3: Would it be interesting to also add a step scroll/jump to an item in the middle of the list?

camillobruni commented 3 months ago

Both Chrome and Firefox seem to have an ok score, Safari Version 17.5 (19618.2.12.11.6) and Release 195 (Safari 17.4, WebKit 19619.1.15.0.1) both seem to struggle massively in the delete step (100x slower than FF). @rniwa is this something you might want to have a look at?

Screenshot 2024-06-05 at 12 15 19

Compare to Chrome Canary 127.0.6519.0 :

Screenshot 2024-06-05 at 12 16 46

And Firefox Nightly 127.0a1 (2024-05-12) (64-Bit):

Screenshot 2024-06-05 at 12 17 22