mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 04:02:35 +08:00
fc4b3b56d7
Summary: Fixes: T1334 remove final InboxApp references move out all underscore-plus methods Mass find and replace of underscore-plus sed -i '' -- 's/underscore-plus/underscore/g' **/*.coffee sed -i '' -- 's/underscore-plus/underscore/g' **/*.cjsx Test Plan: edgehill --test Reviewers: bengotow Reviewed By: bengotow Differential Revision: https://phab.nylas.com/D1534
67 lines
2.3 KiB
CoffeeScript
67 lines
2.3 KiB
CoffeeScript
_ = require 'underscore'
|
|
{Actions, DatabaseStore, Thread, Tag} = require 'nylas-exports'
|
|
|
|
module.exports =
|
|
activate: ->
|
|
@unlisteners = []
|
|
@unlisteners.push Actions.didPassivelyReceiveNewModels.listen(@_onNewMailReceived, @)
|
|
@activationTime = Date.now()
|
|
|
|
deactivate: ->
|
|
fn() for fn in @unlisteners
|
|
|
|
serialize: ->
|
|
|
|
_onNewMailReceived: (incoming) ->
|
|
new Promise (resolve, reject) =>
|
|
incomingMessages = incoming['message'] ? []
|
|
incomingThreads = incoming['thread'] ? []
|
|
|
|
# Filter for new messages
|
|
newUnread = _.filter incomingMessages, (msg) =>
|
|
msg.unread is true and msg.date?.valueOf() >= @activationTime
|
|
|
|
return resolve() if newUnread.length is 0
|
|
|
|
# For each message, find it's corresponding thread. First, look to see
|
|
# if it's already in the `incoming` payload (sent via delta sync
|
|
# at the same time as the message.) If it's not, try loading it from
|
|
# the local cache.
|
|
#
|
|
# Note we may receive multiple unread msgs for the same thread.
|
|
# Using a map and ?= to avoid repeating work.
|
|
threads = {}
|
|
for msg in newUnread
|
|
threads[msg.threadId] ?= _.findWhere(incomingThreads, {id: msg.threadId})
|
|
threads[msg.threadId] ?= DatabaseStore.find(Thread, msg.threadId)
|
|
|
|
Promise.props(threads).then (threads) ->
|
|
|
|
# Filter new unread messages to just the ones in the inbox
|
|
newUnreadInInbox = _.filter newUnread, (msg) ->
|
|
threads[msg.threadId]?.hasTagId('inbox')
|
|
|
|
if newUnreadInInbox.length is 1
|
|
msg = newUnreadInInbox.pop()
|
|
body = msg.subject
|
|
if not body or body.length is 0
|
|
body = msg.snippet
|
|
from = msg.from[0]?.displayName() ? "Unknown"
|
|
notif = new Notification(from, {
|
|
body: body
|
|
tag: 'unread-update'
|
|
})
|
|
notif.onclick = ->
|
|
atom.displayWindow()
|
|
Actions.focusTag(new Tag(name: "inbox", id: "inbox"))
|
|
Actions.focusInCollection(collection: 'thread', item: threads[msg.threadId])
|
|
|
|
if newUnreadInInbox.length > 1
|
|
new Notification("#{newUnreadInInbox.length} Unread Messages", {
|
|
tag: 'unread-update'
|
|
})
|
|
|
|
if newUnreadInInbox.length > 0
|
|
atom.playSound('new_mail.ogg')
|
|
|
|
resolve()
|