123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383 |
- import BaseComponent, { BaseProps } from '../_base/baseComponent';
- import React from 'react';
- import cls from 'classnames';
- import '@douyinfe/semi-foundation/audioPlayer/audioPlayer.scss';
- import { cssClasses } from '@douyinfe/semi-foundation/audioPlayer/constants';
- import Button from '../button';
- import Dropdown from '../dropdown';
- import Image from '../image';
- import Tooltip from '../tooltip';
- import Popover from '../popover';
- import { IconAlertCircle, IconBackward, IconFastForward, IconPause, IconPlay, IconRefresh, IconRestart, IconVolume2, IconVolumnSilent } from '@douyinfe/semi-icons';
- import AudioSlider from './audioSlider';
- import AudioPlayerFoundation from '@douyinfe/semi-foundation/audioPlayer/foundation';
- import { AudioPlayerAdapter } from '@douyinfe/semi-foundation/audioPlayer/foundation';
- import { formatTime } from './utils';
- type AudioSrc = string
- type AudioInfo = {
- title?: string;
- cover?: string;
- src: string
- }
- type AudioUrlArray = (AudioInfo | string)[];
- type AudioUrl = AudioSrc | AudioInfo | AudioUrlArray
- export type AudioPlayerTheme = 'dark' | 'light'
- export interface AudioPlayerProps extends BaseProps {
- audioUrl: AudioUrl;
- autoPlay: boolean;
- showToolbar?: boolean;
- skipDuration?: number;
- theme?: AudioPlayerTheme;
- className?: string;
- style?: React.CSSProperties
- }
- export interface AudioPlayerState {
- isPlaying: boolean;
- currentIndex: number;
- totalTime: number;
- currentTime: number;
- currentRate: { label: string; value: number };
- volume: number;
- error: boolean
- }
- const prefixCls = cssClasses.PREFIX;
- class AudioPlayer extends BaseComponent<AudioPlayerProps, AudioPlayerState> {
- audioRef = React.createRef<HTMLAudioElement>();
- static defaultProps: Partial<AudioPlayerProps> = {
- autoPlay: false,
- showToolbar: true,
- skipDuration: 10,
- theme: 'dark',
- };
- rateOptions = [
- { label: '0.5x', value: 0.5 },
- { label: '0.75x', value: 0.75 },
- { label: '1.0x', value: 1 },
- { label: '1.5x', value: 1.5 },
- { label: '2.0x', value: 2 },
- ];
- foundation!: AudioPlayerFoundation;
- constructor(props: AudioPlayerProps) {
- super(props);
- this.state = {
- isPlaying: false,
- currentIndex: 0,
- totalTime: 0,
- currentTime: 0,
- currentRate: { label: '1.0x', value: 1 },
- volume: 100,
- error: false,
- };
- this.audioRef = React.createRef<HTMLAudioElement>();
- this.foundation = new AudioPlayerFoundation(this.adapter);
- }
- get adapter(): AudioPlayerAdapter<AudioPlayerProps, AudioPlayerState> {
- return {
- ...super.adapter,
- init: () => {
- if (this.audioRef.current) {
- this.audioRef.current.addEventListener('loadedmetadata', () => {
- this.foundation.initAudioState();
- });
- this.audioRef.current.addEventListener('error', () => {
- this.foundation.errorHandler();
- });
- this.audioRef.current.addEventListener('ended', () => {
- this.foundation.endHandler();
- });
- }
- },
- destroy: () => {
- if (this.audioRef.current) {
- this.audioRef.current.removeEventListener('loadedmetadata', () => {
- this.foundation.initAudioState();
- });
- this.audioRef.current.removeEventListener('error', () => {
- this.foundation.errorHandler();
- });
- this.audioRef.current.removeEventListener('ended', () => {
- this.foundation.endHandler();
- });
- }
- },
- handleStatusClick: () => {
- if (!this.audioRef.current) return;
- if (this.state.isPlaying) {
- this.audioRef.current.pause();
- } else {
- this.audioRef.current.play();
- }
- this.setState({
- isPlaying: !this.state.isPlaying,
- });
- },
- getAudioRef: () => this.audioRef.current,
- resetAudioState: () => {
- this.setState({
- isPlaying: true,
- currentTime: 0,
- currentRate: { label: '1.0x', value: 1 }
- }, () => {
- if (this.audioRef.current) {
- this.audioRef.current.currentTime = this.state.currentTime;
- this.audioRef.current.playbackRate = this.state.currentRate.value;
- this.audioRef.current.play();
- }
- });
- },
- handleTimeUpdate: () => {
- if (!this.audioRef.current) return;
- this.setState({
- currentTime: this.audioRef.current.currentTime,
- });
- },
- handleTrackChange: (direction: 'next' | 'prev') => {
- if (!this.audioRef.current) return;
- const { audioUrl } = this.props as AudioPlayerProps;
- const isAudioUrlArray = Array.isArray(audioUrl);
- if (isAudioUrlArray) {
- if (direction === 'next') {
- this.setState({
- currentIndex: (this.state.currentIndex + 1) % audioUrl.length,
- error: false,
- });
- } else {
- this.setState({
- currentIndex: (this.state.currentIndex - 1 + audioUrl.length) % audioUrl.length,
- error: false,
- });
- }
- }
- this.foundation.resetAudioState();
- },
- handleTimeChange: (value: number) => {
- if (!this.audioRef.current) return;
- this.audioRef.current.currentTime = value;
- this.setState({
- currentTime: value,
- });
- },
- handleRefresh: () => {
- if (!this.audioRef.current) return;
- if (this.state.error) {
- this.audioRef.current.load();
- } else {
- this.audioRef.current.currentTime = 0;
- this.setState({
- currentTime: 0,
- });
- }
- },
- handleSpeedChange: (value: { label: string; value: number }) => {
- if (!this.audioRef.current) return;
- this.audioRef.current.playbackRate = value.value;
- this.setState({
- currentRate: value,
- });
- },
- handleSeek: (direction: number) => {
- if (!this.audioRef.current) return;
- const { skipDuration = 10 } = this.props;
- const newTime = Math.min(
- Math.max(this.audioRef.current.currentTime + (direction * skipDuration), 0),
- this.audioRef.current.duration
- );
- this.audioRef.current.currentTime = newTime;
- },
- handleVolumeChange: (value: number) => {
- if (!this.audioRef.current) return;
- const volume = Math.floor(value);
- this.audioRef.current.volume = volume / 100;
- this.setState({
- volume: volume,
- });
- },
- };
- }
- componentDidMount() {
- this.foundation.init();
- }
- componentWillUnmount() {
- this.foundation.destroy();
- }
- handleStatusClick = () => {
- this.foundation.handleStatusClick();
- }
- handleTrackChange = (direction: 'next' | 'prev') => {
- this.foundation.handleTrackChange(direction);
- }
- handleTimeChange = (value: number) => {
- this.foundation.handleTimeChange(value);
- }
- handleRefresh = () => {
- this.foundation.handleRefresh();
- }
- handleSpeedChange = (value: { label: string; value: number }) => {
- this.foundation.handleSpeedChange(value);
- }
- handleSeek = (direction: number) => {
- this.foundation.handleSeek(direction);
- }
- handleTimeUpdate = () => {
- this.foundation.handleTimeUpdate();
- }
- handleVolumeChange = (value: number) => {
- this.foundation.handleVolumeChange(value);
- }
- handleVolumeSilent = () => {
- if (!this.audioRef.current) return;
- this.audioRef.current.volume = this.state.volume === 0 ? 0.5 : 0;
- this.setState({
- volume: this.state.volume === 0 ? 50 : 0,
- });
- }
- getAudioInfo = (audioUrl: AudioUrl) => {
- const isAudioUrlArray = Array.isArray(audioUrl);
- if (isAudioUrlArray) {
- const audioInfo = audioUrl[this.state.currentIndex];
- if (typeof audioInfo === 'string') {
- return { src: audioInfo, audioTitle: null, audioCover: null };
- } else {
- return { src: audioInfo.src, audioTitle: audioInfo.title, audioCover: audioInfo.cover };
- }
- } else if (typeof audioUrl === 'string') {
- return { src: audioUrl, audioTitle: null, audioCover: null };
- } else {
- return { src: audioUrl.src, audioTitle: audioUrl.title, audioCover: audioUrl.cover };
- }
- }
- renderControl = () => {
- const { error } = this.state;
- const isAudioUrlArray = Array.isArray(this.props.audioUrl);
- const iconClass = cls(`${prefixCls}-control-button-icon`);
- const circleStyle = {
- borderRadius: '50%',
- };
- const transparentStyle = {
- background: 'transparent',
- };
- const playStyle = {
- marginLeft: '1px',
- };
- return <div className={cls(`${prefixCls}-control`)}>
- {isAudioUrlArray && <Tooltip content='Previous' autoAdjustOverflow showArrow={false}>
- <Button style={{ ...circleStyle, ...transparentStyle }} size='large' icon={<IconRestart size='large' className={iconClass} />} onClick={() => this.handleTrackChange('prev')} />
- </Tooltip>}
- <Button style={circleStyle} size='large' disabled={error} onClick={this.handleStatusClick} icon={this.state.isPlaying ? <IconPause size='large' /> : <IconPlay style={playStyle} size='large' />} className={cls(`${cssClasses.PREFIX}-control-button-play`, { [`${cssClasses.PREFIX}-control-button-play-disabled`]: error })} />
- {isAudioUrlArray && <Tooltip content='Next' autoAdjustOverflow showArrow={false}>
- <Button style={{ ...circleStyle, ...transparentStyle }} size='large' icon={<IconRestart size='large' rotate={180} className={iconClass} />} onClick={() => this.handleTrackChange('next')} />
- </Tooltip>}
- </div>;
- }
- renderInfo = () => {
- const { audioTitle, audioCover } = this.getAudioInfo(this.props.audioUrl);
- const { theme } = this.props;
- const { currentTime, totalTime, error } = this.state;
- return <div className={cls(`${prefixCls}-info-container`)}>
- {audioCover && <Image src={audioCover} width={50} height={50} />}
- <div className={cls(`${prefixCls}-info`)}>
- {audioTitle && <div className={cls(`${prefixCls}-info-title`)}>{audioTitle}{error && this.renderError()}</div>}
- {!error && <div className={cls(`${prefixCls}-info-time`)}>
- <span style={{ width: '38px' }}>{formatTime(currentTime)}</span>
- <div className={cls(`${prefixCls}-slider-container`)}>
- <AudioSlider value={currentTime} max={totalTime} theme={theme} onChange={this.handleTimeChange} />
- </div>
- <span style={{ width: '38px' }}>{formatTime(totalTime)}</span>
- </div>}
- </div>
- </div>;
- }
- renderToolbar = () => {
- const { volume, error } = this.state;
- const { skipDuration = 10, theme = 'dark' } = this.props;
- const iconClass = cls(`${prefixCls}-control-button-icon`);
- const transparentStyle = {
- background: 'transparent',
- };
- const isVolumeSilent = volume === 0;
- return !error ? (<div className={cls(`${prefixCls}-control`)}>
- <Popover autoAdjustOverflow content={
- <div className={cls(`${prefixCls}-control-volume`)}>
- <div className={cls(`${prefixCls}-control-volume-title`)}>{volume}%</div>
- <AudioSlider value={volume} max={100} vertical height={120} theme={theme} showTooltip={false} onChange={this.handleVolumeChange} />
- </div>
- }>
- <Button style={transparentStyle} icon={!isVolumeSilent ? <IconVolume2 className={iconClass} /> : <IconVolumnSilent className={iconClass} />} onClick={this.handleVolumeSilent} />
- </Popover>
- <Tooltip content={`Backward ${skipDuration}s`} autoAdjustOverflow showArrow={false}>
- <Button
- style={transparentStyle}
- icon={<IconBackward className={iconClass} />}
- onClick={() => this.handleSeek(-1)}
- />
- </Tooltip>
- <Tooltip content={`Forward ${skipDuration}s`} autoAdjustOverflow showArrow={false}>
- <Button
- style={transparentStyle}
- icon={<IconFastForward className={iconClass} />}
- onClick={() => this.handleSeek(1)}
- />
- </Tooltip>
- <Dropdown className={cls(`${prefixCls}-control-speed-menu`)} render={<Dropdown.Menu>
- {this.rateOptions.map((option) => (
- <Dropdown.Item className={cls(`${prefixCls}-control-speed-menu-item`)} key={option.value} onClick={() => this.handleSpeedChange(option)} active={option.value === this.state.currentRate.value}>
- {option.label}
- </Dropdown.Item>
- ))}
- </Dropdown.Menu>} onChange={this.handleSpeedChange}>
- <div className={cls(`${prefixCls}-control-speed`)}>
- <span>{this.state.currentRate.label}</span>
- </div>
- </Dropdown>
- <Button onClick={() => this.handleRefresh()} style={transparentStyle} icon={<IconRefresh style={{ transform: 'rotateY(180deg)' }} className={iconClass} />} />
- </div>) : (<div className={cls(`${prefixCls}-control`)}>
- <Button onClick={() => this.handleRefresh()} style={transparentStyle} icon={<IconRefresh style={{ transform: 'rotateY(180deg)' }} className={iconClass} />} />
- </div>);
- }
- renderError = () => <div className={cls(`${prefixCls}-error`)}><IconAlertCircle size='large' />音频加载失败</div>
- render() {
- const { audioUrl, autoPlay, className, style, showToolbar = true, theme = 'dark' } = this.props as AudioPlayerProps;
- const src = this.getAudioInfo(audioUrl).src;
- return (
- <div className={cls(prefixCls, className, `${prefixCls}-${theme}`)} style={style}>
- <audio src={src} autoPlay={autoPlay} className={cls(prefixCls, className)} style={style} ref={this.audioRef} onTimeUpdate={this.handleTimeUpdate}>
- <track kind="captions" src={src} />
- </audio>
- {this.renderControl()}
- {this.renderInfo()}
- {showToolbar && this.renderToolbar()}
- </div>
- );
- }
- }
- export default AudioPlayer;
|