@mckayla/electron-redux
TypeScript icon, indicating that this package has built-in type declarations

3.0.3 • Public • Published


electron-redux

Usage

// in the main process
import { syncMain } from "@mckayla/electron-redux";
const store = createStore(reducer, syncMain);
// in the renderer processes
import { syncRenderer } from "@mckayla/electron-redux/renderer";
const store = createStore(reducer, syncRenderer);
// in your preload script
import "@mckayla/electron-redux/preload";

If you don't have your own preload script, you can specify the provided preload script directly whenever you initialize a BrowserWindow

// when initializing a BrowserWindow
const view = new BrowserWindow({
	webPreferences: {
		preload: require.resolve("@mckayla/electron-redux/preload"),
	},
});

w/ redux-thunk (or any other middleware/enhancer)

Just use the compose function provided by Redux

import { syncRenderer } from "@mckayla/electron-redux/renderer";
import { applyMiddleware, compose, createStore } from "redux";
import thunk from "redux-thunk";

const store = createStore(reducer, compose(syncRenderer, applyMiddleware(thunk)));

Actions

Actions must be FSA-compliant, i.e. have a type and payload property. Any actions not passing this test will be ignored and simply passed through to the next middleware.

Actions must be serializable. electron-redux supports serializing anything that JSON.stringify can usually handle, as well as Map and Set.

  • Objects with enumerable properties
  • Arrays
  • Numbers
  • Booleans
  • Strings
  • Maps
  • Sets

Local actions

By default, all actions are played in all processes. If an action should only be played in the current thread, then you can set the scope meta property to local.

const myLocalActionCreator = () => ({
	type: "MY_ACTION",
	payload: 123,
	meta: {
		scope: "local", // only play the action locally
	},
});

We also provide a utility function for this

import { stopForwarding } from "@mckayla/electron-redux";
dispatch(stopForwarding(action));

/@mckayla/electron-redux/

    Package Sidebar

    Install

    npm i @mckayla/electron-redux

    Weekly Downloads

    3

    Version

    3.0.3

    License

    MIT

    Unpacked Size

    62.1 kB

    Total Files

    34

    Last publish

    Collaborators

    • partheseas