Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jsverse/variabless
JS & CSS - A Match Made in Heaven 💎
https://github.com/jsverse/variabless
css cssvariables javascript webpack
Last synced: 3 days ago
JSON representation
JS & CSS - A Match Made in Heaven 💎
- Host: GitHub
- URL: https://github.com/jsverse/variabless
- Owner: jsverse
- License: mit
- Created: 2020-11-28T19:32:27.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-10T10:38:16.000Z (6 months ago)
- Last Synced: 2024-10-29T21:29:29.767Z (12 days ago)
- Topics: css, cssvariables, javascript, webpack
- Language: HTML
- Homepage: https://ngneat.github.io/variabless/
- Size: 2.43 MB
- Stars: 78
- Watchers: 4
- Forks: 6
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Variabless allows you to manage application-wide CSS styles and variables in a single source of truth manner.
Variabless will convert a JS definitions file to CSS variables or classes, allowing you to use those values in JS and CSS files.## Why Variabless?
Since introducing CSS variables, supporting themes in your app, and customizing styles became much more convenient.
While developing several apps, we noticed a reoccurring need. We need to refer to the theme and variables in our TS files for various reasons. For example, we are passing colors and fonts to libraries such as highcharts and grid.At that point, it was either managing two sets of theme definitions, one in CSS and one in TS, or found a solution to centralize our theme and make it accessible for both; thus, Variabless was born.
## Features
✅ Convert JS to CSS variables
✅ Single Source of Styling Across the App
✅ Supports JS, TS and JSON file formats
✅ Webpack Plugin
✅ Easy CSS Rules Creation👉 Try it in our [playground](https://ngneat.github.io/variabless/).
## Table of content
- [Installation](#installation)
- [Usage](#usage)
- [CLI](#cli)
- [Webpack Plugin](#webpack-plugin)
- [Rules Definition](#rules-definition)
- [value](#value---string--number--object)
- [variableName](#variablename---string--resolver)
- [Tokenized string](#tokenized-string)
- [Resolver function](#resolver-function)
- [appendVariablesTo](#appendvariablesto---string)
- [properties](#properties---propertyconfig--propertyconfig)
- [Generate Independent Properties](#generate-independent-properties)## Installation
Install the Variabless package via yarn or npm by running:```bash
npm i -D @ngneat/variabless
yarn add -D @ngneat/variabless
```## Usage
There are two ways you can use Variabless:### CLI
Add the following script to your `package.json` file:```json
{
"variabless": "variabless -s src/theme.ts -o src/assets/styles/theme.css"
}
```
Run `npm run variabless` to generate the css file.### Webpack plugin
The `VariablessWebpackPlugin` provides you with the ability to add/remove variables during development, while you're working on the project.
Just add the `VariablessWebpackPlugin` in your plugins list:```javascript
// webpack.config.js
const { VariablessWebpackPlugin } = require('variabless/webpack-plugin');module.exports = {
plugins: [
new VariablessWebpackPlugin({
watch?: boolean, // listen to changes
srcPath: 'src/theme.ts', // the variables rules file
outputPath: 'src/theme.css', // generated css file path
}),
]
};
```
Include the generated file by Variabless in your styles:
```css
@import 'assets/styles/theme.css';
```Add the generated file to your `.gitignore` file, there is no need to track it.
## Rules Definition
The Variabless source file exports a map of rules which defines how to create the variables:
```typescript
// src/theme.ts
export const coreStyles: Record = {
myVariable: {
value: string | object,
variableName?: string | Resolver,
appendVariablesTo?: string,
properties?: PropertyConfig[],
},
...
};
```Where each rule has the following options:
#### `value` - string | number | object
The css variable value, can be either string, number or a map:```javascript
{
fontFamily: {
value: 'Roboto'
},
blueColors: {
value: {
b1: 'lightblue',
b2: 'blue',
}
}
}
```When passing a map, a variable will be created for each value.
#### `variableName` - string | Resolver
The css variable name.
When the rule has a primitive value the `variableName` should be a `string`:```javascript
{
fontFamily: {
value: 'Roboto',
variableName: 'font-family'
},
}
```Will produce:
```css
--font-family: 'Roboto';
```When the rule's `value` is a map, we need to avoid name collisions, the `variableName` must be one of these two options:
#### Tokenized string
We can pass a string containing unique tokens which are replaced during the variable's creation:* `:valueKey`
* `:property`The following rule:
```javascript
{
blueColors: {
value: {
b1: 'lightblue',
b2: 'blue',
},
variableName: ':valueKey-color'
},
}
```Will produce the following variables:
```css
--b1-color: 'lightblue';
--b2-color: 'blue';
```#### Resolver function
The resolver function is similar to the tokenized string but gives you more flexibility:```typescript
type Resolver = (params: ResolverParams) => string;interface ResolverParams {
valueKey?: string;
property?: string;
}
```The following rule:
```javascript
{
blueColors: {
value: {
b1: 'lightblue',
b2: 'blue',
},
variableName: ({valueKey}) => valueKey.toUpperCase() + '-color'
},
}
```Will produce the following variables:
```css
--B1-color: 'lightblue';
--B2-color: 'blue';
```#### `appendVariablesTo` - string
The selector hosting the generated variables, defaults to `:root`:```css
:root {
--font-family: 'Roboto'
...
}
```#### `properties` - PropertyConfig[]
It's a common practice to put frequently used styles in shared class or attribute.
Varibless easily allows you to create css selectors for those frequently used variables.Properties are defined as following:
```typescript
export interface PropertyConfig {
prop: string | string[];
selector: string | Resolver;
}
```* `prop` - The css properties to assign the variable's value to.
* `selector` - The selector that will hold the css properties.Similar to the [variableName](#variablename---string--resolver), if the rule's value is a primitive, the selector's value
should be a `string`. If the rule's value is a map, or the selector used for several css properties than the selector
should be a [tokenized string](#tokenized-string) or a [resolver function](#resolver-function) to prevent collisions.The following rule:
```typescript
{
fontFamily: {
value: 'Roboto',
variableName: 'font-family',
properties: [{
prop: 'font-family',
selector: '.font-family'
}],
},
blueColors: {
value: {
b1: 'lightblue',
b2: 'blue'
},
variableName: ':valueKey-color',
properties: [{
prop: 'color',
selector: '.:valueKey-:property'
}, {
prop: 'background-color',
selector: '.:valueKey-bg'
}],
}
}
```Will produce the following css:
```css
:root {
--font-family: 'Roboto';
--b1-color: 'lightblue';
--b2-color: 'blue';
}body {
.font-family {
font-family: var(--font-family);
}
.b1-color {
color: var(--b1-color);
}
.b2-color {
color: var(--b2-color);
}
.b1-bg{
background-color: var(--b1-color);
}
.b2-bg {
background-color: var(--b2-color);
}
}
```### Generate Independent Properties
You can also generate properties that don't relay on variables by not providing the `variableName` property.
The following rule:```typescript
{
fontWeight: {
properties: [
{
prop: 'font-weight',
selector: '.font-weight-:valueKey'
}
],
value: {
regular: 'normal',
medium: 500,
bold: 'bold',
custom: 'var(--foo)'
}
}
}
```Will produce the following css:
```css
body {.font-weight-regular {
font-weight: normal;
}
.font-weight-medium {
font-weight: 500;
}
.font-weight-bold {
font-weight: bold;
}
.font-weight-custom {
font-weight: var(--foo);
}
}
```## Contributors ✨
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
Shahar Kazaz
💻 🖋 🎨 📖 💡 🤔 🚇 ⚠️
Netanel Basal
💻 🤔 🧑🏫
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!