|
|
@ -8,7 +8,7 @@ import { Button } from 'antd'
|
|
|
|
|
|
|
|
|
|
|
|
import { getUploader } from './AliyunUploaderManager'
|
|
|
|
import { getUploader } from './AliyunUploaderManager'
|
|
|
|
import { reducer, initialState } from './VideoReducer'
|
|
|
|
import { reducer, initialState } from './VideoReducer'
|
|
|
|
|
|
|
|
import { deleteVideoInCloud } from './VideoUtil'
|
|
|
|
let uploader
|
|
|
|
let uploader
|
|
|
|
const files = []
|
|
|
|
const files = []
|
|
|
|
function VideoUploadList (props) {
|
|
|
|
function VideoUploadList (props) {
|
|
|
@ -16,7 +16,7 @@ function VideoUploadList (props) {
|
|
|
|
const [videoes, setVideoes] = useState([]);
|
|
|
|
const [videoes, setVideoes] = useState([]);
|
|
|
|
const [state, dispatch] = useReducer(reducer, initialState);
|
|
|
|
const [state, dispatch] = useReducer(reducer, initialState);
|
|
|
|
const username = props.match.params.username
|
|
|
|
const username = props.match.params.username
|
|
|
|
|
|
|
|
const { showNotification } = props;
|
|
|
|
const uploaderOptions = {
|
|
|
|
const uploaderOptions = {
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -121,22 +121,23 @@ function VideoUploadList (props) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// uploader.deleteFile(index);
|
|
|
|
// uploader.deleteFile(index);
|
|
|
|
function cancelUpload(index, isSuccess) {
|
|
|
|
function cancelUpload(index, isSuccess) {
|
|
|
|
// 确定取消?
|
|
|
|
// TODO 确定取消?
|
|
|
|
|
|
|
|
|
|
|
|
// const file = files[index]
|
|
|
|
|
|
|
|
if (isSuccess) {
|
|
|
|
|
|
|
|
uploader.deleteFile(index)
|
|
|
|
uploader.deleteFile(index)
|
|
|
|
} else {
|
|
|
|
if (isSuccess) {
|
|
|
|
uploader.cancelFile(index)
|
|
|
|
deleteVideoInCloud(username, state.videoes[index].videoId)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// files.splice(index, 1)
|
|
|
|
// else {
|
|
|
|
|
|
|
|
// uploader.cancelFile(index)
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
const _input = document.getElementById('fileUpload')
|
|
|
|
|
|
|
|
_input.value = ''
|
|
|
|
|
|
|
|
|
|
|
|
dispatch({type: 'removeVideo', index})
|
|
|
|
dispatch({type: 'removeVideo', index})
|
|
|
|
// setVideoes([...videoes.splice(index, 1)])
|
|
|
|
// setVideoes([...videoes.splice(index, 1)])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function onPublish() {
|
|
|
|
function onPublish() {
|
|
|
|
if (state.videoes.length == 0) {
|
|
|
|
if (state.videoes.length == 0) {
|
|
|
|
this.props.showNotification('请先上传视频')
|
|
|
|
showNotification('请先上传视频')
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const publishUrl = `/users/${username}/videos/batch_publish.json`
|
|
|
|
const publishUrl = `/users/${username}/videos/batch_publish.json`
|
|
|
|