forked from AkkomaGang/akkoma-fe
notifications now also undergo some parsing, hypothetically could use MastoAPI
notifications, maybe.
This commit is contained in:
parent
e0fd6d12ed
commit
790fcf37d2
4 changed files with 53 additions and 32 deletions
|
@ -250,42 +250,33 @@ const addNewNotifications = (state, { dispatch, notifications, older, visibleNot
|
||||||
const allStatuses = state.allStatuses
|
const allStatuses = state.allStatuses
|
||||||
const allStatusesObject = state.allStatusesObject
|
const allStatusesObject = state.allStatusesObject
|
||||||
each(notifications, (notification) => {
|
each(notifications, (notification) => {
|
||||||
const result = mergeOrAdd(allStatuses, allStatusesObject, notification.notice)
|
notification.action = mergeOrAdd(allStatuses, allStatusesObject, notification.action).item
|
||||||
const action = result.item
|
notification.status = notification.status && mergeOrAdd(allStatuses, allStatusesObject, notification.status).item
|
||||||
|
|
||||||
// Only add a new notification if we don't have one for the same action
|
// Only add a new notification if we don't have one for the same action
|
||||||
if (!find(state.notifications.data, (oldNotification) => oldNotification.action.id === action.id)) {
|
if (!state.notifications.idStore.hasOwnProperty(notification.id)) {
|
||||||
state.notifications.maxId = Math.max(notification.id, state.notifications.maxId)
|
state.notifications.maxId = Math.max(notification.id, state.notifications.maxId)
|
||||||
state.notifications.minId = Math.min(notification.id, state.notifications.minId)
|
state.notifications.minId = Math.min(notification.id, state.notifications.minId)
|
||||||
|
|
||||||
const fresh = !notification.is_seen
|
console.log('AWOOOOOO', notification)
|
||||||
const status = notification.ntype === 'like'
|
state.notifications.data.push(notification)
|
||||||
? action.favorited_status
|
state.notifications.idStore[notification.id] = notification
|
||||||
: action
|
|
||||||
|
|
||||||
const result = {
|
|
||||||
type: notification.ntype,
|
|
||||||
status,
|
|
||||||
action,
|
|
||||||
seen: !fresh
|
|
||||||
}
|
|
||||||
|
|
||||||
state.notifications.data.push(result)
|
|
||||||
state.notifications.idStore[notification.id] = result
|
|
||||||
|
|
||||||
if ('Notification' in window && window.Notification.permission === 'granted') {
|
if ('Notification' in window && window.Notification.permission === 'granted') {
|
||||||
|
const notifObj = {}
|
||||||
|
const action = notification.action
|
||||||
const title = action.user.name
|
const title = action.user.name
|
||||||
const result = {}
|
notifObj.icon = action.user.profile_image_url
|
||||||
result.icon = action.user.profile_image_url
|
notifObj.body = action.text // there's a problem that it doesn't put a space before links tho
|
||||||
result.body = action.text // there's a problem that it doesn't put a space before links tho
|
|
||||||
|
|
||||||
// Shows first attached non-nsfw image, if any. Should add configuration for this somehow...
|
// Shows first attached non-nsfw image, if any. Should add configuration for this somehow...
|
||||||
if (action.attachments && action.attachments.length > 0 && !action.nsfw &&
|
if (action.attachments && action.attachments.length > 0 && !action.nsfw &&
|
||||||
action.attachments[0].mimetype.startsWith('image/')) {
|
action.attachments[0].mimetype.startsWith('image/')) {
|
||||||
result.image = action.attachments[0].url
|
notifObj.image = action.attachments[0].url
|
||||||
}
|
}
|
||||||
|
|
||||||
if (fresh && !state.notifications.desktopNotificationSilence && visibleNotificationTypes.includes(notification.ntype)) {
|
if (notification.fresh && !state.notifications.desktopNotificationSilence && visibleNotificationTypes.includes(notification.ntype)) {
|
||||||
let notification = new window.Notification(title, result)
|
let notification = new window.Notification(title, notifObj)
|
||||||
// Chrome is known for not closing notifications automatically
|
// Chrome is known for not closing notifications automatically
|
||||||
// according to MDN, anyway.
|
// according to MDN, anyway.
|
||||||
setTimeout(notification.close.bind(notification), 5000)
|
setTimeout(notification.close.bind(notification), 5000)
|
||||||
|
|
|
@ -68,6 +68,7 @@ export const mutations = {
|
||||||
},
|
},
|
||||||
setUserForNotification (state, notification) {
|
setUserForNotification (state, notification) {
|
||||||
notification.action.user = state.usersObject[notification.action.user.id]
|
notification.action.user = state.usersObject[notification.action.user.id]
|
||||||
|
notification.from_profile = state.usersObject[notification.action.user.id]
|
||||||
},
|
},
|
||||||
setColor (state, { user: { id }, highlighted }) {
|
setColor (state, { user: { id }, highlighted }) {
|
||||||
const user = state.usersObject[id]
|
const user = state.usersObject[id]
|
||||||
|
@ -149,8 +150,8 @@ const users = {
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
addNewNotifications (store, { notifications }) {
|
addNewNotifications (store, { notifications }) {
|
||||||
const users = compact(map(notifications, 'from_profile'))
|
const users = map(notifications, 'from_profile')
|
||||||
const notificationIds = compact(notifications.map(_ => String(_.id)))
|
const notificationIds = notifications.map(_ => String(_.id))
|
||||||
store.commit('addNewUsers', users)
|
store.commit('addNewUsers', users)
|
||||||
|
|
||||||
const notificationsObject = store.rootState.statuses.notifications.idStore
|
const notificationsObject = store.rootState.statuses.notifications.idStore
|
||||||
|
|
|
@ -44,7 +44,7 @@ const SUGGESTIONS_URL = '/api/v1/suggestions'
|
||||||
const MASTODON_USER_FAVORITES_TIMELINE_URL = '/api/v1/favourites'
|
const MASTODON_USER_FAVORITES_TIMELINE_URL = '/api/v1/favourites'
|
||||||
|
|
||||||
import { each, map } from 'lodash'
|
import { each, map } from 'lodash'
|
||||||
import { parseStatus, parseUser } from '../status_normalizer/status_normalizer.service.js'
|
import { parseStatus, parseUser, parseNotification } from '../status_normalizer/status_normalizer.service.js'
|
||||||
import 'whatwg-fetch'
|
import 'whatwg-fetch'
|
||||||
|
|
||||||
const oldfetch = window.fetch
|
const oldfetch = window.fetch
|
||||||
|
@ -347,7 +347,7 @@ const fetchTimeline = ({timeline, credentials, since = false, until = false, use
|
||||||
throw new Error('Error fetching timeline')
|
throw new Error('Error fetching timeline')
|
||||||
})
|
})
|
||||||
.then((data) => data.json())
|
.then((data) => data.json())
|
||||||
.then((data) => data.map(isNotifications ? _ => _ : parseStatus))
|
.then((data) => data.map(isNotifications ? parseNotification : parseStatus))
|
||||||
}
|
}
|
||||||
|
|
||||||
const verifyCredentials = (user) => {
|
const verifyCredentials = (user) => {
|
||||||
|
|
|
@ -23,10 +23,6 @@ const qvitterStatusType = (status) => {
|
||||||
return 'unknown'
|
return 'unknown'
|
||||||
}
|
}
|
||||||
|
|
||||||
const isMastoAPI = (status) => {
|
|
||||||
return status.hasOwnProperty('account')
|
|
||||||
}
|
|
||||||
|
|
||||||
export const parseUser = (data) => {
|
export const parseUser = (data) => {
|
||||||
const output = {}
|
const output = {}
|
||||||
const masto = data.hasOwnProperty('acct')
|
const masto = data.hasOwnProperty('acct')
|
||||||
|
@ -95,6 +91,7 @@ export const parseUser = (data) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const parseAttachment = (data) => {
|
const parseAttachment = (data) => {
|
||||||
|
// TODO A little bit messy ATM but works with both APIs
|
||||||
return {
|
return {
|
||||||
...data,
|
...data,
|
||||||
mimetype: data.mimetype || data.type
|
mimetype: data.mimetype || data.type
|
||||||
|
@ -103,11 +100,12 @@ const parseAttachment = (data) => {
|
||||||
|
|
||||||
export const parseStatus = (data) => {
|
export const parseStatus = (data) => {
|
||||||
const output = {}
|
const output = {}
|
||||||
const masto = isMastoAPI(data)
|
const masto = data.hasOwnProperty('account')
|
||||||
output.raw = data
|
output.raw = data
|
||||||
|
|
||||||
console.log(masto ? 'MAMMAL' : 'OLD SHIT')
|
console.log(masto ? 'MAMMAL' : 'OLD SHIT')
|
||||||
console.log(data)
|
console.log(data)
|
||||||
|
|
||||||
if (masto) {
|
if (masto) {
|
||||||
output.favorited = data.favourited
|
output.favorited = data.favourited
|
||||||
output.fave_num = data.favourites_count
|
output.fave_num = data.favourites_count
|
||||||
|
@ -172,6 +170,37 @@ export const parseStatus = (data) => {
|
||||||
return output
|
return output
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const parseNotification = (data) => {
|
||||||
|
const mastoDict = {
|
||||||
|
'favourite': 'like',
|
||||||
|
'reblog': 'repeat'
|
||||||
|
}
|
||||||
|
const masto = !data.hasOwnProperty('ntype')
|
||||||
|
const output = {}
|
||||||
|
|
||||||
|
if (masto) {
|
||||||
|
output.type = mastoDict[data.type] || data.type
|
||||||
|
output.seen = null // missing
|
||||||
|
output.status = parseStatus(data.status)
|
||||||
|
output.action = null // missing
|
||||||
|
output.from_profile = parseUser(data.account)
|
||||||
|
} else {
|
||||||
|
const parsedNotice = parseStatus(data.notice)
|
||||||
|
output.type = data.ntype
|
||||||
|
output.seen = data.is_seen
|
||||||
|
output.status = output.type === 'like'
|
||||||
|
? parseStatus(data.notice.favorited_status)
|
||||||
|
: parsedNotice
|
||||||
|
output.action = parsedNotice
|
||||||
|
output.from_profile = parseUser(data.from_profile)
|
||||||
|
}
|
||||||
|
|
||||||
|
output.created_at = new Date(data.created_at)
|
||||||
|
output.id = data.id
|
||||||
|
|
||||||
|
return output
|
||||||
|
}
|
||||||
|
|
||||||
const isNsfw = (status) => {
|
const isNsfw = (status) => {
|
||||||
const nsfwRegex = /#nsfw/i
|
const nsfwRegex = /#nsfw/i
|
||||||
return (status.tags || []).includes('nsfw') || !!status.text.match(nsfwRegex)
|
return (status.tags || []).includes('nsfw') || !!status.text.match(nsfwRegex)
|
||||||
|
|
Loading…
Reference in a new issue