Page MenuHomePhabricator

[web] Introduce Loading component to web
ClosedPublic

Authored by ashoat on Dec 21 2022, 8:21 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, May 2, 11:21 PM
Unknown Object (File)
Thu, Apr 25, 8:10 AM
Unknown Object (File)
Thu, Apr 25, 8:10 AM
Unknown Object (File)
Thu, Apr 25, 8:10 AM
Unknown Object (File)
Apr 8 2024, 5:12 AM
Unknown Object (File)
Mar 11 2024, 9:40 PM
Unknown Object (File)
Mar 5 2024, 6:34 AM
Unknown Object (File)
Mar 5 2024, 6:34 AM
Subscribers
None

Details

Summary

Designs are from DES-8; see Figma animation here. This is the first step to fixing SSR on web... basically we need to align keyserver/web on some loading HTML.

This can be used in other places, but for now I'm introducing it to use while redux-persist is loading.

In a subsequent diff, I'll pass it down via SSR.

Test Plan

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

ashoat edited the test plan for this revision. (Show Details)
tomek added inline comments.
web/loading.css
27 ↗(On Diff #19987)

Ideally we should use a constant from our theme. There's no such color, but maybe we should at least include a new var for it?

28–29 ↗(On Diff #19987)

Why do we need to set these while using flex?

35 ↗(On Diff #19987)

This can be simplified

56 ↗(On Diff #19987)
web/loading.react.js
13 ↗(On Diff #19987)
This revision is now accepted and ready to land.Dec 22 2022, 8:09 AM
web/loading.css
17 ↗(On Diff #19987)

#00000040 this is the hex value for that rgba if we want to be more consistent

48 ↗(On Diff #19987)

#ffffff26 this is the hex value for that rgba if we want to be more consistent

web/loading.css
28–29 ↗(On Diff #19987)

width: 100% is actually unnecessary, but I can find any way to replace height: 100% with any combination of flex, flex-grow, justify-content, or align-items. I'm not a flex expert but need to get this thing landed today, if you have any suggestions on how to solve it let me know and I can make a follow-up diff/task

Respond to review, and delete broken 'black' background-color in favor of just using the same one as the rest of the app

This revision was automatically updated to reflect the committed changes.