Socket
Socket
Sign inDemoInstall

@mckayla/electron-redux

Package Overview
Dependencies
2
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @mckayla/electron-redux

Make sure all your stores are on the same page


Version published
Weekly downloads
4
Maintainers
1
Created
Weekly downloads
 

Readme

Source


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));

Keywords

FAQs

Last updated on 28 Dec 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc