2016-01-09 06:58:31 +08:00
|
|
|
_ = require 'underscore'
|
|
|
|
|
|
|
|
Actions = require '../../src/flux/actions'
|
2016-01-26 03:07:40 +08:00
|
|
|
Category = require '../../src/flux/models/category'
|
2016-01-09 06:58:31 +08:00
|
|
|
MailboxPerspective = require '../../src/mailbox-perspective'
|
|
|
|
|
|
|
|
CategoryStore = require '../../src/flux/stores/category-store'
|
|
|
|
AccountStore = require '../../src/flux/stores/account-store'
|
|
|
|
FocusedPerspectiveStore = require '../../src/flux/stores/focused-perspective-store'
|
|
|
|
|
2016-09-22 02:23:38 +08:00
|
|
|
fdescribe "FocusedPerspectiveStore", ->
|
2016-01-09 06:58:31 +08:00
|
|
|
beforeEach ->
|
|
|
|
spyOn(FocusedPerspectiveStore, 'trigger')
|
|
|
|
FocusedPerspectiveStore._perspective = null
|
2016-01-12 07:58:10 +08:00
|
|
|
@account = AccountStore.accounts()[0]
|
2016-01-09 06:58:31 +08:00
|
|
|
|
2016-01-26 03:07:40 +08:00
|
|
|
@inboxCategory = new Category(id: 'id-123', name: 'inbox', displayName: "INBOX", accountId: @account.id)
|
2016-04-11 22:59:40 +08:00
|
|
|
@inboxPerspective = MailboxPerspective.forCategory(@inboxCategory)
|
2016-01-26 03:07:40 +08:00
|
|
|
@userCategory = new Category(id: 'id-456', name: null, displayName: "MyCategory", accountId: @account.id)
|
2016-04-11 22:59:40 +08:00
|
|
|
@userPerspective = MailboxPerspective.forCategory(@userCategory)
|
2016-01-26 03:07:40 +08:00
|
|
|
|
|
|
|
spyOn(CategoryStore, "getStandardCategory").andReturn @inboxCategory
|
|
|
|
spyOn(CategoryStore, "byId").andCallFake (id) =>
|
|
|
|
return @inboxCategory if id is @inboxCategory.id
|
|
|
|
return @userCategory if id is @userCategory.id
|
|
|
|
return null
|
|
|
|
|
2016-04-11 22:59:40 +08:00
|
|
|
describe "_loadSavedPerspective", ->
|
2016-02-10 12:06:48 +08:00
|
|
|
beforeEach ->
|
|
|
|
@default = 'default'
|
|
|
|
@accounts = [{id: 1}, {id: 2}]
|
|
|
|
spyOn(MailboxPerspective, 'fromJSON').andCallFake (json) -> json
|
|
|
|
spyOn(FocusedPerspectiveStore, '_defaultPerspective').andReturn @default
|
|
|
|
|
|
|
|
it "uses default perspective when no perspective has been saved", ->
|
2016-09-22 02:23:38 +08:00
|
|
|
NylasEnv.savedState.perspective = undefined
|
|
|
|
current = FocusedPerspectiveStore._loadSavedPerspective(@accounts)
|
2016-02-10 12:06:48 +08:00
|
|
|
expect(current).toEqual @default
|
|
|
|
|
|
|
|
it "uses default if saved perspective has more account ids not present in current accounts", ->
|
2016-09-22 02:23:38 +08:00
|
|
|
NylasEnv.savedState.perspective = {accountIds: [1,2,3]}
|
|
|
|
current = FocusedPerspectiveStore._loadSavedPerspective(@accounts)
|
2016-02-10 12:06:48 +08:00
|
|
|
expect(current).toEqual @default
|
|
|
|
|
2016-09-22 02:23:38 +08:00
|
|
|
NylasEnv.savedState.perspective = {accountIds: [3]}
|
|
|
|
current = FocusedPerspectiveStore._loadSavedPerspective(@accounts)
|
2016-02-10 12:06:48 +08:00
|
|
|
expect(current).toEqual @default
|
|
|
|
|
|
|
|
it "uses saved perspective if all accounts in saved perspective are present in the current accounts", ->
|
2016-09-22 02:23:38 +08:00
|
|
|
NylasEnv.savedState.perspective = {accountIds: [1,2]}
|
|
|
|
current = FocusedPerspectiveStore._loadSavedPerspective(@accounts)
|
|
|
|
expect(current).toEqual NylasEnv.savedState.perspective
|
2016-02-10 12:06:48 +08:00
|
|
|
|
2016-09-22 02:23:38 +08:00
|
|
|
NylasEnv.savedState.perspective = {accountIds: [1]}
|
|
|
|
current = FocusedPerspectiveStore._loadSavedPerspective(@accounts)
|
|
|
|
expect(current).toEqual NylasEnv.savedState.perspective
|
2016-02-10 12:06:48 +08:00
|
|
|
|
2016-01-26 03:07:40 +08:00
|
|
|
describe "_onCategoryStoreChanged", ->
|
2016-04-11 22:59:40 +08:00
|
|
|
it "should load the saved perspective if the perspective has not been initialized", ->
|
|
|
|
spyOn(FocusedPerspectiveStore, '_loadSavedPerspective').andReturn(@inboxPerspective)
|
2016-01-26 03:07:40 +08:00
|
|
|
FocusedPerspectiveStore._onCategoryStoreChanged()
|
2016-04-11 22:59:40 +08:00
|
|
|
expect(FocusedPerspectiveStore.current()).toEqual(@inboxPerspective)
|
2016-03-25 10:35:24 +08:00
|
|
|
|
2016-04-11 22:59:40 +08:00
|
|
|
it "should set the current category to default when the current category no longer exists in the CategoryStore", ->
|
|
|
|
defaultPerspective = @inboxPerspective
|
|
|
|
spyOn(FocusedPerspectiveStore, '_defaultPerspective').andReturn(defaultPerspective)
|
2016-01-26 03:07:40 +08:00
|
|
|
otherAccountInbox = @inboxCategory.clone()
|
|
|
|
otherAccountInbox.serverId = 'other-id'
|
2016-04-11 22:59:40 +08:00
|
|
|
FocusedPerspectiveStore._current = MailboxPerspective.forCategory(otherAccountInbox)
|
2016-01-26 03:07:40 +08:00
|
|
|
FocusedPerspectiveStore._onCategoryStoreChanged()
|
2016-04-11 22:59:40 +08:00
|
|
|
expect(FocusedPerspectiveStore.current()).toEqual(defaultPerspective)
|
2016-01-26 03:07:40 +08:00
|
|
|
|
|
|
|
describe "_onFocusPerspective", ->
|
2016-01-26 08:36:56 +08:00
|
|
|
it "should focus the category and trigger", ->
|
2016-04-11 22:59:40 +08:00
|
|
|
FocusedPerspectiveStore._onFocusPerspective(@userPerspective)
|
2016-01-26 03:07:40 +08:00
|
|
|
expect(FocusedPerspectiveStore.trigger).toHaveBeenCalled()
|
|
|
|
expect(FocusedPerspectiveStore.current().categories()).toEqual([@userCategory])
|
|
|
|
|
2016-05-05 02:50:54 +08:00
|
|
|
describe "_setPerspective", ->
|
|
|
|
it "should not trigger if the perspective is already focused", ->
|
|
|
|
FocusedPerspectiveStore._setPerspective(@inboxPerspective)
|
|
|
|
FocusedPerspectiveStore.trigger.reset()
|
|
|
|
FocusedPerspectiveStore._setPerspective(@inboxPerspective)
|
|
|
|
expect(FocusedPerspectiveStore.trigger).not.toHaveBeenCalled()
|