Contributing code

This section covers how to work on the library. If you want to contribute code, please review the Contributing section first to learn more about our contribution processes and patch requirements.

TODO: order of things: should docs about how to contribute (task tracking, patch requirements) go first? Quick start seems like a logical first thing, but the requirements for contributing are important

Quick start

Get running on your host machine quickly with:

npm install
npm run styleguide

VitePress will start a hot-reloading development server at http://localhost:3000.

Lots more stuff

To come later

Note that these are the old guidelines from WVUI.

We welcome contributions from everyone! WVUI is maintained by the Vue Migration Team of the Wikimedia Foundation, and we like to encourage various ways to contribute, including task tracking and discussion in Phabricator (our project management system), patch commits, and reviews.

Author guidelines

Task tracking

TODO: update for new library

  • Patch authors should track their work via a Phabricator task on the WVUI workboard. If there is not already a task for the work you aim to complete, please add one.
  • Add or claim a task as soon as you decide to work on it. This will help avoid overlapping, duplicate, or out-of-order work. Keep the task in the appropriate column on the workboard.
  • Note that relatively minor contributions (like build asset updates or icon code optimizations) do not require a corresponding task
  • Before a component can be added to WVUI, it must have a complete entry in the Wikimedia Design Style Guide (with the exception of a few pre-defined components that are unlikely to change much from their current OOUI implementation), and a go-ahead from the design team. See the WVUI column of the UI component design inventory to check a component's status.
  • When tracking new components, developing the entire component to completely fulfill the criteria specified in the design style guide may be too much for a single patch. Consider creating an epic for that component with sub-tasks for the minimum viable solution and additional features.

General guidelines

The expectations for submitting a patch are:

  • Write your best work.
  • Functional changes compile, run, and pass tests.
  • Established patterns, at least within the WVUI repository, are considered.
  • Any submitted change is an overall improvement. The rationale is that if a patch is an overall improvement, it's obvious to merge. If it's not, why should it be merged?
  • Smaller patches get better reviews.

Patch requirements

Patch authors are required to do the following:

  • Update the CHANGELOG to describe the new work
  • For components:
    • Include a Storybook story for each variant of the component. The main story should usually contain the most basic state of the component with all props and slots editable via controls.
    • Include a Jest snapshot for each visual state of the component.
    • Add unit tests. Attempt to meet the established coverage threshold.
    • Add documentation. Storybook automatically generates a docs tab that includes the component's documentation block, prop and event documentation, and stories. If there is anything else the end user should know, consider including it in the component documentation block.

Keep in mind that it's easier to add stories, write tests, and update documentation as you add or change code rather than going back and doing it after the fact. Being consistent about this will help us keep our documentation and tests complete and up-to-date.

Reviewer guidelines

TODO: generalize these and move them to the general contributing guidelines page

General guidelines

  • The goal of code review is to help write great code, not only prevent bad code from being written. The distinction is that the former is helping to achieve whereas the latter is focused on prevention. Nourishing good ideas is better than extinguishing formative ideas.
  • Be specific when providing constructive feedback. Vague concerns, such as "there are many reasons" or "it's more nuanced than that," prevent further discussion and create invisible barriers to participation that cannot be overcome. Make your point and allow the author to address it. When possible, suggest an approach or reference with your request. The more clearly you express the changes you want, the easier it will be for the author to provide.
  • If you as a reviewer are making requests of the author, attempt to match their level of effort and timeliness. Everyone is busy and doing their best but differently abled.
  • Be open-minded. New ideas, especially standard ideas that are only new to you, are not inherently bad. It's ok to downvote to request improved documentation or clarification but not for an education in industry standard practice. You are responsible in part for creating the culture you want.

Last updated: