Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrozbarry/composable-state
A library for composing declarative deep-nested state updates.
https://github.com/mrozbarry/composable-state
ecmascript immutable library state-management
Last synced: 27 days ago
JSON representation
A library for composing declarative deep-nested state updates.
- Host: GitHub
- URL: https://github.com/mrozbarry/composable-state
- Owner: mrozbarry
- Created: 2021-04-02T14:26:32.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-04-05T03:39:27.000Z (7 months ago)
- Last Synced: 2024-10-07T22:11:16.164Z (about 1 month ago)
- Topics: ecmascript, immutable, library, state-management
- Language: JavaScript
- Homepage:
- Size: 117 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Composable State
A composable set of tools for deeply updating immutable state objects.
## What's it for?
The best usage for `composable-state` is when you have large and deeply nested state objects that you are treating as immutable.
This could be your application's state, or maybe a json response from an API call.
Wherever you get your data from, if you want to keep the original immutable, use `composable-state` to make new/updated copies.## Tell me more
- **declarative** - describe how you want to update your state.
- **simple** - not a lot of methods to learn.
- **composable** - combine these tiny state update methods to make clean and concise methods.## Install
```bash
npm install --save composable-state# or
yarn add composable-state
```## Usage
```javascript
import { composable, selectAll, replace, map } from 'composable-state';const myState = {
some: { state: { with: { deep: { properties: false } } } },
and: { arrays: [1, 2, 3, 4] },
};const immutableCopyOfState = composable(myState, selectAll({
'some.state.with.deep.properties': replace(old => !old),
'and.arrays': map(value => value * 3),
}));
/*
result:{
some: { state: { with: { deep: { properties: true } } } },
and: { arrays: [3, 6, 9, 12] },
}*/
```And for comparison, here's the *worst case* code if you weren't using composable-state:
```javascript
const immutableCopyOfState = {
...myState,
some: {
...myState.some,
with: {
...myState.some.with,
deep: {
...myState.some.with.deep,
properties: !myState.some.with.deep.properties,
},
},
},
and: {
...myState.and,
arrays: myState.and.arrays.map(value => value * 3),
},
}
```If you are 100% rebuilding your state from scratch, maybe you wouldn't need the additional spreads, but that's not the common pattern I've seen or written in my state management-driven applications.
---
## All methods:
- Entry points:
- `composable`
- Actions:
- `merge`
- `concat`
- `setIn`
- `replace`
- `select`
- `selectAll`
- `selectArray`
- `collect`
- `map`
- `range`### composable
```javascript
import { composable, replace } from 'composable-state';const immutableCopyOfStateWithUpdates = composable(
yourState,
replace({ hello: 'world' }),
);
```The composable method is the part that takes in your original state, and returns a new copy of it with the immutable changes you describe in the second parameter.
### replace
```javascript
import { composable, replace } from 'composable-state';// Usage #1 - replace with a completely different value
composable('hello', replace('goodbye')); // goodbye
composable(123, replace(false)); // false// Usage #2 - replace with a callback; use previous value to create new value
composable(1, replace(old => old + 5)); // 6
composable(true, replace(old => !old)); // false
```Replace is meant to replace the value of the current state context.
### merge
```javascript
import { composable, merge } from 'composable-state';composable({ foo: 'bar' }, merge({ fizz: 'buzz' })); // { foo: 'bar', fizz: 'buzz' }
```Merge will spread a new object into and over the current state context.
The object inside `merge` takes prescendence over the original.### concat
```javascript
import { composable, concat } from 'composable-state';composable([1, 2], concat([3, 4])); // [1, 2, 3, 4]
```Concat will append the current state context array with the array value inside concat.
### setIn
```javascript
import { composable, setIn } from 'composable-state';composable({ hello: 'friend' }, setIn('hello', 'world')); // { hello: 'world' }
composable([12, 13, 99, 15], setIn(2, 14)); // [12, 13, 14, 15]
```SetIn lets you update a single child value of the current state context, without changing the context.
This is useful for updating single values inside objects or arrays without extra spreads.
If you have multiple child updates to do on an object, consider using `merge`.
If you have multiple child updates to do on an array, consider using `map` and/or `range`.### select
```javascript
import { composable, select, replace } from 'composable-state';composable({ hello: 'friend' }, select('hello', replace('world'))); // { hello: 'world' }
composable({ { a: [{ b: true }] }, select('a.0.b', replace(old => !old))); // { a: [{ b: false }] }
```Select allows you to dig into your state to perform updates.
You can specify a deep path using `'.'` as a delimiter for properties of your objects, which can look like `foo.bar`.
For keys that contain a `.` character, you can wrap it in `[]` brackets, like `foo[key.with.dots]`.
Technically, you could just use `[]` brackets, but it doesn't read as nice as the `.` dot delimiter, but that's just a matter of opinion and taste.
Selecting a deep path creates a state context, and it allows you to perform other immutable operations within the current context.### selectAll
```javascript
import { composable, selectAll, replace } from 'composable-state';const initialState = {
greeting: 'Hi',
user: {
name: 'Anonymous',
},
};composable(initialState, selectAll({
'greeting': replace('Hello'),
'user.name': replace('mrozbarry'),
})); // { greeting: 'Hello', user: { name: 'mrozbarry' } }
```SelectAll works much like select, but gives you the ability to do multiple deep operations on a single state context.
### selectArray
```javascript
import { composable, selectAll, replace } from 'composable-state';const initialState = {
greeting: 'Hi',
user: {
name: 'Anonymous',
},
};composable(initialState, selectArray(
['user', 'name'],
replace('mrozbarry')),
); // { greeting: 'Hi', user: { name: 'mrozbarry' } }
```The selectArray is what select uses internally, but lets you specify the select path by an array of keys rather than a selector statement.
### collect
```javascript
import { composable, collect, replace, concat } from 'composable-state';const userState = {
picture: null,
details: {
name: null,
},
};composable(userState, collect([
setIn('picture', replace('https://placehold.it/64x64')),
select('details.name', replace('mrozbarry')),
])); // [16, 32]
```Collect lets you do multiple immutable updates within the same state context.
### map
```javascript
import { composable, map, replace } from 'composable-state';const initialState = [{ id: null, name: null }, { id: null, name: null }];
composable(initialState, map((user, index) => collect([
setIn('id', Math.ceil(Math.random() * 999)),
replace((user) => merge({ name: `AnonymousUser_${user.id}` })),
]))); // [{ id: 123, name: 'AnonymousUser_123' }, { id: 2, name: 'AnonymousUser_2' }]
```Map allows you to iterate over a state context array, and immutably update each item.
You can, of course, chain in more composable-state methods to do even more complex updates.### range
```javascript
import { composable, range } from 'composable-state';// Can insert items into the middle of an array
composable([1, 2, 5, 6], range(2, 0, replace([3, 4]))); // [1, 2, 3, 4, 5, 6]// Can remove items from the middle of an array
composable([1, 2, 99, 100, 3, 4], range(2, 2, replace([]))); // [1, 2, 3, 4]// Can update items
composable([1, 2, 3, 4], range(0, 3, map(value => value * 5)); // [5, 10, 15, 4]
```Range gives you the ability to operate on a subsection of an array.
You specify the startIndex, length, and action to run on those items.