mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-17 23:34:14 +01:00
60 lines
2.0 KiB
TypeScript
60 lines
2.0 KiB
TypeScript
// Copyright 2022 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import React, { memo, useCallback } from 'react';
|
|
import { useSelector } from 'react-redux';
|
|
import { CompositionRecording } from '../../components/CompositionRecording.dom.js';
|
|
import { useAudioRecorderActions } from '../ducks/audioRecorder.preload.js';
|
|
import { useComposerActions } from '../ducks/composer.preload.js';
|
|
import { useToastActions } from '../ducks/toast.preload.js';
|
|
import { getSelectedConversationId } from '../selectors/nav.std.js';
|
|
import { getIntl } from '../selectors/user.std.js';
|
|
|
|
export const SmartCompositionRecording = memo(
|
|
function SmartCompositionRecording() {
|
|
const i18n = useSelector(getIntl);
|
|
const selectedConversationId = useSelector(getSelectedConversationId);
|
|
const { errorRecording, cancelRecording, completeRecording } =
|
|
useAudioRecorderActions();
|
|
|
|
const { sendMultiMediaMessage, saveDraftRecordingIfNeeded: saveDraft } =
|
|
useComposerActions();
|
|
const { hideToast, showToast } = useToastActions();
|
|
|
|
const handleCancel = useCallback(() => {
|
|
cancelRecording();
|
|
}, [cancelRecording]);
|
|
|
|
const handleSend = useCallback(() => {
|
|
if (selectedConversationId) {
|
|
completeRecording(selectedConversationId, voiceNoteAttachment => {
|
|
sendMultiMediaMessage(selectedConversationId, {
|
|
voiceNoteAttachment,
|
|
});
|
|
});
|
|
}
|
|
}, [selectedConversationId, completeRecording, sendMultiMediaMessage]);
|
|
const saveDraftRecordingIfNeeded = useCallback(() => {
|
|
if (selectedConversationId) {
|
|
saveDraft(selectedConversationId);
|
|
}
|
|
}, [saveDraft, selectedConversationId]);
|
|
|
|
if (!selectedConversationId) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<CompositionRecording
|
|
i18n={i18n}
|
|
onCancel={handleCancel}
|
|
onSend={handleSend}
|
|
errorRecording={errorRecording}
|
|
saveDraftRecordingIfNeeded={saveDraftRecordingIfNeeded}
|
|
showToast={showToast}
|
|
hideToast={hideToast}
|
|
/>
|
|
);
|
|
}
|
|
);
|