Coding Standards » History » Version 42
Peter Amstutz, 09/11/2024 08:22 PM
1 | 1 | Tom Clegg | h1. Coding Standards |
---|---|---|---|
2 | |||
3 | 41 | Peter Amstutz | The rules are always up for debate. However, when debate is needed, it should happen outside the source tree. In other words, if the rules are wrong, first debate the rules at sprint retrospective, then fix the rules, then follow the new rules. |
4 | 1 | Tom Clegg | |
5 | 2 | Tom Clegg | {{toc}} |
6 | 1 | Tom Clegg | |
7 | 41 | Peter Amstutz | h2. Ready to implement checklist |
8 | |||
9 | Before starting full implementation, please fill out this template with information about pre-planning: |
||
10 | |||
11 | <pre> |
||
12 | * Goals and scope of the ticket are clear to the assigned developer and assigned reviewer. |
||
13 | ** _comments_ |
||
14 | * New or changed user experience have a mockup that has gotten feedback from stakeholders. |
||
15 | ** _comments_ |
||
16 | 42 | Peter Amstutz | * If part of a larger project, ticket is linked to upstream and downstream tasks. |
17 | 41 | Peter Amstutz | ** _comments_ |
18 | </pre> |
||
19 | |||
20 | Changes to user experience includes new or modified GUI elements in workbench and as well as usability elements of command line tools. |
||
21 | |||
22 | Mockups can consist of a wireframe sketched using a drawing tool (e.g. https://excalidraw.com/) or a coding a non-functional prototype focusing on visual design and avoiding implement behavior and uses hardcoded values. |
||
23 | |||
24 | Stakeholders include the rest of the engineering team, as well as designers, salespeople, customers and other end users as appropriate. |
||
25 | |||
26 | 32 | Peter Amstutz | h2. Ready to merge checklist |
27 | |||
28 | Before asking for a branch review, please fill out this template with information about the branch. |
||
29 | |||
30 | 33 | Peter Amstutz | +template begins below, replace the bits between < >+ |
31 | 32 | Peter Amstutz | |
32 | <pre> |
||
33 | <00000-branch-title> @ commit:<git hash> |
||
34 | |||
35 | <https://ci.arvados.org/... (link to developer test job on jenkins)> |
||
36 | |||
37 | 1 | Tom Clegg | _Note each item completed with additional detail if necessary. If an item is irrelevant to a specific branch, briefly explain why._ |
38 | 32 | Peter Amstutz | |
39 | 41 | Peter Amstutz | * All agreed upon points are implemented / addressed. Also briefly describe any significant changes/evolution from pre-implementation design. |
40 | 1 | Tom Clegg | ** _comments_ |
41 | 32 | Peter Amstutz | * Anything not implemented (discovered or discussed during work) has a follow-up story. |
42 | 1 | Tom Clegg | ** _comments_ |
43 | 41 | Peter Amstutz | * Code is tested and passing, both automated and manual, what manual testing was done is described. |
44 | 32 | Peter Amstutz | ** _comments_ |
45 | 41 | Peter Amstutz | * User interface or user experience that is new or changed (including both GUI elements in workbench and usability elements of command line tools) has been demoed to the engineering team and/or other stakeholders, and feedback has been taken into account. |
46 | ** _comments_ |
||
47 | 32 | Peter Amstutz | * Documentation has been updated. |
48 | ** _comments_ |
||
49 | * Behaves appropriately at the intended scale (describe intended scale). |
||
50 | ** _comments_ |
||
51 | * Considered backwards and forwards compatibility issues between client and server. |
||
52 | 1 | Tom Clegg | ** _comments_ |
53 | 32 | Peter Amstutz | * Follows our "coding standards":https://dev.arvados.org/projects/arvados/wiki/Coding_Standards and "GUI style guidelines.":https://dev.arvados.org/projects/arvados/wiki/Coding_Standards#GUI-Workbench-2 |
54 | ** _comments_ |
||
55 | |||
56 | 41 | Peter Amstutz | <Additional detail about what, why and how this branch changes the code> |
57 | 33 | Peter Amstutz | </pre> |
58 | 32 | Peter Amstutz | |
59 | |||
60 | 2 | Tom Clegg | h2. Git commits |
61 | |||
62 | 1 | Tom Clegg | Make sure your name and email address are correct. |
63 | |||
64 | * Use @git config --global user.email foo@example.com@ et al. |
||
65 | * It's a little unfortunate to have commits with author @foo@myworkstation.local@ but not bad enough to rewrite history, so fix this before you push! |
||
66 | |||
67 | 19 | Tom Clegg | Refer to a story number in the first (summary) line of each commit comment. This first line should be <80 chars long, and should be followed by a blank line. |
68 | 9 | Tom Clegg | |
69 | * @1234: Remove useless button.@ |
||
70 | |||
71 | *When merging/committing to master,* refer to the story number in a way Redmine will notice. Redmine will list these commits/merges on the story page itself. |
||
72 | |||
73 | 1 | Tom Clegg | * @closes #1234@, or |
74 | 19 | Tom Clegg | * @refs #1234@, or |
75 | * @no issue #@ if no Redmine issue is especially relevant. |
||
76 | 9 | Tom Clegg | |
77 | 1 | Tom Clegg | Use descriptive commit comments. |
78 | |||
79 | * Describe the delta between the old and new tree. If possible, describe the delta in *behavior* rather than the source code itself. |
||
80 | 9 | Tom Clegg | * Good: "1234: Support use of spaces in filenames." |
81 | * Good: "1234: Fix crash when user_id is nil." |
||
82 | 1 | Tom Clegg | * Less good: "Add some controller methods." (What do they do?) |
83 | * Less good: "More progress on UI branch." (What is different?) |
||
84 | * Less good: "Incorporate Tom's suggestions." (Who cares whose suggestions -- what changed?) |
||
85 | |||
86 | If further background or explanation is needed, separate it from the summary with a blank line. |
||
87 | |||
88 | * Example: "Users found it confusing that the boxes had different colors even though they represented the same kinds of things." |
||
89 | |||
90 | 18 | Tom Clegg | *Every commit* (even merge commits) must have a DCO sign-off. See [[Developer Certificate Of Origin]]. |
91 | 1 | Tom Clegg | |
92 | * Example: <code>Arvados-DCO-1.1-Signed-off-by: Joe Smith <joe.smith@example.com></code> |
||
93 | 19 | Tom Clegg | |
94 | Full examples: |
||
95 | |||
96 | <pre> |
||
97 | commit 9c6540b9d42adc4a397a28be1ac23f357ba14ab5 |
||
98 | Author: Tom Clegg <tom@curoverse.com> |
||
99 | Date: Mon Aug 7 09:58:04 2017 -0400 |
||
100 | |||
101 | 12027: Recognize a new "node failed" error message. |
||
102 | |||
103 | "srun: error: Cannot communicate with node 0. Aborting job." |
||
104 | |||
105 | Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom@curoverse.com> |
||
106 | </pre> |
||
107 | |||
108 | <pre> |
||
109 | commit 0b4800608e6394d66deec9cecea610c5fbbd75ad |
||
110 | Merge: 6f2ce94 3a356c4 |
||
111 | Author: Tom Clegg <tom@curoverse.com> |
||
112 | Date: Thu Aug 17 13:16:36 2017 -0400 |
||
113 | |||
114 | Merge branch '12081-crunch-job-retry' |
||
115 | |||
116 | refs #12080 |
||
117 | refs #12081 |
||
118 | refs #12108 |
||
119 | |||
120 | Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom@curoverse.com> |
||
121 | </pre> |
||
122 | |||
123 | 21 | Ward Vandewege | h2. Copyright headers |
124 | |||
125 | 23 | Ward Vandewege | Each Arvados component is released either under the AGPL 3.0 license or the Apache 2.0 license. Documentation is licensed under CC-BY-SA-3.0. See the [[Arvados Licenses FAQ]] for the rationale behind this system. |
126 | 21 | Ward Vandewege | |
127 | 22 | Ward Vandewege | Every file must start with a copyright header that follows this format: |
128 | 21 | Ward Vandewege | |
129 | Code under the "AGPLv3 license":http://www.gnu.org/licenses/agpl-3.0.en.html (this example uses Go formatting): |
||
130 | |||
131 | <pre> |
||
132 | // Copyright (C) The Arvados Authors. All rights reserved. |
||
133 | // |
||
134 | // SPDX-License-Identifier: AGPL-3.0 |
||
135 | </pre> |
||
136 | |||
137 | Code under the "Apache 2.0 license":http://www.apache.org/licenses/LICENSE-2.0 (this example uses Python formatting): |
||
138 | |||
139 | <pre> |
||
140 | # Copyright (C) The Arvados Authors. All rights reserved. |
||
141 | # |
||
142 | # SPDX-License-Identifier: Apache-2.0 |
||
143 | </pre> |
||
144 | |||
145 | Documentation under the "Creative Commons Attribution-Share Alike 3.0 United States license":https://creativecommons.org/licenses/by-sa/3.0/us/ (this example uses textile formatting): |
||
146 | |||
147 | <pre> |
||
148 | ###. Copyright (C) The Arvados Authors. All rights reserved. |
||
149 | .... |
||
150 | .... SPDX-License-Identifier: CC-BY-SA-3.0 |
||
151 | </pre> |
||
152 | |||
153 | 1 | Tom Clegg | When adding a new file to a component, use the same license as the other files of the component. |
154 | |||
155 | 22 | Ward Vandewege | When adding a new component, choose either the AGPL or Apache license. Generally speaking, the Apache license is only used for components where integrations in proprietary code must be possible (e.g. our SDKs), though this is not a hard rule. When uncertain which license to choose for a new component, ask on the IRC channel or mailing list. |
156 | 21 | Ward Vandewege | |
157 | 22 | Ward Vandewege | When adding a file in a format that does not support the addition of a copyright header (e.g. in a binary format like an image), add the path to the .licenseignore file in the root of the source tree. This should be done sparingly, and must be discussed explicitly as part of code review. The file must be available under a license that is compatible with the rest of the Arvados code base. |
158 | 21 | Ward Vandewege | |
159 | 22 | Ward Vandewege | When adding a file that originates from an external source under a different license, add the appropriate SPDX line for that license. This is exceptional, and must be discussed explicitly as part of code review. Not every license is compatible with the rest of the Arvados code base. |
160 | 16 | Tom Clegg | |
161 | 28 | Ward Vandewege | There is a helper script at https://github.com/arvados/arvados/blob/master/build/check-copyright-notices that can be used to check - and optionally, fix - the copyright headers in the Arvados source tree. |
162 | 24 | Ward Vandewege | |
163 | 29 | Ward Vandewege | The actual git hook that enforces the copyright headers lives at https://github.com/arvados/arvados-dev/blob/master/git/hooks/check-copyright-headers.rb |
164 | 25 | Ward Vandewege | |
165 | 13 | Tom Clegg | h2. Source code formatting |
166 | 1 | Tom Clegg | |
167 | 13 | Tom Clegg | (Unless otherwise specified by style guide...) |
168 | |||
169 | 10 | Tom Clegg | No TAB characters in source files. "Except go programs.":https://golang.org/cmd/gofmt/ |
170 | 1 | Tom Clegg | |
171 | 6 | Tom Clegg | * Emacs: add to @~/.emacs@ → @(setq-default indent-tabs-mode nil)@ |
172 | * Vim: add to @~/.vimrc@ → @:set expandtab@ |
||
173 | 8 | Tom Clegg | * See [[Coding Standards#Git setup|Git setup]] below |
174 | 4 | Ward Vandewege | |
175 | 37 | Tom Clegg | No long (>80 column) lines, except |
176 | * when the alternative is really clunky |
||
177 | * in Go where Google style guide prevails, and e.g., "function and method calls should not be separated based solely on line length":https://google.github.io/styleguide/go/decisions#function-formatting |
||
178 | 6 | Tom Clegg | |
179 | 4 | Ward Vandewege | No whitespace at the end of lines. Make git-diff show you: |
180 | 5 | Ward Vandewege | |
181 | git config color.diff.whitespace "red reverse" |
||
182 | 6 | Tom Clegg | git diff --check |
183 | 1 | Tom Clegg | |
184 | 13 | Tom Clegg | h2. What to include |
185 | |||
186 | 1 | Tom Clegg | No commented-out blocks of code that have been replaced or obsoleted. |
187 | |||
188 | * It is in the git history if we want it back. |
||
189 | * If its absence would confuse someone reading the new code (despite never having read the old code), explain its absence in an English comment. If the old code is really still needed to support the English explanation, then go ahead -- now we know why it's there. |
||
190 | |||
191 | No commented-out debug statements. |
||
192 | |||
193 | * If the debug statements are likely to be needed in the future, use a logging facility that can be enabled at run time. @logger.debug "foo"@ |
||
194 | |||
195 | 13 | Tom Clegg | h2. Style mismatch |
196 | |||
197 | 1 | Tom Clegg | Adopt indentation style of surrounding lines or (when starting a new file) the nearest existing source code in this tree/language. |
198 | |||
199 | If you fix up existing indentation/formatting, do that in a separate commit. |
||
200 | * If you bundle formatting changes with functional changes, it makes functional changes hard to find in the diff. |
||
201 | |||
202 | 13 | Tom Clegg | h2. Go |
203 | |||
204 | gofmt, golint, etc., and https://github.com/golang/go/wiki/CodeReviewComments |
||
205 | |||
206 | 40 | Tom Clegg | Use @%w@ when wrapping an error with fmt.Errorf(), so errors.As() can access the wrapped error. |
207 | |||
208 | <pre><code class="go"> |
||
209 | if err != nil { |
||
210 | return fmt.Errorf("could not swap widgets: %w", err) |
||
211 | } |
||
212 | </code></pre> |
||
213 | |||
214 | Use @(logrus.FieldLogger)WithError()@ (instead of @Logf("blah: %s", err)@) when logging an error. |
||
215 | |||
216 | <pre><code class="go"> |
||
217 | if err != nil { |
||
218 | logger.WithError(err).Warn("error swapping widgets") |
||
219 | } |
||
220 | </code></pre> |
||
221 | |||
222 | |||
223 | 13 | Tom Clegg | h2. Ruby |
224 | |||
225 | https://github.com/bbatsov/ruby-style-guide |
||
226 | |||
227 | 1 | Tom Clegg | h2. Python |
228 | 13 | Tom Clegg | |
229 | 30 | Brett Smith | h3. Python code |
230 | 12 | Tom Clegg | |
231 | 30 | Brett Smith | For code, follow "PEP 8":https://peps.python.org/pep-0008/. |
232 | 1 | Tom Clegg | |
233 | 30 | Brett Smith | When you add functions, methods, or attributes that SDK users should not use, their name should start with a leading underscore. This is a common convention to signal that an interface is not intended to be public. Anything named this way will be excluded from our SDK web documentation by default. |
234 | |||
235 | 39 | Brett Smith | You're encouraged to add type annotations to functions and methods. As of May 2024 these are purely for documentation: we are not type checking any of our Python. Note that your annotations must be understood by the oldest version of Python we currently support (3.8). |
236 | 36 | Brett Smith | |
237 | 30 | Brett Smith | h3. Python docstrings |
238 | |||
239 | Public classes, methods, and functions should all have docstrings. The content of the docstring should follow "PEP 257":https://peps.python.org/pep-0257/. |
||
240 | |||
241 | 1 | Tom Clegg | Format docstrings with Markdown and follow these style rules: |
242 | |||
243 | 36 | Brett Smith | * Document function argument lists after the high-level description following this format for each argument: <pre>* name: type --- Description</pre>Use exactly three minus-hyphens to get an em dash in the web rendering. Provide a helpful type hint whenever practical. The type hint should be written in "modern" style: |
244 | ** Use builtin subscripting from PEP 585/Python 3.9, like @dict[str, str]@, @list[tuple[int, str]]@ |
||
245 | ** Use type union syntax from PEP 604/Python 3.10, like @int | None@, @list[str | bytes]@ |
||
246 | ** Use fully qualified names for custom types. This way pdoc hyperlinks them. |
||
247 | 34 | Brett Smith | * When something is deprecated, write a @.. WARNING:: Deprecated@ admonition immediately after the first line. Its text should explain that the thing is deprecated, and suggest what to use instead. For example:<pre>def add(a, b): |
248 | """Add two things. |
||
249 | |||
250 | 1 | Tom Clegg | .. WARNING:: Deprecated |
251 | This function is deprecated. Use the `+` operator instead. |
||
252 | 30 | Brett Smith | |
253 | … |
||
254 | 36 | Brett Smith | """</pre>You can similarly note private methods with @.. ATTENTION:: Internal@. |
255 | * Mark up all identifiers outside the type hint with backticks. When the identifier exists in the current module, use the short name. Otherwise, use the fully-qualified name. Our web documentation will automatically link these identifiers to their corresponding documentation. |
||
256 | 30 | Brett Smith | * Mark up links using Markdown's footnote style. For example:<pre>"""Python docstring following [PEP 257][pep257]. |
257 | |||
258 | [pep257]: https://peps.python.org/pep-0257/ |
||
259 | """</pre>This looks best in plaintext. A descriptive identifier is nice if you can keep it short, but if that's challenging, plain ordinals are fine too. |
||
260 | * Mark up headers (e.g., in a module docstring) using underline style. For example:<pre>"""Generic utility module |
||
261 | |||
262 | Filesystem functions |
||
263 | -------------------- |
||
264 | |||
265 | … |
||
266 | |||
267 | Regular expressions |
||
268 | ------------------- |
||
269 | |||
270 | … |
||
271 | """</pre>This looks best in plaintext. |
||
272 | |||
273 | The goal of these style rules is to provide a readable, consistent appearance whether people read the documentation in plain text (e.g., using @pydoc@) or their browser (as rendered by @pdoc@). |
||
274 | 12 | Tom Clegg | |
275 | 11 | Brett Smith | h2. JavaScript |
276 | |||
277 | 20 | Tom Clegg | Follow the Airbnb Javascript coding style guide unless otherwise stated: |
278 | 14 | Tom Morris | https://github.com/airbnb/javascript |
279 | 20 | Tom Clegg | |
280 | We already have 4-space indents everywhere, though, so do that. |
||
281 | |||
282 | 14 | Tom Morris | |
283 | 7 | Tom Clegg | h2. Git setup |
284 | 6 | Tom Clegg | |
285 | 7 | Tom Clegg | Configure git to prevent you from committing whitespace errors. |
286 | 1 | Tom Clegg | |
287 | 6 | Tom Clegg | <pre> |
288 | 7 | Tom Clegg | git config --global core.whitespace tab-in-indent,trailing-space |
289 | 1 | Tom Clegg | git config --global apply.whitespace error |
290 | 17 | Tom Clegg | </pre> |
291 | |||
292 | Add a DCO sign-off to the default commit message. |
||
293 | |||
294 | <pre> |
||
295 | cd .../arvados |
||
296 | printf '\n\nArvados-DCO-1.1-Signed-off-by: %s <%s>\n' "$(git config user.name)" "$(git config user.email)" >~/.arvados-dco.txt |
||
297 | git config commit.template ~/.arvados-dco.txt |
||
298 | </pre> |
||
299 | |||
300 | Add a DCO sign-off and "refs #xxxx" comment (referencing the issue# in the name of the branch being merged) to the default merge commit message. |
||
301 | |||
302 | <pre> |
||
303 | cd .../arvados |
||
304 | 26 | Eric Biagiotti | cat >.git/hooks/prepare-commit-msg <<'EOF' |
305 | 17 | Tom Clegg | #!/bin/sh |
306 | |||
307 | case "$2,$3" in |
||
308 | merge,) |
||
309 | br=$(head -n1 ${1}) |
||
310 | n=$(echo "${br}" | egrep -o '[0-9]+') |
||
311 | exec >${1} |
||
312 | echo "${br}" |
||
313 | echo |
||
314 | echo "refs #${n}" |
||
315 | echo |
||
316 | 27 | Eric Biagiotti | echo "Arvados-DCO-1.1-Signed-off-by: $(git config user.name) <$(git config user.email)>" |
317 | 17 | Tom Clegg | ;; |
318 | *) |
||
319 | ;; |
||
320 | esac |
||
321 | EOF |
||
322 | 26 | Eric Biagiotti | chmod +x .git/hooks/prepare-commit-msg |
323 | 6 | Tom Clegg | </pre> |
324 | 31 | Brett Smith | |
325 | 38 | Stephen Smith | h2. GUI Design Guidelines (Workbench 2) |
326 | 31 | Brett Smith | |
327 | h3. Font Sizes |
||
328 | |||
329 | * Minimum 12pt (16px) |
||
330 | * Minimum 9 pt (12px) for things like by copyright, footer |
||
331 | |||
332 | This should be able to be-resized up to 200% without loss of content or functionality. |
||
333 | |||
334 | h3. Color |
||
335 | |||
336 | * Text and images of text have a color contrast ratio of at least 4.5:1 You can use "this contrast tool":https://snook.ca/technical/colour_contrast/colour.html#fg=1F7EA1,bg=FFFFFF to check. |
||
337 | * Non-text icon, controls, etc - 3:1 must have a color contrast ratio of 3:1. |
||
338 | * Avoid hard-coding colors. Use theme colors. If a new color is needed, add it to the theme. |
||
339 | * Used defined grays when possible using RGB value and changing the a value to indicate different meanings (i.e. Active icons have an opacity of 87%, Inactive icons have an opacity of 60%, Disabled icons have an opacity of 38%) |
||
340 | |||
341 | h3. Icons |
||
342 | |||
343 | h4. General |
||
344 | |||
345 | * Interaction target size of at least 44 x 44 pixels |
||
346 | * Label should be on right, icon on left for maximum readability |
||
347 | * Use minimum 3:1 color contrast (see Color above) |
||
348 | * User appropriate concise alt text for people using screen readers |
||
349 | |||
350 | h4. Menu/Navigation |
||
351 | |||
352 | * No navigation should only supported via breadcrumbs |
||
353 | * If less than 5 menu options, consider visible navigation options |
||
354 | * If more than 5 menu options, consider a combination navigation where some options are visible and some are hidden |
||
355 | * Use the following menu consistently: |
||
356 | ** Hamburger (three bars stacked vertically): Used to indicate navigation bar/menu that toggles between being collapsed behind the button or displayed on the screen, often used for global/site-wide/whole application navigation |
||
357 | ** Döner (three bars that narrow vertically): Indicates a group filtering menu |
||
358 | ** Bento (3×3 grid of squares): Indicates a menu presenting a grid of options (not currently applicable to WB) |
||
359 | ** Kebab (three dots stacked vertically): Indicates a smaller inline-menu or an overflow/combination menu |
||
360 | ** Meatballs (three dots stacked horizontally): Used to indicate a smaller inline-menu. Often used to indicate action on a related item (i.e. item next to the meatball), good for repeated use in tables, or horizontal elements |
||
361 | * If component is an accordion window, use caret(‸) |
||
362 | |||
363 | Preferred Icon Repositories: |
||
364 | * https://v4.mui.com/components/material-icons/ |
||
365 | * https://materialdesignicons.com/ |
||
366 | * https://fontawesome.com/v5/search |
||
367 | |||
368 | h3. Buttons |
||
369 | |||
370 | * Label button with action for usability/to reduce ambiguity (avoid generic button labels for actions) |
||
371 | * Buttons vs Links |
||
372 | ** Buttons should cause change in current context |
||
373 | ** Links should navigate to a different content or a new resource (e.g. different page) |
||
374 | * If text on button - color contract should be 4.5 :1 between button and text |
||
375 | * Button color and background color contrast should be 3:1 |
||
376 | |||
377 | h3. Arvados Specific Components |
||
378 | |||
379 | 1 | Tom Clegg | Use chips for displaying tokenized values/arrays |
380 | 38 | Stephen Smith | |
381 | h3. Loading Indicators |
||
382 | |||
383 | h4. Page Navigation |
||
384 | |||
385 | * Navigation between pages should be indicated using @progressIndicatorActions.START_WORKING@ and @progressIndicatorActions.STOP_WORKING@ to show the global top-of-page pulser |
||
386 | * Only the initial load or refresh of the full page (eg. triggered by the upper right refresh button) should use this indicator. Partial refreshes should use a more local indicator. |
||
387 | ** Refreshes of only one section of a page should only show its own loading indicator in that section |
||
388 | * Full page refreshes where the location is unchanged should avoid using the initial full-page spinner in favor of the top-of-page spinner, with updated values substituting in the UI when loaded |
||
389 | |||
390 | h4. User Actions |
||
391 | |||
392 | * Form submissions or user actions should be indicated by both the @progressIndicatorActions.START_WORKING@ and by enabling the spinner on the submit button of the form (if the action takes place through a form AND if the form stays open for the duration of the action in order to show errors). If the form closes immediately then the page spinner is the only indicator. |
||
393 | * Toasts should not be used to notify the user of an in-progress action but only completion / error |
||
394 | |||
395 | h4. Lazy-loaded fields |
||
396 | |||
397 | * Fields that load or update (eg. with extra info) after the main view should wait 3-5 seconds before showing a spinner/pulser icon while loading - if the request for extra data fails, a placeholder icon should show with a hint (text or tooltip) indicating that the data failed to load. |
||
398 | ** The delayed indicator should be implemented as a reusable component (tbd) |
||
399 | * Suggested loading indicator for inline fields: https://mhnpd.github.io/react-loader-spinner/docs/components/three-dots) |
||
400 | 31 | Brett Smith | |
401 | h3. References |
||
402 | |||
403 | "WCAG2.1":https://www.w3.org/WAI/WCAG21/Understanding/ |
||
404 | |||
405 | "Sarah’s talk for references":https://docs.google.com/presentation/d/1HNrhvK7zVZ7jgH3ELbX7KB97SdXCZXrvov_I4Oe1l2c/edit?usp=sharing |