![Fedor Indutny](/assets/img/avatar_default.png)
Sending corrupted audio should not leave user with non-functional UI. Mark attachment as corrupted and show generic attachment UI for it instead.
39 lines
1 KiB
TypeScript
39 lines
1 KiB
TypeScript
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { MessageAudio } from '../../components/conversation/MessageAudio';
|
|
|
|
import { mapDispatchToProps } from '../actions';
|
|
import { StateType } from '../reducer';
|
|
import { WaveformCache } from '../../types/Audio';
|
|
import { LocalizerType } from '../../types/Util';
|
|
import { AttachmentType } from '../../types/Attachment';
|
|
|
|
export type Props = {
|
|
audio: HTMLAudioElement;
|
|
audioContext: AudioContext;
|
|
waveformCache: WaveformCache;
|
|
|
|
direction?: 'incoming' | 'outgoing';
|
|
id: string;
|
|
i18n: LocalizerType;
|
|
attachment: AttachmentType;
|
|
withContentAbove: boolean;
|
|
withContentBelow: boolean;
|
|
|
|
buttonRef: React.RefObject<HTMLButtonElement>;
|
|
kickOffAttachmentDownload(): void;
|
|
onCorrupted(): void;
|
|
};
|
|
|
|
const mapStateToProps = (state: StateType, props: Props) => {
|
|
return {
|
|
...props,
|
|
...state.audioPlayer,
|
|
};
|
|
};
|
|
|
|
const smart = connect(mapStateToProps, mapDispatchToProps);
|
|
export const SmartMessageAudio = smart(MessageAudio);
|