mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
78665c5fec
Summary: - Update menus and shortcuts correclt when accounts change or focused accounts change - Move menu logic into SidebarCommands to remove duplicated logic - Make `Window` menu also contain checkboxes Test Plan: - Manual Reviewers: evan, bengotow Reviewed By: bengotow Differential Revision: https://phab.nylas.com/D2534
105 lines
2.9 KiB
CoffeeScript
105 lines
2.9 KiB
CoffeeScript
NylasStore = require 'nylas-store'
|
|
_ = require 'underscore'
|
|
{Actions,
|
|
AccountStore,
|
|
ThreadCountsStore,
|
|
WorkspaceStore,
|
|
OutboxStore,
|
|
FocusedPerspectiveStore,
|
|
CategoryStore} = require 'nylas-exports'
|
|
|
|
SidebarSection = require './sidebar-section'
|
|
SidebarActions = require './sidebar-actions'
|
|
AccountCommands = require './account-commands'
|
|
|
|
Sections = {
|
|
"Standard",
|
|
"User"
|
|
}
|
|
|
|
class SidebarStore extends NylasStore
|
|
|
|
constructor: ->
|
|
@_sections = {}
|
|
@_sections[Sections.Standard] = {}
|
|
@_sections[Sections.User] = []
|
|
@_focusedAccounts = @accounts()
|
|
@_registerCommands()
|
|
@_registerMenuItems()
|
|
@_registerListeners()
|
|
@_updateSections()
|
|
|
|
accounts: ->
|
|
AccountStore.accounts()
|
|
|
|
focusedAccounts: ->
|
|
@_focusedAccounts
|
|
|
|
standardSection: ->
|
|
@_sections[Sections.Standard]
|
|
|
|
userSections: ->
|
|
@_sections[Sections.User]
|
|
|
|
_registerListeners: ->
|
|
@listenTo SidebarActions.focusAccounts, @_onAccountsFocused
|
|
@listenTo AccountStore, @_onAccountsChanged
|
|
@listenTo FocusedPerspectiveStore, @_onFocusedPerspectiveChanged
|
|
@listenTo WorkspaceStore, @_updateSections
|
|
@listenTo OutboxStore, @_updateSections
|
|
@listenTo ThreadCountsStore, @_updateSections
|
|
@listenTo CategoryStore, @_updateSections
|
|
|
|
@configSubscription = NylasEnv.config.onDidChange(
|
|
'core.workspace.showUnreadForAllCategories',
|
|
@_updateSections
|
|
)
|
|
@configSubscription = NylasEnv.config.onDidChange(
|
|
'core.accountSidebarCollapsed',
|
|
@_updateSections
|
|
)
|
|
return
|
|
|
|
_registerCommands: (accounts = AccountStore.accounts()) =>
|
|
AccountCommands.registerCommands(accounts)
|
|
|
|
_registerMenuItems: (accounts = AccountStore.accounts()) =>
|
|
AccountCommands.registerMenuItems(accounts, @_focusedAccounts)
|
|
|
|
_onAccountsFocused: (accounts) =>
|
|
Actions.focusDefaultMailboxPerspectiveForAccounts(accounts)
|
|
@_focusedAccounts = accounts
|
|
@_registerMenuItems()
|
|
@_updateSections()
|
|
|
|
_onAccountsChanged: =>
|
|
accounts = AccountStore.accounts()
|
|
@_focusedAccounts = accounts
|
|
@_registerCommands()
|
|
@_registerMenuItems()
|
|
@_updateSections()
|
|
|
|
_onFocusedPerspectiveChanged: =>
|
|
currentIds = _.pluck(@_focusedAccounts, 'id')
|
|
newIds = FocusedPerspectiveStore.current().accountIds
|
|
newIdsNotInCurrent = _.difference(newIds, currentIds).length > 0
|
|
if newIdsNotInCurrent
|
|
@_focusedAccounts = newIds.map (id) -> AccountStore.accountForId(id)
|
|
@_registerMenuItems()
|
|
@_updateSections()
|
|
|
|
_updateSections: =>
|
|
accounts = @_focusedAccounts
|
|
multiAccount = accounts.length > 1
|
|
|
|
@_sections[Sections.Standard] = SidebarSection.standardSectionForAccounts(accounts)
|
|
@_sections[Sections.User] = accounts.map (acc) ->
|
|
opts = {}
|
|
if multiAccount
|
|
opts.title = acc.label
|
|
opts.collapsible = true
|
|
SidebarSection.forUserCategories(acc, opts)
|
|
@trigger()
|
|
|
|
|
|
module.exports = new SidebarStore()
|