Skip to content

Latest commit

 

History

History
258 lines (182 loc) · 13.2 KB

CONTRIBUTING.md

File metadata and controls

258 lines (182 loc) · 13.2 KB

Contributing to AgnosticUI

Thanks for your interest in contributing to AgnosticUI! Please take a moment to review this document in order to make the contribution process smooth for all involved.

Usage

git clone git@github.com:AgnosticUI/agnosticui.git
cd agnosticui

You will now need to descend into any of the framework packages and do npm install # or npm i to install its dependencies. For example, to install the depedencies for the AgnosticUI React package starting from the top-level directory:

cd agnostic-react && npm i

This will descend into the react package directory, use npm i to install the depedencies. You may do the same for CSS, Vue, Svelte, Angular, as you wish.

Dev Envs

Once you've installed the npm dependencies, you should be able to start development. AgnosticUI packages have two primary environments:

Storybook

From same package directory, you can run npm run storybook which opens a Storybook for that package. Look for files ending in .stories.(js|tsx) to find these specs.

Example App (aka kitchen sink)

While Storybook is fine for certain component-driven tests, sometimes it's useful to actually import the AgnosticUI package and see it in a less artificial environment. For that, many of the packages will have a /examples directory which contains a sort of one-page “kitchen sink” app. This is used as a sanity check to spot check the components.

Svelte's example app is actually in agnostic-svelte/package_test as it tests the package directory created by SvekteKit's packaging build system.

This app is also used to locally verify the npm package build itself and so there's a bit of ceremony to build the package and pack it (generate a tarball of the npm package) and then consume the prepared package from the /examples app.

Each of these example apps has a README which describes these steps:

React example app Vue example app Svelte example app

Checklist

TL;DR: If you're already very familiar with open-source contributions and just want to cut to the chase, here is a checklist to follow:

  • First submitted new feature or bugfix issue? Unless it's a small bugix, we generally prefer to track PRs against an issue which starts a dialogue to give us context.
  • Does the change require CSS updates to existing components? If so, have you updated all frameworks and verified?
  • Does this add a new component? If so, have you updated all framework's copystyles.js to pull in said CSS and verified it's working properly?
  • Tests passing?
  • Have you added to the framework's /examples apps? e.g. agnosticui-react/examples? These are kitchen sink sanity checks which help to verify a component is working and derive documentation snippets.
  • Have you updated the docs? These live in site/docs

We realize above checklist is pretty intimidating, reach out with an at mention on your issue if you're interested in contributing but need some clarifications!

The rest of this document goes into more details.

Pull requests

Please suggest a change before starting to code a new feature or bugfix.

We'd really hate for you to invest a lot of time and effort into a bugfix or new feature just to have it rejected because it's already being tackled, or the idea doesn't align with our roadmap. To avoid this, we request that contributors first create an issue to first discuss the bug or feature.

Bug reports

A bug is a demonstrable problem that is caused by the code in the repository. Good bug reports are extremely helpful, so thanks!

Here are some best practices before creating an issue:

  1. Validate your HTML to ensure your problem isn't caused by a simple error in your own code.

  2. Use the GitHub issue search — check if the issue has already been reported.

  3. Check if the issue hasn't already been fixed — try to reproduce it using the latest master in the repository.

  4. Isolate the problem — ideally create a reduced test case and a live example. For more dynamic examples use codesandbox, codepen, or any tool that suffienntly loads the dependencies required to reproduce said use case.

Please try to be as detailed as possible in your report. What is your environment, OS, browser, etc.? List the exact steps to reproduce the issue. Then, list the expected results vs. actual results. These seemingly mundane details will really help contributors and/or reviewers understand and tackle the problem efficiently.

Example template:

Short descriptive bug report and title

A summary of issue, browser/OS environment; and steps to reproduce:

  1. This is the first step
  2. This is the second step
  3. Further steps, etc. Expected outcome. Actual outcome.

<url> - a link to the reduced test case

Feature requests

Feature requests are certainly welcome. But, first please take a moment to determine whether your idea fits with the scope of AgnosticUI. Keep in mind that we''d like to keep the surface API from growing too large (we may eventually open an Addons side project for more complex components. But, our goal is to cover core primitive components that can be used as building blocks for your own custom design systems.

Of course if you're willing to contribute with pull requests and/or proof-of-concept code sandboxes or pens, all the better. As is with many open source projects, this is a labor of love done on the maintainer's spare time; so, unfortnately, we can't tackle everything that comes our way.

Pull requests

We deeply appreciate bug reports or feature suggestions that come with an investment from the reporter. Especially a GitHub pull request!

However, again please do ask first before embarking on any significant coding effort so we can confirm the idea. For something more trivial that doesn't require too much of your time, you can go ahead and make a PR preemptively.

Forking model

We use the following fork-pull-request model:

  1. Fork the project, clone your fork, and configure the remotes:

    # Use GitHub interface to fork the repo into your own forked repo
    # Then, clone your fork of the repo onto your local machine
    git clone https://github.com/<your-username>/agnosticui.git
    # Navigate to the newly cloned directory
    cd agnosticui
    # Now add "upstream" for our upstream repo to a remote called "upstream"
    git remote add upstream https://github.com/agnosticui/agnosticui.git
  2. If you cloned a while ago, get the latest changes from upstream:

    git checkout master
    git pull --rebase upstream master
  3. Create a new topic branch (off the main project development branch) to contain your feature, change, or fix:

    git checkout -b <topic-branch-name>
  4. Commit your changes in logical chunks. Please adhere to these git commit message guidelines or your code is unlikely be merged into the main project. Use Git's interactive rebase feature to tidy up your commits before making them public.

  5. Locally merge (or rebase) the upstream development branch into your topic branch:

    git pull [--rebase] upstream master
  6. Push your topic branch up to your fork:

    git push origin <topic-branch-name>
  7. Open a Pull Request with a clear title and description against the master branch.

For visual changes, it never hurts to leave some screen grabs on the pull request.

IMPORTANT: By submitting a patch, you agree to allow the project owners to license your work under the terms of the Apache License Version 2.0, License.

Code guidelines

Take some time to become familiar with the common AgnosticUI APIs. You'll see some common themes like isDisabled props, disabledOptions for tabs or choice inputs (or "groups of things"), isSkinned which serves as a way for folks to opt-out of visual styles on the component's container. Checks for a11y violations and implementing keyboard navigation when applicable is always appreciated! Ensuring you have a storybook story and anything else that makes your component solid and consistent with existing APIs is welcomed.

Please also run lint, test, etc., and ensure changes don't break the codebase.

How it all works

If you've gotten this far, you must really be serious about contributing—thank you! Let's dive into the big picture philosophy of AgnosticUI so you can be successful contributing.

Frameworks

The philosophy of AgnosticUI is to curate a top-level component.html and component.css in the agnostic-css package. Then, we synchronize that css down into the various framework implementation packages. This is done via a simple Node script which literally copies the CSS over into each framework. We call this script copystyles.js, and it lives at the top-level of each framework package.

So, if you've created a new component in agnostic-css (assuming you plan to add a framework implementation as well e.g. React, Angular, Vue, or Svelte), you would then need to find the corresponding copystyles.js node script and copy component.css into the appropriate place.

The copy styles script is easier to understand if you just have a look at the existing examples. In general, React uses an external component.module.css which wraps a CSS file directly copied over. Angular simply copies the file and uses imports. Svelte and Vue use SFC, so there's a small regex replacement that happens to copy the styles in between the respective <style></style> tags.

Each framework implementation is an independent package of its own with it's own package.json, so simply install the dependencies with npm i and then fire-up Storybook with npm run storybook to get started.

How it works

AgnosticUI takes an HTML/CSS first approach to UI component primitives, but attempts to also deliver framework specific implementations of these primitives. Every time you run npm run storybook in a framework-specific subdirectory it first runs copystyles.js to synchronize the top-level CSS! The structure simplified looks like this:

├── agnostic-css
│   ├── LICENSE
│   ├── button-core.css
│   ├── button.html
│   └── package.json
├── agnostic-react
│   ├── copystyles.js
│   ├── package.json
│   ├── src
│   │   ├── stories
│   │   │   ├── Button.js
│   │   │   ├── Button.stories.js
│   │   │   ├── button-core.css
│   │   │   └── button.module.css
│   │   └── storybook.test.js
├── agnostic-svelte
│   ├── copystyles.js
│   ├── package.json
│   ├── src
│   │   └── stories
│   │       ├── Button.stories.js
│   │       ├── Button.svelte
│   │       └── Button.test.js
├── agnostic-vue
│   ├── copystyles.js
│   ├── package.json
│   ├── src
│   │   └── stories
│   │       ├── Button.stories.js
│   │       ├── Button.test.js
│   │       └── Button.vue
...and so on

So, the styles for each framework are driven from the CSS package's component CSS files, where we've tried to ensure that the core component works well standalone. For example, if you run npm run storybook from within the React package, we will first run a script that copies the CSS package's component CSS files over into the corresponding React framework ones.

Let's take the button component that lives in the CSS package at: agnostic-css/button-core.css. Anytime we run npm run storybook within the React package, the button-core.css file is literally copied over into React's: agnostic-react/src/stories/button-core.css. This “syncing of styles” ensures that we don't inadvertently diverge from the CSS package.

Similarly, for Vue's Button component, that same top-level button-core.css file is copied over into agnostic-vue/src/stories/Button.vue, but, this time within it's <style module>...</style> tags.

The main idea here, is that all framework styles are synchronized with the top-level CSS package's styles before you're even allowed to fire up Storybook to view the rendered components. Essentially, this ensures synchronization of component primitive styles across framework implementations.

License

By contributing your code, you agree to allow the project owners to license your work under the terms of the Apache License Version 2.0, License.