123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193 |
- import { isObject } from './util'
- /**
- * Reduce the code which written in Vue.js for getting the state.
- * @param {String} [namespace] - Module's namespace
- * @param {Object|Array} states # Object's item can be a function which accept state and getters for param, you can do something for state and getters in it.
- * @param {Object}
- */
- export const mapState = normalizeNamespace((namespace, states) => {
- const res = {}
- if (__DEV__ && !isValidMap(states)) {
- console.error('[vuex] mapState: mapper parameter must be either an Array or an Object')
- }
- normalizeMap(states).forEach(({ key, val }) => {
- res[key] = function mappedState () {
- let state = this.$store.state
- let getters = this.$store.getters
- if (namespace) {
- const module = getModuleByNamespace(this.$store, 'mapState', namespace)
- if (!module) {
- return
- }
- state = module.context.state
- getters = module.context.getters
- }
- return typeof val === 'function'
- ? val.call(this, state, getters)
- : state[val]
- }
- // mark vuex getter for devtools
- res[key].vuex = true
- })
- return res
- })
- /**
- * Reduce the code which written in Vue.js for committing the mutation
- * @param {String} [namespace] - Module's namespace
- * @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept another params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.
- * @return {Object}
- */
- export const mapMutations = normalizeNamespace((namespace, mutations) => {
- const res = {}
- if (__DEV__ && !isValidMap(mutations)) {
- console.error('[vuex] mapMutations: mapper parameter must be either an Array or an Object')
- }
- normalizeMap(mutations).forEach(({ key, val }) => {
- res[key] = function mappedMutation (...args) {
- // Get the commit method from store
- let commit = this.$store.commit
- if (namespace) {
- const module = getModuleByNamespace(this.$store, 'mapMutations', namespace)
- if (!module) {
- return
- }
- commit = module.context.commit
- }
- return typeof val === 'function'
- ? val.apply(this, [commit].concat(args))
- : commit.apply(this.$store, [val].concat(args))
- }
- })
- return res
- })
- /**
- * Reduce the code which written in Vue.js for getting the getters
- * @param {String} [namespace] - Module's namespace
- * @param {Object|Array} getters
- * @return {Object}
- */
- export const mapGetters = normalizeNamespace((namespace, getters) => {
- const res = {}
- if (__DEV__ && !isValidMap(getters)) {
- console.error('[vuex] mapGetters: mapper parameter must be either an Array or an Object')
- }
- normalizeMap(getters).forEach(({ key, val }) => {
- // The namespace has been mutated by normalizeNamespace
- val = namespace + val
- res[key] = function mappedGetter () {
- if (namespace && !getModuleByNamespace(this.$store, 'mapGetters', namespace)) {
- return
- }
- if (__DEV__ && !(val in this.$store.getters)) {
- console.error(`[vuex] unknown getter: ${val}`)
- return
- }
- return this.$store.getters[val]
- }
- // mark vuex getter for devtools
- res[key].vuex = true
- })
- return res
- })
- /**
- * Reduce the code which written in Vue.js for dispatch the action
- * @param {String} [namespace] - Module's namespace
- * @param {Object|Array} actions # Object's item can be a function which accept `dispatch` function as the first param, it can accept anthor params. You can dispatch action and do any other things in this function. specially, You need to pass anthor params from the mapped function.
- * @return {Object}
- */
- export const mapActions = normalizeNamespace((namespace, actions) => {
- const res = {}
- if (__DEV__ && !isValidMap(actions)) {
- console.error('[vuex] mapActions: mapper parameter must be either an Array or an Object')
- }
- normalizeMap(actions).forEach(({ key, val }) => {
- res[key] = function mappedAction (...args) {
- // get dispatch function from store
- let dispatch = this.$store.dispatch
- if (namespace) {
- const module = getModuleByNamespace(this.$store, 'mapActions', namespace)
- if (!module) {
- return
- }
- dispatch = module.context.dispatch
- }
- return typeof val === 'function'
- ? val.apply(this, [dispatch].concat(args))
- : dispatch.apply(this.$store, [val].concat(args))
- }
- })
- return res
- })
- /**
- * Rebinding namespace param for mapXXX function in special scoped, and return them by simple object
- * @param {String} namespace
- * @return {Object}
- */
- export const createNamespacedHelpers = (namespace) => ({
- mapState: mapState.bind(null, namespace),
- mapGetters: mapGetters.bind(null, namespace),
- mapMutations: mapMutations.bind(null, namespace),
- mapActions: mapActions.bind(null, namespace)
- })
- /**
- * Normalize the map
- * normalizeMap([1, 2, 3]) => [ { key: 1, val: 1 }, { key: 2, val: 2 }, { key: 3, val: 3 } ]
- * normalizeMap({a: 1, b: 2, c: 3}) => [ { key: 'a', val: 1 }, { key: 'b', val: 2 }, { key: 'c', val: 3 } ]
- * @param {Array|Object} map
- * @return {Object}
- */
- function normalizeMap (map) {
- if (!isValidMap(map)) {
- return []
- }
- return Array.isArray(map)
- ? map.map(key => ({ key, val: key }))
- : Object.keys(map).map(key => ({ key, val: map[key] }))
- }
- /**
- * Validate whether given map is valid or not
- * @param {*} map
- * @return {Boolean}
- */
- function isValidMap (map) {
- return Array.isArray(map) || isObject(map)
- }
- /**
- * Return a function expect two param contains namespace and map. it will normalize the namespace and then the param's function will handle the new namespace and the map.
- * @param {Function} fn
- * @return {Function}
- */
- function normalizeNamespace (fn) {
- return (namespace, map) => {
- if (typeof namespace !== 'string') {
- map = namespace
- namespace = ''
- } else if (namespace.charAt(namespace.length - 1) !== '/') {
- namespace += '/'
- }
- return fn(namespace, map)
- }
- }
- /**
- * Search a special module from store by namespace. if module not exist, print error message.
- * @param {Object} store
- * @param {String} helper
- * @param {String} namespace
- * @return {Object}
- */
- function getModuleByNamespace (store, helper, namespace) {
- const module = store._modulesNamespaceMap[namespace]
- if (__DEV__ && !module) {
- console.error(`[vuex] module namespace not found in ${helper}(): ${namespace}`)
- }
- return module
- }
|