mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-23 04:18:21 +00:00
[view history/snapshot/trash file] rewrote them with react
This commit is contained in:
28
frontend/src/components/file-content-view/video.js
Normal file
28
frontend/src/components/file-content-view/video.js
Normal file
@@ -0,0 +1,28 @@
|
||||
import React from 'react';
|
||||
import VideoPlayer from '../video-player';
|
||||
|
||||
import '../../css/video-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 video-file-view">
|
||||
<VideoPlayer { ...videoJsOptions } />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default FileContent;
|
Reference in New Issue
Block a user