Mailspring/internal_packages/account-sidebar/lib/sidebar-store.coffee

111 lines
3.1 KiB
CoffeeScript
Raw Normal View History

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: ->
NylasEnv.savedState.sidebarKeysCollapsed ?= {}
@_sections = {}
@_sections[Sections.Standard] = {}
@_sections[Sections.User] = []
@_focusedAccounts = FocusedPerspectiveStore.current().accountIds.map (id) ->
AccountStore.accountForId(id)
@_registerCommands()
@_registerMenuItems()
@_registerListeners()
@_updateSections()
accounts: ->
AccountStore.accounts()
focusedAccounts: ->
@_focusedAccounts
standardSection: ->
@_sections[Sections.Standard]
userSections: ->
@_sections[Sections.User]
_registerListeners: ->
@listenTo SidebarActions.focusAccounts, @_onAccountsFocused
@listenTo SidebarActions.setKeyCollapsed, @_onSetCollapsed
@listenTo AccountStore, @_onAccountsChanged
@listenTo FocusedPerspectiveStore, @_onFocusedPerspectiveChanged
@listenTo WorkspaceStore, @_updateSections
@listenTo OutboxStore, @_updateSections
@listenTo ThreadCountsStore, @_updateSections
@listenTo CategoryStore, @_updateSections
2016-01-26 08:36:56 +08:00
@configSubscription = NylasEnv.config.onDidChange(
'core.workspace.showUnreadForAllCategories',
@_updateSections
)
return
_onSetCollapsed: (key, collapsed) =>
NylasEnv.savedState.sidebarKeysCollapsed[key] = collapsed
@_updateSections()
_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()