mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 12:40:08 +08:00
3954289cf4
Summary: There are now two objects, Folders & Labels. These inherit from `Category` (that's what Eben said they were using on the backend). There are two separate tasks. 1. MoveToFolderTask 2. ApplyLabelsTask It turns out that the semantics between the two are quite different. The reverse operation for moving to a folder is a bit tricky. As of 7-8-15, the Tasks are pretty much complete. I need to write tests for them still and do some manual testing in the client. Test Plan: Writing specs Reviewers: bengotow Reviewed By: bengotow Differential Revision: https://phab.nylas.com/D1724
75 lines
3.1 KiB
CoffeeScript
75 lines
3.1 KiB
CoffeeScript
_ = require 'underscore'
|
|
|
|
Label = require '../../src/flux/models/label'
|
|
Folder = require '../../src/flux/models/folder'
|
|
|
|
CategoryStore = require '../../src/flux/stores/category-store'
|
|
NamespaceStore = require '../../src/flux/stores/namespace-store'
|
|
FocusedCategoryStore = require '../../src/flux/stores/focused-category-store'
|
|
|
|
describe "FocusedCategoryStore", ->
|
|
beforeEach ->
|
|
spyOn(FocusedCategoryStore, 'trigger')
|
|
FocusedCategoryStore._category = null
|
|
|
|
afterEach ->
|
|
atom.testOrganizationUnit = null
|
|
|
|
testStore = ->
|
|
it "should change the focused category to Inbox and trigger when the namespace changes", ->
|
|
FocusedCategoryStore._onFocusCategory(@userCategory)
|
|
FocusedCategoryStore._setDefaultCategory()
|
|
expect(FocusedCategoryStore.trigger).toHaveBeenCalled()
|
|
expect(FocusedCategoryStore.categoryName()).toBe('inbox')
|
|
|
|
it "should clear the focused category and trigger when a search query is committed", ->
|
|
FocusedCategoryStore._onSearchQueryCommitted('bla')
|
|
expect(FocusedCategoryStore.trigger).toHaveBeenCalled()
|
|
expect(FocusedCategoryStore.category()).toBe(null)
|
|
expect(FocusedCategoryStore.categoryName()).toBe(null)
|
|
|
|
it "should restore the category that was previously focused and trigger when a search query is cleared", ->
|
|
FocusedCategoryStore._onFocusCategory(@userCategory)
|
|
FocusedCategoryStore._onSearchQueryCommitted('bla')
|
|
expect(FocusedCategoryStore.category()).toEqual(null)
|
|
expect(FocusedCategoryStore.categoryName()).toEqual(null)
|
|
FocusedCategoryStore._onSearchQueryCommitted('')
|
|
expect(FocusedCategoryStore.trigger).toHaveBeenCalled()
|
|
expect(FocusedCategoryStore.category().id).toEqual(@userCategory.id)
|
|
expect(FocusedCategoryStore.categoryName()).toEqual(null)
|
|
|
|
it "should focus the category and trigger when Actions.focusCategory is called", ->
|
|
FocusedCategoryStore._onFocusCategory(@userCategory)
|
|
expect(FocusedCategoryStore.trigger).toHaveBeenCalled()
|
|
expect(FocusedCategoryStore.categoryName()).toBe(null)
|
|
expect(FocusedCategoryStore.category()).toEqual(@userCategory)
|
|
|
|
it "should do nothing if the category is already focused", ->
|
|
FocusedCategoryStore._onFocusCategory(@inboxCategory)
|
|
spyOn(FocusedCategoryStore, '_setCategory')
|
|
expect(FocusedCategoryStore._setCategory).not.toHaveBeenCalled()
|
|
|
|
describe 'when using labels', ->
|
|
beforeEach ->
|
|
atom.testOrganizationUnit = 'label'
|
|
|
|
@inboxCategory = new Label(id: 'id-123', name: 'inbox', displayName: "INBOX")
|
|
@userCategory = new Label(id: 'id-456', name: null, displayName: "MyCategory")
|
|
|
|
spyOn(CategoryStore, "getStandardCategory").andReturn @inboxCategory
|
|
FocusedCategoryStore._setDefaultCategory()
|
|
|
|
testStore()
|
|
|
|
describe 'when using folders', ->
|
|
beforeEach ->
|
|
atom.testOrganizationUnit = 'folder'
|
|
|
|
@inboxCategory = new Folder(id: 'id-123', name: 'inbox', displayName: "INBOX")
|
|
@userCategory = new Folder(id: 'id-456', name: null, displayName: "MyCategory")
|
|
|
|
spyOn(CategoryStore, "getStandardCategory").andReturn @inboxCategory
|
|
FocusedCategoryStore._setDefaultCategory()
|
|
|
|
testStore()
|
|
|