Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mathieutu/classed-components
💅 CSS Classes for the component age.
https://github.com/mathieutu/classed-components
Last synced: about 1 month ago
JSON representation
💅 CSS Classes for the component age.
- Host: GitHub
- URL: https://github.com/mathieutu/classed-components
- Owner: mathieutu
- License: mit
- Created: 2019-05-18T16:55:03.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-02-14T13:01:37.000Z (10 months ago)
- Last Synced: 2024-03-15T13:42:15.147Z (9 months ago)
- Language: TypeScript
- Size: 1 MB
- Stars: 74
- Watchers: 3
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# classed-components
[![npm](https://img.shields.io/npm/v/classed-components.svg)](https://www.npmjs.com/package/classed-components)
[![npm](https://img.shields.io/npm/dt/classed-components.svg)](https://www.npmjs.com/package/classed-components)
[![Coverage Status](https://coveralls.io/repos/github/mathieutu/classed-components/badge.svg?branch=main)](https://coveralls.io/github/mathieutu/classed-components?branch=main)
[![Build Status](https://github.com/mathieutu/classed-components/actions/workflows/test.yml/badge.svg)](https://github.com/mathieutu/classed-components/actions/workflows/test.yml)**💅 CSS Classes for the component age.**
This package allows you to add a your css classes to your component with the power of Javascript, and with Css-in-JS style.
![screenshot](./.github/assets/screenshot.png)
**✨ Features:**
Add you CSS classes in a fluent way to your React components, with:
- Template string.
- Array notation.
- Object notation.And all of that with:
- Infinite recursivity,
- Functions receiving your components props to manage your classes.
- Top developer experience: deep Typescript typing.## Table of contents
- [- Thanks](#--thanks)
- [Installation](#installation)
- [Usage](#usage)
- [Object syntax](#object-syntax)
- [Array Syntax](#array-syntax)
- [Template string](#template-string)
- [Functions](#functions)
- [Nesting](#nesting)
- [Remaining className prop on classed components](#remaining-classname-prop-on-classed-components)
- [Typings](#typings)
- [Examples](#examples)
- [A bug, a question?](#a-bug-a-question)
- [License](#license)
- [Contributing](#contributing)
- [Thanks](#thanks)
------## Installation
```bash
yarn add classed-components
```## Usage
You can create classed components with the `classed` method exported from `classed-components`, and passing your class to it. There are many way of doing that. We will try to document of all them in this section, but feel free to look at the [tests](./tests/classed.test.tsx) to see all the features and the whole API.
You can create any standard Html `X` classed component by using `classed.X`, `classed[X]` or `classed(X)` method:
```jsx
import classed from 'classed-components'const Link = classed.a('all my classes')
foo // foo
```But you can also class any custom component as long it accepts a `className` prop:
```jsx
import classed from 'classed-components'const BlogLink = ({ className }) => (
Blog
)const MenuLink = classed(BlogLink)('all my classes')
// Blog
```Several advanced syntaxes are allowed:
### Object syntax
You can pass an object to the method to dynamically toggle classes:
``` jsx
import classed from 'classed-components'
const hasError = trueconst Input = classed.input({ 'text-danger': hasError })
//
```
The above syntax means the presence of the `text-danger` class will be determined by the [truthiness](https://developer.mozilla.org/en-US/docs/Glossary/Truthy) of the constant `hasError`.### Array Syntax
We can pass an array to the method to apply a list of classes:
``` jsx
import classed from 'classed-components'
const inputClass = 'input'
const errorClass = 'text-danger'const Input = classed.input([inputClass, errorClass])
//
```If you would like to also toggle a class in the list conditionally, you can do it with a ternary expression:
``` jsx
import classed from 'classed-components'
const hasError = trueconst Input = classed.input(['input', hasError ? 'text-danger' : ''])
//
```This will always apply the `input` class, but will only apply `text-danger` when `hasError` is truthy.
However, this can be a bit verbose if you have multiple conditional classes. That's why it's also possible to use the array and object syntax inside array syntax:
``` jsx
import classed from 'classed-components'
const hasError = trueconst Input = classed.input(['input', { 'text-danger': hasError }])
//
```### Template string
You can use [tagged template string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals#Tagged_templates) to set your classes:
``` jsx
import classed from 'classed-components'const Input = classed.input`
input
text-danger
`//
```The placeholders are processed, and allow any type of other syntax:
``` jsx
import classed from 'classed-components'
const hasError = trueconst Input = classed.input`
input
${{ 'text-danger': hasError }}
`//
```### Functions
You can directly pass a function to the method, which will received the props of the component.
The return type of this function can be any of other syntax.``` jsx
import classed from 'classed-components'const Input = classed.input(({ hasError }) => ['input', { 'text-danger': hasError }])
//
```Functions can also be used directly nested in arrays and template strings:
``` jsx
import classed from 'classed-components'const Input = classed.input(['input', ({ hasError }) => { 'text-danger': hasError }])
//
`````` jsx
import classed from 'classed-components'const Input = classed.input`
input
${({ hasError }) => hasError && 'text-danger'}
${({ isRequired }) => isRequired && 'required'}
`//
```### Nesting
All the syntaxes work together and could be infinetly nested, so this example will work:
``` jsx
import classed from 'classed-components'const Input = classed.input`
input
${({ hasError, isRequired, errorClass }) => [{ [errorClass]: hasError }, isRequired && 'required']}
`//
```### Remaining className prop on classed components
The generated component will keep a `className` prop, and will merge all the classes you will pass through it.
It will so allow you to manage inheritance in your classed components, and compose easily your style.``` jsx
import classed from 'classed-components'const BaseInput = classed.input(({ hasError }) => ['input', { 'text-danger': hasError }])
const RequirableInput = classed(BaseInput)(({isRequired}) => ({ 'required': isRequired })//
```### Typings
classed-components is highly typed.
When using with Typescript, you will have all the available props of your original component in functions, and in the generated classed component.
If you want to add some props to manage your styling, you can type them by setting the first generic of the function.
```tsx
const Nav = classed.nav<{ isShown: boolean }>([
'header',
({ isShown }) => ({ 'bg-blue-500': isShown }),
])
```
That way, the original props and the ones you add will be merged, and you will have a high quality auto-completion:![Typescript: Autocompletion in function](.github/assets/ts_function.png)
![Typescript: Autocompletion in JSX](.github/assets/ts_jsx.png)
![Typescript: Adding props: Autocompletion in function](.github/assets/ts_add_props_function.png)
![Typescript: Adding props: Autocompletion in JSX](.github/assets/ts_add_props_jsx.png)## Examples
Soon: a code sandbox full example.Here some components styled with [TailwindCss](http://tailwindcss.com/)
```tsx
import { classed } from 'classed-components'
import { Link } from '../Link'const Nav = classed.nav<{ isShown: boolean }>([
'flex',
'items-center',
'justify-between',
'flex-wrap',
({ isShown }) => ({ 'bg-blue-500': isShown }),
'p-6',
])const MenuLink = classed(Link)<{ isBlue: boolean }>`
block
mt-4
lg:inline-block
lg:mt-0
text-blue-200
hover:text-${({ isBlue }) => isBlue ? 'blue-500' : 'white'}
mr-4
`const BtnLink = classed(Link)<{ isBlue: boolean }>(({ isBlue }) => {
const color = isBlue ? 'blue-500' : 'white'return [
'inline-block',
'text-sm',
'px-4',
'py-2',
'leading-none',
'border',
'rounded',
`text-${color}`,
`border-${color}`,
'hover:border-transparent',
`hover:text-${color}`,
`hover:bg-${color}`,
'mt-4',
'lg:mt-0',
]
})
```## A bug, a question?
Please feel free to [tell me](https://github.com/mathieutu/classed-components/issues/new)!
## License
This package is an open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).
## Contributing
Issues and PRs are obviously welcomed and encouraged, for new features as well as documentation.
## Thanks
Many thanks to actual and future [contributors](https://github.com/mathieutu/classed-components/graphs/contributors),
to [@emotion-js](https://github.com/emotion-js/emotion) for their great work about styling components,
and particular thanks to [@mephju](https://github.com/mephju) for letting this package having the already reserved `classed-component` name on npm.