0.1.2 • Published 5 years ago

@studytweaks/vuejs-cache v0.1.2

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

Vuejs cache plugin

Installation

via npm

npm install @studytweaks/vuejs-cache

via yarn

yarn add @studytweaks/vuejs-cache

Requirements

This package need following packages installed in your app

  • pouchdb-browser@^6.4.3
  • vue@^2.5.16
  • vuex@^3.0.1

Api requirements

Your api needs to attach a custom header for db version, the cache data is updated based on this version.

Usage

Install Vuejs cache plugin as follows:

# main.js

import cachePlugin from '@studytweaks/vuejs-cache'

Vue.use(cachePlugin, {options})

Options

OptionDescriptionTypeRequired
storeMain store to which the cache module is attached toObjecttrue
axiosThe instance of axios used by appObjecttrue
dbVersionHeaderKeyCustom response header key for db versionStringtrue
cacheRouteRoute to fetch cache dataStringtrue

Once you have registered the plugin. It attaches a studytweaks_cache module to the store, The cached data received from the cacheRoute can be accessed as

using store

store.studytweaks_cache.cache.<key>

Or

store.studytweaks_cache.cache[<key>]

use getters

# File.vue

// ..
// ..
this.$store.getters['studytweaks_cache/cacheData'](key)

Displaying message to users when updating cache

The cache module has a getter updatingCache that is true when the data is being fetched from the server.

you can use the getter to add visual clues about ongoing update.

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago