signal-desktop/ts/state/smart/renderAudioAttachment.tsx
2023-02-24 15:18:57 -08:00

26 lines
816 B
TypeScript

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import type { ReactElement } from 'react';
import React from 'react';
import { VoiceNotesPlaybackContext } from '../../components/VoiceNotesPlaybackContext';
import type { Props as MessageAudioProps } from './MessageAudio';
import { SmartMessageAudio } from './MessageAudio';
type AudioAttachmentProps = Omit<MessageAudioProps, 'computePeaks'>;
export function renderAudioAttachment(
props: AudioAttachmentProps
): ReactElement {
return (
<VoiceNotesPlaybackContext.Consumer>
{voiceNotesPlaybackProps => {
return (
voiceNotesPlaybackProps && (
<SmartMessageAudio {...props} {...voiceNotesPlaybackProps} />
)
);
}}
</VoiceNotesPlaybackContext.Consumer>
);
}