signal-desktop/ts/state/ducks/audioPlayer.ts

597 lines
13 KiB
TypeScript
Raw Normal View History

2023-01-03 19:55:46 +00:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { ThunkAction } from 'redux-thunk';
import type { ReadonlyDeep } from 'type-fest';
import type { BoundActionCreatorsMapObject } from '../../hooks/useBoundActions';
2021-09-17 22:24:21 +00:00
import { useBoundActions } from '../../hooks/useBoundActions';
import type { StateType as RootStateType } from '../reducer';
2023-02-28 13:07:40 +00:00
import { setVoiceNotePlaybackRate } from './conversations';
2023-02-24 23:18:57 +00:00
import { extractVoiceNoteForPlayback } from '../selectors/audioPlayer';
import type {
VoiceNoteAndConsecutiveForPlayback,
VoiceNoteForPlayback,
} from '../selectors/audioPlayer';
import type {
2023-02-24 23:18:57 +00:00
MessagesAddedActionType,
MessageDeletedActionType,
MessageChangedActionType,
2022-06-16 19:12:50 +00:00
SelectedConversationChangedActionType,
ConversationChangedActionType,
} from './conversations';
import * as log from '../../logging/log';
2023-02-24 23:18:57 +00:00
import { isAudio } from '../../types/Attachment';
import { getAttachmentUrlForPath } from '../selectors/message';
2023-02-28 13:07:40 +00:00
import { assertDev } from '../../util/assert';
// State
2023-02-24 23:18:57 +00:00
export type AudioPlayerContent = ReadonlyDeep<{
conversationId: string;
context: string;
current: VoiceNoteForPlayback;
queue: ReadonlyArray<VoiceNoteForPlayback>;
nextMessageTimestamp: number | undefined;
// playing because it followed a message
// false on the first of a consecutive group
isConsecutive: boolean;
ourConversationId: string | undefined;
}>;
export type ActiveAudioPlayerStateType = ReadonlyDeep<{
playing: boolean;
currentTime: number;
playbackRate: number;
2023-02-28 13:07:40 +00:00
duration: number | undefined; // never zero or NaN
startPosition: number;
content: AudioPlayerContent;
}>;
export type AudioPlayerStateType = ReadonlyDeep<{
2023-02-24 23:18:57 +00:00
active: ActiveAudioPlayerStateType | undefined;
}>;
// Actions
export type SetMessageAudioAction = ReadonlyDeep<{
type: 'audioPlayer/SET_MESSAGE_AUDIO';
payload:
| {
2023-02-24 23:18:57 +00:00
conversationId: string;
context: string;
2023-02-24 23:18:57 +00:00
current: VoiceNoteForPlayback;
queue: ReadonlyArray<VoiceNoteForPlayback>;
isConsecutive: boolean;
// timestamp of the message following the last one in the queue
nextMessageTimestamp: number | undefined;
ourConversationId: string | undefined;
startPosition: number;
playbackRate: number;
}
| undefined;
}>;
type SetPlaybackRate = ReadonlyDeep<{
type: 'audioPlayer/SET_PLAYBACK_RATE';
payload: number;
}>;
2023-02-24 23:18:57 +00:00
export type SetIsPlayingAction = ReadonlyDeep<{
type: 'audioPlayer/SET_IS_PLAYING';
payload: boolean;
}>;
type CurrentTimeUpdated = ReadonlyDeep<{
type: 'audioPlayer/CURRENT_TIME_UPDATED';
payload: number;
}>;
2023-02-28 13:07:40 +00:00
type SetPosition = ReadonlyDeep<{
type: 'audioPlayer/SET_POSITION';
payload: number;
}>;
type MessageAudioEnded = ReadonlyDeep<{
type: 'audioPlayer/MESSAGE_AUDIO_ENDED';
}>;
type DurationChanged = ReadonlyDeep<{
type: 'audioPlayer/DURATION_CHANGED';
2023-02-28 13:07:40 +00:00
payload: number | undefined;
2023-02-24 23:18:57 +00:00
}>;
type AudioPlayerActionType = ReadonlyDeep<
| SetMessageAudioAction
| SetIsPlayingAction
| SetPlaybackRate
| MessageAudioEnded
| CurrentTimeUpdated
| DurationChanged
2023-02-28 13:07:40 +00:00
| SetPosition
>;
// Action Creators
export const actions = {
2023-02-24 23:18:57 +00:00
loadMessageAudio,
setPlaybackRate,
2023-02-28 13:07:40 +00:00
currentTimeUpdated,
durationChanged,
setIsPlaying,
2023-02-28 13:07:40 +00:00
setPosition,
2023-02-24 23:18:57 +00:00
pauseVoiceNotePlayer,
unloadMessageAudio,
2023-02-28 13:07:40 +00:00
messageAudioEnded,
};
2023-02-28 13:07:40 +00:00
function messageAudioEnded(): MessageAudioEnded {
return {
type: 'audioPlayer/MESSAGE_AUDIO_ENDED',
};
}
function durationChanged(value: number | undefined): DurationChanged {
assertDev(
!Number.isNaN(value) && (value === undefined || value > 0),
`Duration must be > 0 if defined, got ${value}`
);
return {
type: 'audioPlayer/DURATION_CHANGED',
payload: value,
};
}
2023-02-24 23:18:57 +00:00
export const useAudioPlayerActions = (): BoundActionCreatorsMapObject<
typeof actions
> => useBoundActions(actions);
2023-02-28 13:07:40 +00:00
function currentTimeUpdated(value: number): CurrentTimeUpdated {
return {
type: 'audioPlayer/CURRENT_TIME_UPDATED',
payload: value,
};
}
2023-02-28 13:07:40 +00:00
function setPosition(positionAsRatio: number): SetPosition {
return {
type: 'audioPlayer/SET_POSITION',
payload: positionAsRatio,
};
}
function setPlaybackRate(
rate: number
): ThunkAction<
void,
RootStateType,
unknown,
SetPlaybackRate | ConversationChangedActionType
> {
2023-02-24 23:18:57 +00:00
return (dispatch, getState) => {
const { audioPlayer } = getState();
const { active } = audioPlayer;
2023-02-28 13:07:40 +00:00
if (!active) {
2023-02-24 23:18:57 +00:00
log.warn('audioPlayer.setPlaybackRate: No active message audio');
return;
}
dispatch({
type: 'audioPlayer/SET_PLAYBACK_RATE',
payload: rate,
});
// update the preference for the conversation
2023-02-24 23:18:57 +00:00
const { conversationId } = active.content;
dispatch(
setVoiceNotePlaybackRate({
conversationId,
rate,
})
);
};
}
2023-02-24 23:18:57 +00:00
/**
* Load message audio into the "content", the smart MiniPlayer will then play it
*/
function loadMessageAudio({
voiceNoteData,
position,
context,
ourConversationId,
}: {
voiceNoteData: VoiceNoteAndConsecutiveForPlayback;
position: number;
context: string;
ourConversationId: string;
}): SetMessageAudioAction {
const {
conversationId,
voiceNote,
consecutiveVoiceNotes,
playbackRate,
nextMessageTimestamp,
} = voiceNoteData;
return {
type: 'audioPlayer/SET_MESSAGE_AUDIO',
payload: {
conversationId,
context,
current: voiceNote,
queue: consecutiveVoiceNotes,
isConsecutive: false,
nextMessageTimestamp,
ourConversationId,
startPosition: position,
playbackRate,
},
};
}
2023-02-28 13:07:40 +00:00
function setIsPlaying(value: boolean): SetIsPlayingAction {
return {
type: 'audioPlayer/SET_IS_PLAYING',
payload: value,
2023-02-24 23:18:57 +00:00
};
}
2023-02-24 23:18:57 +00:00
/**
* alias for callers that just want to pause any voice notes before starting
* their own playback: story viewer, media viewer, calling
*/
export function pauseVoiceNotePlayer(): ReturnType<typeof setIsPlaying> {
return setIsPlaying(false);
}
export function unloadMessageAudio(): SetMessageAudioAction {
return {
type: 'audioPlayer/SET_MESSAGE_AUDIO',
payload: undefined,
};
}
export function getEmptyState(): AudioPlayerStateType {
return {
active: undefined,
};
}
export function reducer(
state: Readonly<AudioPlayerStateType> = getEmptyState(),
action: Readonly<
| AudioPlayerActionType
| MessageDeletedActionType
| MessageChangedActionType
2023-02-24 23:18:57 +00:00
| MessagesAddedActionType
2022-06-16 19:12:50 +00:00
| SelectedConversationChangedActionType
>
): AudioPlayerStateType {
2023-02-24 23:18:57 +00:00
const { active } = state;
if (action.type === 'audioPlayer/SET_MESSAGE_AUDIO') {
const { payload } = action;
return {
...state,
2023-02-28 13:07:40 +00:00
active:
payload === undefined
? undefined
: {
currentTime: 0,
duration: undefined,
playing: true,
playbackRate: payload.playbackRate,
content: payload,
startPosition: payload.startPosition,
},
};
}
2023-02-24 23:18:57 +00:00
if (action.type === 'audioPlayer/CURRENT_TIME_UPDATED') {
if (!active) {
return state;
}
return {
...state,
2023-02-24 23:18:57 +00:00
active: {
...active,
currentTime: action.payload,
},
};
}
2023-02-24 23:18:57 +00:00
if (action.type === 'audioPlayer/DURATION_CHANGED') {
if (!active) {
return state;
}
return {
...state,
2023-02-24 23:18:57 +00:00
active: {
...active,
duration: action.payload,
},
};
}
2023-02-24 23:18:57 +00:00
if (action.type === 'audioPlayer/SET_IS_PLAYING') {
if (!active) {
return state;
}
return {
...state,
2023-02-24 23:18:57 +00:00
active: {
...active,
playing: action.payload,
},
};
}
2023-02-28 13:07:40 +00:00
if (action.type === 'audioPlayer/SET_POSITION') {
if (!active) {
return state;
}
return {
...state,
active: {
...active,
startPosition: action.payload,
},
};
}
2023-02-24 23:18:57 +00:00
if (action.type === 'audioPlayer/SET_PLAYBACK_RATE') {
if (!active) {
return state;
}
return {
...state,
2023-02-24 23:18:57 +00:00
active: {
...active,
playbackRate: action.payload,
},
};
}
2023-02-24 23:18:57 +00:00
if (action.type === 'MESSAGES_ADDED') {
if (!active) {
return state;
}
const { content } = active;
if (!content) {
return state;
}
if (content.conversationId !== action.payload.conversationId) {
return state;
}
const updatedQueue: Array<VoiceNoteForPlayback> = [...content.queue];
for (const message of action.payload.messages) {
if (message.deletedForEveryone) {
continue;
}
if (message.timestamp < content.current.timestamp) {
continue;
}
// in range of the queue
if (
content.nextMessageTimestamp === undefined ||
message.timestamp < content.nextMessageTimestamp
) {
if (message.type !== 'incoming' && message.type !== 'outgoing') {
continue;
}
const voiceNote = extractVoiceNoteForPlayback(
message,
content.ourConversationId
);
// index of the message in the queue after this one
const idx = updatedQueue.findIndex(
m => m.timestamp > message.timestamp
);
// break up consecutive queue: drop values older than this message
if (!voiceNote && idx !== -1) {
updatedQueue.splice(idx);
continue;
}
// insert a new voice note
if (voiceNote) {
if (idx === -1) {
updatedQueue.push(voiceNote);
} else {
updatedQueue.splice(idx, 0, voiceNote);
}
}
}
}
if (updatedQueue.length === content.queue.length) {
return state;
}
return {
...state,
2023-02-24 23:18:57 +00:00
active: {
...active,
content: {
...content,
queue: updatedQueue,
},
},
};
}
2023-02-24 23:18:57 +00:00
if (action.type === 'audioPlayer/MESSAGE_AUDIO_ENDED') {
if (!active) {
return state;
}
const { content } = active;
if (!content) {
return state;
}
const { queue } = content;
const [nextVoiceNote, ...newQueue] = queue;
if (nextVoiceNote) {
return {
...state,
active: {
...active,
2023-02-28 13:07:40 +00:00
startPosition: 0,
2023-02-24 23:18:57 +00:00
content: {
...content,
current: nextVoiceNote,
queue: newQueue,
isConsecutive: true,
},
},
};
}
return {
...state,
2023-02-28 13:07:40 +00:00
active: undefined,
};
}
2023-02-24 23:18:57 +00:00
// Reset active when played message is deleted on expiration or DOE.
if (
action.type === 'MESSAGE_DELETED' ||
(action.type === 'MESSAGE_CHANGED' &&
action.payload.data.deletedForEveryone)
) {
const { id } = action.payload;
2023-02-24 23:18:57 +00:00
if (!active) {
return state;
}
2023-02-24 23:18:57 +00:00
const { content } = active;
2023-02-24 23:18:57 +00:00
// if we deleted the message currently being played
// move on to the next message
if (content.current.id === id) {
const [next, ...rest] = content.queue;
if (!next) {
return {
...state,
2023-02-28 13:07:40 +00:00
active: undefined,
2023-02-24 23:18:57 +00:00
};
}
return {
...state,
active: {
...active,
content: {
...content,
current: next,
queue: rest,
},
},
};
}
// if we deleted a message on the queue
// just update the queue
const message = content.queue.find(el => el.id === id);
if (message) {
return {
...state,
active: {
...active,
content: {
...content,
queue: content.queue.filter(el => el.id !== id),
},
},
};
}
return state;
}
2023-02-24 23:18:57 +00:00
// if it's a voice note
// and this event is letting us know that it has downloaded
// update the url if it's in the queue
if (action.type === 'MESSAGE_CHANGED') {
2023-02-24 23:18:57 +00:00
if (!active) {
return state;
}
const { content } = active;
2023-02-24 23:18:57 +00:00
if (!content) {
return state;
}
2023-02-24 23:18:57 +00:00
const { id, data } = action.payload;
const { attachments } = data;
const attachment = attachments?.[0];
if (
!attachments ||
!attachment ||
!isAudio(attachments) ||
!attachment.path
) {
return state;
}
2023-02-24 23:18:57 +00:00
const url = getAttachmentUrlForPath(attachment.path);
// if we got the url for the current message
if (
content.current.id === id &&
content.current.url === undefined &&
data.id
) {
return {
...state,
active: {
...active,
content: {
...content,
current: {
...content.current,
url,
},
},
},
};
}
// if it's in the queue
const idx = content.queue.findIndex(v => v.id === id);
if (idx !== -1) {
const updatedQueue = [...content.queue];
updatedQueue[idx] = {
...updatedQueue[idx],
url,
};
return {
...state,
active: {
...active,
content: {
...content,
queue: updatedQueue,
},
},
};
}
return state;
}
return state;
}