14 KiB
UI guidelines
Wagtail’s user interface is built with:
- HTML using Django templates
- CSS using Sass and Tailwind
- JavaScript with TypeScript
- SVG for our icons, minified with SVGO
Linting and formatting
Here are the available commands:
make lint
will run all linting,make lint-server
lints templates, andmake lint-client
lints JS/CSS.make format
will run all formatting and fixing of linting issues. There is alsomake format-server
andmake format-client
.
Have a look at our Makefile
tasks and package.json
scripts if you prefer more granular options.
HTML guidelines
We use djhtml for formatting and Curlylint for linting.
- Write valid, semantic HTML.
- Follow ARIA authoring practices, in particular, No ARIA is better than Bad ARIA.
- Use IDs for semantics only, classes for styling,
data-
attributes for JavaScript behavior. - Order attributes with
id
first, thenclass
, then anydata-
or other attributes with Stimulusdata-controller
first. - For comments, use Django template syntax instead of HTML.
CSS guidelines
We use Prettier for formatting and Stylelint for linting.
- We follow BEM and ITCSS, with a large amount of utilities created with Tailwind.
- Familiarise yourself with our stylelint-config-wagtail configuration, which details our preferred code style.
- Use
rems
forfont-size
, because they offer absolute control over text. Additionally, unit-lessline-height
is preferred because it does not inherit a percentage value of its parent element, but instead is based on a multiplier of thefont-size
. - Always use variables for design tokens such as colors or font sizes, rather than hard-coding specific values.
- We use the
w-
prefix for all styles intended to be reusable by Wagtail site implementers.
Stylesheets
Most of our styles are combined into a single main stylesheet, core.css
. This is the recommended approach for all new styles, to reduce potential style clashes, and encourage reuse of utilities and component styles between views. Imports within core.scss
are structured according to ITCSS. There are two major exceptions to the ITCSS structure:
- Legacy vendor CSS in
vendor/
is imported in the order it was loaded in before adding in the main stylesheet, to avoid compatibility issues. If possible, those styles should be converted to components and loaded further down the cascade. - Legacy layout-specific styles in
layouts/
are imported at the very end of the file, matching how styles were previously loaded across multiple stylesheets. If possible, those styles should be converted to components or utilities and loaded further up the cascade.
When creating new styles, always prefer components, adding a new stylesheet in the components
folder and importing it in core.scss
.
Global styles
For all of our styles, we use:
- A very old version of
normalize.css
as a CSS reset. box-sizing: border-box
, with elements always inheriting thebox-sizing
of their parent.- Global CSS variables for colors, so they can be changed by site implementers.
- Global CSS variables for font family, so they can be changed by site implementers.
- A
--w-direction-factor
CSS variable, set to1
by default and-1
for RTL languages, to allow reversing of calculations of physical values (transforms, background positions) and mirroring of icons and visuals with directional elements like arrows. - The
--w-density-factor
CSS variable, to let users control the information density of the UI. Set to1
by default, and lower or higher values to reduce or increase the spacing and size of UI elements.
Tailwind usage
We use Tailwind to manage our design tokens via its theme, and generate CSS utilities. It is configured in tailwind.config.js
, with a base configuration intended to be reusable in other projects.
Wagtail uses most of Tailwind’s core plugins, with an override for them to create Logical properties and values styles while still using Tailwind’s default utility and design token names.
With utility classes, we recommend to:
- Keep their number to a reasonable maximum, creating component styles instead if the utilities are inter-dependent, or if they are frequently reused together.
- Avoid utilities relating to font size, weight, or other typographic considerations. Instead, use the higher-level type scale as defined in
typography.js
.
Sass usage
We keep our Sass usage to a minimum, preferring verbose vanilla CSS over advanced Sass syntax. Here are specific Sass features to completely avoid:
- Placeholders /
@extend
. Leads to unexpected cascading of styles. - Color manipulation. All of our colors are defined in JavaScript via Tailwind, to generate CSS variable definitions and documentation consistently.
And Sass features to use with caution:
- Sass nesting. Avoid relying on Sass nesting specifically, and overly specific selectors. Most styles can be written with either one or two levels of nesting, 3 for specific UI states, and 4 in the most complex scenarios only.
- Parent selector (
&
) interpolation. Only use interpolation in class names sparingly, so we can more easily search for styles across the project. - Sass variables. Prefer Tailwind theme variables to reuse our design tokens, or CSS variables when a specific property changes based on state. Sass variables should only be used as shorter aliases for those scenarios, or as local component variables.
- Mixins. Only create new mixins if the styles can’t be written as reusable component or utility styles.
- Sass math. With most of our design tokens defined in Tailwind, loaded via PostCSS, we use
calc
functions for math operations rather than Sass.
Forced colors mode
Also known as Windows High Contrast mode, or Contrast Themes. This is a feature of Windows for users to override websites’ styles with their own, so text is more readable. We intend to fully support it in all of our styles. Here are recommended practices:
- Add additional borders where the background color would otherwise convey the position of specific elements, particularly for page regions and components layered above the page.
- Overrides with
@media (forced-colors: active)
should only be used when there is no simpler alternative. Write CSS for WHCM support from the get-go rather than with sweeping overrides. - Never use
forced-color-adjust: none
. It compromises compatibility with a wide range of custom themes, and should only be needed if a component relies on a specific color hue to work (which is an anti-pattern).
JavaScript guidelines
We use Prettier for formatting and ESLint for linting.
- We follow a somewhat relaxed version of the Airbnb styleguide.
- Familiarise yourself with our eslint-config-wagtail configuration, which details our preferred code style.
(ui_guidelines_stimulus)=
Stimulus
Wagtail uses Stimulus as a lightweight framework to attach interactive behavior to DOM elements via data-
attributes.
Why Stimulus
Stimulus is a lightweight framework that allows developers to create interactive UI elements in a simple way. It makes it easy to do small-scale reactivity via changes to data attributes and does not require developers to 'init' things everywhere, unlike JQuery. It also provides an alternative to using inline script tag usage and window globals which reduces complexity in the codebase.
When to use Stimulus
Stimulus is our preferred library for simple client-side interactivity. It’s a good fit when:
- The interactivity requires JavaScript. Otherwise, consider using HTML and CSS only.
- Some of the logic is defined via HTML templates, not just JavaScript.
- The interactivity is simple, and doesn’t require usage of more heavyweight libraries like React.
Wagtail’s admin interface also leverages jQuery for similar scenarios. This is considered legacy and will eventually be removed. For new features, carefully consider whether existing jQuery code should be reused, or whether a rebuild with Stimulus is more appropriate.
How to build a Stimulus controller
First think of how to name the controller. Keep it concise, one or two words ideally. Then,
- Start with the HTML templates, build as much of the UI as you can in HTML alone. Ensure it is accessible and follows the CSS guidelines.
- Create the controller file in our
client/src/controllers
folder, along with its tests (see ) and Storybook stories. - For initialization, consider which controller lifecycle methods to use, if any (
connect
,initialize
). - If relevant, also consider how to handle the controlled element being removed from the DOM
disconnect
lifecycle method. - Document controller classes and methods with JSDoc annotations.
- Use values to provide options and also reactive state, avoiding instance properties if possible. Prefer falsey or empty defaults and avoid too much usage of the Object type when using values.
- Build the behavior around small, discrete, methods and use Stimulus actions declared in HTML to drive when they are called.
Helpful tips
- Prefer controllers that do a small amount of 'work' that is collected together, instead of lots of large or specific controllers.
- Lean towards dispatching events for key behavior in the UI interaction as this provides a great way for custom code to hook into this without an explicit API, but be sure to document these.
- Multiple controllers can be attached to one DOM element for composing behavior, where practical split out behavior to separate controllers.
- Consider when to document controller usage for non-contributors.
- When writing unit tests, note that DOM updates triggered by data attribute changes are completed async (next
microtick
) so will require a await Promise or similar to check for the changes in JSDom. - Avoid hard-coding a controller's identifier, instead reference it with
this.identifier
if adjusting attributes. This way the controller can be used easily with a changed identifier or extended by other classes in the future.
Multilingual support
This is an area of active improvement for Wagtail, with ongoing discussions.
- Always use the
trimmed
attribute onblocktranslate
tags to prevent unnecessary whitespace from being added to the translation strings.
Right-to-left language support
We support right-to-left languages, and in particular viewing the Wagtail admin interface in a horizontally mirrored layout. Here are guidelines to guarantee support:
- Write styles with logical properties and values whenever possible.
- For styles that can only be written with physical properties (translations, background positions), use the
--w-direction-factor
variable equal to 1 or -1 so the value reverses based on thedir
attribute of the element or page. - As a last resort, use
[dir='rtl']
style if there is no other way to write styles.
Make sure to also reverse the direction of any position calculation in JavaScript, as there is no support of logical values in DOM APIs (x-axis offsets always from the left).
Icons
We use inline SVG elements for Wagtail’s icons, for performance and so icons can be styled with CSS. View for information on how icons are set up for Wagtail users.
Adding icons
Icons are SVG files in the Wagtail admin template folder.
When adding or updating an icon,
- Run it through SVGO with appropriate compression settings.
- Manually remove any unnecessary attributes. Set the
viewBox
attribute, and removewidth
andheight
attributes. - Manually add its
id
attribute with a prefix oficon-
and the icon name matching the file name. Keep the icon as named from its source if possible. - Add or preserve licensing information as an HTML comment starting with an exclamation mark:
<!--! Icon license -->
. For Font Awesome, we want:<!--! [icon name] ([icon style]): Font Awesome [version] -->
. For example,<!--! triangle-exclamation (solid): Font Awesome Pro 6.4.0 -->
. - Add the icon to Wagtail’s own implementation of the
register_icons
hook, in alphabetical order. - Go to the styleguide and copy the Wagtail icons table according to instructions in the template, pasting the result in
wagtail_icons_table.txt
. - If the icon requires right-to-left mirroring, add the
class="icon--directional"
attribute.