mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
156 lines
4.3 KiB
TypeScript
156 lines
4.3 KiB
TypeScript
import React, { useCallback, useState, useEffect, memo, useMemo } from 'react';
|
|
import { connect } from 'react-redux';
|
|
import { selectPlayer } from '~/redux/player/selectors';
|
|
import * as PLAYER_ACTIONS from '~/redux/player/actions';
|
|
import { IFile } from '~/redux/types';
|
|
import { PLAYER_STATES } from '~/redux/player/constants';
|
|
import { Player, IPlayerProgress } from '~/utils/player';
|
|
import classNames from 'classnames';
|
|
import styles from './styles.module.scss';
|
|
import { Icon } from '~/components/input/Icon';
|
|
import { InputText } from '~/components/input/InputText';
|
|
|
|
const mapStateToProps = state => ({
|
|
player: selectPlayer(state),
|
|
});
|
|
|
|
const mapDispatchToProps = {
|
|
playerSetFileAndPlay: PLAYER_ACTIONS.playerSetFileAndPlay,
|
|
playerPlay: PLAYER_ACTIONS.playerPlay,
|
|
playerPause: PLAYER_ACTIONS.playerPause,
|
|
playerSeek: PLAYER_ACTIONS.playerSeek,
|
|
};
|
|
|
|
type Props = ReturnType<typeof mapStateToProps> &
|
|
typeof mapDispatchToProps & {
|
|
file: IFile;
|
|
isEditing?: boolean;
|
|
onDelete?: (id: IFile['id']) => void;
|
|
onTitleChange?: (file_id: IFile['id'], title: string) => void;
|
|
};
|
|
|
|
const AudioPlayerUnconnected = memo(
|
|
({
|
|
file,
|
|
onDelete,
|
|
isEditing,
|
|
onTitleChange,
|
|
player: { file: current, status },
|
|
playerSetFileAndPlay,
|
|
playerPlay,
|
|
playerPause,
|
|
playerSeek,
|
|
}: Props) => {
|
|
const [playing, setPlaying] = useState(false);
|
|
const [progress, setProgress] = useState<IPlayerProgress>({
|
|
progress: 0,
|
|
current: 0,
|
|
total: 0,
|
|
});
|
|
|
|
const onPlay = useCallback(() => {
|
|
if (isEditing) return;
|
|
|
|
if (current && current.id === file.id) {
|
|
if (status === PLAYER_STATES.PLAYING) return playerPause();
|
|
return playerPlay();
|
|
}
|
|
|
|
playerSetFileAndPlay(file);
|
|
}, [file, current, status, playerPlay, playerPause, playerSetFileAndPlay, isEditing]);
|
|
|
|
const onProgress = useCallback(
|
|
({ detail }: { detail: IPlayerProgress }) => {
|
|
if (!detail || !detail.total) return;
|
|
setProgress(detail);
|
|
},
|
|
[setProgress]
|
|
);
|
|
|
|
const onSeek = useCallback(
|
|
event => {
|
|
event.stopPropagation();
|
|
const { clientX, target } = event;
|
|
const { left, width } = target.getBoundingClientRect();
|
|
playerSeek((clientX - left) / width);
|
|
},
|
|
[playerSeek]
|
|
);
|
|
|
|
const onDropClick = useCallback(() => {
|
|
if (!onDelete) return;
|
|
|
|
onDelete(file.id);
|
|
}, [file, onDelete]);
|
|
|
|
const title = useMemo(
|
|
() =>
|
|
(file.metadata &&
|
|
(file.metadata.title ||
|
|
[file.metadata.id3artist, file.metadata.id3title].filter(el => el).join(' - '))) ||
|
|
file.orig_name ||
|
|
'',
|
|
[file.metadata]
|
|
);
|
|
|
|
const onRename = useCallback(
|
|
(val: string) => {
|
|
if (!onTitleChange) return;
|
|
|
|
onTitleChange(file.id, val);
|
|
},
|
|
[onTitleChange, file.id]
|
|
);
|
|
|
|
useEffect(() => {
|
|
const active = current && current.id === file.id;
|
|
setPlaying(!!current && current.id === file.id);
|
|
|
|
if (active) Player.on('playprogress', onProgress);
|
|
|
|
return () => {
|
|
if (active) Player.off('playprogress', onProgress);
|
|
};
|
|
}, [file, current, setPlaying, onProgress]);
|
|
|
|
return (
|
|
<div onClick={onPlay} className={classNames(styles.wrap, { playing })}>
|
|
{onDelete && (
|
|
<div className={styles.drop} onMouseDown={onDropClick}>
|
|
<Icon icon="close" />
|
|
</div>
|
|
)}
|
|
|
|
<div className={styles.playpause}>
|
|
{playing && status === PLAYER_STATES.PLAYING ? (
|
|
<Icon icon="pause" />
|
|
) : (
|
|
<Icon icon="play" />
|
|
)}
|
|
</div>
|
|
|
|
{isEditing ? (
|
|
<div className={styles.input}>
|
|
<InputText
|
|
placeholder={title}
|
|
handler={onRename}
|
|
value={file.metadata && file.metadata.title}
|
|
/>
|
|
</div>
|
|
) : (
|
|
<div className={styles.content}>
|
|
<div className={styles.title}>
|
|
<div className={styles.title}>{title || 'Unknown'}</div>
|
|
</div>
|
|
|
|
<div className={styles.progress} onClick={onSeek}>
|
|
<div className={styles.bar} style={{ width: `${progress.progress}%` }} />
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
);
|
|
|
|
export const AudioPlayer = connect(mapStateToProps, mapDispatchToProps)(AudioPlayerUnconnected);
|