gab-social/app/javascript/gabsocial/actions/notifications.js

283 lines
8.4 KiB
JavaScript
Raw Normal View History

2020-11-15 18:48:32 +00:00
import api, { getLinks } from '../api'
import IntlMessageFormat from 'intl-messageformat'
2020-11-25 21:22:37 +00:00
import noop from 'lodash.noop'
2020-11-15 18:48:32 +00:00
import { fetchRelationships } from './accounts'
2019-07-02 08:10:25 +01:00
import {
importFetchedAccount,
importFetchedAccounts,
importFetchedStatus,
importFetchedStatuses,
2020-11-15 18:48:32 +00:00
} from './importer'
import { defineMessages } from 'react-intl'
import { List as ImmutableList } from 'immutable'
import { unescapeHTML } from '../utils/html'
import { getFilters, regexFromFilters } from '../selectors'
import { me } from '../initial_state'
import { NOTIFICATION_FILTERS } from '../constants'
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
export const NOTIFICATIONS_INITIALIZE = 'NOTIFICATIONS_INITIALIZE'
export const NOTIFICATIONS_UPDATE = 'NOTIFICATIONS_UPDATE'
export const NOTIFICATIONS_UPDATE_QUEUE = 'NOTIFICATIONS_UPDATE_QUEUE'
export const NOTIFICATIONS_DEQUEUE = 'NOTIFICATIONS_DEQUEUE'
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
export const NOTIFICATIONS_EXPAND_REQUEST = 'NOTIFICATIONS_EXPAND_REQUEST'
export const NOTIFICATIONS_EXPAND_SUCCESS = 'NOTIFICATIONS_EXPAND_SUCCESS'
export const NOTIFICATIONS_EXPAND_FAIL = 'NOTIFICATIONS_EXPAND_FAIL'
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
export const NOTIFICATIONS_FILTER_SET = 'NOTIFICATIONS_FILTER_SET'
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
export const NOTIFICATIONS_CLEAR = 'NOTIFICATIONS_CLEAR'
export const NOTIFICATIONS_SCROLL_TOP = 'NOTIFICATIONS_SCROLL_TOP'
export const NOTIFICATIONS_MARK_READ = 'NOTIFICATIONS_MARK_READ'
2019-07-02 08:10:25 +01:00
2020-03-04 03:45:16 +00:00
export const MAX_QUEUED_NOTIFICATIONS = 40
2019-07-02 08:10:25 +01:00
defineMessages({
mention: { id: 'notification.mention', defaultMessage: '{name} mentioned you' },
group: { id: 'notifications.group', defaultMessage: '{count} notifications' },
2020-11-15 18:48:32 +00:00
})
2019-07-02 08:10:25 +01:00
const fetchRelatedRelationships = (dispatch, notifications) => {
2020-11-15 18:48:32 +00:00
const accountIds = notifications.filter(item => item.type === 'follow').map(item => item.account.id)
2019-07-02 08:10:25 +01:00
if (accountIds.length > 0) {
2020-11-15 18:48:32 +00:00
dispatch(fetchRelationships(accountIds))
2019-07-02 08:10:25 +01:00
}
2020-03-04 03:45:16 +00:00
}
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
const excludeTypesFromFilter = filter => {
const allTypes = ImmutableList(['follow', 'favourite', 'reblog', 'mention', 'poll'])
return allTypes.filterNot(item => item === filter).toJS()
}
2020-11-15 18:48:32 +00:00
/**
*
*/
export const initializeNotifications = () => ({
type: NOTIFICATIONS_INITIALIZE,
})
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
/**
*
*/
export const updateNotifications = (notification, intlMessages, intlLocale) => (dispatch, getState) => {
const showInColumn = getState().getIn(['notifications', 'filter', notification.type], true)
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
if (showInColumn) {
dispatch(importFetchedAccount(notification.account))
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
if (notification.status) {
dispatch(importFetchedStatus(notification.status))
}
2020-11-15 18:48:32 +00:00
dispatch({
type: NOTIFICATIONS_UPDATE,
notification,
})
2020-11-15 18:48:32 +00:00
fetchRelatedRelationships(dispatch, [notification])
}
}
2020-11-15 18:48:32 +00:00
/**
*
*/
export const updateNotificationsQueue = (notification, intlMessages, intlLocale, curPath) => (dispatch, getState) => {
// : todo :
// const showAlert = getState().getIn(['settings', 'notifications', 'alerts', notification.type], true)
const filters = getFilters(getState(), { contextType: 'notifications' })
2020-11-15 18:48:32 +00:00
let filtered = false
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
const isOnNotificationsPage = curPath === '/notifications'
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
if (notification.type === 'mention') {
const regex = regexFromFilters(filters)
const searchIndex = notification.status.spoiler_text + '\n' + unescapeHTML(notification.status.content)
filtered = regex && regex.test(searchIndex)
}
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
// Desktop notifications
// : todo :
// if (typeof window.Notification !== 'undefined' && showAlert && !filtered) {
// const title = new IntlMessageFormat(intlMessages[`notification.${notification.type}`], intlLocale).format({ name: notification.account.display_name.length > 0 ? notification.account.display_name : notification.account.username })
// const body = (notification.status && notification.status.spoiler_text.length > 0) ? notification.status.spoiler_text : unescapeHTML(notification.status ? notification.status.content : '')
2020-11-15 18:48:32 +00:00
// const notify = new Notification(title, { body, icon: notification.account.avatar, tag: notification.id })
// notify.addEventListener('click', () => {
// window.focus()
// notify.close()
// })
// }
2020-11-15 18:48:32 +00:00
if (isOnNotificationsPage) {
dispatch({
2020-11-15 18:48:32 +00:00
type: NOTIFICATIONS_UPDATE_QUEUE,
notification,
intlMessages,
intlLocale,
})
2020-11-15 18:48:32 +00:00
} else {
dispatch(updateNotifications(notification, intlMessages, intlLocale))
}
}
2020-11-15 18:48:32 +00:00
/**
*
*/
export const forceDequeueNotifications = () => (dispatch) => {
dispatch({
type: NOTIFICATIONS_DEQUEUE,
})
}
2020-11-15 18:48:32 +00:00
/**
*
*/
export const dequeueNotifications = () => (dispatch, getState) => {
const queuedNotifications = getState().getIn(['notifications', 'queuedNotifications'], ImmutableList())
const totalQueuedNotificationsCount = getState().getIn(['notifications', 'totalQueuedNotificationsCount'], 0)
if (totalQueuedNotificationsCount === 0) {
return
} else if (totalQueuedNotificationsCount > 0 && totalQueuedNotificationsCount <= MAX_QUEUED_NOTIFICATIONS) {
queuedNotifications.forEach((block) => {
dispatch(updateNotifications(block.notification, block.intlMessages, block.intlLocale))
})
} else {
dispatch(expandNotifications())
}
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
dispatch({
type: NOTIFICATIONS_DEQUEUE,
})
dispatch(markReadNotifications())
}
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
/**
*
*/
2020-11-25 21:22:37 +00:00
export const expandNotifications = ({ maxId } = {}, done = noop) => (dispatch, getState) => {
2020-11-15 18:48:32 +00:00
if (!me) return
const onlyVerified = getState().getIn(['notifications', 'filter', 'onlyVerified'])
const onlyFollowing = getState().getIn(['notifications', 'filter', 'onlyFollowing'])
const activeFilter = getState().getIn(['notifications', 'filter', 'active'])
const notifications = getState().get('notifications')
const isLoadingMore = !!maxId
if (notifications.get('isLoading') || notifications.get('isError')|| activeFilter === 'follow_requests') {
done()
return
}
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
const params = {
max_id: maxId,
exclude_types: activeFilter === 'all' ? null : excludeTypesFromFilter(activeFilter),
}
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
if (!!onlyVerified) params.only_verified = onlyVerified
if (!!onlyFollowing) params.only_following = onlyFollowing
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
if (!maxId && notifications.get('items').size > 0) {
params.since_id = notifications.getIn(['items', 0, 'id'])
}
2020-04-08 02:06:59 +01:00
2020-11-15 18:48:32 +00:00
dispatch(expandNotificationsRequest(isLoadingMore))
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
api(getState).get('/api/v1/notifications', { params }).then((response) => {
const next = getLinks(response).refs.find(link => link.rel === 'next')
2020-04-17 06:35:46 +01:00
2020-11-15 18:48:32 +00:00
dispatch(importFetchedAccounts(response.data.map(item => item.account)))
dispatch(importFetchedStatuses(response.data.map(item => item.status).filter(status => !!status)))
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
dispatch(expandNotificationsSuccess(response.data, next ? next.uri : null, isLoadingMore))
2020-11-15 18:48:32 +00:00
fetchRelatedRelationships(dispatch, response.data)
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
done()
}).catch((error) => {
dispatch(expandNotificationsFail(error, isLoadingMore))
done()
})
}
2019-07-02 08:10:25 +01:00
2020-11-25 21:22:37 +00:00
const expandNotificationsRequest = (isLoadingMore) => ({
2020-11-15 18:48:32 +00:00
type: NOTIFICATIONS_EXPAND_REQUEST,
skipLoading: !isLoadingMore,
})
2020-11-25 21:22:37 +00:00
const expandNotificationsSuccess = (notifications, next, isLoadingMore) => ({
2020-11-15 18:48:32 +00:00
type: NOTIFICATIONS_EXPAND_SUCCESS,
notifications,
next,
skipLoading: !isLoadingMore,
})
2020-11-25 21:22:37 +00:00
const expandNotificationsFail = (error, isLoadingMore) => ({
2020-11-15 18:48:32 +00:00
type: NOTIFICATIONS_EXPAND_FAIL,
error,
showToast: true,
2020-11-15 18:48:32 +00:00
skipLoading: !isLoadingMore,
})
/**
*
*/
// : todo : implement with alert/warning
export const clearNotifications = () => (dispatch, getState) => {
if (!me) return
dispatch({
type: NOTIFICATIONS_CLEAR,
})
api(getState).post('/api/v1/notifications/clear')
}
2019-07-02 08:10:25 +01:00
2020-11-15 18:48:32 +00:00
/**
*
*/
export const scrollTopNotifications = (top) => (dispatch, getState) => {
dispatch({
type: NOTIFICATIONS_SCROLL_TOP,
top,
})
dispatch(markReadNotifications())
}
2020-11-15 18:48:32 +00:00
/**
*
*/
export const setFilter = (path, value) => (dispatch) => {
if (path === 'active' && NOTIFICATION_FILTERS.indexOf(value) === -1) return
dispatch({
type: NOTIFICATIONS_FILTER_SET,
path: path,
value: value,
})
dispatch(expandNotifications())
2020-04-09 20:18:14 +01:00
}
2020-11-15 18:48:32 +00:00
/**
*
*/
export const markReadNotifications = () => (dispatch, getState) => {
if (!me) return
const topNotification = parseInt(getState().getIn(['notifications', 'items', 0, 'id']))
const lastReadId = getState().getIn(['notifications', 'lastReadId'])
if (topNotification && topNotification > lastReadId && lastReadId !== -1) {
api(getState).post('/api/v1/notifications/mark_read', {
id: topNotification
}).then(() => {
dispatch({
type: NOTIFICATIONS_MARK_READ,
notification: topNotification,
})
2020-11-15 18:48:32 +00:00
})
}
}