mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
488dff0f90
Converted all references of global atom to NylasEnv Temporary rename atom.io find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.io/temporaryAtomIoReplacement/g' atom.config to NylasEnv.config find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.config/NylasEnv.config/g' atom.packages -> NylasEnv.packages atom.commands -> NylasEnv.commands atom.getLoadSettings find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.commands/NylasEnv.commands/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.getLoadSettings/NylasEnv.getLoadSettings/g' More common atom methods find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.styles/NylasEnv.styles/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.emitError/NylasEnv.emitError/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.inSpecMode/NylasEnv.inSpecMode/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.inDevMode/NylasEnv.inDevMode/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.getWindowType/NylasEnv.getWindowType/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.displayWindow/NylasEnv.displayWindow/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.quit/NylasEnv.quit/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.close/NylasEnv.close/g' More atom method changes find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.keymaps/NylasEnv.keymaps/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.hide/NylasEnv.hide/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.getCurrentWindow/NylasEnv.getCurrentWindow/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.menu/NylasEnv.menu/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.getConfigDirPath/NylasEnv.getConfigDirPath/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.isMainWindow/NylasEnv.isMainWindow/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.finishUnload/NylasEnv.finishUnload/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.isWorkWindow/NylasEnv.isWorkWindow/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.showSaveDialog/NylasEnv.showSaveDialog/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.append/NylasEnv.append/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.confirm/NylasEnv.confirm/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.clipboard/NylasEnv.clipboard/g' find -E . -regex ".*\.(coffee|cjsx|js|md|cmd|es6)" -print0 | xargs -0 sed -i "" 's/atom.getVersion/NylasEnv.getVersion/g' More atom renaming Rename atom methods More atom methods Fix grunt config variable Change atom.cmd to N1.cmd Rename atom.coffee and atom.js to nylas-env.coffee nylas-env.js Fix atom global reference in specs manually Fix atom requires Change engine from atom to nylas got rid of global/nylas-env rename to nylas-win-bootup Fix onWindowPropsChanged to onWindowPropsReceived fix nylas-workspace atom-text-editor to nylas-theme-wrap atom-text-editor -> nylas-theme-wrap Replacing atom keyword AtomWindow -> NylasWindow Replace Atom -> N1 Rename atom items nylas.asar -> atom.asar Remove more atom references Remove 6to5 references Remove license exception for atom
101 lines
4.1 KiB
CoffeeScript
101 lines
4.1 KiB
CoffeeScript
Reflux = require 'reflux'
|
|
Actions = require '../src/flux/actions'
|
|
Message = require '../src/flux/models/message'
|
|
DatabaseStore = require '../src/flux/stores/database-store'
|
|
AccountStore = require '../src/flux/stores/account-store'
|
|
ActionBridge = require '../src/flux/action-bridge',
|
|
_ = require 'underscore'
|
|
|
|
ipc =
|
|
on: ->
|
|
send: ->
|
|
|
|
describe "ActionBridge", ->
|
|
|
|
describe "in the work window", ->
|
|
beforeEach ->
|
|
spyOn(NylasEnv, "getWindowType").andReturn "default"
|
|
spyOn(NylasEnv, "isWorkWindow").andReturn true
|
|
@bridge = new ActionBridge(ipc)
|
|
|
|
it "should have the role Role.WORK", ->
|
|
expect(@bridge.role).toBe(ActionBridge.Role.WORK)
|
|
|
|
it "should rebroadcast global actions", ->
|
|
spyOn(@bridge, 'onRebroadcast')
|
|
testAction = Actions[Actions.globalActions[0]]
|
|
testAction('bla')
|
|
expect(@bridge.onRebroadcast).toHaveBeenCalled()
|
|
|
|
it "should rebroadcast when the DatabaseStore triggers", ->
|
|
spyOn(@bridge, 'onRebroadcast')
|
|
DatabaseStore.trigger({})
|
|
expect(@bridge.onRebroadcast).toHaveBeenCalled()
|
|
|
|
it "should not rebroadcast mainWindow actions since it is the main window", ->
|
|
spyOn(@bridge, 'onRebroadcast')
|
|
testAction = Actions.didMakeAPIRequest
|
|
testAction('bla')
|
|
expect(@bridge.onRebroadcast).not.toHaveBeenCalled()
|
|
|
|
it "should not rebroadcast window actions", ->
|
|
spyOn(@bridge, 'onRebroadcast')
|
|
testAction = Actions[Actions.windowActions[0]]
|
|
testAction('bla')
|
|
expect(@bridge.onRebroadcast).not.toHaveBeenCalled()
|
|
|
|
describe "in another window", ->
|
|
beforeEach ->
|
|
spyOn(NylasEnv, "getWindowType").andReturn "popout"
|
|
spyOn(NylasEnv, "isWorkWindow").andReturn false
|
|
@bridge = new ActionBridge(ipc)
|
|
@message = new Message
|
|
id: 'test-id'
|
|
accountId: TEST_ACCOUNT_ID
|
|
|
|
it "should have the role Role.SECONDARY", ->
|
|
expect(@bridge.role).toBe(ActionBridge.Role.SECONDARY)
|
|
|
|
it "should rebroadcast global actions", ->
|
|
spyOn(@bridge, 'onRebroadcast')
|
|
testAction = Actions[Actions.globalActions[0]]
|
|
testAction('bla')
|
|
expect(@bridge.onRebroadcast).toHaveBeenCalled()
|
|
|
|
it "should rebroadcast mainWindow actions", ->
|
|
spyOn(@bridge, 'onRebroadcast')
|
|
testAction = Actions.didMakeAPIRequest
|
|
testAction('bla')
|
|
expect(@bridge.onRebroadcast).toHaveBeenCalled()
|
|
|
|
it "should not rebroadcast window actions", ->
|
|
spyOn(@bridge, 'onRebroadcast')
|
|
testAction = Actions[Actions.windowActions[0]]
|
|
testAction('bla')
|
|
expect(@bridge.onRebroadcast).not.toHaveBeenCalled()
|
|
|
|
describe "onRebroadcast", ->
|
|
beforeEach ->
|
|
spyOn(NylasEnv, "getWindowType").andReturn "popout"
|
|
spyOn(NylasEnv, "isMainWindow").andReturn false
|
|
@bridge = new ActionBridge(ipc)
|
|
|
|
describe "when called with TargetWindows.ALL", ->
|
|
it "should broadcast the action over IPC to all windows", ->
|
|
spyOn(ipc, 'send')
|
|
Actions.didPassivelyReceiveNewModels.firing = false
|
|
@bridge.onRebroadcast(ActionBridge.TargetWindows.ALL, 'didPassivelyReceiveNewModels', [{oldModel: '1', newModel: 2}])
|
|
expect(ipc.send).toHaveBeenCalledWith('action-bridge-rebroadcast-to-all', 'popout', 'didPassivelyReceiveNewModels', '[{"oldModel":"1","newModel":2}]')
|
|
|
|
describe "when called with TargetWindows.WORK", ->
|
|
it "should broadcast the action over IPC to the main window only", ->
|
|
spyOn(ipc, 'send')
|
|
Actions.didPassivelyReceiveNewModels.firing = false
|
|
@bridge.onRebroadcast(ActionBridge.TargetWindows.WORK, 'didPassivelyReceiveNewModels', [{oldModel: '1', newModel: 2}])
|
|
expect(ipc.send).toHaveBeenCalledWith('action-bridge-rebroadcast-to-work', 'popout', 'didPassivelyReceiveNewModels', '[{"oldModel":"1","newModel":2}]')
|
|
|
|
it "should not do anything if the current invocation of the Action was triggered by itself", ->
|
|
spyOn(ipc, 'send')
|
|
Actions.didPassivelyReceiveNewModels.firing = true
|
|
@bridge.onRebroadcast(ActionBridge.TargetWindows.ALL, 'didPassivelyReceiveNewModels', [{oldModel: '1', newModel: 2}])
|
|
expect(ipc.send).not.toHaveBeenCalled()
|