Ocelot is an opinionated component library for Halogen-based PureScript applications.
This repository holds the blocks and components we use in CitizenNet applications. These atoms can be built, styled, and rigorously tested without being forced into the context of the application. That allows for faster fixes and iteration in a sandbox environment so we can isolate errors, and more importantly, it allows easy access for business and design teams to verify our components without having to wait for a staging release or build anything locally.
This separation of concerns carries the same benefits as functional programming generally and fits well with using Tailwind (functional CSS) and PureScript. This UI repository focuses on providing self-contained, well-tested design atoms that can be dropped into any Halogen-based application and just as easily be updated or replaced. This allows the consuming application codebases to focus on providing a robust, usable application for users.
There are four relevant parts to this project:
src
: contains the pre-built components and UI styles we can drop into application screenstest
: contains snapshot and logic tests for our componentscss
: contains our modified version of Tailwindui-guide
: contains a small PureScript site demonstrating our components and styling so we can visually test implementationsdist
: contains the built CSS to import into Wildcat, and an index.html file usable for local testing
One of the major goals of this project is to provide a minimal environment to test the UI components we build and ensure the behaviors and styling are correct without coupling them to a particular screen in the app. Once the individual units are built and tested, we know we can safely import and use them in the app.
- Components can be viewed and tested by anyone at the documentation site.
All you need to do to get started is run:
make
This will install all dependencies and build the project. After making changes you can run the same command to build those changes. To see a list of the potentially useful commands, run:
make help
One of the primary aims of this project is to provide a way for non-PureScript developers to view and test our components. That ability is provided by the generated documentation site. This site is automatically built by Circle CI on the gh-pages
branch.
Our built CSS is version controlled, so that consuming applications can use it with minimal changes to their build system. Running make
before committing will not only validate that you're checking in code that compiles, but that the CSS is up to date. However, if you forget to build before checking in your code, there is a Circle CI step that will validate that the CSS is up to date for you.
To create a new release:
- Adjust the version in
package.json
. Some of our dependents rely on this version being correct. - Submit the changes to
main
via a PR. - Create a tag for the version.
$ git tag $NEW_VERSION
- Push
main
and the tag to the repo.$ git push --tags origin main
- Create a release on GitHub for the tag. The description should document the changes in this new version.