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

119 lines
3.8 KiB
CoffeeScript
Raw Normal View History

_ = require 'underscore'
{WorkspaceStore,
MailboxPerspective,
FocusedPerspectiveStore,
SyncbackCategoryTask,
DestroyCategoryTask,
Actions} = require 'nylas-exports'
{OutlineViewItem} = require 'nylas-component-kit'
idForCategories = (categories) ->
2016-01-26 10:42:56 +08:00
_.pluck(categories, 'id').join('-')
countForItem = (perspective) ->
unreadCountEnabled = NylasEnv.config.get('core.workspace.showUnreadForAllCategories')
if perspective.isInbox() or unreadCountEnabled
return perspective.threadUnreadCount()
return 0
isItemSelected = (perspective) ->
2016-01-26 08:36:56 +08:00
(WorkspaceStore.rootSheet() in [WorkspaceStore.Sheet.Threads, WorkspaceStore.Sheet.Drafts] and
FocusedPerspectiveStore.current().isEqual(perspective))
isItemDeleted = (perspective) ->
_.any perspective.categories(), (c) -> c.isDeleted
isItemCollapsed = (id) ->
key = "core.accountSidebarCollapsed.#{id}"
NylasEnv.config.get(key)
toggleItemCollapsed = (item) ->
return unless item.children.length > 0
key = "core.accountSidebarCollapsed.#{item.id}"
NylasEnv.config.set(key, not item.collapsed)
onDeleteItem = (item) ->
# TODO Delete multiple categories at once
return if item.deleted is true
category = item.perspective.category()
return unless category
Actions.queueTask(new DestroyCategoryTask({category}))
onEditItem = (item, value) ->
return if item.deleted is true
category = item.perspective.category()
return unless category
Actions.queueTask(new SyncbackCategoryTask({category, displayName: value}))
class SidebarItem
2016-01-26 08:36:56 +08:00
@forPerspective: (id, perspective, opts = {}) ->
counterStyle = OutlineViewItem.CounterStyles.Alt if perspective.isInbox()
2016-01-26 08:36:56 +08:00
return _.extend({
id: id
2016-01-26 08:36:56 +08:00
name: perspective.name
count: countForItem(perspective)
iconName: perspective.iconName
2016-01-26 08:36:56 +08:00
children: []
perspective: perspective
className: if isItemDeleted(perspective) then 'deleted' else ''
selected: isItemSelected(perspective)
collapsed: isItemCollapsed(id) ? true
counterStyle: counterStyle
2016-01-26 08:36:56 +08:00
dataTransferType: 'nylas-thread-ids'
onDelete: if opts.deletable then onDeleteItem else undefined
onEdited: if opts.editable then onEditItem else undefined
onToggleCollapsed: toggleItemCollapsed
2016-01-28 03:45:02 +08:00
onDrop: (item, event) ->
jsonString = event.dataTransfer.getData(item.dataTransferType)
ids = null
try
ids = JSON.parse(jsonString);
catch err
console.error('OutlineViewItem onDrop: JSON parse #{err}');
return unless ids
item.perspective.applyToThreads(ids)
shouldAcceptDrop: (item, event) ->
2016-01-28 03:45:02 +08:00
target = item.perspective
current = FocusedPerspectiveStore.current()
return false unless target
return false if target.isEqual(current)
return false unless _.isEqual(target.accountIds, current.accountIds)
return false unless target.canApplyToThreads()
return item.dataTransferType in event.dataTransfer.types
onSelect: (item) ->
Actions.selectRootSheet(WorkspaceStore.Sheet.Threads)
Actions.focusMailboxPerspective(item.perspective)
2016-01-26 08:36:56 +08:00
}, opts)
@forCategories: (categories = [], opts = {}) ->
id = idForCategories(categories)
perspective = MailboxPerspective.forCategories(categories)
opts.deletable = true
opts.editable = true
@forPerspective(id, perspective, opts)
@forStarred: (accountIds, opts = {}) ->
perspective = MailboxPerspective.forStarred(accountIds)
id = 'Starred'
id += "-#{opts.name}" if opts.name
@forPerspective(id, perspective, opts)
2016-01-26 08:36:56 +08:00
@forDrafts: (accountIds, opts = {}) ->
perspective = MailboxPerspective.forDrafts(accountIds)
id = "Drafts-#{opts.name}"
opts.onSelect = ->
Actions.focusMailboxPerspective(perspective)
Actions.selectRootSheet(WorkspaceStore.Sheet.Drafts)
@forPerspective(id, perspective, opts)
module.exports = SidebarItem