vuex-action-patcher
v1.0.0
Published
Vuex - Add tools to the Action context
Downloads
9
Readme
Vuex Action Patcher (Adding Tools to Your Context)
Add tools to your Vuex action context
Motivation
I found making tools available to the Vuex action context could be handy for numerous reasons. The library is designed for you to pass the same toolset to all actions from within the context.
- add tools to all actions
- add tools to actions within registered modules
- keep consistent tooling across all actions
Install
npm install vuex-action-patcher --save
Usage
Use in a Vue App
import Vue from 'vue'
import Vuex from 'vuex'
import App from './App.vue'
import vuexActionPatcher from 'vuex-action-patcher'
import { name } from '../package.json'
import moment from 'moment'
Vue.use(Vuex)
const tools = vuexActionPatcher(Vuex, { moment })
const store = new Vuex.Store({
state: {
name
},
actions: {
getTime ({ moment }) {
console.log(moment().calendar())
}
},
plugins: [tools]
})
new Vue({
el: '#app',
store,
render: h => h(App)
})
Use with Dynamic Modules
main.js
import Vue from 'vue'
import Vuex from 'vuex'
import App from './App.vue'
import vuexActionPatcher from 'vuex-action-patcher'
import { name } from '../package.json'
import moment from 'moment'
Vue.use(Vuex)
const tools = vuexActionPatcher(Vuex, { moment })
const store = new Vuex.Store({
plugins: [tools]
})
new Vue({
el: '#app',
store,
render: h => h(App)
})
later.js
store.registerModule('myModule', {
state: {
name: 'myModule'
},
actions: {
getTime ({ moment }) {
console.log(moment().calendar())
}
}
})
Use in a Nuxt App
Under
store/index.js
import Vuex from 'vuex'
import vuexActionPatcher from 'vuex-action-patcher'
import moment from 'moment'
const vuexActionPatch = vuexActionPatcher(Vuex, { moment })
const createStore = () => {
return new Vuex.Store({
state: () => ({
counter: 0
}),
mutations: {
increment (state) {
state.counter++
}
},
actions: {
getDate ({ moment }) {
console.log(moment().calendar())
}
},
plugins: [vuexActionPatch]
})
}
export default createStore