2023-02-24 23:18:57 +00:00
|
|
|
// Copyright 2022 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2023-02-28 13:07:40 +00:00
|
|
|
import React, { useCallback } from 'react';
|
2023-02-24 23:18:57 +00:00
|
|
|
import { useSelector } from 'react-redux';
|
|
|
|
import { MiniPlayer, PlayerState } from '../../components/MiniPlayer';
|
|
|
|
import { useAudioPlayerActions } from '../ducks/audioPlayer';
|
|
|
|
import {
|
|
|
|
selectAudioPlayerActive,
|
|
|
|
selectVoiceNoteTitle,
|
|
|
|
} from '../selectors/audioPlayer';
|
|
|
|
import { getIntl } from '../selectors/user';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Wires the dispatch props and shows/hides the MiniPlayer
|
|
|
|
*
|
|
|
|
* It also triggers side-effecting actions (actual playback) in response to changes in
|
|
|
|
* the state
|
|
|
|
*/
|
|
|
|
export function SmartMiniPlayer(): JSX.Element | null {
|
|
|
|
const i18n = useSelector(getIntl);
|
|
|
|
const active = useSelector(selectAudioPlayerActive);
|
|
|
|
const getVoiceNoteTitle = useSelector(selectVoiceNoteTitle);
|
2023-02-28 13:07:40 +00:00
|
|
|
const { setIsPlaying, setPlaybackRate, unloadMessageAudio } =
|
|
|
|
useAudioPlayerActions();
|
2023-02-24 23:18:57 +00:00
|
|
|
const handlePlay = useCallback(() => setIsPlaying(true), [setIsPlaying]);
|
|
|
|
const handlePause = useCallback(() => setIsPlaying(false), [setIsPlaying]);
|
|
|
|
|
2023-02-28 13:07:40 +00:00
|
|
|
if (!active) {
|
2023-02-24 23:18:57 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
let state = PlayerState.loading;
|
|
|
|
if (active.content.current.url) {
|
|
|
|
state = active.playing ? PlayerState.playing : PlayerState.paused;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<MiniPlayer
|
|
|
|
i18n={i18n}
|
|
|
|
title={getVoiceNoteTitle(active.content.current)}
|
|
|
|
onPlay={handlePlay}
|
|
|
|
onPause={handlePause}
|
|
|
|
onPlaybackRate={setPlaybackRate}
|
|
|
|
onClose={unloadMessageAudio}
|
|
|
|
state={state}
|
|
|
|
currentTime={active.currentTime}
|
|
|
|
duration={active.duration}
|
|
|
|
playbackRate={active.playbackRate}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|