The noredink-ui
package and the Component Catalog app showcasing its components are currently unowned.
No party is currently responsible for oversight of the foundational aspects of the component library, a.k.a. “Component Library Foundations.”
Typically, the owner of the component library & catalog would provide guidance and support to developers and designers who are building new components or working with existing components.
The Component Catalog application can be found here.
noredink-ui
versioning policy.Assume anything that seems like it should be a shared component should probably be a shared component. The remaining contribution guidelines will help you make this determination.
The new owner of the component library should update this section and may wish to refer to git history to understand the prior process.
Some suggestions for contributing include the following:
There is a script to help you add your components to the Component Catalog quickly & easily!
Run:
$ script/add-example.sh
And the script will help you wire up an example page. There will still be some TODOs left for you to fill out. Depending on your component's API, you may also need to adjust the generated code a bit for it to compile.
You can develop this package without installing anything globally by using Nix. To get started, install nix from nixos.org/nix.
After that's set up in your shell (just follow the instructions at the end of the installation script) you can run nix-shell
to get a development environment with everything you need.
If you find that inconvenient, try using direnv
.
Once that's set up, echo use nix > .envrc
and then direnv allow
.
Anytime you enter the project your shell will automatically pick up the right dependencies.
If you find that direnv
loads too slow, there are faster loading strategies than the default in their wiki.
We use nix flake
to manage Nix dependencies.
It is automatically loaded in the Nix environment.
Here are some things you might need to do:
Task | Action |
---|---|
Add a non-npm, non-Elm dependency packaged with Nix | Look in nixpkgs and add to buildInputs in flake.nix . If it's not in nixpkgs, add a new source. |
Update all our dependencies | nix flake update |
Update Nixpkgs (or only one dependency) | nix flake lock --update-input nixpkgs |
See all our dependencies and sources | Look in flake.nix and flake.lock |
Run tests with
shake test
elm-test
You can run the Puppeteer tests for only one component by passing the name of the component to the test script, for example: ./script/puppeteer-tests.sh Button
Travis will run shake ci
to verify everything looks good.
You can run this locally to catch errors before you push!
Follow the PR template to ensure your PR is reviewed by the appropriate parties.
Netlify provides a preview environment on the web for each PR. You can share the preview environment URL to allow anyone to preview your changes, even if they don't run local code. This allows for easy functional and visual non-code reviews.
To access the preview environment URL, look in the CI area of your PR for the "deploy preview" row. The "Details" link is the preview environment URL. The URL will be something like https://deploy-preview-PrIdNum--noredink-ui.netlify.app/
This repo contains an app showcasing all of these UI widgets.
To see them locally:
script/develop.sh
And go to http://localhost:8000/
If you'd like to test your widget in the monolith before publishing, run script/test-elm-package.py ../path_to_this_repo
from the monolith's directory.
Any NoRedInk engineer can deploy a new version of noredink-ui
. Generally, we prefer to do a release after every change, rather than trying to batch changes together. This is mostly to make QA more straightforward -- especially for the cases where we make a mistake!
elm diff
and verify that the changes are not major (versioning policy) and are what you expect. Copy the diff (you'll paste it into a PR description later.)elm bump
elm.json
filegit checkout master
git pull
elm publish
and follow its prompts
git tag -a 22.x.y -m "Description of this release version: i.e.: 'high-contrast mode highlight style change'"
git push origin master 22.x.y
(The previous command requires permissions to push directly to master even if you have no changes).22.x.y
tag with the following: git push origin 22.x.y
Once you've published, you should see the latest version at https://package.elm-lang.org/packages/NoRedInk/noredink-ui/. It can take a few minutes to show up.
If you get something like this:
-- PROBLEM LOADING DOCS --------------------------------------------------------
I need the docs for 12.17.0 to compute the next version number, so I fetched:
https://package.elm-lang.org/packages/NoRedInk/noredink-ui/12.17.0/docs.json
I got the data back, but it was not what I was expecting. The response body
contains 195076 bytes. Here is the beginning:
[{"name":"Nri.Ui","comment":" A collection of helpers for working with No...
Does this error keep showing up? Maybe there is something weird with your
internet connection. We have gotten reports that schools, businesses, airports,
etc. sometimes intercept requests and add things to the body or change its
contents entirely. Could that be the problem?
Then run it with 0.19.0 explicitly (0.19.1 has some problems with big docs):
npx -p elm@0.19.0-no-deps elm bump
If you encounter issues with using npx, you can manually download and use the Elm 0.19.0 binary as an alternative:
./elm bump
We try to avoid breaking changes and the associated major version bumps in this package. The reason for that is to avoid the following scenario:
|
x 4.6.0: Adding RadioButton widget
|
x 5.0.0: Breaking change in the TextArea widget
|
x 5.0.1: Styling fix in the Checkbox widget
|
Suppose you just released version 5.0.1
, a small styling fix in the checkbox widget, for a story you're working on. If the project you're working in currently pulls in noredink-ui
at version 4.x
, then getting to your styling fix means pulling in a new major version of noredink-ui
. This breaks all TextArea
widgets across the project, so those will need to be fixed before you can do anything else, potentially a big effort.
To prevent these big Yaks from suddenly showing up in seemingly trivial tasks we prefer to avoid breaking changes in the package. Instead when we need to make a breaking change in a widget, we create a new module for it Nri.Ui.MyWidget.VX
. Similarly, when we build custom elements in JavaScript we create a file lib/MyWidget/VX.js
and define a custom element nri-mywidget-vX
.
That said, we may prune unused modules occasionally.
We should change this process if we feel it's not working for us!