2018-04-15 05:13:28 +10:00
|
|
|
import { includes, remove, slice, sortBy, toInteger, each, find, flatten, maxBy, minBy, merge, last, isArray } 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
|
|
|
|
2018-04-14 05:35:55 +10:00
|
|
|
const emptyTl = () => ({
|
|
|
|
statuses: [],
|
|
|
|
statusesObject: {},
|
|
|
|
faves: [],
|
|
|
|
visibleStatuses: [],
|
|
|
|
visibleStatusesObject: {},
|
|
|
|
newStatusCount: 0,
|
|
|
|
maxId: 0,
|
|
|
|
minVisibleId: 0,
|
|
|
|
loading: false,
|
|
|
|
followers: [],
|
|
|
|
friends: [],
|
2018-12-03 17:29:33 +11:00
|
|
|
userId: 0,
|
2018-04-14 05:35:55 +10:00
|
|
|
flushMarker: 0
|
|
|
|
})
|
|
|
|
|
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-19 09:55:53 +11:00
|
|
|
error: false
|
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: {
|
2018-04-14 05:35:55 +10:00
|
|
|
mentions: emptyTl(),
|
|
|
|
public: emptyTl(),
|
|
|
|
user: emptyTl(),
|
|
|
|
publicAndExternal: emptyTl(),
|
|
|
|
friends: emptyTl(),
|
2018-11-14 06:34:56 +11:00
|
|
|
tag: emptyTl(),
|
|
|
|
dms: emptyTl()
|
2016-10-27 04:03:55 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-19 03:19:17 +10:00
|
|
|
const isNsfw = (status) => {
|
|
|
|
const nsfwRegex = /#nsfw/i
|
|
|
|
return includes(status.tags, 'nsfw') || !!status.text.match(nsfwRegex)
|
|
|
|
}
|
|
|
|
|
2016-11-15 20:35:16 +11:00
|
|
|
export const prepareStatus = (status) => {
|
|
|
|
// Parse nsfw tags
|
|
|
|
if (status.nsfw === undefined) {
|
2017-06-19 03:19:17 +10:00
|
|
|
status.nsfw = isNsfw(status)
|
2018-04-17 01:19:42 +10:00
|
|
|
if (status.retweeted_status) {
|
2018-04-24 03:07:47 +10:00
|
|
|
status.nsfw = status.retweeted_status.nsfw
|
2018-04-17 01:19:42 +10:00
|
|
|
}
|
2016-11-15 20:35:16 +11:00
|
|
|
}
|
|
|
|
|
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(_ => _)
|
|
|
|
}
|
|
|
|
|
2016-11-28 04:54:17 +11:00
|
|
|
export const statusType = (status) => {
|
2016-11-19 05:48:02 +11:00
|
|
|
if (status.is_post_verb) {
|
|
|
|
return 'status'
|
|
|
|
}
|
2016-11-14 08:09:27 +11:00
|
|
|
|
2016-11-19 05:48:02 +11:00
|
|
|
if (status.retweeted_status) {
|
|
|
|
return 'retweet'
|
|
|
|
}
|
2016-11-14 08:09:27 +11:00
|
|
|
|
2017-08-18 19:38:47 +10:00
|
|
|
if ((typeof status.uri === 'string' && status.uri.match(/(fave|objectType=Favourite)/)) ||
|
|
|
|
(typeof status.text === 'string' && status.text.match(/favorited/))) {
|
2016-11-19 05:48:02 +11:00
|
|
|
return 'favorite'
|
|
|
|
}
|
2016-11-14 08:40:33 +11:00
|
|
|
|
2017-11-13 08:15:47 +11:00
|
|
|
if (status.text.match(/deleted notice {{tag/) || status.qvitter_delete_notice) {
|
2016-11-19 08:25:42 +11:00
|
|
|
return 'deletion'
|
|
|
|
}
|
|
|
|
|
2018-08-29 04:21:29 +10:00
|
|
|
if (status.text.match(/started following/) || status.activity_type === 'follow') {
|
2017-08-11 02:17:40 +10:00
|
|
|
return 'follow'
|
|
|
|
}
|
|
|
|
|
2016-11-19 05:48:02 +11:00
|
|
|
return 'unknown'
|
|
|
|
}
|
2016-11-14 08:54:49 +11:00
|
|
|
|
2016-11-15 20:35:16 +11:00
|
|
|
export const findMaxId = (...args) => {
|
|
|
|
return (maxBy(flatten(args), 'id') || {}).id
|
2016-11-14 08:40:33 +11:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-03 22:43:21 +11:00
|
|
|
const sortTimeline = (timeline) => {
|
|
|
|
timeline.visibleStatuses = sortBy(timeline.visibleStatuses, ({id}) => -id)
|
|
|
|
timeline.statuses = sortBy(timeline.statuses, ({id}) => -id)
|
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
|
2016-11-22 02:33:08 +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
|
|
|
|
if (timeline === 'user' && timelineObject.userId !== userId) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-11-22 02:33:08 +11:00
|
|
|
const addStatus = (status, showImmediately, addToTimeline = true) => {
|
2017-03-09 07:04:48 +11:00
|
|
|
const result = mergeOrAdd(allStatuses, allStatusesObject, status)
|
2016-11-22 02:33:08 +11:00
|
|
|
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
|
2016-11-28 05:11:05 +11:00
|
|
|
if (statusType(status) === '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) => {
|
2016-11-22 02:33:08 +11:00
|
|
|
const status = find(allStatuses, { id: toInteger(favorite.in_reply_to_status_id) })
|
|
|
|
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
|
|
|
},
|
|
|
|
'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) => {
|
|
|
|
const type = statusType(status)
|
|
|
|
const processor = processors[type] || processors['default']
|
|
|
|
processor(status)
|
|
|
|
})
|
2016-11-19 05:48:02 +11:00
|
|
|
|
2016-11-22 02:33:08 +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) => {
|
2018-08-18 20:41:23 +10:00
|
|
|
const result = mergeOrAdd(allStatuses, allStatusesObject, notification.notice)
|
|
|
|
const action = result.item
|
2018-08-12 21:14:34 +10:00
|
|
|
// 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)) {
|
|
|
|
state.notifications.maxId = Math.max(notification.id, state.notifications.maxId)
|
|
|
|
state.notifications.minId = Math.min(notification.id, state.notifications.minId)
|
|
|
|
|
2018-12-02 21:36:11 +11:00
|
|
|
const fresh = !notification.is_seen
|
2018-08-12 21:14:34 +10:00
|
|
|
const status = notification.ntype === 'like'
|
2018-12-19 09:55:53 +11:00
|
|
|
? action.favorited_status
|
2018-08-12 21:14:34 +10:00
|
|
|
: action
|
2018-08-16 20:12:31 +10:00
|
|
|
|
|
|
|
const result = {
|
2018-08-12 21:14:34 +10:00
|
|
|
type: notification.ntype,
|
|
|
|
status,
|
|
|
|
action,
|
|
|
|
seen: !fresh
|
2018-08-16 20:12:31 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
state.notifications.data.push(result)
|
2018-08-12 21:14:34 +10:00
|
|
|
|
|
|
|
if ('Notification' in window && window.Notification.permission === 'granted') {
|
|
|
|
const title = action.user.name
|
|
|
|
const result = {}
|
|
|
|
result.icon = action.user.profile_image_url
|
|
|
|
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...
|
|
|
|
if (action.attachments && action.attachments.length > 0 && !action.nsfw &&
|
|
|
|
action.attachments[0].mimetype.startsWith('image/')) {
|
|
|
|
result.image = action.attachments[0].url
|
|
|
|
}
|
|
|
|
|
2018-08-29 04:21:29 +10:00
|
|
|
if (fresh && !state.notifications.desktopNotificationSilence && visibleNotificationTypes.includes(notification.ntype)) {
|
2018-08-12 21:14:34 +10:00
|
|
|
let notification = new window.Notification(title, result)
|
|
|
|
// Chrome is known for not closing notifications automatically
|
|
|
|
// according to MDN, anyway.
|
|
|
|
setTimeout(notification.close.bind(notification), 5000)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
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 }) {
|
|
|
|
const oldTimeline = (state.timelines[timeline])
|
|
|
|
|
|
|
|
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
|
|
|
},
|
2017-06-13 00:30:56 +10:00
|
|
|
clearTimeline (state, { timeline }) {
|
2018-04-14 05:35:55 +10:00
|
|
|
state.timelines[timeline] = emptyTl()
|
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 }) {
|
|
|
|
state.timelines[timeline].loading = value
|
|
|
|
},
|
|
|
|
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
|
|
|
},
|
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 }) {
|
|
|
|
state.timelines[timeline].flushMarker = id
|
2016-11-08 04:04:00 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-27 04:03:55 +11:00
|
|
|
const statuses = {
|
|
|
|
state: 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
|
|
|
},
|
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
|