UNPKG

4.45 kBMarkdownView Raw
1# Mirage ![Branches](/coverage/badge-branches.svg) ![Functions](/coverage/badge-functions.svg) ![Lines](/coverage/badge-lines.svg) ![Statements](/coverage/badge-statements.svg)
2
3[Live Demo of the Pattern Library](https://rocketsofawesome.github.io/mirage/)
4
5## Use the Pattern Library
6
7First run the command:
8
9`npm install @rocketsofawesome/mirage`
10
11Then inside of your react project (preferably towards the top of the application) wrap the application in the `<ROATheme></ROATheme>` theme wrapper. This will set a bunch of props on children components such as colors, fonts, etc.
12
13To import other components into your react app, simply do the following:
14
15```
16import { Logo } from '@rocketsofawesome/mirage'
17```
18
19You should then have access to the component and can use it like a normal react component:
20
21```
22<Logo />
23```
24
25It's that easy! Additional props are documented in
26
27## Development
28
29To run the pattern library locally, run the following:
30
31```
32npm start
33```
34
35This will start the styleguidist server which parses through the directories in the `src` directory, and output those components to the pattern library.
36
37If you would like to publish your new component(s) to the styleguide demo, commit your changes like you would normally.
38
39## Publish to npm
40
41First, be sure to do your work on a feature branch, we have scripts that are run specifically on the master branch.
42
43If you are happy with the changes that you have made to your component and you wish to publish your changes to npm, do the following.
44
45First, be sure to add your component to the `src/index.js`, if you test your components by pulling them in from the `SRC` directory, you should be able to tell if they are being exported properly for consumption.
46
47This is the file that gets distributed in the `dist` directory.
48
49Then run the following commands:
50```
51npm version patch
52```
53
54This command will bump the version of the pattern library by one patch number (Note: publishing to npm requires that a new version number be supplied).
55
56When you merge your feature branch onto master, the `npm publish` script will be run and your changes will then be available when you do `npm install --save @rocketsofawesome/mirage` in the codebase that is using our styled components. There is also another command that gets run that builds the styleguide code and then publishes that code to the `gh-pages` branch. This serves the static version of the component library.
57
58
59The _Rockets of Awesome Pattern Library_ (RoA PL) is an organized set of interactive, reusable components that can be used to build out more complicated modules, pages, and templates. Pattern libraries often include example elements, sample code, variations, use cases, and considerations.
60***
61When building a pattern library, you should consider the following for each pattern you add:
62
63Pattern name: Giving each pattern a name makes it easier to discuss and reference them. Meaningful names help people quickly grasp what the pattern may look like and how it may be used.
64
65Visual representation: What does the pattern look like? An interactive visual representation of the pattern can show different states (like active, focus, hover) and include other variations.
66
67Design elements: Add a downloadable design file that can be easily edited. Designers can then incorporate the pattern into their workflow more quickly. Code samples: Sample code includes the code that defines the semantic structure, visual style, and behavior for each pattern. For web-based libraries, this would be the HTML, CSS, and Javascript. In most cases, the CSS and Javascript should
68already be defined in existing stylesheets and scripts. Sample code should document how to apply those styles and behaviors.
69
70Variations: Some patterns have multiple variations. Show each of the visual variants, how to implement them, and what problems they are intended to solve. Use cases: Use cases define where and how to use patterns most effectively. They may even suggest alternative patterns for specific circumstances, good pattern combinations, and examples of when NOT to use the pattern.
71
72Considerations: Even the best patterns have tradeoffs or potential pitfalls. Including considerations can help tell your team why (or more importantly why NOT) to use a pattern in certain circumstances. Related elements: What patterns are similar to this pattern? What patterns commonly accompany this one? Is this pattern a part of a larger component?