Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

guidelines-frontend.en-us.md 7.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. ---
  2. date: "2021-10-13T16:00:00+02:00"
  3. title: "Guidelines for Frontend Development"
  4. slug: "guidelines-frontend"
  5. sidebar_position: 30
  6. toc: false
  7. draft: false
  8. aliases:
  9. - /en-us/guidelines-frontend
  10. menu:
  11. sidebar:
  12. parent: "contributing"
  13. name: "Guidelines for Frontend"
  14. sidebar_position: 30
  15. identifier: "guidelines-frontend"
  16. ---
  17. # Guidelines for Frontend Development
  18. ## Background
  19. Gitea uses [Fomantic-UI](https://fomantic-ui.com/introduction/getting-started.html) (based on [jQuery](https://api.jquery.com)) and [Vue3](https://vuejs.org/) for its frontend.
  20. The HTML pages are rendered by [Go HTML Template](https://pkg.go.dev/html/template).
  21. The source files can be found in the following directories:
  22. * **CSS styles:** `web_src/css/`
  23. * **JavaScript files:** `web_src/js/`
  24. * **Vue components:** `web_src/js/components/`
  25. * **Go HTML templates:** `templates/`
  26. ## General Guidelines
  27. We recommend [Google HTML/CSS Style Guide](https://google.github.io/styleguide/htmlcssguide.html) and [Google JavaScript Style Guide](https://google.github.io/styleguide/jsguide.html)
  28. ### Gitea specific guidelines
  29. 1. Every feature (Fomantic-UI/jQuery module) should be put in separate files/directories.
  30. 2. HTML ids and classes should use kebab-case, it's preferred to contain 2-3 feature related keywords.
  31. 3. HTML ids and classes used in JavaScript should be unique for the whole project, and should contain 2-3 feature related keywords. We recommend to use the `js-` prefix for classes that are only used in JavaScript.
  32. 4. CSS styling for classes provided by frameworks should not be overwritten. Always use new class names with 2-3 feature related keywords to overwrite framework styles. Gitea's helper CSS classes in `helpers.less` could be helpful.
  33. 5. The backend can pass complex data to the frontend by using `ctx.PageData["myModuleData"] = map[]{}`, but do not expose whole models to the frontend to avoid leaking sensitive data.
  34. 6. Simple pages and SEO-related pages use Go HTML Template render to generate static Fomantic-UI HTML output. Complex pages can use Vue3.
  35. 7. Clarify variable types, prefer `elem.disabled = true` instead of `elem.setAttribute('disabled', 'anything')`, prefer `$el.prop('checked', var === 'yes')` instead of `$el.prop('checked', var)`.
  36. 8. Use semantic elements, prefer `<button class="ui button">` instead of `<div class="ui button">`.
  37. 9. Avoid unnecessary `!important` in CSS, add comments to explain why it's necessary if it can't be avoided.
  38. 10. Avoid mixing different events in one event listener, prefer to use individual event listeners for every event.
  39. 11. Custom event names are recommended to use `ce-` prefix.
  40. 12. Prefer using Tailwind CSS which is available via `tw-` prefix, e.g. `tw-relative`. Gitea's helper CSS classes use `gt-` prefix (`gt-word-break`), while Gitea's own private framework-level CSS classes use `g-` prefix (`g-modal-confirm`).
  41. 13. Avoid inline scripts & styles as much as possible, it's recommended to put JS code into JS files and use CSS classes. If inline scripts & styles are unavoidable, explain the reason why it can't be avoided.
  42. ### Accessibility / ARIA
  43. In history, Gitea heavily uses Fomantic UI which is not an accessibility-friendly framework.
  44. Gitea uses some patches to make Fomantic UI more accessible (see `aria.md` and related JS files),
  45. but there are still many problems which need a lot of work and time to fix.
  46. ### Framework Usage
  47. Mixing different frameworks together is discouraged, it makes the code difficult to be maintained.
  48. A JavaScript module should follow one major framework and follow the framework's best practice.
  49. Recommended implementations:
  50. * Vue + Vanilla JS
  51. * Fomantic-UI (jQuery)
  52. * htmx (partial page reloads for otherwise static components)
  53. * Vanilla JS
  54. Discouraged implementations:
  55. * Vue + Fomantic-UI (jQuery)
  56. * jQuery + Vanilla JS
  57. * htmx + any other framework which requires heavy JS code, or unnecessary features like htmx scripting (`hx-on`)
  58. To make UI consistent, Vue components can use Fomantic-UI CSS classes.
  59. We use htmx for simple interactions. You can see an example for simple interactions where htmx should be used in this [PR](https://github.com/go-gitea/gitea/pull/28908). Do not use htmx if you require more advanced reactivity, use another framework (Vue/Vanilla JS).
  60. Although mixing different frameworks is discouraged,
  61. it should also work if the mixing is necessary and the code is well-designed and maintainable.
  62. ### `async` Functions
  63. Only mark a function as `async` if and only if there are `await` calls
  64. or `Promise` returns inside the function.
  65. It's not recommended to use `async` event listeners, which may lead to problems.
  66. The reason is that the code after await is executed outside the event dispatch.
  67. Reference: https://github.com/github/eslint-plugin-github/blob/main/docs/rules/async-preventdefault.md
  68. If an event listener must be `async`, the `e.preventDefault()` should be before any `await`,
  69. it's recommended to put it at the beginning of the function.
  70. If we want to call an `async` function in a non-async context,
  71. it's recommended to use `const _promise = asyncFoo()` to tell readers
  72. that this is done by purpose, we want to call the async function and ignore the Promise.
  73. Some lint rules and IDEs also have warnings if the returned Promise is not handled.
  74. ### Fetching data
  75. To fetch data, use the wrapper functions `GET`, `POST` etc. from `modules/fetch.js`. They
  76. accept a `data` option for the content, will automatically set CSRF token and return a
  77. Promise for a [Response](https://developer.mozilla.org/en-US/docs/Web/API/Response).
  78. ### HTML Attributes and `dataset`
  79. The usage of `dataset` is forbidden, its camel-casing behaviour makes it hard to grep for attributes.
  80. However, there are still some special cases, so the current guideline is:
  81. * For legacy code:
  82. * `$.data()` should be refactored to `$.attr()`.
  83. * `$.data()` can be used to bind some non-string data to elements in rare cases, but it is highly discouraged.
  84. * For new code:
  85. * `node.dataset` should not be used, use `node.getAttribute` instead.
  86. * never bind any user data to a DOM node, use a suitable design pattern to describe the relation between node and data.
  87. ### Show/Hide Elements
  88. * Vue components are recommended to use `v-if` and `v-show` to show/hide elements.
  89. * Go template code should use `.tw-hidden` and `showElem()/hideElem()/toggleElem()`, see more details in `.tw-hidden`'s comment.
  90. ### Styles and Attributes in Go HTML Template
  91. It's recommended to use:
  92. ```html
  93. <div class="gt-name1 gt-name2 {{if .IsFoo}}gt-foo{{end}}" {{if .IsFoo}}data-foo{{end}}></div>
  94. ```
  95. instead of:
  96. ```html
  97. <div class="gt-name1 gt-name2{{if .IsFoo}} gt-foo{{end}}"{{if .IsFoo}} data-foo{{end}}></div>
  98. ```
  99. to make the code more readable.
  100. ### Legacy Code
  101. A lot of legacy code already existed before this document's written. It's recommended to refactor legacy code to follow the guidelines.
  102. ### Vue3 and JSX
  103. Gitea is using Vue3 now. We decided not to introduce JSX to keep the HTML and the JavaScript code separated.
  104. ### UI Examples
  105. Gitea uses some self-made UI elements and customizes others to integrate them better into the general UI approach. When running Gitea in development mode (`RUN_MODE=dev`), a page with some standardized UI examples is available under `http(s)://your-gitea-url:port/devtest`.