A framework easily using useThunk to manage the data-state.
npm install @chhsiao1981/use-thunk
A framework easily using useThunk to manage the data-state.
Adopted concept of redux-thunk and redux-duck
src/useThunkReducer.ts is adopted from nathanbuchar/react-hook-thunk-reducer.
use-thunk is with the following additional features:
1. The development of the thunk modules follows the concept of redux-duck.
2. Instead of action / reducer, we focus only on thunk, and have the primitive actions/reducers.
Please check docs/00-introduction.md for more information.
Please check demo-use-thunk for a demo to use Thunk.
* Starting from 10.0.0: The ClassState is shared globally, with registerThunk and ThunkContext.
* Starting from 9.0.0: npm package is renamed as @chhsiao1981/use-thunk
* Starting from 8.0.0: Totally renamed as useThunk.
npm install --save @chhsiao1981/use-thunk
Thunk module able to do increment (reducers/increment.ts):
``ts
import { init as _init, setData, Thunk, getState, type State as rState, genUUID } from '@chhsiao1981/use-thunk'
export const myClass = 'demo/Increment'
export interface State extends rState {
count: number
}
export const defaultState: State = {
count: 0
}
export const init = (): Thunk
const myID = genUUID()
return async (dispatch, getClassState) => {
dispatch(_init({myID, state: defaultState}))
}
}
export const increment = (myID: string): Thunk
return async (dispatch, getClassState) => {
let classState = getClassState()
let me = getState(classState, myID)
if(!me) {
return
}
dispatch(setData(myID, { count: me.count + 1 }))
}
}
`
App.tsx:
`tsx
import { type ThunkModuleToFunc, useThunk, getRootID, getState } from '@chhsiao1981/use-thunk'
import * as DoIncrement from './reducers/increment'
type TDoIncrement = ThunkModuleToFunc(typeof DoIncrement)
type Props = {
}
export default (props: Props) => {
const [classStateIncrement, doIncrement] = useThunk
//init
useEffect(() => {
doIncrement.init()
}, [])
// states
const incrementID = getRootID(classStateIncrement)
const increment = getState(classStateIncrement) || DoIncrement.defaultState
// to render
return (
count: {increment.count}
main.tsx:
`tsx
import { registerThunk, ThunkContext } from "@chhsiao1981/use-thunk";
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import * as DoIncrement from './reducers/increment'
import App from "./App.tsx";registerThunk(DoIncrement)
createRoot(document.getElementById("root")!).render(
,
)
`$3
`ts
import type { State as rState } from '@chhsiao1981/use-thunk'// reducer class name.
export const myClass = ""
// state definition of the reducer.
export interface State extends rState {
}
.
.
.
`$3
`ts
import { type ThunkModuleToFunc, useThunk, getRootID, getState } from '@chhsiao1981/use-thunk'
import * as DoModule from '../reducers/module'type TDoModule = ThunkModuleToFunc
const Component = () => {
const [stateModule, doModule] = useThunk(DoModule)
const moduleID = getRootID(stateModule)
const theModule = getState(stateModule)
.
.
.
}
`$3
`tsx
registerThunk(...)
.
.
.createRoot(document.getElementById("root")!).render(
,
)
`Normalized State
The general concept of normalized state can be found in Normalizing State Shape
with the following features:
1. ClassState: the state of the class, including the nodes and the root of the class.
2. NodeState: the state of a node, including the id of the node and the content (state) of the node.
3. State: the content of the node, represented as a state.
For example, the example in the redux link is represented as:
`ts
classStatePost = {
myClass: 'post',
doMe: (DispatchedAction),
nodes: {
[uuid-post1] : {
id: uuid-post1,
state: {
author : uuid-user1,
body : "......",
comments: [uuid-comment1, uuid-comment2]
},
},
[uuid-post2] : {
id : uuid-post2,
state: {
author : uuid-user2,
body : "......",
comments: [uuid-comment3, uuid-comment4, uuid-comment5]
}
}
}
}
`and:
`ts
classStateComment = {
myClass: 'comment',
doMe: (DispatchedAction),
nodes: {
[uuid-comment1] : {
id: uuid-comment1,
state: {
author : uuid-user2,
comment : ".....",
}
},
[uuid-comment2] : {
id : uuid-comment2,
state: {
author : uuid-user3,
comment : ".....",
}
},
[uuid-comment3] : {
id : uuid-comment3,
state: {
author : uuid-user3,
comment : ".....",
}
},
[uuid-comment4] : {
id : uuid-comment4,
state: {
author : uuid-user1,
comment : ".....",
}
},
[uuid-comment5] : {
id : uuid-comment5,
state: {
author : uuid-user3,
comment : ".....",
}
}
}
}
`and:
`ts
classStateUser = {
myClass: 'user',
doMe: (DispatchedAction),
nodes: {
[uuid-user1] : {
id: uuid-user1,
state: {
username : "user1",
name : "User 1",
}
},
[uuid-user2] : {
id: uuid-user2,
state: {
username : "user2",
name : "User 2",
}
},
[uuid-user3] : {
id: uuid-user3,
state: {
username : "user3",
name : "User 3",
}
}
}
}
`APIs
$3
#####
useThunk(theDo: ThunkModuleFunc): [ClassState, DispatchedAction]Similar to
React.useReducer, but we use useThunk, and we also bind the actions with dispatch (similar concept as mapDispatchToProps).sreturn:
[ClassState#####
init({myID, parentID, doParent, state}, myuuidv4?)initializing the react-object.
#####
setData(myID, data)set the data to myID.
#####
remove(myID, isFromParent=false)remove the react-object.
#####
genUUID(myuuidv4?: () => string): stringgenerate uuid for react-object.
$3
#####
getState(state: ClassState, myID?: string): StateGet the state of
myID. Get the state of rootID if myID is not present.#####
getRootID(state: ClassState): stringget the root id.
$3
#####
getNode(state: ClassState, myID?: string): NodeStateGet the node of
myID. Get the node of rootID if myID` is not present.