Misk-Web SimpleRedux
npm install @misk/simpleredux
Using Redux can be simple.
@misk/SimpleRedux includes all the Redux parts necessary for forms, network requests, and other interactive components. Don't write Redux boilerplate for basic interactivity again.
``bash`
$ npm install @misk/simpleredux
- Allows for single-key cached selection from Redux state
- Most directly equivalent to deprecated simpleSelect
`Typescript
// OLD
const field1 = simpleSelect(props.simpleForm, "Dino::Field1", "data")
const tagsField = simpleSelect(props.simpleForm, "Dino::Tags", "data", simpleType.array)
// NEW
const field1 = simpleSelectorGet(props.simpleForm, ["Dino::Field1", "data"])
const tagsField = simpleSelectorGet(props.simpleForm, ["Dino::Tags", "data"], [])
`
- simpleSelectorGetsubState
- : same as parameter 1 for simpleSelect. Example: props.simpleForm, props.simpleNetworkpath
- : allows any length path to an object key you'd like to access. This combines parameter 2 and 3 of simpleSelect."Dino::Name.data", ["Dino::Price", "data"]
- Examples: defaultValue?
- Same as parameter in Lodash/Get
- is optional and allows setting of a default value if the requested path is not found.false, [], {}
- Examples: []
- This is useful for cases like storing a list of tags where the UI expects an empty array in the case of no elements, not undefined.
- Same as parameter in Lodash/Get
- Allows for multi-key cached selection from Redux state
`TypescriptDino::${f}
// OLD
const fields = [
"Name",
"Price",
"Itemized Receipt",
"CheckAlice",
"CheckBob",
"CheckEve",
"CheckMallory",
"CheckTrent",
"Meal",
"Tags"
].map((f: string) => )
const fieldsData = fields
.map((key: string) => {
const value = simpleSelect(props.simpleForm, key, "data")
return { [key]: value }
})
.reduce((prev, current) => ({...prev, ...current}), {})
// New
const fields = [
"Name",
"Price",
"Itemized Receipt",
"CheckAlice",
"CheckBob",
"CheckEve",
"CheckMallory",
"CheckTrent",
"Meal",
"Tags"
].map((f: string) => Dino::${f}.data)`
const fieldsData = simpleSelectorPick(props.simpleForm, fields)
- simpleSelectorPicksubState
- : same as parameter 1 for simpleSelect.props.simpleForm
- Example: , props.simpleNetworkpaths
- : array of paths of keys to return from object.["Dino::Name.data", "Dino::Price.data"]
- Example:
- Same as parameter in Lodash/Pick
Dispatched actions can include an options object that has two very powerful keys:
- mergeSagafailureSaga
-
These are Redux sagas that are run on merge (success) or failure and allow for an additional async block of computation that include other network calls, seeding to many fields parts of the network response data, and anything else.
Both mergeSaga and failureSaga follow the same generic Redux Saga API. Consider looking at the src/saga.ts or src/utilities/mergeSaga.ts code to find examples of sagas already part of @misk/simpleredux`.
- Example Form Code
- Example Network Code
- Understanding Redux
A standardized set of form and input handler Redux-Sagas parts (actions, dispatcher, handlers, sagas, reducers, state interface)
A standardized set of Axios based request Redux-Sagas parts (actions, dispatcher, handlers, sagas, reducers, state interface)