mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-14 05:41:05 +08:00
687597134d
Summary: - New behavior is that the in split mode, you will perform actions on the selection via the MessageListToolbar (the toolbar positioned above the message list) - Refactored and moved around a bunch of code to achieve this: - Mostly renaming stuff and moving stuff around and removing some duplication - Update naming of toolbar role to a single role, and update relevant code - Converted and refactored a bunch of code into ES6, specifically to reuse the code for the ThreadActionsToolbar at the 2 locations - Deprecated MultiselectActionBar in favor of MultiselectToolbar - Deprecated old roles - Punted the animation for the stackable cards in the selection display for now. - #370 Test Plan: - Manual and unit tests Reviewers: evan, drew, bengotow Reviewed By: bengotow Differential Revision: https://phab.nylas.com/D2756
65 lines
2.4 KiB
CoffeeScript
65 lines
2.4 KiB
CoffeeScript
React = require "react/addons"
|
|
ReactTestUtils = React.addons.TestUtils
|
|
TestUtils = React.addons.TestUtils
|
|
{Thread, FocusedContentStore, Actions, ChangeUnreadTask} = require "nylas-exports"
|
|
{ToggleStarredButton, ToggleUnreadButton} = require '../lib/thread-toolbar-buttons'
|
|
|
|
test_thread = (new Thread).fromJSON({
|
|
"id" : "thread_12345"
|
|
"account_id": TEST_ACCOUNT_ID
|
|
"subject" : "Subject 12345"
|
|
"starred": false
|
|
})
|
|
|
|
test_thread_starred = (new Thread).fromJSON({
|
|
"id" : "thread_starred_12345"
|
|
"account_id": TEST_ACCOUNT_ID
|
|
"subject" : "Subject 12345"
|
|
"starred": true
|
|
})
|
|
|
|
describe "ThreadToolbarButtons", ->
|
|
|
|
describe "Starring", ->
|
|
it "stars a thread if the star button is clicked and thread is unstarred", ->
|
|
spyOn(Actions, 'queueTask')
|
|
starButton = TestUtils.renderIntoDocument(<ToggleStarredButton items={[test_thread]}/>)
|
|
|
|
TestUtils.Simulate.click React.findDOMNode(starButton)
|
|
|
|
expect(Actions.queueTask.mostRecentCall.args[0].threads).toEqual([test_thread])
|
|
expect(Actions.queueTask.mostRecentCall.args[0].starred).toEqual(true)
|
|
|
|
it "unstars a thread if the star button is clicked and thread is starred", ->
|
|
spyOn(Actions, 'queueTask')
|
|
starButton = TestUtils.renderIntoDocument(<ToggleStarredButton items={[test_thread_starred]}/>)
|
|
|
|
TestUtils.Simulate.click React.findDOMNode(starButton)
|
|
|
|
expect(Actions.queueTask.mostRecentCall.args[0].threads).toEqual([test_thread_starred])
|
|
expect(Actions.queueTask.mostRecentCall.args[0].starred).toEqual(false)
|
|
|
|
describe "Marking as unread", ->
|
|
thread = null
|
|
markUnreadBtn = null
|
|
|
|
beforeEach ->
|
|
thread = new Thread(id: "thread-id-lol-123", accountId: TEST_ACCOUNT_ID, unread: false)
|
|
markUnreadBtn = ReactTestUtils.renderIntoDocument(
|
|
<ToggleUnreadButton items={[thread]} />
|
|
)
|
|
|
|
it "queues a task to change unread status to true", ->
|
|
spyOn Actions, "queueTask"
|
|
ReactTestUtils.Simulate.click React.findDOMNode(markUnreadBtn).childNodes[0]
|
|
|
|
changeUnreadTask = Actions.queueTask.calls[0].args[0]
|
|
expect(changeUnreadTask instanceof ChangeUnreadTask).toBe true
|
|
expect(changeUnreadTask.unread).toBe true
|
|
expect(changeUnreadTask.threads[0].id).toBe thread.id
|
|
|
|
it "returns to the thread list", ->
|
|
spyOn Actions, "popSheet"
|
|
ReactTestUtils.Simulate.click React.findDOMNode(markUnreadBtn).childNodes[0]
|
|
|
|
expect(Actions.popSheet).toHaveBeenCalled()
|