Socket
Socket
Sign inDemoInstall

vuex-shared-mutations

Package Overview
Dependencies
11
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    vuex-shared-mutations

Share vuex mutations across tabs via localStorage


Version published
Maintainers
1
Install size
11.6 kB
Created

Changelog

Source

[0.0.5 - 2018-11-11]

Thanks to @jameswragg and @justin-schroeder for this version

Fixed

  • IE11 is not triggering storage events if payload is bigger than 16kb

Readme

Source

vuex-shared-mutations

Share certain Vuex mutations across multiple tabs/windows using localStorage.

NPM version Build Status

Installation

$ npm install vuex-shared-mutations

Usage

import createMutationsSharer from 'vuex-shared-mutations';

const store = new Vuex.Store({
  // ...
  plugins: [createMutationsSharer({ predicate: ['mutation1', 'mutation2'] })],
});

Same as:

import createMutationsSharer from 'vuex-shared-mutations';

const store = new Vuex.Store({
  // ...
  plugins: [
    createMutationsSharer({
      predicate: (mutation, state) => {
        const predicate = ['mutation1', 'mutation2'];

        // Conditionally trigger other plugins subscription event here to
        // have them called only once (in the tab where the commit happened)
        // ie. save certain values to localStorage
        // pluginStateChanged(mutation, state)

        return predicate.indexOf(mutation.type) >= 0;
      },
    }),
  ],
});

API

createMutationsSharer([options])

Creates a new instance of the plugin with the given options. The following options can be provided to configure the plugin for your specific needs:

  • sharingKey <String>: The key used to share actions via localStorage. (default: vuex-mutations-sharer)
  • storageKey <String>: The key used to store real action payload via localStorage. (default: vuex-mutation-sharer-storage)
  • predicate <Array | Function>: Either an array of mutation types to be shared or predicate function, which accepts whole mutation object (and state) and returns true if this mutation should be shared.

How it works

When $store.commit is called, the plugin is invoked and saves the mutation object to localStorage. This triggers an storage event in all other tabs/windows (in the same browser, with the same site domain loaded), which then replays the mutation in that tab/window (during which the sync is turned off to disable recursion).

Contributing

  • Fork
  • > git clone
  • > yarn (like npm install)
  • > yarn global add ava (test runner)
  • Make your changes to src/index.js
  • > npm run test
  • > npm run lint
  • If everything is passing: - Update CHANGELOG.md - Commit and Make a pull request

License

MIT © Illya Klymov

Keywords

FAQs

Last updated on 11 Nov 2018

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