67 lines
2.3 KiB
TypeScript
67 lines
2.3 KiB
TypeScript
import type { OdFileObject } from '../../types'
|
|
import { FC, useState } from 'react'
|
|
|
|
import ReactAudioPlayer from 'react-audio-player'
|
|
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
|
|
|
|
import DownloadButtonGroup from '../DownloadBtnGtoup'
|
|
import { DownloadBtnContainer, PreviewContainer } from './Containers'
|
|
import { LoadingIcon } from '../Loading'
|
|
|
|
enum PlayerState {
|
|
Loading,
|
|
Ready,
|
|
Playing,
|
|
Paused,
|
|
}
|
|
|
|
const AudioPreview: FC<{ file: OdFileObject }> = ({ file }) => {
|
|
const [playerStatus, setPlayerStatus] = useState(PlayerState.Loading)
|
|
|
|
return (
|
|
<>
|
|
<PreviewContainer>
|
|
<div className="flex flex-col space-y-4 md:flex-row md:space-x-4">
|
|
<div className="flex aspect-square w-full items-center justify-center rounded bg-gray-100 transition-all duration-75 dark:bg-gray-700 md:w-40">
|
|
{playerStatus === PlayerState.Loading ? (
|
|
<LoadingIcon className="inline-block h-5 w-5 animate-spin" />
|
|
) : (
|
|
<FontAwesomeIcon
|
|
className={`h-5 w-5 ${playerStatus === PlayerState.Playing ? 'animate-spin' : ''}`}
|
|
icon="music"
|
|
size="2x"
|
|
/>
|
|
)}
|
|
</div>
|
|
<div className="flex w-full flex-col space-y-2">
|
|
<div>{file.name}</div>
|
|
<div className="pb-4 text-sm text-gray-500">
|
|
Last modified:{' '}
|
|
{new Date(file.lastModifiedDateTime).toLocaleString(undefined, {
|
|
dateStyle: 'short',
|
|
timeStyle: 'short',
|
|
})}
|
|
</div>
|
|
|
|
<ReactAudioPlayer
|
|
className="h-11 w-full"
|
|
src={file['@microsoft.graph.downloadUrl']}
|
|
controls
|
|
onCanPlay={() => setPlayerStatus(PlayerState.Ready)}
|
|
onPlay={() => setPlayerStatus(PlayerState.Playing)}
|
|
onPause={() => setPlayerStatus(PlayerState.Paused)}
|
|
onError={() => setPlayerStatus(PlayerState.Paused)}
|
|
onEnded={() => setPlayerStatus(PlayerState.Paused)}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</PreviewContainer>
|
|
|
|
<DownloadBtnContainer>
|
|
<DownloadButtonGroup downloadUrl={file['@microsoft.graph.downloadUrl']} />
|
|
</DownloadBtnContainer>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default AudioPreview
|