updux/src/Updux.js

57 lines
1.3 KiB
JavaScript
Raw Normal View History

2022-08-25 23:43:07 +00:00
import R from 'remeda';
import { Action, ActionGenerator } from './actions.js';
export class Updux {
#localInitial = {};
#subduxes = {};
2022-08-26 00:06:52 +00:00
#actions;
2022-08-25 23:43:07 +00:00
#mutations = {};
#config = {};
constructor(config = {}) {
this.#config = config;
this.#localInitial = config.initial ?? {};
this.#subduxes = config.subduxes ?? {};
2022-08-26 00:06:52 +00:00
this.#actions = R.mergeAll([
config.actions ?? {},
...Object.values(this.#subduxes).map(R.prop('actions')),
]);
2022-08-25 23:43:07 +00:00
}
get actions() {
return this.#actions;
}
get initial() {
if (Object.keys(this.#subduxes).length === 0) return this.#localInitial;
return Object.assign(
{},
this.#localInitial,
R.mapValues(this.#subduxes, ({ initial }) => initial),
);
}
get reducer() {
2022-08-26 00:06:52 +00:00
return (state, action) => this.upreducer(action)(state);
2022-08-25 23:43:07 +00:00
}
get upreducer() {
2022-08-26 00:06:52 +00:00
return (action) => (state) => {
2022-08-25 23:43:07 +00:00
const mutation = this.#mutations[action.type];
2022-08-26 00:06:52 +00:00
if (mutation) {
state = mutation(action.payload, action)(state);
2022-08-25 23:43:07 +00:00
}
return state;
};
}
2022-08-26 00:06:52 +00:00
setMutation(action, mutation) {
this.#mutations[action.type] = mutation;
2022-08-25 23:43:07 +00:00
}
}