
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
redux-spark
Advanced tools
Spark is a thin wrapper around redux and redux-saga. It reduces boilerplate code in react/redux/saga applications.
Spark is a thin wrapper around redux and redux-saga. We tried to reduce boilerplate code in react/redux/saga applications. Instead of writing action types, action creators, sagas and reducer, Spark allows you to call a single function and generate everything under the hood.
If you want to customize anything, only thing you need to write is a reducer (again, everything else is generated). There is a lot of customizable options, so we think it covers a lot of use cases. If you still need something that is not supported, it plays nicely with a standard reducer/saga/types/creators setup.
Spark comes with pre built generator. generateAsyncReducer
accepts two params - reducer's name and function that returns a promise. Hopefully live example will make it clearer.
import { generateAsyncReducer } from 'redux-spark';
import api from '../api';
// api.getUsers returns a promise
const actionCreators = generateAsyncReducer('users', api.getUsers);
export const {
get,
reset,
} = actionCreators;
Code above generates:
reset
action and three for async get
actionget
and reset
get
action using getLatest
{
// data returned from api.getUsers
data: object,
// error if api.getUsers fails
error: object,
// loading indicators
loading: boolean,
// all params passed to "get" action (i.g. pagination offset and per page)
params: object,
}
You can write your generators, we advise you to check the source in generate-async-reducer.ts, it should be pretty self explanatory.
import { Reducer } from 'redux-spark';
import api from './api';
// Create app reducer
const global = new Reducer('global', {
isModalActive: false,
settings: null,
settingsError: null,
settingsLoading: false,
});
// Add sync action
export const toggleModal = global.addAction('toggleModal', (state:any, action:any) => {
return {
...state,
isModalActive: !state.isModalActive,
};
});
// Add async action
export const getSettings = global.addAsyncAction('getSettings', api.getSettings, {
start: (state:any, action:any) => {
return {
...state,
settings: null,
settingsError: null,
settingsLoading: true,
};
},
error: (state:any, action:any) => {
return {
...state,
settingsError: action.error,
settingsLoading: false,
};
},
success: (state:any, action:any) => {
return {
...state,
settings: action.data,
settingsLoading: false,
};
},
});
Before diving into API, be sure to check examples above.
getAllReducers
method will return array containing all of the generated reducers. You need to add it to your root reducer (only once).
import { combineReducers } from 'redux';
import spark from 'redux-spark';
export default combineReducers({
// You can put any additional reducers here
...spark.getAllReducers(),
});
PLEASE NOTE you'll need to import your reducer files somewhere, so they are executed and registered in the spark core. If you want to do it manually, you can always get a single reducer using it's built in method .getReducerFunction()
import { combineReducers } from 'redux';
// Import spark reducer classes
import users from './users';
import groups from './groups';
export default combineReducers({
// You can put any additional reducers here
// Call "getReducerFunction" to get reducer function from spark
users: users.getReducerFunction(),
groups: groups.getReducerFunction(),
});
Same thing for sagas. getAllSagas
will return an array containing all of the generated sagas. You need to yield them in your root saga.
import { all } from 'redux-saga/effects';
import spark from 'redux-spark';
export default function* rootSaga() {
yield all([
// You can put any additional sagas here
...spark.getAllSagas(),
]);
}
Constructor
name
stringinitialState
any type (you can use plain object or for example Immutable instance)Returns Reducer
instance.
addAction
actionName
string, camel cased (e.g. toggleModal
, generated action type will be TOGGLE_MODAL
).handler
reducer function with two params state
and action
.Returns action creator function.
addAsyncAction
actionName
string, camel cased (e.g. getUsers
, generated action types will be GET_USERS_START
, GET_USERS_SUCCESS
, GET_USERS_ERROR
).asyncMethod
function that returns a promise. This promise will be resolved in the generated saga creator, and data returned to the handler.handlers
map (object) with start/success/end
keys, each being reducer function with two params state
and action
. Each handler responds to one of the three generated actions.sagaOptions
object, if you want to customize saga effect or pass a custom saga, you need to pass it in this object.
{ effect: takeEvery }
{ sagaCreator: (actionsTypes) => yourCustomSaga }
actionsTypes
is an object with start/success/end
keys, each one corresponding to the action type. (e.g. GET_USERS_START
, GET_USERS_SUCCESS
, GET_USERS_ERROR
)Returns action creator function.
By default generated saga will use takeLatest
effect.
Quick start:
npm start
This project was bootstrapped with Create React App. Check their default readme.
FAQs
Spark is a thin wrapper around redux and redux-saga. It significantly reduces boilerplate code in react/redux/saga applications.
The npm package redux-spark receives a total of 7 weekly downloads. As such, redux-spark popularity was classified as not popular.
We found that redux-spark demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.