// Copyright 2023 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import type { ReadonlyDeep } from 'type-fest'; import type { ThunkAction } from 'redux-thunk'; import { omit } from 'lodash'; import type { StateType as RootStateType } from '../reducer'; import { clearCallHistoryDataAndSync, markAllCallHistoryReadAndSync, } from '../../util/callDisposition'; import type { BoundActionCreatorsMapObject } from '../../hooks/useBoundActions'; import { useBoundActions } from '../../hooks/useBoundActions'; import type { ToastActionType } from './toast'; import { showToast } from './toast'; import { DataReader, DataWriter } from '../../sql/Client'; import { ToastType } from '../../types/Toast'; import type { CallHistoryDetails } from '../../types/CallDisposition'; import * as log from '../../logging/log'; import * as Errors from '../../types/errors'; import { drop } from '../../util/drop'; import { getCallHistoryLatestCall, getCallHistorySelector, } from '../selectors/callHistory'; export type CallHistoryState = ReadonlyDeep<{ // This informs the app that underlying call history data has changed. edition: number; unreadCount: number; callHistoryByCallId: Record; }>; const CALL_HISTORY_ADD = 'callHistory/ADD'; const CALL_HISTORY_REMOVE = 'callHistory/REMOVE'; const CALL_HISTORY_RESET = 'callHistory/RESET'; const CALL_HISTORY_UPDATE_UNREAD = 'callHistory/UPDATE_UNREAD'; export type CallHistoryAdd = ReadonlyDeep<{ type: typeof CALL_HISTORY_ADD; payload: CallHistoryDetails; }>; export type CallHistoryRemove = ReadonlyDeep<{ type: typeof CALL_HISTORY_REMOVE; payload: CallHistoryDetails['callId']; }>; export type CallHistoryReset = ReadonlyDeep<{ type: typeof CALL_HISTORY_RESET; }>; export type CallHistoryUpdateUnread = ReadonlyDeep<{ type: typeof CALL_HISTORY_UPDATE_UNREAD; payload: number; }>; export type CallHistoryAction = ReadonlyDeep< | CallHistoryAdd | CallHistoryRemove | CallHistoryReset | CallHistoryUpdateUnread >; export function getEmptyState(): CallHistoryState { return { edition: 0, unreadCount: 0, callHistoryByCallId: {}, }; } function updateCallHistoryUnreadCount(): ThunkAction< void, RootStateType, unknown, CallHistoryUpdateUnread > { return async dispatch => { try { const unreadCount = await DataReader.getCallHistoryUnreadCount(); dispatch({ type: CALL_HISTORY_UPDATE_UNREAD, payload: unreadCount }); } catch (error) { log.error( 'Error updating call history unread count', Errors.toLogFormat(error) ); } }; } function markCallHistoryRead( conversationId: string, callId: string ): ThunkAction { return async dispatch => { try { await DataWriter.markCallHistoryRead(callId); drop(window.ConversationController.get(conversationId)?.updateUnread()); } catch (error) { log.error( 'markCallHistoryRead: Error marking call history read', Errors.toLogFormat(error) ); } finally { dispatch(updateCallHistoryUnreadCount()); } }; } export function markCallHistoryReadInConversation( callId: string ): ThunkAction { return async (dispatch, getState) => { const callHistorySelector = getCallHistorySelector(getState()); const callHistory = callHistorySelector(callId); if (callHistory == null) { return; } try { await markAllCallHistoryReadAndSync(callHistory, true); } finally { dispatch(updateCallHistoryUnreadCount()); } }; } function markCallsTabViewed(): ThunkAction< void, RootStateType, unknown, CallHistoryUpdateUnread > { return async (dispatch, getState) => { const latestCall = getCallHistoryLatestCall(getState()); if (latestCall != null) { await markAllCallHistoryReadAndSync(latestCall, false); dispatch(updateCallHistoryUnreadCount()); } }; } export function addCallHistory( callHistory: CallHistoryDetails ): CallHistoryAdd { return { type: CALL_HISTORY_ADD, payload: callHistory, }; } function removeCallHistory( callId: CallHistoryDetails['callId'] ): CallHistoryRemove { return { type: CALL_HISTORY_REMOVE, payload: callId, }; } function resetCallHistory(): CallHistoryReset { return { type: CALL_HISTORY_RESET }; } function clearAllCallHistory(): ThunkAction< void, RootStateType, unknown, CallHistoryReset | ToastActionType > { return async (dispatch, getState) => { try { const latestCall = getCallHistoryLatestCall(getState()); if (latestCall != null) { await clearCallHistoryDataAndSync(latestCall); dispatch(showToast({ toastType: ToastType.CallHistoryCleared })); } } catch (error) { log.error('Error clearing call history', Errors.toLogFormat(error)); } finally { // Just force a reset, even if the clear failed. dispatch(resetCallHistory()); dispatch(updateCallHistoryUnreadCount()); } }; } export const actions = { addCallHistory, removeCallHistory, resetCallHistory, clearAllCallHistory, updateCallHistoryUnreadCount, markCallHistoryRead, markCallsTabViewed, }; export const useCallHistoryActions = (): BoundActionCreatorsMapObject< typeof actions > => useBoundActions(actions); export function reducer( state: CallHistoryState = getEmptyState(), action: CallHistoryAction ): CallHistoryState { switch (action.type) { case CALL_HISTORY_RESET: return { ...state, edition: state.edition + 1, callHistoryByCallId: {} }; case CALL_HISTORY_ADD: return { ...state, edition: state.edition + 1, callHistoryByCallId: { ...state.callHistoryByCallId, [action.payload.callId]: action.payload, }, }; case CALL_HISTORY_REMOVE: return { ...state, edition: state.edition + 1, callHistoryByCallId: omit(state.callHistoryByCallId, action.payload), }; case CALL_HISTORY_UPDATE_UNREAD: return { ...state, unreadCount: action.payload, }; default: return state; } }