0.1.1 • Published 7 years ago

vuex-strong-cache v0.1.1

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

vuex-strong-cache

Allow stronger cache for Vuex getters.

What is this?

This library allows you to cache the result of function that returned by a getter. In other words, even if you write like the following getter, the final result will be cached as same as a normal getter result.

getters: {
  getTodoById: (state, getters) => (id) => {
    return state.todos.find(todo => todo.id === id)
  }
}

Installation

$ npm install --save vuex-strong-cache
# or
$ yarn add vuex-strong-cache

Usage

vuex-strong-cache provides a helper function that can enhance getters. You can just wrap your getters by the enhancedGetters helper so that all your getters will ready to have stronger caching.

import { enhancedGetters } from 'vuex-strong-cache'

export default {
  state: {
    todos: []
  },

  getters: enhancedGetters({
    getTodoById: (state, getters) => (id) => {
      return state.todos.find(todo => todo.id === id)
    }
  }),

  // ...
}

License

MIT