2020-07-12 14:06:45 -07:00
|
|
|
import { showDesktopNotification } from '../desktop_notification_utils/desktop_notification_utils.js'
|
|
|
|
|
|
|
|
export const maybeShowChatNotification = (store, chat) => {
|
|
|
|
if (!chat.lastMessage) return
|
2020-07-13 05:48:19 -07:00
|
|
|
if (store.rootState.chats.currentChatId === chat.id && !document.hidden) return
|
2020-10-27 01:03:04 -07:00
|
|
|
if (store.rootState.users.currentUser.id === chat.lastMessage.account_id) return
|
2020-07-12 14:06:45 -07:00
|
|
|
|
|
|
|
const opts = {
|
|
|
|
tag: chat.lastMessage.id,
|
|
|
|
title: chat.account.name,
|
|
|
|
icon: chat.account.profile_image_url,
|
|
|
|
body: chat.lastMessage.content
|
|
|
|
}
|
|
|
|
|
|
|
|
if (chat.lastMessage.attachment && chat.lastMessage.attachment.type === 'image') {
|
|
|
|
opts.image = chat.lastMessage.attachment.preview_url
|
|
|
|
}
|
|
|
|
|
|
|
|
showDesktopNotification(store.rootState, opts)
|
|
|
|
}
|