Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: added missing installation steps NO-JIRA #88

Merged
merged 1 commit into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
131 changes: 115 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<img src="./public/header.svg" width="100%" alt="css-in-readme">
<img src="https://storybook.tetrisly.com/header.svg" width="100%" alt="css-in-readme">

# Tetrisly React

Expand All @@ -15,52 +15,138 @@ We've desided to use `xstyled` for styling our components. If you are interested

## Installation

Install tetrisly-react with npm (you can do the same with yarn, pnpm or any other package manager)
Install `tetrisly-react`` with npm (you can do the same with yarn, pnpm or any other package manager)

```bash
npm install @virtuslab/tetrisly-react
```

and dependencies:

```bash
npm install styled-components @xstyled/styled-components
```

## Setup

### TetrislyProvider

After installing the package, you need to wrap your application in the `TetrislyProvider` component. This will provide the theme and other context to your application.

```typescript
```jsx
import { TetrislyProvider } from '@virtuslab/tetrisly-react';

function App() {
return (
<TetrislyProvider>
<YourApp />
</TetrislyProvider>
)
);
}
```

TetrislyProvider accepts optional prop `theme` which can be used to override default theme.

You can check out how this object looks like here: [Tetrisly Theme](src/theme/theme.ts)

```typescript
```jsx
import { TetrislyProvider } from '@virtuslab/tetrisly-react';

function App() {
return (
<TetrislyProvider theme={{ colors: { primary: 'red' } }}>
<TetrislyProvider
theme={{
colors: {
'$color-semantic-brand--4': th.color('$color-raspberry--4'),
'$color-semantic-brand--3': th.color('$color-raspberry--3'),
'$color-semantic-brand--2': th.color('$color-raspberry--2'),
'$color-semantic-brand--1': th.color('$color-raspberry--1'),
'$color-semantic-brand-0': th.color('$color-raspberry-0'),
'$color-semantic-brand-+1': th.color('$color-raspberry-+1'),
'$color-semantic-brand-+2': th.color('$color-raspberry-+2'),
'$color-semantic-brand-+3': th.color('$color-raspberry-+3'),
'$color-semantic-brand-+4': th.color('$color-raspberry-+4'),
'$color-semantic-brand-+5': th.color('$color-raspberry-+5'),
'$color-semantic-brand-+6': th.color('$color-raspberry-+6'),
'$color-semantic-brand-+7': th.color('$color-raspberry-+7'),
'$color-semantic-brand-+8': th.color('$color-raspberry-+8'),
},
}}
>
<YourApp />
</TetrislyProvider>
)
);
}
```

## Usage/Examples
### Default theme

```typescript
import { Button } from '@virtuslab/tetrisly-react';
Our default theme contains all of fundamental Tetrisly Design Tokens, you can use it with `xstyled` props to easy set up
your design. See `tet.*` utility [example of use](#tet-utility).

function App() {
return <Button label="Hello Tetrisly" />
}
Here you can see the
[default theme](https://github.com/VirtusLab/@tetrisly/react/blob/development/src/theme/defaultTheme.ts) or a complete
list of theme options.

### Default font

Tetrisly uses [Inter](https://fonts.google.com/specimen/Inter) font as default. To add it to your app you should link it
in your root `.html` file:

```html
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;450;600&display=swap"
rel="stylesheet"
/>
```

## `tet.*` utility

`tet` function is our extension of xstyled `x.*` utility. Both has the same API, but we will add some extra features in
near future. You can read more [here](https://xstyled.dev/docs/utility-props/).

### Example of use

```jsx
import {
TetrislyProvider,
Button,
theme,
tet,
} from '@virtuslab/tetrisly-react';

const App = () => (
<TetrislyProvider>
<tet.div
display="flex"
justifyContent="center"
alignItems="center"
h="100vh"
>
<tet.div>
<tet.h1
textAlign="center"
mb="$dimension-200"
text="$typo-header-4xLarge"
color="$color-content-primary"
>
Hello world!
</tet.h1>
<tet.div display="flex" justifyContent="center" alignItems="center">
<a
href="https://storybook.tetrisly.com"
target="_blank"
rel="noreferrer"
>
<Button label="Go to Storybook" appearance="primary" />
</a>
</tet.div>
</tet.div>
</tet.div>
</TetrislyProvider>
);

export default App;
```

## Run Locally
Expand Down Expand Up @@ -99,12 +185,19 @@ To run tests, run the following command

## Documentation

<img src="./public/logo_docs.svg" />
<img src="https://storybook.tetrisly.com/logo-docs.svg" />

If you want to dive deeper into the components Tetrisly offers, check out our official documentation: [Tetrisly Docs](https://docs.tetrisly.com/)

You can also check out our Storybook, which is our Documentation for React components (now in progress): [Tetrisly Storybook](https://virtuslab.github.io/tetrisly-react/?path=/docs/alertbanner--docs)

### Useful links

- [Tetrisly Storybook](https://storybook.tetrisly.com/)
- [Tetrisly Figma Docs](https://docs.tetrisly.com/)
- [Tetrisly Figma Preview](https://tetrisly.com/preview)
- [xstyled Docs](https://xstyled.dev/)

## Getting Help

If at any point you need help, feel lost, or have some feedback for us, you can create issues on our GitHub repository, or reach out to us on out Discord Server: [Tetrisly Discord](https://discord.gg/MPefZwUZUu)
Expand All @@ -116,3 +209,9 @@ If you want to share with us your thoughts on Tetrisly, or showcase what you hav
## License

We are using the [Apache License 2.0](https://choosealicense.com/licenses/apache-2.0/) for our library of components

## VirtusLab

<img src="https://storybook.tetrisly.com/logo-virtuslab.svg" />

Meet [VirtusLab](https://virtuslab.com/), the visionary team behind Tetrisly for React and the Tetrisly design system. Trusted by clients, they excel in product design, design systems and front-end engineering, creating mission-critical solutions across the product lifecycle.
Binary file removed public/VLLogo.png
Binary file not shown.
File renamed without changes
3 changes: 3 additions & 0 deletions public/logo-virtuslab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/docs-pages/ReadMe.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ import { Meta, Markdown } from '@storybook/addon-docs';
import readme from '@/../README.md?raw';

<Meta title="Docs/ReadMe" />
<Markdown>{readme.replaceAll('./public', '')}</Markdown>
<Markdown>{readme}</Markdown>