State management made for RE:DOM apps
yarn add redom-state
// or
npm i redom-state
import state from "redom-state";
import { mount } from "redom";
import App from "./App";
state(mount(document.body, new App()), () => ({ value: 0 }));
import state from "redom-state";
import { mount } from "redom";
import App from "./App";
state(mount(document.body, new App()), () => [
{ state: "loading" }, // Setup your init state
promise1(),
promise2(),
{ state: "none" },
]);
Each elements in array returned by init function will be resolved and merged with state, then application will be updated with new version state. This should helps to manage loaders and progress information.
import state from "redom-state";
import { mount } from "redom";
import App from "./App";
state(mount(document.body, new App()), async function* () {
yield { state: "loading" }; // returns immediately
const result = await promise1();
yield result;
yield await promise2(result); // uses result of previus call
});
Generator function is most complex way to bootstrap state. Each yield
is merged with currend state and application is updated.
Updating state is available through specially defined function using wire
helper. Each call of this function will update state and triggers application update. Each wired function returns whole new state. It means that on module side there is no merge or diff. All merging should be done by wired function. Wired function should not handle async calls, promises are not resolved. Async update can be done differently.
import { wire } from "redom-state";
const switchPage = wire((state, page) => ({
...state,
page,
}));
This example presents simple page switcher. That function can be experted and used across whole app in redom components.
State should be passed by update function and received by parrent but sometimes it maight be need to fetch some data directly from state with predefined filter or reducer. Use pick
function to define special shortcuts to data. As wired function also pickers can be shared accross whole app by export/import module
import { pick } from "redom-state";
// no arguments
const getPage = pick((state) => state.page);
// more arguments
const listPages = pick((state, title, author) => state.pages.filter(page => page.title.includes(title) && page.author.includes(author));
Sometimes we want to call this function many times in one cycle, to prevent repeating havy operations you can add information how to build cache key for this call.
const picker = pick(
(state, title, author) => {},
(title, author) => `pages-${title}-${author}`
);
For example if you want fetch from server page contents before you show new page.
import { wire, pick } from "redom-state";
// set view state
const setViewState = wire((state, viewState) => ({
...state,
viewState
}));
// stash page object
const stashPage = wire((state, page) => ({
...state
pages: {
...pages,
...page
}
}))
// set current page
const setCurrentPage = wire((state, currentPage) => ({
...state,
currentPage
}));
// switch page with conditional assync call
const switchPage = pick((state, page) => {
if( !state.pages[page] ){
setViewState("loading");
fetch(`/pages/${page}`).then(response => response.json()).then( body => {
stashPage({ [page]: body });
setCurrentPage(page);
setViewState("ready");
});
}else{
setCurrentPage(page);
}
});
With helper function also state class is provided. You can define and expose your own state for app.
import { RedomState } from "redom-state";
import { mount } from "redom";
const state = new RedomState(null, () => ({
value: 0,
}));
export const { wire, pick, app, run } = state.export();
// Counter.js
import {wire} from "redom-state";
import {el, text} from "redom";
export const add = wire((state) => ({
value: state.value + 1
}));
export const sub = wire((state)) => ({
value: state.value - 1
}));
export const set = wire((state, payload) => ({
value: payload
}));
export default class Counter {
constructor() {
this.el = el('.counter',
this.add = el('button.add', text("+")),
this.sub = el('button.sub', text("-"))
);
this.add.onclick = e => add();
this.sub.onclick = e => sub();
}
update(){}
}
Reuse previously defined actions
// App.js
import { el, text } from "redom";
import Counter, { set } from "./Counter";
export default class App {
constructor() {
this.el = el(
".app",
(this.value = el("input.value", { type: "text" })),
(this.counter = new Counter()),
(this.reset = el("button.reset", text("reset")))
);
this.reset.onclick = (e) => set(0);
}
update(state) {
this.value.value = state.value;
}
}
// bootstrap.js
import state from "redom-state";
import { mount } from "redom";
import App from "./App";
state(mount(document.body, new App()), () => {
return {
value: 0,
};
});