2019-04-24 18:34:55 +00:00
|
|
|
import { remove, slice, each, findIndex, find, maxBy, minBy, merge, first, last, isArray, omitBy } from 'lodash'
|
2019-03-21 22:05:20 +00:00
|
|
|
import { set } from 'vue'
|
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
|
|
|
|
2019-01-28 18:15:00 +00:00
|
|
|
const emptyTl = (userId = 0) => ({
|
2018-04-13 19:35:55 +00:00
|
|
|
statuses: [],
|
|
|
|
statusesObject: {},
|
|
|
|
faves: [],
|
|
|
|
visibleStatuses: [],
|
|
|
|
visibleStatusesObject: {},
|
|
|
|
newStatusCount: 0,
|
|
|
|
maxId: 0,
|
2019-02-28 01:45:08 +00:00
|
|
|
minId: 0,
|
2018-04-13 19:35:55 +00:00
|
|
|
minVisibleId: 0,
|
|
|
|
loading: false,
|
|
|
|
followers: [],
|
|
|
|
friends: [],
|
2019-01-28 18:15:00 +00:00
|
|
|
userId,
|
2019-01-17 18:46:03 +00:00
|
|
|
flushMarker: 0
|
|
|
|
})
|
2018-04-13 19:35:55 +00:00
|
|
|
|
2019-04-03 16:04:46 +00:00
|
|
|
const emptyNotifications = () => ({
|
|
|
|
desktopNotificationSilence: true,
|
|
|
|
maxId: 0,
|
|
|
|
minId: Number.POSITIVE_INFINITY,
|
|
|
|
data: [],
|
|
|
|
idStore: {},
|
|
|
|
loading: false,
|
2019-04-03 16:08:23 +00:00
|
|
|
error: false
|
2019-04-03 16:04:46 +00:00
|
|
|
})
|
|
|
|
|
2019-02-28 19:27:47 +00:00
|
|
|
export const defaultState = () => ({
|
2016-10-26 17:03:55 +00:00
|
|
|
allStatuses: [],
|
2017-03-08 20:04:48 +00:00
|
|
|
allStatusesObject: {},
|
2019-04-11 16:46:06 +00:00
|
|
|
conversationsObject: {},
|
2016-10-26 17:03:55 +00:00
|
|
|
maxId: 0,
|
2019-04-03 16:04:46 +00:00
|
|
|
notifications: emptyNotifications(),
|
2016-11-25 15:56:08 +00:00
|
|
|
favorites: new Set(),
|
2017-03-09 12:38:32 +00:00
|
|
|
error: false,
|
2016-10-26 17:03:55 +00:00
|
|
|
timelines: {
|
2019-01-17 18:46:03 +00:00
|
|
|
mentions: emptyTl(),
|
|
|
|
public: emptyTl(),
|
|
|
|
user: emptyTl(),
|
|
|
|
favorites: emptyTl(),
|
2019-01-24 10:48:40 +00:00
|
|
|
media: emptyTl(),
|
2019-01-17 18:46:03 +00:00
|
|
|
publicAndExternal: emptyTl(),
|
|
|
|
friends: emptyTl(),
|
|
|
|
tag: emptyTl(),
|
2019-04-24 17:56:53 +00:00
|
|
|
dms: emptyTl()
|
2016-10-26 17:03:55 +00:00
|
|
|
}
|
2019-02-28 19:27:47 +00:00
|
|
|
})
|
2016-10-26 17:03:55 +00:00
|
|
|
|
2016-11-15 09:35:16 +00:00
|
|
|
export const prepareStatus = (status) => {
|
2016-12-04 17:30:00 +00:00
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
2018-08-28 18:21:29 +00:00
|
|
|
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]
|
|
|
|
|
2016-11-18 18:48:02 +00:00
|
|
|
if (oldItem) {
|
|
|
|
// We already have this, so only merge the new info.
|
2019-03-07 22:35:30 +00:00
|
|
|
// We ignore null values to avoid overwriting existing properties with missing data
|
2019-03-11 00:17:49 +00:00
|
|
|
// we also skip 'user' because that is handled by users module
|
2019-03-07 22:35:30 +00:00
|
|
|
merge(oldItem, omitBy(item, (v, k) => v === null || k === 'user'))
|
2016-12-01 17:05:20 +00:00
|
|
|
// Reactivity fix.
|
|
|
|
oldItem.attachments.splice(oldItem.attachments.length)
|
2019-07-05 07:02:14 +00:00
|
|
|
return { item: oldItem, new: false }
|
2016-11-18 18:48:02 +00:00
|
|
|
} else {
|
|
|
|
// This is a new item, prepare it
|
|
|
|
prepareStatus(item)
|
|
|
|
arr.push(item)
|
2019-03-21 22:05:20 +00:00
|
|
|
set(obj, item.id, item)
|
2019-07-05 07:02:14 +00:00
|
|
|
return { item, new: true }
|
2016-11-18 18:48:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-24 21:49:37 +00:00
|
|
|
const sortById = (a, b) => {
|
|
|
|
const seqA = Number(a.id)
|
|
|
|
const seqB = Number(b.id)
|
2019-01-24 22:39:19 +00:00
|
|
|
const isSeqA = !Number.isNaN(seqA)
|
|
|
|
const isSeqB = !Number.isNaN(seqB)
|
2019-01-24 21:49:37 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
2019-01-10 23:40:17 +00:00
|
|
|
|
2016-12-03 11:43:21 +00:00
|
|
|
const sortTimeline = (timeline) => {
|
2019-01-10 23:40:17 +00:00
|
|
|
timeline.visibleStatuses = timeline.visibleStatuses.sort(sortById)
|
|
|
|
timeline.statuses = timeline.statuses.sort(sortById)
|
2018-04-14 19:13:28 +00:00
|
|
|
timeline.minVisibleId = (last(timeline.visibleStatuses) || {}).id
|
2016-12-03 11:43:21 +00:00
|
|
|
return timeline
|
|
|
|
}
|
|
|
|
|
2019-04-11 16:46:06 +00:00
|
|
|
// Add status to the global storages (arrays and objects maintaining statuses) except timelines
|
|
|
|
const addStatusToGlobalStorage = (state, data) => {
|
|
|
|
const result = mergeOrAdd(state.allStatuses, state.allStatusesObject, data)
|
|
|
|
if (result.new) {
|
|
|
|
// Add to conversation
|
|
|
|
const status = result.item
|
|
|
|
const conversationsObject = state.conversationsObject
|
|
|
|
const conversationId = status.statusnet_conversation_id
|
|
|
|
if (conversationsObject[conversationId]) {
|
|
|
|
conversationsObject[conversationId].push(status)
|
|
|
|
} else {
|
|
|
|
set(conversationsObject, conversationId, [status])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove status from the global storages (arrays and objects maintaining statuses) except timelines
|
|
|
|
const removeStatusFromGlobalStorage = (state, status) => {
|
|
|
|
remove(state.allStatuses, { id: status.id })
|
|
|
|
|
|
|
|
// TODO: Need to remove from allStatusesObject?
|
|
|
|
|
|
|
|
// Remove possible notification
|
2019-07-05 07:02:14 +00:00
|
|
|
remove(state.notifications.data, ({ action: { id } }) => id === status.id)
|
2019-04-11 16:46:06 +00:00
|
|
|
|
|
|
|
// Remove from conversation
|
|
|
|
const conversationId = status.statusnet_conversation_id
|
|
|
|
if (state.conversationsObject[conversationId]) {
|
|
|
|
remove(state.conversationsObject[conversationId], { id: status.id })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-21 01:31:00 +00:00
|
|
|
const addNewStatuses = (state, { statuses, showImmediately = false, timeline, user = {},
|
2019-06-24 03:01:13 +00:00
|
|
|
noIdUpdate = false, userId }) => {
|
2016-11-24 17:15:34 +00:00
|
|
|
// Sanity check
|
|
|
|
if (!isArray(statuses)) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-11-21 15:33:08 +00:00
|
|
|
const allStatuses = state.allStatuses
|
2019-01-17 18:46:03 +00:00
|
|
|
const timelineObject = state.timelines[timeline]
|
2016-11-15 09:35:16 +00:00
|
|
|
|
2018-04-14 19:13:28 +00:00
|
|
|
const maxNew = statuses.length > 0 ? maxBy(statuses, 'id').id : 0
|
2019-02-28 01:45:08 +00:00
|
|
|
const minNew = statuses.length > 0 ? minBy(statuses, 'id').id : 0
|
2019-04-01 17:25:48 +00:00
|
|
|
const newer = timeline && (maxNew > timelineObject.maxId || timelineObject.maxId === 0) && statuses.length > 0
|
2019-02-28 01:45:08 +00:00
|
|
|
const older = timeline && (minNew < timelineObject.minId || timelineObject.minId === 0) && statuses.length > 0
|
2018-04-14 19:13:28 +00:00
|
|
|
|
2019-02-28 01:45:08 +00:00
|
|
|
if (!noIdUpdate && newer) {
|
2018-04-14 19:13:28 +00:00
|
|
|
timelineObject.maxId = maxNew
|
2016-11-21 15:33:08 +00:00
|
|
|
}
|
2019-02-28 01:45:08 +00:00
|
|
|
if (!noIdUpdate && older) {
|
|
|
|
timelineObject.minId = minNew
|
|
|
|
}
|
2016-11-07 17:36:11 +00:00
|
|
|
|
2018-12-03 06:29:33 +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
|
2019-04-24 17:56:53 +00:00
|
|
|
if ((timeline === 'user' || timeline === 'media') && timelineObject.userId !== userId) {
|
2018-12-03 06:29:33 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-01-12 22:26:24 +00:00
|
|
|
const addStatus = (data, showImmediately, addToTimeline = true) => {
|
2019-04-11 16:46:06 +00:00
|
|
|
const result = addStatusToGlobalStorage(state, data)
|
2019-01-12 22:26:24 +00:00
|
|
|
const status = result.item
|
2016-11-07 21:09:34 +00:00
|
|
|
|
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
|
2019-01-12 22:26:24 +00:00
|
|
|
if (status.type === 'status' && find(status.attentions, { id: user.id })) {
|
2016-12-03 11:43:21 +00:00
|
|
|
const mentions = state.timelines.mentions
|
|
|
|
|
2016-12-03 11:48:37 +00:00
|
|
|
// Add the mention to the mentions timeline
|
|
|
|
if (timelineObject !== mentions) {
|
2017-03-08 20:04:48 +00:00
|
|
|
mergeOrAdd(mentions.statuses, mentions.statusesObject, status)
|
2016-12-03 11:48:37 +00:00
|
|
|
mentions.newStatusCount += 1
|
2016-12-03 11:43:21 +00:00
|
|
|
|
2016-12-03 11:48:37 +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
|
|
|
}
|
2016-11-07 21:09:34 +00:00
|
|
|
|
2017-02-16 11:51:24 +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.
|
2016-11-24 17:15:34 +00:00
|
|
|
if (timeline && addToTimeline) {
|
2017-03-08 20:04:48 +00:00
|
|
|
resultForCurrentTimeline = mergeOrAdd(timelineObject.statuses, timelineObject.statusesObject, status)
|
2016-11-18 18:48:02 +00:00
|
|
|
}
|
2016-11-18 15:05:04 +00:00
|
|
|
|
2016-11-24 17:15:34 +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)
|
2017-02-16 11:51:24 +00:00
|
|
|
} else if (timeline && addToTimeline && resultForCurrentTimeline.new) {
|
2016-11-21 15:33:08 +00:00
|
|
|
// Just change newStatuscount
|
|
|
|
timelineObject.newStatusCount += 1
|
2016-11-18 21:55:04 +00:00
|
|
|
}
|
|
|
|
|
2016-11-21 15:33:08 +00:00
|
|
|
return status
|
|
|
|
}
|
|
|
|
|
2018-08-16 10:12:31 +00:00
|
|
|
const favoriteStatus = (favorite, counter) => {
|
2019-01-17 20:08:44 +00:00
|
|
|
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
|
2018-08-30 13:27:35 +00:00
|
|
|
} else {
|
|
|
|
status.fave_num += 1
|
2016-11-25 15:56:08 +00:00
|
|
|
}
|
2016-11-18 18:48:02 +00:00
|
|
|
}
|
2016-11-21 15:33:08 +00:00
|
|
|
return status
|
|
|
|
}
|
2016-11-07 17:36:11 +00:00
|
|
|
|
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.
|
2017-11-09 06:36:11 +00:00
|
|
|
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-07 17:36:11 +00:00
|
|
|
}
|
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.
|
2018-08-27 20:15:58 +00:00
|
|
|
// Ignore our own favorites because we get info about likes as response to like request
|
2018-08-30 13:27:35 +00:00
|
|
|
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
|
|
|
},
|
2016-11-22 10:29:52 +00:00
|
|
|
'deletion': (deletion) => {
|
|
|
|
const uri = deletion.uri
|
2019-07-05 07:02:14 +00:00
|
|
|
const status = find(allStatuses, { uri })
|
2017-06-07 15:03:14 +00:00
|
|
|
if (!status) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-04-11 16:46:06 +00:00
|
|
|
removeStatusFromGlobalStorage(state, status)
|
2017-06-06 13:54:08 +00:00
|
|
|
|
2016-11-24 17:15:34 +00:00
|
|
|
if (timeline) {
|
|
|
|
remove(timelineObject.statuses, { uri })
|
|
|
|
remove(timelineObject.visibleStatuses, { uri })
|
|
|
|
}
|
2016-11-21 15:33:08 +00:00
|
|
|
},
|
2019-01-15 15:39:24 +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-18 18:48:02 +00:00
|
|
|
}
|
2016-11-21 15:33:08 +00:00
|
|
|
}
|
2016-11-18 18:48:02 +00:00
|
|
|
|
2016-11-21 15:33:08 +00:00
|
|
|
each(statuses, (status) => {
|
2019-01-12 22:26:24 +00:00
|
|
|
const type = status.type
|
2016-11-21 15:33:08 +00:00
|
|
|
const processor = processors[type] || processors['default']
|
|
|
|
processor(status)
|
|
|
|
})
|
2016-11-18 18:48:02 +00:00
|
|
|
|
2019-02-28 01:45:08 +00:00
|
|
|
// Keep the visible statuses sorted
|
2019-03-01 20:53:24 +00:00
|
|
|
if (timeline) {
|
|
|
|
sortTimeline(timelineObject)
|
|
|
|
}
|
2016-11-21 15:33:08 +00:00
|
|
|
}
|
|
|
|
|
2019-04-01 01:59:18 +00:00
|
|
|
const addNewNotifications = (state, { dispatch, notifications, older, visibleNotificationTypes, rootGetters }) => {
|
2018-08-12 11:14:34 +00:00
|
|
|
each(notifications, (notification) => {
|
2019-04-01 01:59:18 +00:00
|
|
|
if (notification.type !== 'follow') {
|
2019-04-11 16:46:06 +00:00
|
|
|
notification.action = addStatusToGlobalStorage(state, notification.action).item
|
|
|
|
notification.status = notification.status && addStatusToGlobalStorage(state, notification.status).item
|
2019-04-01 01:59:18 +00:00
|
|
|
}
|
2019-01-14 19:38:37 +00:00
|
|
|
|
2018-08-12 11:14:34 +00:00
|
|
|
// Only add a new notification if we don't have one for the same action
|
2019-01-14 19:38:37 +00:00
|
|
|
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
|
2018-08-12 11:14:34 +00:00
|
|
|
|
2019-01-14 19:38:37 +00:00
|
|
|
state.notifications.data.push(notification)
|
|
|
|
state.notifications.idStore[notification.id] = notification
|
2018-08-12 11:14:34 +00:00
|
|
|
|
|
|
|
if ('Notification' in window && window.Notification.permission === 'granted') {
|
2019-01-14 19:38:37 +00:00
|
|
|
const notifObj = {}
|
2019-04-01 01:59:18 +00:00
|
|
|
const status = notification.status
|
|
|
|
const title = notification.from_profile.name
|
|
|
|
notifObj.icon = notification.from_profile.profile_image_url
|
|
|
|
let i18nString
|
|
|
|
switch (notification.type) {
|
|
|
|
case 'like':
|
|
|
|
i18nString = 'favorited_you'
|
|
|
|
break
|
|
|
|
case 'repeat':
|
|
|
|
i18nString = 'repeated_you'
|
|
|
|
break
|
|
|
|
case 'follow':
|
|
|
|
i18nString = 'followed_you'
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i18nString) {
|
|
|
|
notifObj.body = rootGetters.i18n.t('notifications.' + i18nString)
|
|
|
|
} else {
|
2019-04-03 15:17:23 +00:00
|
|
|
notifObj.body = notification.status.text
|
2019-04-01 01:59:18 +00:00
|
|
|
}
|
2018-08-12 11:14:34 +00:00
|
|
|
|
|
|
|
// Shows first attached non-nsfw image, if any. Should add configuration for this somehow...
|
2019-04-01 01:59:18 +00:00
|
|
|
if (status && status.attachments && status.attachments.length > 0 && !status.nsfw &&
|
|
|
|
status.attachments[0].mimetype.startsWith('image/')) {
|
|
|
|
notifObj.image = status.attachments[0].url
|
2018-08-12 11:14:34 +00:00
|
|
|
}
|
|
|
|
|
2019-02-14 19:43:32 +00:00
|
|
|
if (!notification.seen && !state.notifications.desktopNotificationSilence && visibleNotificationTypes.includes(notification.type)) {
|
2019-01-14 19:38:37 +00:00
|
|
|
let notification = new window.Notification(title, notifObj)
|
2018-08-12 11:14:34 +00:00
|
|
|
// Chrome is known for not closing notifications automatically
|
|
|
|
// according to MDN, anyway.
|
|
|
|
setTimeout(notification.close.bind(notification), 5000)
|
|
|
|
}
|
|
|
|
}
|
2019-02-25 17:12:49 +00:00
|
|
|
} else if (notification.seen) {
|
|
|
|
state.notifications.idStore[notification.id].seen = true
|
2018-08-12 11:14:34 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-04-25 01:49:44 +00:00
|
|
|
const removeStatus = (state, { timeline, userId }) => {
|
2019-02-18 19:39:35 +00:00
|
|
|
const timelineObject = state.timelines[timeline]
|
2019-04-25 01:49:44 +00:00
|
|
|
if (userId) {
|
|
|
|
remove(timelineObject.statuses, { user: { id: userId } })
|
|
|
|
remove(timelineObject.visibleStatuses, { user: { id: userId } })
|
|
|
|
timelineObject.minVisibleId = timelineObject.visibleStatuses.length > 0 ? last(timelineObject.visibleStatuses).id : 0
|
|
|
|
timelineObject.maxId = timelineObject.statuses.length > 0 ? first(timelineObject.statuses).id : 0
|
2019-04-05 19:33:55 +00:00
|
|
|
}
|
2019-02-18 19:39:35 +00:00
|
|
|
}
|
|
|
|
|
2016-11-21 15:33:08 +00:00
|
|
|
export const mutations = {
|
|
|
|
addNewStatuses,
|
2018-08-12 11:14:34 +00:00
|
|
|
addNewNotifications,
|
2019-02-18 19:39:35 +00:00
|
|
|
removeStatus,
|
2016-11-07 17:04:00 +00:00
|
|
|
showNewStatuses (state, { timeline }) {
|
2019-01-17 18:46:03 +00:00
|
|
|
const oldTimeline = (state.timelines[timeline])
|
2016-11-07 17:04:00 +00:00
|
|
|
|
|
|
|
oldTimeline.newStatusCount = 0
|
|
|
|
oldTimeline.visibleStatuses = slice(oldTimeline.statuses, 0, 50)
|
2018-04-14 19:13:28 +00:00
|
|
|
oldTimeline.minVisibleId = last(oldTimeline.visibleStatuses).id
|
2019-03-10 20:40:48 +00:00
|
|
|
oldTimeline.minId = oldTimeline.minVisibleId
|
2017-03-08 20:04:48 +00:00
|
|
|
oldTimeline.visibleStatusesObject = {}
|
|
|
|
each(oldTimeline.visibleStatuses, (status) => { oldTimeline.visibleStatusesObject[status.id] = status })
|
2016-11-07 17:04:00 +00:00
|
|
|
},
|
2019-02-28 19:03:44 +00:00
|
|
|
resetStatuses (state) {
|
2019-02-28 19:27:47 +00:00
|
|
|
const emptyState = defaultState()
|
2019-02-28 19:44:43 +00:00
|
|
|
Object.entries(emptyState).forEach(([key, value]) => {
|
|
|
|
state[key] = value
|
2019-02-28 19:03:44 +00:00
|
|
|
})
|
|
|
|
},
|
2019-07-02 18:32:46 +00:00
|
|
|
clearTimeline (state, { timeline, excludeUserId = false }) {
|
|
|
|
const userId = excludeUserId ? state.timelines[timeline].userId : undefined
|
|
|
|
state.timelines[timeline] = emptyTl(userId)
|
2017-06-12 14:30:56 +00:00
|
|
|
},
|
2019-04-03 16:04:46 +00:00
|
|
|
clearNotifications (state) {
|
|
|
|
state.notifications = emptyNotifications()
|
|
|
|
},
|
2016-11-07 17:04:00 +00:00
|
|
|
setFavorited (state, { status, value }) {
|
2017-03-08 20:04:48 +00:00
|
|
|
const newStatus = state.allStatusesObject[status.id]
|
2019-05-08 03:19:46 +00:00
|
|
|
|
|
|
|
if (newStatus.favorited !== value) {
|
|
|
|
if (value) {
|
|
|
|
newStatus.fave_num++
|
|
|
|
} else {
|
|
|
|
newStatus.fave_num--
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-07 17:04:00 +00:00
|
|
|
newStatus.favorited = value
|
|
|
|
},
|
2019-05-07 20:43:54 +00:00
|
|
|
setFavoritedConfirm (state, { status, user }) {
|
2018-08-27 20:15:58 +00:00
|
|
|
const newStatus = state.allStatusesObject[status.id]
|
|
|
|
newStatus.favorited = status.favorited
|
|
|
|
newStatus.fave_num = status.fave_num
|
2019-05-07 20:43:54 +00:00
|
|
|
const index = findIndex(newStatus.favoritedBy, { id: user.id })
|
|
|
|
if (index !== -1 && !newStatus.favorited) {
|
|
|
|
newStatus.favoritedBy.splice(index, 1)
|
|
|
|
} else if (index === -1 && newStatus.favorited) {
|
|
|
|
newStatus.favoritedBy.push(user)
|
|
|
|
}
|
2018-08-27 20:15:58 +00:00
|
|
|
},
|
2019-09-04 18:11:13 +00:00
|
|
|
setMutedStatus (state, status) {
|
2019-07-07 20:02:09 +00:00
|
|
|
const newStatus = state.allStatusesObject[status.id]
|
2019-09-04 18:11:13 +00:00
|
|
|
newStatus.thread_muted = status.thread_muted
|
|
|
|
|
2019-09-04 19:17:29 +00:00
|
|
|
if (newStatus.thread_muted !== undefined) {
|
|
|
|
state.conversationsObject[newStatus.statusnet_conversation_id].forEach(status => { status.thread_muted = newStatus.thread_muted })
|
|
|
|
}
|
2019-07-07 20:02:09 +00:00
|
|
|
},
|
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]
|
2019-03-28 17:20:09 +00:00
|
|
|
|
|
|
|
if (newStatus.repeated !== value) {
|
|
|
|
if (value) {
|
|
|
|
newStatus.repeat_num++
|
|
|
|
} else {
|
|
|
|
newStatus.repeat_num--
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-13 16:09:16 +00:00
|
|
|
newStatus.repeated = value
|
|
|
|
},
|
2019-05-08 03:17:52 +00:00
|
|
|
setRetweetedConfirm (state, { status, user }) {
|
|
|
|
const newStatus = state.allStatusesObject[status.id]
|
|
|
|
newStatus.repeated = status.repeated
|
|
|
|
newStatus.repeat_num = status.repeat_num
|
|
|
|
const index = findIndex(newStatus.rebloggedBy, { id: user.id })
|
|
|
|
if (index !== -1 && !newStatus.repeated) {
|
|
|
|
newStatus.rebloggedBy.splice(index, 1)
|
|
|
|
} else if (index === -1 && newStatus.repeated) {
|
|
|
|
newStatus.rebloggedBy.push(user)
|
|
|
|
}
|
|
|
|
},
|
2016-12-04 17:30:00 +00:00
|
|
|
setDeleted (state, { status }) {
|
2017-03-08 20:04:48 +00:00
|
|
|
const newStatus = state.allStatusesObject[status.id]
|
2016-12-04 17:30:00 +00:00
|
|
|
newStatus.deleted = true
|
|
|
|
},
|
2019-02-18 14:49:32 +00:00
|
|
|
setManyDeleted (state, condition) {
|
|
|
|
Object.values(state.allStatusesObject).forEach(status => {
|
|
|
|
if (condition(status)) {
|
|
|
|
status.deleted = true
|
|
|
|
}
|
|
|
|
})
|
|
|
|
},
|
2016-11-07 17:04:00 +00:00
|
|
|
setLoading (state, { timeline, value }) {
|
2019-01-17 18:46:03 +00:00
|
|
|
state.timelines[timeline].loading = value
|
2016-11-07 17:04:00 +00:00
|
|
|
},
|
|
|
|
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
|
2017-02-18 19:42:00 +00:00
|
|
|
},
|
2017-03-09 12:38:32 +00:00
|
|
|
setError (state, { value }) {
|
|
|
|
state.error = value
|
2017-03-07 16:27:12 +00:00
|
|
|
},
|
2019-01-29 19:04:52 +00:00
|
|
|
setNotificationsLoading (state, { value }) {
|
|
|
|
state.notifications.loading = value
|
|
|
|
},
|
2018-08-12 11:14:34 +00:00
|
|
|
setNotificationsError (state, { value }) {
|
2018-08-20 17:45:54 +00:00
|
|
|
state.notifications.error = value
|
2018-08-12 11:14:34 +00:00
|
|
|
},
|
2018-08-20 16:58:49 +00:00
|
|
|
setNotificationsSilence (state, { value }) {
|
|
|
|
state.notifications.desktopNotificationSilence = value
|
|
|
|
},
|
2018-12-02 10:36:11 +00:00
|
|
|
markNotificationsAsSeen (state) {
|
|
|
|
each(state.notifications.data, (notification) => {
|
2017-02-18 19:42:00 +00:00
|
|
|
notification.seen = true
|
|
|
|
})
|
2017-11-21 14:12:47 +00:00
|
|
|
},
|
|
|
|
queueFlush (state, { timeline, id }) {
|
2019-01-17 18:46:03 +00:00
|
|
|
state.timelines[timeline].flushMarker = id
|
2019-04-02 02:29:45 +00:00
|
|
|
},
|
2019-06-27 12:14:54 +00:00
|
|
|
addRepeats (state, { id, rebloggedByUsers, currentUser }) {
|
2019-05-07 20:20:24 +00:00
|
|
|
const newStatus = state.allStatusesObject[id]
|
2019-05-08 03:21:19 +00:00
|
|
|
newStatus.rebloggedBy = rebloggedByUsers.filter(_ => _)
|
2019-06-27 12:14:54 +00:00
|
|
|
// repeats stats can be incorrect based on polling condition, let's update them using the most recent data
|
2019-06-24 08:21:09 +00:00
|
|
|
newStatus.repeat_num = newStatus.rebloggedBy.length
|
|
|
|
newStatus.repeated = !!newStatus.rebloggedBy.find(({ id }) => currentUser.id === id)
|
2019-06-18 20:28:31 +00:00
|
|
|
},
|
2019-06-27 12:14:54 +00:00
|
|
|
addFavs (state, { id, favoritedByUsers, currentUser }) {
|
|
|
|
const newStatus = state.allStatusesObject[id]
|
|
|
|
newStatus.favoritedBy = favoritedByUsers.filter(_ => _)
|
|
|
|
// favorites stats can be incorrect based on polling condition, let's update them using the most recent data
|
|
|
|
newStatus.fave_num = newStatus.favoritedBy.length
|
|
|
|
newStatus.favorited = !!newStatus.favoritedBy.find(({ id }) => currentUser.id === id)
|
2019-06-18 20:28:31 +00:00
|
|
|
},
|
|
|
|
updateStatusWithPoll (state, { id, poll }) {
|
|
|
|
const status = state.allStatusesObject[id]
|
|
|
|
status.poll = poll
|
2016-11-07 17:04:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-26 17:03:55 +00:00
|
|
|
const statuses = {
|
2019-02-28 19:27:47 +00:00
|
|
|
state: defaultState(),
|
2016-10-30 15:12:35 +00:00
|
|
|
actions: {
|
2018-12-03 06:29:33 +00:00
|
|
|
addNewStatuses ({ rootState, commit }, { statuses, showImmediately = false, timeline = false, noIdUpdate = false, userId }) {
|
|
|
|
commit('addNewStatuses', { statuses, showImmediately, timeline, noIdUpdate, user: rootState.users.currentUser, userId })
|
2016-11-18 21:55:04 +00:00
|
|
|
},
|
2019-04-01 01:59:18 +00:00
|
|
|
addNewNotifications ({ rootState, commit, dispatch, rootGetters }, { notifications, older }) {
|
|
|
|
commit('addNewNotifications', { visibleNotificationTypes: visibleNotificationTypes(rootState), dispatch, notifications, older, rootGetters })
|
2018-08-12 11:14:34 +00:00
|
|
|
},
|
2017-03-09 12:38:32 +00:00
|
|
|
setError ({ rootState, commit }, { value }) {
|
|
|
|
commit('setError', { value })
|
2017-03-07 16:27:12 +00:00
|
|
|
},
|
2019-01-29 19:04:52 +00:00
|
|
|
setNotificationsLoading ({ rootState, commit }, { value }) {
|
|
|
|
commit('setNotificationsLoading', { value })
|
|
|
|
},
|
2018-08-12 11:14:34 +00:00
|
|
|
setNotificationsError ({ rootState, commit }, { value }) {
|
|
|
|
commit('setNotificationsError', { value })
|
|
|
|
},
|
2018-08-20 16:58:49 +00:00
|
|
|
setNotificationsSilence ({ rootState, commit }, { value }) {
|
|
|
|
commit('setNotificationsSilence', { value })
|
|
|
|
},
|
2019-10-25 02:21:33 +00:00
|
|
|
fetchStatus ({ rootState, dispatch }, id) {
|
|
|
|
rootState.api.backendInteractor.fetchStatus({ id })
|
|
|
|
.then((status) => dispatch('addNewStatuses', { statuses: [status] }))
|
|
|
|
},
|
2016-12-04 17:30:00 +00:00
|
|
|
deleteStatus ({ rootState, commit }, status) {
|
|
|
|
commit('setDeleted', { status })
|
|
|
|
apiService.deleteStatus({ id: status.id, credentials: rootState.users.currentUser.credentials })
|
|
|
|
},
|
2019-02-18 14:49:32 +00:00
|
|
|
markStatusesAsDeleted ({ commit }, condition) {
|
|
|
|
commit('setManyDeleted', condition)
|
|
|
|
},
|
2016-10-30 15:12:35 +00:00
|
|
|
favorite ({ rootState, commit }, status) {
|
|
|
|
// Optimistic favoriting...
|
|
|
|
commit('setFavorited', { status, value: true })
|
2019-05-08 03:36:35 +00:00
|
|
|
rootState.api.backendInteractor.favorite(status.id)
|
2019-05-08 03:21:19 +00:00
|
|
|
.then(status => commit('setFavoritedConfirm', { status, user: rootState.users.currentUser }))
|
2016-10-30 15:12:35 +00:00
|
|
|
},
|
|
|
|
unfavorite ({ rootState, commit }, status) {
|
2019-05-08 03:36:35 +00:00
|
|
|
// Optimistic unfavoriting...
|
2016-10-30 15:12:35 +00:00
|
|
|
commit('setFavorited', { status, value: false })
|
2019-05-08 03:36:35 +00:00
|
|
|
rootState.api.backendInteractor.unfavorite(status.id)
|
2019-05-08 03:21:19 +00:00
|
|
|
.then(status => commit('setFavoritedConfirm', { status, user: rootState.users.currentUser }))
|
2016-11-13 16:09:16 +00:00
|
|
|
},
|
2019-04-24 18:34:55 +00:00
|
|
|
fetchPinnedStatuses ({ rootState, dispatch }, userId) {
|
2019-04-24 17:56:53 +00:00
|
|
|
rootState.api.backendInteractor.fetchPinnedStatuses(userId)
|
2019-06-24 03:01:13 +00:00
|
|
|
.then(statuses => dispatch('addNewStatuses', { statuses, timeline: 'user', userId, showImmediately: true, noIdUpdate: true }))
|
2019-04-24 17:56:53 +00:00
|
|
|
},
|
2019-08-30 19:57:24 +00:00
|
|
|
pinStatus ({ rootState, dispatch }, statusId) {
|
2019-04-24 20:19:27 +00:00
|
|
|
return rootState.api.backendInteractor.pinOwnStatus(statusId)
|
2019-08-30 19:57:24 +00:00
|
|
|
.then((status) => dispatch('addNewStatuses', { statuses: [status] }))
|
2019-04-24 19:34:30 +00:00
|
|
|
},
|
2019-08-30 19:57:24 +00:00
|
|
|
unpinStatus ({ rootState, dispatch }, statusId) {
|
2019-04-24 19:34:30 +00:00
|
|
|
rootState.api.backendInteractor.unpinOwnStatus(statusId)
|
2019-08-30 19:57:24 +00:00
|
|
|
.then((status) => dispatch('addNewStatuses', { statuses: [status] }))
|
2019-04-04 16:47:25 +00:00
|
|
|
},
|
2019-07-07 20:02:09 +00:00
|
|
|
muteConversation ({ rootState, commit }, statusId) {
|
|
|
|
return rootState.api.backendInteractor.muteConversation(statusId)
|
2019-09-04 18:11:13 +00:00
|
|
|
.then((status) => commit('setMutedStatus', status))
|
2019-07-07 20:02:09 +00:00
|
|
|
},
|
|
|
|
unmuteConversation ({ rootState, commit }, statusId) {
|
|
|
|
return rootState.api.backendInteractor.unmuteConversation(statusId)
|
2019-09-04 18:11:13 +00:00
|
|
|
.then((status) => commit('setMutedStatus', status))
|
2019-07-07 20:02:09 +00:00
|
|
|
},
|
2016-11-13 16:09:16 +00:00
|
|
|
retweet ({ rootState, commit }, status) {
|
|
|
|
// Optimistic retweeting...
|
|
|
|
commit('setRetweeted', { status, value: true })
|
2019-05-08 03:36:35 +00:00
|
|
|
rootState.api.backendInteractor.retweet(status.id)
|
2019-05-08 03:21:19 +00:00
|
|
|
.then(status => commit('setRetweetedConfirm', { status: status.retweeted_status, user: rootState.users.currentUser }))
|
2017-11-21 14:12:47 +00:00
|
|
|
},
|
2018-06-14 21:17:36 +00:00
|
|
|
unretweet ({ rootState, commit }, status) {
|
2019-05-08 03:36:35 +00:00
|
|
|
// Optimistic unretweeting...
|
2018-06-14 21:17:36 +00:00
|
|
|
commit('setRetweeted', { status, value: false })
|
2019-05-08 03:36:35 +00:00
|
|
|
rootState.api.backendInteractor.unretweet(status.id)
|
2019-05-08 03:21:19 +00:00
|
|
|
.then(status => commit('setRetweetedConfirm', { status, user: rootState.users.currentUser }))
|
2018-06-14 21:17:36 +00:00
|
|
|
},
|
2017-11-21 14:12:47 +00:00
|
|
|
queueFlush ({ rootState, commit }, { timeline, id }) {
|
|
|
|
commit('queueFlush', { timeline, id })
|
2018-12-02 10:36:11 +00:00
|
|
|
},
|
|
|
|
markNotificationsAsSeen ({ rootState, commit }) {
|
|
|
|
commit('markNotificationsAsSeen')
|
|
|
|
apiService.markNotificationsAsSeen({
|
|
|
|
id: rootState.statuses.notifications.maxId,
|
|
|
|
credentials: rootState.users.currentUser.credentials
|
|
|
|
})
|
2019-04-02 02:29:45 +00:00
|
|
|
},
|
2019-04-09 15:45:33 +00:00
|
|
|
fetchFavsAndRepeats ({ rootState, commit }, id) {
|
2019-04-29 19:36:39 +00:00
|
|
|
Promise.all([
|
|
|
|
rootState.api.backendInteractor.fetchFavoritedByUsers(id),
|
|
|
|
rootState.api.backendInteractor.fetchRebloggedByUsers(id)
|
2019-06-27 12:14:54 +00:00
|
|
|
]).then(([favoritedByUsers, rebloggedByUsers]) => {
|
|
|
|
commit('addFavs', { id, favoritedByUsers, currentUser: rootState.users.currentUser })
|
|
|
|
commit('addRepeats', { id, rebloggedByUsers, currentUser: rootState.users.currentUser })
|
|
|
|
})
|
|
|
|
},
|
|
|
|
fetchFavs ({ rootState, commit }, id) {
|
|
|
|
rootState.api.backendInteractor.fetchFavoritedByUsers(id)
|
|
|
|
.then(favoritedByUsers => commit('addFavs', { id, favoritedByUsers, currentUser: rootState.users.currentUser }))
|
|
|
|
},
|
|
|
|
fetchRepeats ({ rootState, commit }, id) {
|
|
|
|
rootState.api.backendInteractor.fetchRebloggedByUsers(id)
|
|
|
|
.then(rebloggedByUsers => commit('addRepeats', { id, rebloggedByUsers, currentUser: rootState.users.currentUser }))
|
2019-07-15 16:42:27 +00:00
|
|
|
},
|
|
|
|
search (store, { q, resolve, limit, offset, following }) {
|
|
|
|
return store.rootState.api.backendInteractor.search2({ q, resolve, limit, offset, following })
|
|
|
|
.then((data) => {
|
|
|
|
store.commit('addNewUsers', data.accounts)
|
|
|
|
store.commit('addNewStatuses', { statuses: data.statuses })
|
|
|
|
return data
|
|
|
|
})
|
2016-10-30 15:12:35 +00:00
|
|
|
}
|
|
|
|
},
|
2016-11-07 17:04:00 +00:00
|
|
|
mutations
|
2016-10-26 17:03:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default statuses
|