Skip to content

Commit

Permalink
Update Usage instructions according to the current state of things (#197
Browse files Browse the repository at this point in the history
)
  • Loading branch information
adamkudrna committed Sep 20, 2023
1 parent 5be595c commit 28c3df4
Showing 1 changed file with 35 additions and 30 deletions.
65 changes: 35 additions & 30 deletions src/docs/getting-started/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,31 +26,39 @@ Google Fonts in your `<head>` element:
Remember to include all necessary font weights (and only them — for better
performance).

## Foundation CSS
## CSS

React UI honors [ITCSS][itcss] principles to make sure that its CSS code base
will work and perform well even in large scale. There are two global CSS layers:
will work and perform well even in large scale. There are three global CSS
layers:

1. **Theme:** a collection of hundreds of CSS custom properties that define the
look of your app. See [Theming][theming] for more.
2. **Foundation:** mandatory ground-zero CSS for React UI components. Includes
global resets and fixes rendering inconsistencies across browsers with
`normalize.css`. (Not to be confused with the Foundation CSS framework.)
3. **CSS helpers:** tiny CSS classes that can handle details like
[typography][typography], [spacing][spacing], [colors][colors], etc. Class
name notation is [inspired by Bootstrap][bootstrap-utilities], so if you are
familiar with Bootstrap, you will feel at home here.

All layers are written in Sass and compiled to CSS. You can import them in a
**ready-to-use CSS bundle** like this:

- **Theme:** a collection of hundreds of CSS custom properties that define the
look of your app. See [Theming][theming] for more.
- **Foundation:** the ground-zero CSS for React UI components. Includes global
resets and fixes rendering inconsistencies across browsers with
`normalize.css`. Not to be confused with the Foundation CSS framework.
```js
import '@react-ui-org/react-ui/dist/react-ui.css';
```

Import the two global CSS layers as early as possible in your document:
### Sass

Alternatively, you can import the Sass source files directly:

```js
import '@react-ui-org/react-ui/src/theme.scss';
import '@react-ui-org/react-ui/src/foundation.scss';
import '@react-ui-org/react-ui/src/helpers.scss';
```

⚠️ As of now, you will need **working SASS pipeline** for this to work. This is
to be changed to a ready-to-use CSS in the future.

️👉️ Because of using CSS custom properties, it is technically possible to import
the theme layer anywhere later in the app. But it's a nice habit to declare
variables before using them.

## Components

Import and use any of React UI components in your app:
Expand All @@ -61,6 +69,9 @@ import { Button } from '@react-ui-org/react-ui';
<Button label="My Button" />
```

👉 Thanks to [CSS modules], React UI components have their styles bundled
together with the component code.

### Controlled vs. Uncontrolled

While you may find out some components are working for you as uncontrolled, we
Expand Down Expand Up @@ -95,8 +106,7 @@ Example JSX:
import React from 'react';
import ReactDOM from 'react-dom';
import { Button } from '@react-ui-org/react-ui';
import '@react-ui-org/react-ui/src/theme.scss';
import '@react-ui-org/react-ui/src/foundation.scss';
import '@react-ui-org/react-ui/dist/react-ui.css';

const App = () => (
<Button label="My Button" />
Expand All @@ -105,22 +115,16 @@ const App = () => (
ReactDOM.render(<App />, document.querySelector('#app'));
```

## CSS Helpers

CSS helpers are tiny CSS classes that can handle details like
[typography][typography], [spacing][spacing], [colors][colors], etc.
## CDN

To use CSS helper classes, just import them along the base CSS layers of
React UI:
React UI is also available on CDN:

```js
import '@react-ui-org/react-ui/src/theme.scss';
import '@react-ui-org/react-ui/src/foundation.scss';
import '@react-ui-org/react-ui/src/helpers.scss';
```
| Description | URL |
|-------------|--------------------------------------------------------------------------------|
| CSS | `https://cdn.jsdelivr.net/npm/@react-ui-org/react-ui@latest/dist/react-ui.css` |
| JS | `https://cdn.jsdelivr.net/npm/@react-ui-org/react-ui@latest/dist/react-ui.js` |

Class name notation is [inspired by Bootstrap][bootstrap-utilities], so if you
are familiar with Bootstrap, you will feel at home here.
👉 Consider using a specific version instead of `latest` in production.

[itcss]: https://www.xfive.co/blog/itcss-scalable-maintainable-css-architecture/
[theming]: /docs/customize/theming/overview
Expand All @@ -129,3 +133,4 @@ are familiar with Bootstrap, you will feel at home here.
[spacing]: /docs/css-helpers/spacing
[colors]: /docs/css-helpers/colors
[bootstrap-utilities]: https://getbootstrap.com/docs/5.1/utilities/
[CSS modules]: https://github.com/css-modules/css-modules

0 comments on commit 28c3df4

Please sign in to comment.