#
reducer
Here are 407 public repositories matching this topic...
videni
commented
Sep 29, 2019
what is prefer way to add relation and remove relation? I found example as below, but I did't find any document about the two methods.
case 'ADD_AUTHOR_TO_BOOK':
Book.withId(action.payload.bookId).authors.add(action.payload.author); // add new entity , add relation? this doesn't work.
break;
case 'REMOVE_AUTHOR_FROM_BOOK':
Book.withId(action.payload.bo
Modularize Redux by dynamically loading reducers and middlewares.
react
redux
middleware
modules
sagas
dynamic
code-splitting
reducer
middlewares
saga
code-spliting
redux-dynamic-modules
-
Updated
Dec 10, 2020 - TypeScript
useReducer + useEffect = useEffectReducer
-
Updated
Mar 15, 2021 - TypeScript
Dispatch reducers
-
Updated
Nov 8, 2017 - TypeScript
A tiny library (12 lines) for creating state machines in Redux apps
-
Updated
Jul 16, 2020 - JavaScript
Open
Example Apps
2
philipp-spiess
commented
Jun 13, 2018
luizmb
commented
Apr 7, 2018
Also for iPad.
dannypule
commented
Oct 4, 2019
This should fail because otherNum is not part of the State interface:
interface State {
num: number
}
export const initialState: State = {
num: 0
};
export const appsReducer = createReducer(initialState, handleAction => [
handleAction(actions.getApps.success, () => ({
num: 0,
otherNum: 0 // adding this property should trigger a warning
})),
]);Predictable state container for React apps written using Hooks
-
Updated
Feb 11, 2019 - JavaScript
A simple (and tiny <1kb) redux inspired reducer for handling state changes.
-
Updated
Dec 11, 2020 - JavaScript
-
Updated
Nov 17, 2018 - JavaScript
SSR - Router with SSR for Node & Meteor
react
sitemap
router
rest
internationalization
robot
react-router
ssr
meteor
cache
react-intl
reducer
-
Updated
Feb 21, 2018 - JavaScript
A wrapper for xstate that stores state, handles transitions, emits events for state changes and actions/activities, and includes an optional reducer framework for updating state and invoking side-effects
interpreter
state-machine
statechart
reducer
finite-state-machine
hierarchical-state-machine
harel
xstate
-
Updated
Jul 18, 2018 - JavaScript
-
Updated
Jul 21, 2020 - JavaScript
A Redux utility belt for reducers and actions. Inspired by acdlite/recompose.
-
Updated
Mar 15, 2021 - JavaScript
-
Updated
Mar 17, 2021 - JavaScript
Micro-framework for Redux implemented in Kotlin
redux
android
kotlin
flux
state-management
micro-framework
state
store
kotlin-android
kotlin-library
reducer
rx
action
rxredux
-
Updated
Jan 18, 2021 - Kotlin
NgRx Auto-Entity: Simplifying Reactive State
-
Updated
Mar 8, 2021 - TypeScript
Write once. Reduce anywhere.
-
Updated
Mar 1, 2021 - TypeScript
Percona QA is a suite of scripts and utilities that assists in building, continuous integration, automated testing & bug reporting for Percona Server, Percona XtraDB Cluster, Percona XtraBackup, Percona Server for MongoDB, as well as other flavors of MySQL (Oracle, Facebook MyQSL, WebScaleSQL, MariaDB) etc.
testing
linux
shell
quality
qa
performance
generator
test
stress
reducer
bats
quality-assurance
sysbench
ps
percona
mtr
percona-server
percona-xtradb-cluster
percona-qa
pquery
-
Updated
Feb 4, 2021 - Shell
Improve this page
Add a description, image, and links to the reducer topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the reducer topic, visit your repo's landing page and select "manage topics."
When we have multiple iframes with the same origin, we can share objects between different iframe window. But immer produce has a check isPlainObject(), there is a condition "Object.getPrototype(xxx) === Object.prototype", which makes this scenario broken. Because the window.Object.prototype in different iframes have different instances. This condition will return false.
The basic repro example