Skip to content

Commit

Permalink
fix: stop throwing an error on hasModule when parent does not exists (
Browse files Browse the repository at this point in the history
#1850) (#1851)

fix #1850

Co-authored-by: Kia Ishii <kia.king.08@gmail.com>
  • Loading branch information
urbnjamesmi1 and kiaking committed Nov 5, 2020
1 parent 14222a3 commit 12aabe4
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/module/module-collection.js
Expand Up @@ -72,7 +72,11 @@ export default class ModuleCollection {
const parent = this.get(path.slice(0, -1))
const key = path[path.length - 1]

return parent.hasChild(key)
if (parent) {
return parent.hasChild(key)
}

return false
}
}

Expand Down
17 changes: 17 additions & 0 deletions test/unit/module/module-collection.spec.js
Expand Up @@ -81,6 +81,23 @@ describe('ModuleCollection', () => {
expect(collection.get(['a'])).toBe(undefined)
})

it('isRegistered', () => {
const collection = new ModuleCollection({})

collection.register(['a'], {
state: { value: true }
})

collection.register(['a', 'b'], {
state: { value: false }
})

expect(collection.isRegistered(['a'])).toBe(true)
expect(collection.isRegistered(['a', 'b'])).toBe(true)
expect(collection.isRegistered(['c'])).toBe(false)
expect(collection.isRegistered(['c', 'd'])).toBe(false)
})

it('does not unregister initial modules', () => {
const collection = new ModuleCollection({
modules: {
Expand Down
12 changes: 12 additions & 0 deletions test/unit/modules.spec.js
Expand Up @@ -91,6 +91,18 @@ describe('Modules', () => {
expect(store.hasModule('bonjour')).toBe(false)
})

it('dynamic module existance test with nested modules', () => {
const store = new Vuex.Store({})

store.registerModule('a', {})
store.registerModule(['a', 'b'], {})

expect(store.hasModule(['a'])).toBe(true)
expect(store.hasModule(['a', 'b'])).toBe(true)
expect(store.hasModule(['c'])).toBe(false)
expect(store.hasModule(['c', 'd'])).toBe(false)
})

it('dynamic module registration preserving hydration', () => {
const store = new Vuex.Store({})
store.replaceState({ a: { foo: 'state' }})
Expand Down

0 comments on commit 12aabe4

Please sign in to comment.