signal-desktop/ts/state/smart/renderAudioAttachment.tsx

27 lines
816 B
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 { ReactElement } from 'react';
import React from 'react';
2023-02-24 23:18:57 +00:00
import { VoiceNotesPlaybackContext } from '../../components/VoiceNotesPlaybackContext';
import type { Props as MessageAudioProps } from './MessageAudio';
import { SmartMessageAudio } from './MessageAudio';
2022-11-04 13:22:07 +00:00
type AudioAttachmentProps = Omit<MessageAudioProps, 'computePeaks'>;
export function renderAudioAttachment(
props: AudioAttachmentProps
): ReactElement {
return (
2023-02-24 23:18:57 +00:00
<VoiceNotesPlaybackContext.Consumer>
{voiceNotesPlaybackProps => {
return (
2023-02-24 23:18:57 +00:00
voiceNotesPlaybackProps && (
<SmartMessageAudio {...props} {...voiceNotesPlaybackProps} />
)
);
}}
2023-02-24 23:18:57 +00:00
</VoiceNotesPlaybackContext.Consumer>
);
}