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