-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
26 changed files
with
3,855 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,167 @@ | ||
/** | ||
* 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 = {} | ||
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 anthor 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 = {} | ||
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 = {} | ||
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 (process.env.NODE_ENV !== 'production' && !(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 = {} | ||
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) { | ||
return Array.isArray(map) | ||
? map.map(key => ({ key, val: key })) | ||
: Object.keys(map).map(key => ({ key, val: map[key] })) | ||
} | ||
|
||
/** | ||
* 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 (process.env.NODE_ENV !== 'production' && !module) { | ||
console.error(`[vuex] module namespace not found in ${helper}(): ${namespace}`) | ||
} | ||
return module | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import { Store, install } from './store' | ||
import { mapState, mapMutations, mapGetters, mapActions, createNamespacedHelpers } from './helpers' | ||
|
||
export default { | ||
Store, | ||
install, | ||
version: '__VERSION__', | ||
mapState, | ||
mapMutations, | ||
mapGetters, | ||
mapActions, | ||
createNamespacedHelpers | ||
} | ||
|
||
export { | ||
Store, | ||
install, | ||
mapState, | ||
mapMutations, | ||
mapGetters, | ||
mapActions, | ||
createNamespacedHelpers | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { Store, install } from './store' | ||
import { mapState, mapMutations, mapGetters, mapActions, createNamespacedHelpers } from './helpers' | ||
|
||
export default { | ||
Store, | ||
install, | ||
version: '__VERSION__', | ||
mapState, | ||
mapMutations, | ||
mapGetters, | ||
mapActions, | ||
createNamespacedHelpers | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
export default function (Vue) { | ||
const version = Number(Vue.version.split('.')[0]) | ||
|
||
if (version >= 2) { | ||
Vue.mixin({ beforeCreate: vuexInit }) | ||
} else { | ||
// override init and inject vuex init procedure | ||
// for 1.x backwards compatibility. | ||
const _init = Vue.prototype._init | ||
Vue.prototype._init = function (options = {}) { | ||
options.init = options.init | ||
? [vuexInit].concat(options.init) | ||
: vuexInit | ||
_init.call(this, options) | ||
} | ||
} | ||
|
||
/** | ||
* Vuex init hook, injected into each instances init hooks list. | ||
*/ | ||
|
||
function vuexInit () { | ||
const options = this.$options | ||
// store injection | ||
if (options.store) { | ||
this.$store = typeof options.store === 'function' | ||
? options.store() | ||
: options.store | ||
} else if (options.parent && options.parent.$store) { | ||
this.$store = options.parent.$store | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
import Module from './module' | ||
import { assert, forEachValue } from '../util' | ||
|
||
export default class ModuleCollection { | ||
constructor (rawRootModule) { | ||
// register root module (Vuex.Store options) | ||
this.register([], rawRootModule, false) | ||
} | ||
|
||
get (path) { | ||
return path.reduce((module, key) => { | ||
return module.getChild(key) | ||
}, this.root) | ||
} | ||
|
||
getNamespace (path) { | ||
let module = this.root | ||
return path.reduce((namespace, key) => { | ||
module = module.getChild(key) | ||
return namespace + (module.namespaced ? key + '/' : '') | ||
}, '') | ||
} | ||
|
||
update (rawRootModule) { | ||
update([], this.root, rawRootModule) | ||
} | ||
|
||
register (path, rawModule, runtime = true) { | ||
if (process.env.NODE_ENV !== 'production') { | ||
assertRawModule(path, rawModule) | ||
} | ||
|
||
const newModule = new Module(rawModule, runtime) | ||
if (path.length === 0) { | ||
this.root = newModule | ||
} else { | ||
const parent = this.get(path.slice(0, -1)) | ||
parent.addChild(path[path.length - 1], newModule) | ||
} | ||
|
||
// register nested modules | ||
if (rawModule.modules) { | ||
forEachValue(rawModule.modules, (rawChildModule, key) => { | ||
this.register(path.concat(key), rawChildModule, runtime) | ||
}) | ||
} | ||
} | ||
|
||
unregister (path) { | ||
const parent = this.get(path.slice(0, -1)) | ||
const key = path[path.length - 1] | ||
if (!parent.getChild(key).runtime) return | ||
|
||
parent.removeChild(key) | ||
} | ||
} | ||
|
||
function update (path, targetModule, newModule) { | ||
if (process.env.NODE_ENV !== 'production') { | ||
assertRawModule(path, newModule) | ||
} | ||
|
||
// update target module | ||
targetModule.update(newModule) | ||
|
||
// update nested modules | ||
if (newModule.modules) { | ||
for (const key in newModule.modules) { | ||
if (!targetModule.getChild(key)) { | ||
if (process.env.NODE_ENV !== 'production') { | ||
console.warn( | ||
`[vuex] trying to add a new module '${key}' on hot reloading, ` + | ||
'manual reload is needed' | ||
) | ||
} | ||
return | ||
} | ||
update( | ||
path.concat(key), | ||
targetModule.getChild(key), | ||
newModule.modules[key] | ||
) | ||
} | ||
} | ||
} | ||
|
||
const functionAssert = { | ||
assert: value => typeof value === 'function', | ||
expected: 'function' | ||
} | ||
|
||
const objectAssert = { | ||
assert: value => typeof value === 'function' || | ||
(typeof value === 'object' && typeof value.handler === 'function'), | ||
expected: 'function or object with "handler" function' | ||
} | ||
|
||
const assertTypes = { | ||
getters: functionAssert, | ||
mutations: functionAssert, | ||
actions: objectAssert | ||
} | ||
|
||
function assertRawModule (path, rawModule) { | ||
Object.keys(assertTypes).forEach(key => { | ||
if (!rawModule[key]) return | ||
|
||
const assertOptions = assertTypes[key] | ||
|
||
forEachValue(rawModule[key], (value, type) => { | ||
assert( | ||
assertOptions.assert(value), | ||
makeAssertionMessage(path, key, type, value, assertOptions.expected) | ||
) | ||
}) | ||
}) | ||
} | ||
|
||
function makeAssertionMessage (path, key, type, value, expected) { | ||
let buf = `${key} should be ${expected} but "${key}.${type}"` | ||
if (path.length > 0) { | ||
buf += ` in module "${path.join('.')}"` | ||
} | ||
buf += ` is ${JSON.stringify(value)}.` | ||
return buf | ||
} |
Oops, something went wrong.