Skip to content

Commit ff566d2

Browse files
authored
Merge pull request #11 from c8r/update-docs
Update docs
2 parents 107e757 + f6372d5 commit ff566d2

17 files changed

+206
-111
lines changed

docs/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ Lab is a new type of design tool that allows you to create production ready Reac
77

88
- [Installation](installation.md)
99
- [Getting Started](getting-started.md)
10+
- [Extending components](extending.md)
11+
- [Composite components](composite-components.md)
12+
- [Importing components](importing.md)
13+
- [Exporting components](exporting.md)
1014

1115

1216
## Support

docs/composite-components.md

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
2+
# Composite Components
3+
4+
In addition to creating primitive style components,
5+
Lab can be used to create multi-element composite components
6+
with the other style components in your library.
7+
8+
To create a composite component, click the *Add* button in the upper right,
9+
then click the *Composite Component* tab.
10+
11+
![library view](images/composite-library.png)
12+
13+
![composite component tab](images/composite-tab.png)
14+
15+
Next, in the *Imports* field start typing the name of the components that
16+
you plan to use for creating the composite component.
17+
A list of available components will appear in the text below the form field.
18+
19+
**Note:** Lab currently only supports creating composite components with primitive style components and extended components;
20+
other composite components cannot be imported.
21+
22+
![composite component imports field](images/composite-imports.png)
23+
24+
Next, in the JSX editor, start using the imported components to build a composite component.
25+
To allow the values used in the composite component to be changed dynamically, use [React props][react-props].
26+
27+
Don't worry if the component isn't perfect at this step, you'll be able to edit it in the next step.
28+
29+
![composite component JSX field](images/composite-jsx.png)
30+
31+
Give your new component a unique name, then click the *Create Component* button to add the component to your library and start editing it.
32+
33+
![composite component name field](images/composite-name.png)
34+
35+
To start, make sure you add an example in the *Examples* editor to give your component some test content.
36+
37+
![composite component examples](images/composite-examples.png)
38+
39+
Since Lab components use [styled-system][system] you can adjust things like margin, padding and font-size for the components
40+
used in your composite component.
41+
42+
43+
- Next: [Importing Components](importing.md)
44+
45+
[system]: https://github.com/jxnblk/styled-system
46+
[react-props]: https://reactjs.org/docs/components-and-props.html

docs/exporting.md

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
2+
# Exporting Lab Components
3+
4+
Components created in Lab can be exported as static React components for use in a React application.
5+
6+
Click the `File > Export Library` menu item and select a folder to export your components to. Note that any files that are named the same as a component in your library will be overwritten.
7+
8+
## ThemeProviders
9+
10+
Because Lab components make use of a ThemeProvider component, you will also need to use a ThemeProvider in your own application to use Lab components.
11+
12+
Depending on the CSS-in-JS library you export to, importing a ThemeProvider will look like one of the examples below:
13+
14+
[*styled-components*][sc-theme]
15+
16+
```js
17+
import { ThemeProvider } from 'styled-components'
18+
```
19+
20+
[*glamorous*][g-theme]
21+
22+
```js
23+
import { ThemeProvider } from 'glamorous'
24+
```
25+
26+
[*cxs*][cxs-theme]
27+
28+
```js
29+
import ThemeProvider from 'cxs/ThemeProvider'
30+
```
31+
32+
[*fela*][fela-theme]
33+
34+
```js
35+
import { ThemeProvider } from 'react-fela'
36+
```
37+
38+
[*emotion* & *theming*][emotion-theme]
39+
40+
```js
41+
import { ThemeProvider } from 'theming'
42+
```
43+
44+
The theme created in a Lab project is automatically saved as a JSON file named `theme.json`.
45+
Because it‘s a static JSON file, it can be imported in projects using webpack 2 or higher.
46+
47+
```js
48+
import theme from '../theme.json'
49+
```
50+
51+
At the root of your React application, wrap the entire component tree with the ThemeProvider.
52+
53+
```jsx
54+
const App = props => (
55+
<ThemeProvider theme={theme}>
56+
<Main />
57+
</ThemeProvider>
58+
)
59+
```
60+
61+
[sc-theme]: https://www.styled-components.com/docs/advanced#theming
62+
[g-theme]: https://glamorous.rocks/advanced/#theming
63+
[cxs-theme]: https://github.com/jxnblk/cxs#theming
64+
[fela-theme]: http://fela.js.org/docs/guides/UsageWithReact.html#component-theming
65+
[emotion-theme]: https://github.com/emotion-js/emotion/blob/master/docs/theming.md
66+
67+
68+
## styled-system
69+
70+
Lab components use [styled-system][system] for thematically controlled style props.
71+
Styled-system allows you to control font-size, margin, padding, color, and more via React props. [Read more][system]
72+
73+
[system]: https://github.com/jxnblk/styled-system
74+
75+
---
76+
77+
- [Installation](installation.md)
78+
- [Getting Started](getting-started.md)
79+
- [Extending components](extending.md)
80+
- [Composite components](composite-components.md)
81+
- [Importing components](importing.md)
82+
- [Exporting components](exporting.md)

docs/extending.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
# Extending Components
3+
4+
Primitive style components can be extended when you want to take a component's existing styles and change them slightly, for example, making a BigButton variation of a Button component.
5+
6+
To extend a component, click on the base component and click the *Extend Component* button in the lower part of the edit panel.
7+
8+
![extend component button](images/extend-button.png)
9+
10+
Give your new extended component a unique name and click *Create Component*.
11+
12+
![extend component form](images/extend-name.png)
13+
14+
The new extended component will inherit any styles set on its base component.
15+
Edit any styles you'd like to override such as font size and padding.
16+
17+
![extended component detail](images/extend-detail.png)
18+
19+
![extended component library view](images/extend-library.png)
20+
21+
Extended components are linked to their base component, which means
22+
that any changes made to the Button component in this example
23+
will also be inherited by the extended component.
24+
25+
In this example, the border radius was adjusted on the Button component,
26+
and the BigButton component inherited the new border radius.
27+
28+
![extended component library view](images/extend-base-edits.png)
29+
30+
31+
- Next: [Composite Components](composite-components.md)

docs/getting-started.md

+19-111
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
## Getting Started
2+
# Getting Started
33

44
First, choose a folder for a new project. This can be an existing react project that has a collection of components. Lab will save a `lab.json` and `theme.json` file.
55
We recommend you keep this folder under source control, using such as [git](https://git-scm.com).
@@ -38,37 +38,31 @@ Try adjusting the style controls on the right and creating a component that fits
3838
Once you‘ve got some basic styles set, you‘ll want to test the component out with different states to make sure it works.
3939

4040
React uses *props* to pass values into a component from the parent.
41-
At the bottom of the right panel, you‘ll see a section called *Example Props*.
41+
At the bottom of the right panel, you‘ll see a section called *Examples*.
42+
Examples use JSX syntax so you can test how your component would work
43+
in a real React application.
44+
4245
In the first code editor, try adding the following:
4346

4447
```js
45-
{
46-
children: 'Hello'
47-
}
48+
<Button>
49+
Hello
50+
</Button>
4851
```
4952

50-
The syntax here is a plain JavaScript object. This object is passed into the component, similar to adding attributes (class, id, href, title, alt, etc.) to an HTML element.
51-
52-
If this were using JSX syntax, it would look like the following:
53-
54-
```jsx
55-
<Button children='hello' />
56-
```
57-
58-
The `children` prop is React‘s way of handling composition.
59-
By passing a string as children into the component, you‘ve set the text inside the component.
60-
6153
Next, below the code editor, click the *Add Example* button.
62-
In the new editor box, add another `children` prop, but this time add a longer string of text.
54+
In the new editor box, add a longer string of text.
6355

6456
```js
65-
{
66-
children: 'Well howdy there partner'
67-
}
57+
<Button>
58+
Hello there, how are you?
59+
</Button>
6860
```
6961
7062
You can now switch between these two examples to see how your component responds in different situations.
7163
64+
Click the *Show all examples* radio to show all examples at once.
65+
7266
7367
## Customizing Styles
7468
@@ -79,95 +73,9 @@ hover states, box shadows, transitions, or any other CSS property.
7973
All CSS properties are camelCased, so instead of `box-shadow`, use `boxShadow` as the key.
8074
All values need to be JavaScript strings, which means they should be enclosed in single quotes.
8175
82-
## Importing Components
83-
84-
A react component created outside of Lab can be imported to Lan. You can view them side-by-side and with different example props.
85-
86-
To import a component, select the `File > Import Component` menu item.
87-
Navigate to a component within the same folder as your project to select a component for importing.
88-
89-
![external component](images/detail-external.png)
90-
91-
Once a component is loaded into your project, you can make changes to the source file in your own text editor,
92-
and changes will be automatically reloaded in Lab.
93-
94-
*Troubleshooting*
95-
96-
- If a component fails to load, the preview should display an error to help with debugging.
97-
- Make sure components are located within the same root folder as your Lab project or in a subdirectory.
98-
- Make sure any npm dependencies have been installed in your project by running `npm install` in your terminal.
99-
- Make sure your component *DOES NOT* make use of any webpack loaders or other build-specific tools.
100-
101-
102-
## Exporting Lab Components
103-
104-
Components created in Lab can be exported as static React components for use in a React application.
105-
106-
Click the `File > Export Library` menu item and select a folder to export your components to. Note that any files that are named the same as a component in your library will be overwritten.
107-
108-
### ThemeProvider
109-
110-
Because Lab components make use of a ThemeProvider component, you will also need to use a ThemeProvider in your own application to use Lab components.
111-
112-
Depending on the CSS-in-JS library you export to, importing a ThemeProvider will look like one of the examples below:
113-
114-
[*styled-components*][sc-theme]
115-
116-
```js
117-
import { ThemeProvider } from 'styled-components'
118-
```
119-
120-
[*glamorous*][g-theme]
121-
122-
```js
123-
import { ThemeProvider } from 'glamorous'
124-
```
125-
126-
[*cxs*][cxs-theme]
127-
128-
```js
129-
import ThemeProvider from 'cxs/ThemeProvider'
130-
```
131-
132-
[*fela*][fela-theme]
133-
134-
```js
135-
import { ThemeProvider } from 'react-fela'
136-
```
137-
138-
[*emotion* & *theming*][emotion-theme]
139-
140-
```js
141-
import { ThemeProvider } from 'theming'
142-
```
143-
144-
The theme created in a Lab project is automatically saved as a JSON file named `theme.json`.
145-
Because it‘s a static JSON file, it can be imported in projects using webpack 2 or higher.
146-
147-
```js
148-
import theme from '../theme.json'
149-
```
150-
151-
At the root of your React application, wrap the entire component tree with the ThemeProvider.
152-
153-
```jsx
154-
const App = props => (
155-
<ThemeProvider theme={theme}>
156-
<Main />
157-
</ThemeProvider>
158-
)
159-
```
160-
161-
[sc-theme]: https://www.styled-components.com/docs/advanced#theming
162-
[g-theme]: https://glamorous.rocks/advanced/#theming
163-
[cxs-theme]: https://github.com/jxnblk/cxs#theming
164-
[fela-theme]: http://fela.js.org/docs/guides/UsageWithReact.html#component-theming
165-
[emotion-theme]: https://github.com/emotion-js/emotion/blob/master/docs/theming.md
166-
167-
168-
## Styled System
169-
170-
Lab components use [styled-system][system] for thematically controlled style props.
171-
172-
[system]: https://github.com/jxnblk/styled-system
76+
**More Documentation**
17377
78+
- [Extending Components](extending.md)
79+
- [Composite Components](composite-components.md)
80+
- [Importing Components](importing.md)
81+
- [Exporting Components](exporting.md)

docs/images/composite-examples.png

882 KB
Loading

docs/images/composite-imports.png

207 KB
Loading

docs/images/composite-jsx.png

255 KB
Loading

docs/images/composite-library.png

392 KB
Loading

docs/images/composite-name.png

260 KB
Loading

docs/images/composite-tab.png

213 KB
Loading

docs/images/extend-base-edits.png

180 KB
Loading

docs/images/extend-button.png

267 KB
Loading

docs/images/extend-detail.png

275 KB
Loading

docs/images/extend-library.png

178 KB
Loading

docs/images/extend-name.png

238 KB
Loading

docs/importing.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
# Importing Components
3+
4+
A React component created outside of Lab can be imported to Lab.
5+
This is helpful for viewing your Lab components in the context
6+
of others, and for using Lab as an isolated development environment.
7+
8+
To import a component, select the `File > Import Component` menu item.
9+
Navigate to a component within the same folder as your project to select a component for importing.
10+
11+
![external component](images/detail-external.png)
12+
13+
Once a component is loaded into your project, you can make changes to the source file in your own text editor,
14+
and changes will be automatically reloaded in Lab.
15+
16+
*Troubleshooting*
17+
18+
- If a component fails to load, the preview should display an error to help with debugging.
19+
- Make sure components are located within the same root folder as your Lab project or in a subdirectory.
20+
- Make sure any npm dependencies have been installed in your project by running `npm install` in your terminal.
21+
- Make sure your component *DOES NOT* make use of any webpack loaders or other build-specific tools.
22+
- Lab currently only supports standard ECMAScript (ES). Components written in other formats such as TypeScript will need to be converted to ES before importing.
23+
24+
- Next: [Exporting Components](exporting.md)

0 commit comments

Comments
 (0)