npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

redux-state-sync-per-instance

v3.1.5

Published

A middleware for redux to sync state in different tabs

Downloads

122

Readme

Redux-State-Sync 3

A lightweight middleware to sync your redux state across browser tabs. It will listen to the Broadcast Channel and dispatch exactly the same actions dispatched in other tabs to keep the redux state in sync.

Why Redux-State-Sync?

It syncs your redux store across tabs with very minimal configuration.

Thanks to BroadcastChannel, we now have a more efficient way to communicate between tabs instead of using any type of local storage. However, Not all the browsers support BroadcastChannel API for now. So I used pubkey's BroadcastChannel to find the best way to communicate between tabs for redux-state-sync. pubkey's BroadcastChannel will make sure that the communication between tabs always works.

How to install

Install with npm.

npm install --save redux-state-sync

Install with yarn

yarn add redux-state-sync

TypeScript support

Install with npm.

npm install --save-dev @types/redux-state-sync

Install with yarn

yarn add --dev @types/redux-state-sync

Types are defined here

Before you use

Please take note that BroadcastChannel can only send data that is supported by the structured clone algorithm (Strings, Objects, Arrays, Blobs, ArrayBuffer, Map), so you need to make sure that the actions that you wanna send to other tabs doesn't include any functions in the payload.

If you are using redux-persist, you may need to blacklist some of the actions that is triggered by redux-persist. e.g. persist/PERSIST, persist/REHYDRATE, etc.

How to use

Create the state sync middleware with config:

import { createStore, applyMiddleware } from 'redux';
import { createStateSyncMiddleware, initMessageListener } from 'redux-state-sync';

const config = {
    // TOGGLE_TODO will not be triggered in other tabs
    blacklist: ['TOGGLE_TODO'],
};
const middlewares = [createStateSyncMiddleware(config)];
const store = createStore(rootReducer, {}, applyMiddleware(...middlewares));
// this is used to pass store.dispatch to the message listener
initMessageListener(store);
initMessageListener is a new function to fix the bug that if the other tab not triggering any action on first load, it cannot receive any messages.

Init new tabs with existing state:

  1. Use initStateWithPrevTab to get existing state from other tabs
import { createStore, applyMiddleware } from 'redux';
import { createStateSyncMiddleware, initStateWithPrevTab } from 'redux-state-sync';

const config = {
    // TOGGLE_TODO will not be triggered in other tabs
    blacklist: ['TOGGLE_TODO'],
};
const middlewares = [createStateSyncMiddleware(config)];
const store = createStore(rootReducer, {}, applyMiddleware(...middlewares));
// init state with other tabs
initStateWithPrevTab(store);
// initMessageListener(store);
Note: if you are already using initStateWithPrevTab, you don't need to initMessageListener anymore.
  1. Wrap your root reducer with withReduxStateSync
import { withReduxStateSync } from 'redux-state-sync';
const rootReducer = combineReducers({
    todos,
    visibilityFilter,
});

export default withReduxStateSync(rootReducer);
Note: ignore this if you are using redux-persist, because you will always inite your app with the state in the storage. However, if you don't want to persist the state in the storage and still want to init new tabs with opening tabs' state, you can follow the example above.

Config

channel

Unique name for Broadcast Channel

type: String

default: "redux_state_sync"

const config = {
    channel: 'my_broadcast_channel',
};
const middlewares = [createStateSyncMiddleware(config)];

predicate

A function to let you filter the actions as you wanted.

Note: Since version 3.0 the function receives the action itself and not only the action type.

type: Function

default: null

const config = {
    // All actions will be triggered in other tabs except 'TOGGLE_TODO'
    predicate: action => action.type !== 'TOGGLE_TODO',
};
const middlewares = [createStateSyncMiddleware(config)];

blacklist

A list of action types that you don't want to be triggered in other tabs.

type: ArrayOf(<String>)

default: []

const config = {
    // All actions will be triggered in other tabs except 'TOGGLE_TODO'
    blacklist: ['TOGGLE_TODO'],
};
const middlewares = [createStateSyncMiddleware(config)];

whitelist

Only actions in this list will be triggered in other tabs.

type: ArrayOf(<String>)

default: []

const config = {
    // Only 'TOGGLE_TODO' will be triggered in other tabs
    whitelist: ['TOGGLE_TODO'],
};
const middlewares = [createStateSyncMiddleware(config)];
Warning: You should only use one of the option to filter your actions. if you have all 3 options predicate, blacklist, and whitelist, only one will be effective and the priority is predicate > blacklist > whitelist.

broadcastChannelOption

Redux-state-sync is using BroadcastChannel to comunicate between tabs. broadcastChannelOption is the option passed to broadcastChannel when we creating the channel.

type: Object

default: null

const config = {
    // Only 'TOGGLE_TODO' will be triggered in other tabs
    whitelist: ['TOGGLE_TODO'],
    // enforce a type, oneOf['native', 'idb', 'localstorage', 'node']
    broadcastChannelOption: { type: 'localstorage' },
};
const middlewares = [createStateSyncMiddleware(config)];

Working with immutable.js

Please check the example_immutable folder.

prepareState

Prepare the initial state for sending to other tabs.

type: Function

default: state => state

const config = {
    // Map immutable object to js
    prepareState: state => state.toJS(),
};
const middlewares = [createStateSyncMiddleware(config)];
import { combineReducers } from 'redux-immutable';
import { withReduxStateSync } from 'redux-state-sync';
const rootReducer = combineReducers({
    todos,
    visibilityFilter,
});

export default withReduxStateSync(appReducer, state => Immutable.fromJS(state));