akkoma-fe/src/modules/statuses.js

442 lines
14 KiB
JavaScript
Raw Normal View History

import { remove, slice, each, find, maxBy, minBy, merge, last, isArray } from 'lodash'
2016-10-30 15:12:35 +00:00
import apiService from '../services/api/api.service.js'
2016-11-15 09:35:16 +00:00
// import parse from '../services/status_parser/status_parser.js'
2016-10-26 17:03:55 +00:00
const emptyTl = () => ({
statuses: [],
statusesObject: {},
faves: [],
visibleStatuses: [],
visibleStatusesObject: {},
newStatusCount: 0,
maxId: 0,
minVisibleId: 0,
loading: false,
followers: [],
friends: [],
userId: 0,
flushMarker: 0
})
export const defaultState = {
2016-10-26 17:03:55 +00:00
allStatuses: [],
2017-03-08 20:04:48 +00:00
allStatusesObject: {},
2016-10-26 17:03:55 +00:00
maxId: 0,
notifications: {
desktopNotificationSilence: true,
maxId: 0,
minId: Number.POSITIVE_INFINITY,
2018-08-16 10:12:31 +00:00
data: [],
2018-12-26 09:19:25 +00:00
idStore: {},
2018-12-18 22:55:53 +00:00
error: false
},
2016-11-25 15:56:08 +00:00
favorites: new Set(),
error: false,
2016-10-26 17:03:55 +00:00
timelines: {
mentions: emptyTl(),
public: emptyTl(),
user: emptyTl(),
favorites: emptyTl(),
publicAndExternal: emptyTl(),
friends: emptyTl(),
tag: emptyTl(),
dms: emptyTl()
2016-10-26 17:03:55 +00:00
}
}
2016-11-15 09:35:16 +00:00
export const prepareStatus = (status) => {
// Set deleted flag
status.deleted = false
2016-12-01 17:05:20 +00:00
// To make the array reactive
status.attachments = status.attachments || []
2016-11-15 09:35:16 +00:00
return status
}
const visibleNotificationTypes = (rootState) => {
return [
rootState.config.notificationVisibility.likes && 'like',
rootState.config.notificationVisibility.mentions && 'mention',
rootState.config.notificationVisibility.repeats && 'repeat',
rootState.config.notificationVisibility.follows && 'follow'
].filter(_ => _)
}
2017-03-08 20:04:48 +00:00
const mergeOrAdd = (arr, obj, item) => {
const oldItem = obj[item.id]
if (oldItem) {
// We already have this, so only merge the new info.
merge(oldItem, item)
2016-12-01 17:05:20 +00:00
// Reactivity fix.
oldItem.attachments.splice(oldItem.attachments.length)
2016-11-19 11:39:10 +00:00
return {item: oldItem, new: false}
} else {
// This is a new item, prepare it
prepareStatus(item)
arr.push(item)
2017-03-08 20:04:48 +00:00
obj[item.id] = item
2016-11-19 11:39:10 +00:00
return {item, new: true}
}
}
const sortById = (a, b) => {
const seqA = Number(a.id)
const seqB = Number(b.id)
const isSeqA = Number.isNaN(seqA)
const isSeqB = Number.isNaN(seqB)
if (isSeqA && isSeqB) {
return seqA > seqB ? -1 : 1
} else if (isSeqA && !isSeqB) {
return 1
} else if (!isSeqA && isSeqB) {
return -1
} else {
return a.id > b.id ? -1 : 1
}
}
2016-12-03 11:43:21 +00:00
const sortTimeline = (timeline) => {
timeline.visibleStatuses = timeline.visibleStatuses.sort(sortById)
timeline.statuses = timeline.statuses.sort(sortById)
timeline.minVisibleId = (last(timeline.visibleStatuses) || {}).id
2016-12-03 11:43:21 +00:00
return timeline
}
const addNewStatuses = (state, { statuses, showImmediately = false, timeline, user = {}, noIdUpdate = false, userId }) => {
// Sanity check
if (!isArray(statuses)) {
return false
}
2016-11-21 15:33:08 +00:00
const allStatuses = state.allStatuses
2017-03-08 20:04:48 +00:00
const allStatusesObject = state.allStatusesObject
const timelineObject = state.timelines[timeline]
2016-11-15 09:35:16 +00:00
const maxNew = statuses.length > 0 ? maxBy(statuses, 'id').id : 0
const older = timeline && maxNew < timelineObject.maxId
if (timeline && !noIdUpdate && statuses.length > 0 && !older) {
timelineObject.maxId = maxNew
2016-11-21 15:33:08 +00:00
}
// This makes sure that user timeline won't get data meant for other
// user. I.e. opening different user profiles makes request which could
// return data late after user already viewing different user profile
if (timeline === 'user' && timelineObject.userId !== userId) {
return
}
const addStatus = (data, showImmediately, addToTimeline = true) => {
const result = mergeOrAdd(allStatuses, allStatusesObject, data)
const status = result.item
2016-11-21 15:33:08 +00:00
if (result.new) {
2016-12-03 11:43:21 +00:00
// We are mentioned in a post
if (status.type === 'status' && find(status.attentions, { id: user.id })) {
2016-12-03 11:43:21 +00:00
const mentions = state.timelines.mentions
// Add the mention to the mentions timeline
if (timelineObject !== mentions) {
2017-03-08 20:04:48 +00:00
mergeOrAdd(mentions.statuses, mentions.statusesObject, status)
mentions.newStatusCount += 1
2016-12-03 11:43:21 +00:00
sortTimeline(mentions)
}
2016-11-27 18:11:05 +00:00
}
2018-11-25 16:11:57 +00:00
if (status.visibility === 'direct') {
const dms = state.timelines.dms
mergeOrAdd(dms.statuses, dms.statusesObject, status)
dms.newStatusCount += 1
sortTimeline(dms)
}
2016-11-21 15:33:08 +00:00
}
// Decide if we should treat the status as new for this timeline.
let resultForCurrentTimeline
2016-11-21 15:33:08 +00:00
// Some statuses should only be added to the global status repository.
if (timeline && addToTimeline) {
2017-03-08 20:04:48 +00:00
resultForCurrentTimeline = mergeOrAdd(timelineObject.statuses, timelineObject.statusesObject, status)
}
2016-11-18 15:05:04 +00:00
if (timeline && showImmediately) {
2016-11-21 15:33:08 +00:00
// Add it directly to the visibleStatuses, don't change
// newStatusCount
2017-03-08 20:04:48 +00:00
mergeOrAdd(timelineObject.visibleStatuses, timelineObject.visibleStatusesObject, status)
} else if (timeline && addToTimeline && resultForCurrentTimeline.new) {
2016-11-21 15:33:08 +00:00
// Just change newStatuscount
timelineObject.newStatusCount += 1
}
2016-11-21 15:33:08 +00:00
return status
}
2018-08-16 10:12:31 +00:00
const favoriteStatus = (favorite, counter) => {
const status = find(allStatuses, { id: favorite.in_reply_to_status_id })
2016-11-21 15:33:08 +00:00
if (status) {
2016-11-25 15:56:08 +00:00
// This is our favorite, so the relevant bit.
if (favorite.user.id === user.id) {
status.favorited = true
} else {
status.fave_num += 1
2016-11-25 15:56:08 +00:00
}
}
2016-11-21 15:33:08 +00:00
return status
}
2016-11-21 15:33:08 +00:00
const processors = {
'status': (status) => {
addStatus(status, showImmediately)
},
'retweet': (status) => {
// RetweetedStatuses are never shown immediately
const retweetedStatus = addStatus(status.retweeted_status, false, false)
let retweet
// If the retweeted status is already there, don't add the retweet
// to the timeline.
if (timeline && find(timelineObject.statuses, (s) => {
if (s.retweeted_status) {
return s.id === retweetedStatus.id || s.retweeted_status.id === retweetedStatus.id
} else {
return s.id === retweetedStatus.id
}
})) {
// Already have it visible (either as the original or another RT), don't add to timeline, don't show.
2016-11-21 15:33:08 +00:00
retweet = addStatus(status, false, false)
} else {
retweet = addStatus(status, showImmediately)
}
2016-11-21 15:33:08 +00:00
retweet.retweeted_status = retweetedStatus
},
'favorite': (favorite) => {
2016-11-25 15:56:08 +00:00
// Only update if this is a new favorite.
// Ignore our own favorites because we get info about likes as response to like request
if (!state.favorites.has(favorite.id)) {
2016-11-25 15:56:08 +00:00
state.favorites.add(favorite.id)
favoriteStatus(favorite)
}
2016-11-21 15:33:08 +00:00
},
'deletion': (deletion) => {
const uri = deletion.uri
// Remove possible notification
const status = find(allStatuses, {uri})
if (!status) {
return
}
remove(state.notifications.data, ({action: {id}}) => id === status.id)
remove(allStatuses, { uri })
if (timeline) {
remove(timelineObject.statuses, { uri })
remove(timelineObject.visibleStatuses, { uri })
}
2016-11-21 15:33:08 +00:00
},
'follow': (follow) => {
// NOOP, it is known status but we don't do anything about it for now
},
2016-11-21 15:33:08 +00:00
'default': (unknown) => {
2016-11-27 17:54:51 +00:00
console.log('unknown status type')
2016-11-21 15:33:08 +00:00
console.log(unknown)
}
2016-11-21 15:33:08 +00:00
}
2016-11-21 15:33:08 +00:00
each(statuses, (status) => {
const type = status.type
2016-11-21 15:33:08 +00:00
const processor = processors[type] || processors['default']
processor(status)
})
// Keep the visible statuses sorted
if (timeline) {
2016-12-03 11:43:21 +00:00
sortTimeline(timelineObject)
if ((older || timelineObject.minVisibleId <= 0) && statuses.length > 0) {
timelineObject.minVisibleId = minBy(statuses, 'id').id
}
}
2016-11-21 15:33:08 +00:00
}
const addNewNotifications = (state, { dispatch, notifications, older, visibleNotificationTypes }) => {
const allStatuses = state.allStatuses
const allStatusesObject = state.allStatusesObject
each(notifications, (notification) => {
notification.action = mergeOrAdd(allStatuses, allStatusesObject, notification.action).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
if (!state.notifications.idStore.hasOwnProperty(notification.id)) {
2019-01-16 14:30:47 +00:00
state.notifications.maxId = notification.id > state.notifications.maxId
? notification.id
: state.notifications.maxId
state.notifications.minId = notification.id < state.notifications.minId
? notification.id
: state.notifications.minId
state.notifications.data.push(notification)
state.notifications.idStore[notification.id] = notification
if ('Notification' in window && window.Notification.permission === 'granted') {
const notifObj = {}
const action = notification.action
const title = action.user.name
notifObj.icon = action.user.profile_image_url
notifObj.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...
if (action.attachments && action.attachments.length > 0 && !action.nsfw &&
action.attachments[0].mimetype.startsWith('image/')) {
notifObj.image = action.attachments[0].url
}
if (notification.fresh && !state.notifications.desktopNotificationSilence && visibleNotificationTypes.includes(notification.ntype)) {
let notification = new window.Notification(title, notifObj)
// Chrome is known for not closing notifications automatically
// according to MDN, anyway.
setTimeout(notification.close.bind(notification), 5000)
}
}
}
})
}
2016-11-21 15:33:08 +00:00
export const mutations = {
addNewStatuses,
addNewNotifications,
showNewStatuses (state, { timeline }) {
const oldTimeline = (state.timelines[timeline])
oldTimeline.newStatusCount = 0
oldTimeline.visibleStatuses = slice(oldTimeline.statuses, 0, 50)
oldTimeline.minVisibleId = last(oldTimeline.visibleStatuses).id
2017-03-08 20:04:48 +00:00
oldTimeline.visibleStatusesObject = {}
each(oldTimeline.visibleStatuses, (status) => { oldTimeline.visibleStatusesObject[status.id] = status })
},
2017-06-12 14:30:56 +00:00
clearTimeline (state, { timeline }) {
state.timelines[timeline] = emptyTl()
2017-06-12 14:30:56 +00:00
},
setFavorited (state, { status, value }) {
2017-03-08 20:04:48 +00:00
const newStatus = state.allStatusesObject[status.id]
newStatus.favorited = value
},
setFavoritedConfirm (state, { status }) {
const newStatus = state.allStatusesObject[status.id]
newStatus.favorited = status.favorited
newStatus.fave_num = status.fave_num
},
2016-11-13 16:09:16 +00:00
setRetweeted (state, { status, value }) {
2017-03-08 20:04:48 +00:00
const newStatus = state.allStatusesObject[status.id]
2016-11-13 16:09:16 +00:00
newStatus.repeated = value
},
setDeleted (state, { status }) {
2017-03-08 20:04:48 +00:00
const newStatus = state.allStatusesObject[status.id]
newStatus.deleted = true
},
setLoading (state, { timeline, value }) {
state.timelines[timeline].loading = value
},
setNsfw (state, { id, nsfw }) {
2017-03-08 20:04:48 +00:00
const newStatus = state.allStatusesObject[id]
2016-11-07 17:47:38 +00:00
newStatus.nsfw = nsfw
},
setError (state, { value }) {
state.error = value
},
setNotificationsError (state, { value }) {
2018-08-20 17:45:54 +00:00
state.notifications.error = value
},
setNotificationsSilence (state, { value }) {
state.notifications.desktopNotificationSilence = value
},
markNotificationsAsSeen (state) {
each(state.notifications.data, (notification) => {
notification.seen = true
})
},
queueFlush (state, { timeline, id }) {
state.timelines[timeline].flushMarker = id
}
}
2016-10-26 17:03:55 +00:00
const statuses = {
state: defaultState,
2016-10-30 15:12:35 +00:00
actions: {
addNewStatuses ({ rootState, commit }, { statuses, showImmediately = false, timeline = false, noIdUpdate = false, userId }) {
commit('addNewStatuses', { statuses, showImmediately, timeline, noIdUpdate, user: rootState.users.currentUser, userId })
},
2018-08-16 10:12:31 +00:00
addNewNotifications ({ rootState, commit, dispatch }, { notifications, older }) {
commit('addNewNotifications', { visibleNotificationTypes: visibleNotificationTypes(rootState), dispatch, notifications, older })
},
setError ({ rootState, commit }, { value }) {
commit('setError', { value })
},
setNotificationsError ({ rootState, commit }, { value }) {
commit('setNotificationsError', { value })
},
setNotificationsSilence ({ rootState, commit }, { value }) {
commit('setNotificationsSilence', { value })
},
deleteStatus ({ rootState, commit }, status) {
commit('setDeleted', { status })
apiService.deleteStatus({ id: status.id, credentials: rootState.users.currentUser.credentials })
},
2016-10-30 15:12:35 +00:00
favorite ({ rootState, commit }, status) {
// Optimistic favoriting...
commit('setFavorited', { status, value: true })
apiService.favorite({ id: status.id, credentials: rootState.users.currentUser.credentials })
.then(response => {
if (response.ok) {
return response.json()
} else {
return {}
}
})
.then(status => {
commit('setFavoritedConfirm', { status })
})
2016-10-30 15:12:35 +00:00
},
unfavorite ({ rootState, commit }, status) {
// Optimistic favoriting...
commit('setFavorited', { status, value: false })
apiService.unfavorite({ id: status.id, credentials: rootState.users.currentUser.credentials })
.then(response => {
if (response.ok) {
return response.json()
} else {
return {}
}
})
.then(status => {
commit('setFavoritedConfirm', { status })
})
2016-11-13 16:09:16 +00:00
},
retweet ({ rootState, commit }, status) {
// Optimistic retweeting...
commit('setRetweeted', { status, value: true })
apiService.retweet({ id: status.id, credentials: rootState.users.currentUser.credentials })
},
2018-06-14 21:17:36 +00:00
unretweet ({ rootState, commit }, status) {
commit('setRetweeted', { status, value: false })
apiService.unretweet({ id: status.id, credentials: rootState.users.currentUser.credentials })
},
queueFlush ({ rootState, commit }, { timeline, id }) {
commit('queueFlush', { timeline, id })
},
markNotificationsAsSeen ({ rootState, commit }) {
commit('markNotificationsAsSeen')
apiService.markNotificationsAsSeen({
id: rootState.statuses.notifications.maxId,
credentials: rootState.users.currentUser.credentials
})
2016-10-30 15:12:35 +00:00
}
},
mutations
2016-10-26 17:03:55 +00:00
}
export default statuses