mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-20 02:48:51 +00:00
27 lines
545 B
JavaScript
27 lines
545 B
JavaScript
![]() |
import React from 'react';
|
||
|
import AudioPlayer from '../audio-player';
|
||
|
|
||
|
import '../../css/audio-file-view.css';
|
||
|
|
||
|
const { rawPath } = window.app.pageOptions;
|
||
|
|
||
|
class FileContent extends React.Component {
|
||
|
render() {
|
||
|
const videoJsOptions = {
|
||
|
autoplay: false,
|
||
|
controls: true,
|
||
|
preload: 'auto',
|
||
|
sources: [{
|
||
|
src: rawPath
|
||
|
}]
|
||
|
};
|
||
|
return (
|
||
|
<div className="file-view-content flex-1 audio-file-view">
|
||
|
<AudioPlayer { ...videoJsOptions } />
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default FileContent;
|