Browse Source
* Before creating a workflow, clear the canvas * [Fix-3256][ui] herry pick commit from dev for Fix admin user info update error (#3306) * [Feture-3327][ui]Add the function of re-uploading files in the resource center Co-authored-by: wuchunfu <319355703@qq.com>pull/3/MERGE
break60
4 years ago
committed by
GitHub
9 changed files with 814 additions and 4 deletions
@ -0,0 +1,336 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0 |
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
<template> |
||||
<m-popup |
||||
ref="popup" |
||||
:ok-text="$t('Upload')" |
||||
:nameText="$t('File Upload')" |
||||
@ok="_ok" |
||||
:disabled="progress === 0 ? false : true"> |
||||
<template slot="content"> |
||||
<form name="files" enctype="multipart/form-data" method="post"> |
||||
<div class="file-update-model" |
||||
@drop.prevent="_onDrop" |
||||
@dragover.prevent="dragOver = true" |
||||
@dragleave.prevent="dragOver = false" |
||||
id="file-update-model"> |
||||
<div class="tooltip-info"> |
||||
<em class="ans ans-icon-warn-solid"></em> |
||||
<span>{{$t('Drag the file into the current upload window')}}</span> |
||||
</div> |
||||
<!--<div class="hide-archive" v-if="progress !== 0" @click="_ckArchive"> |
||||
<em class="fa fa-minus" data-toggle="tooltip" title="关闭窗口 继续上传" data-container="body" ></em> |
||||
</div>--> |
||||
<div class="update-popup" v-if="dragOver"> |
||||
<div class="icon-box"> |
||||
<em class="ans ans-icon-upload"></em> |
||||
</div> |
||||
<p class="p1"> |
||||
<span>{{$t('Drag area upload')}}</span> |
||||
</p> |
||||
</div> |
||||
<m-list-box-f> |
||||
<template slot="name"><strong>*</strong>{{$t('File Name')}}</template> |
||||
<template slot="content"> |
||||
<x-input |
||||
type="input" |
||||
v-model="name" |
||||
:disabled="progress !== 0" |
||||
:placeholder="$t('Please enter name')" |
||||
autocomplete="off"> |
||||
</x-input> |
||||
</template> |
||||
</m-list-box-f> |
||||
<m-list-box-f> |
||||
<template slot="name">{{$t('Description')}}</template> |
||||
<template slot="content"> |
||||
<x-input |
||||
type="textarea" |
||||
v-model="description" |
||||
:disabled="progress !== 0" |
||||
:placeholder="$t('Please enter description')" |
||||
autocomplete="off"> |
||||
</x-input> |
||||
</template> |
||||
</m-list-box-f> |
||||
<m-list-box-f> |
||||
<template slot="name"><strong>*</strong>{{$t('Upload Files')}}</template> |
||||
<template slot="content"> |
||||
<div class="file-update-box"> |
||||
<template v-if="progress === 0"> |
||||
<input name="file" id="file" type="file" class="file-update"> |
||||
<x-button type="dashed" size="xsmall"> {{$t('Upload')}} </x-button> |
||||
</template> |
||||
<div class="progress-box" v-if="progress !== 0"> |
||||
<m-progress-bar :value="progress" text-placement="left-right"></m-progress-bar> |
||||
</div> |
||||
</div> |
||||
</template> |
||||
</m-list-box-f> |
||||
</div> |
||||
</form> |
||||
</template> |
||||
</m-popup> |
||||
</template> |
||||
<script> |
||||
import io from '@/module/io' |
||||
import i18n from '@/module/i18n' |
||||
import store from '@/conf/home/store' |
||||
import localStore from '@/module/util/localStorage' |
||||
import mPopup from '@/module/components/popup/popup' |
||||
import mListBoxF from '@/module/components/listBoxF/listBoxF' |
||||
import mProgressBar from '@/module/components/progressBar/progressBar' |
||||
|
||||
export default { |
||||
name: 'file-update', |
||||
data () { |
||||
return { |
||||
store, |
||||
// name |
||||
name: '', |
||||
// description |
||||
description: '', |
||||
// progress |
||||
progress: 0, |
||||
// file |
||||
file: null, |
||||
currentDir: localStore.getItem('currentDir'), |
||||
// Whether to drag upload |
||||
dragOver: false |
||||
} |
||||
}, |
||||
watch: { |
||||
}, |
||||
props: { |
||||
type: String, |
||||
fileName: String, |
||||
desc: String, |
||||
id: Number |
||||
}, |
||||
methods: { |
||||
/** |
||||
* submit |
||||
*/ |
||||
_ok () { |
||||
this.$refs['popup'].spinnerLoading = true |
||||
if (this._validation()) { |
||||
if(this.fileName===this.name) { |
||||
const isLt1024M = this.file.size / 1024 / 1024 < 1024 |
||||
if(isLt1024M) { |
||||
this._formDataUpdate().then(res => { |
||||
setTimeout(() => { |
||||
this.$refs['popup'].spinnerLoading = false |
||||
}, 800) |
||||
}).catch(e => { |
||||
this.$refs['popup'].spinnerLoading = false |
||||
}) |
||||
} else { |
||||
this.$message.warning(`${i18n.$t('Upload File Size')}`) |
||||
this.$refs['popup'].spinnerLoading = false |
||||
} |
||||
} else { |
||||
this.store.dispatch('resource/resourceVerifyName', { |
||||
fullName: this.currentDir+'/'+this.name, |
||||
type: this.type |
||||
}).then(res => { |
||||
const isLt1024M = this.file.size / 1024 / 1024 < 1024 |
||||
if(isLt1024M) { |
||||
this._formDataUpdate().then(res => { |
||||
setTimeout(() => { |
||||
this.$refs['popup'].spinnerLoading = false |
||||
}, 800) |
||||
}).catch(e => { |
||||
this.$refs['popup'].spinnerLoading = false |
||||
}) |
||||
} else { |
||||
this.$message.warning(`${i18n.$t('Upload File Size')}`) |
||||
this.$refs['popup'].spinnerLoading = false |
||||
} |
||||
}).catch(e => { |
||||
this.$message.error(e.msg || '') |
||||
this.$refs['popup'].spinnerLoading = false |
||||
}) |
||||
} |
||||
} else { |
||||
this.$refs['popup'].spinnerLoading = false |
||||
} |
||||
}, |
||||
/** |
||||
* validation |
||||
*/ |
||||
_validation () { |
||||
if (!this.name) { |
||||
this.$message.warning(`${i18n.$t('Please enter file name')}`) |
||||
return false |
||||
} |
||||
if (!this.file) { |
||||
this.$message.warning(`${i18n.$t('Please select the file to upload')}`) |
||||
return false |
||||
} |
||||
return true |
||||
}, |
||||
/** |
||||
* update file |
||||
*/ |
||||
_formDataUpdate () { |
||||
return new Promise((resolve, reject) => { |
||||
let self = this |
||||
let formData = new FormData() |
||||
formData.append('file', this.file) |
||||
formData.append('name', this.name) |
||||
formData.append('description', this.description) |
||||
formData.append('id', this.id) |
||||
formData.append('type', this.type) |
||||
io.post(`resources/update`, res => { |
||||
this.$message.success(res.msg) |
||||
resolve() |
||||
self.$emit('onUpdate') |
||||
}, e => { |
||||
reject(e) |
||||
self.$emit('close') |
||||
this.$message.error(e.msg || '') |
||||
}, { |
||||
data: formData, |
||||
emulateJSON: false, |
||||
onUploadProgress (progressEvent) { |
||||
// Size has been uploaded |
||||
let loaded = progressEvent.loaded |
||||
// Total attachment size |
||||
let total = progressEvent.total |
||||
self.progress = Math.floor(100 * loaded / total) |
||||
self.$emit('onProgress', self.progress) |
||||
} |
||||
}) |
||||
}) |
||||
}, |
||||
/** |
||||
* Archive to the top right corner Continue uploading |
||||
*/ |
||||
_ckArchive () { |
||||
$('.update-file-modal').hide() |
||||
this.$emit('onArchive') |
||||
}, |
||||
/** |
||||
* Drag and drop upload |
||||
*/ |
||||
_onDrop (e) { |
||||
let file = e.dataTransfer.files[0] |
||||
this.file = file |
||||
this.name = file.name |
||||
this.dragOver = false |
||||
} |
||||
}, |
||||
mounted () { |
||||
this.name = this.fileName |
||||
this.description = this.desc |
||||
$('#file').change(() => { |
||||
let file = $('#file')[0].files[0] |
||||
this.file = file |
||||
this.name = file.name |
||||
}) |
||||
}, |
||||
components: { mPopup, mListBoxF, mProgressBar } |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss" rel="stylesheet/scss"> |
||||
.file-update-model { |
||||
.tooltip-info { |
||||
position: absolute; |
||||
left: 20px; |
||||
bottom: 26px; |
||||
span { |
||||
font-size: 12px; |
||||
color: #666; |
||||
vertical-align: middle; |
||||
} |
||||
.fa,.ans { |
||||
color: #0097e0; |
||||
font-size: 14px; |
||||
vertical-align: middle; |
||||
} |
||||
} |
||||
.hide-archive { |
||||
position: absolute; |
||||
right: 22px; |
||||
top: 17px; |
||||
.fa,.ans{ |
||||
font-size: 16px; |
||||
color: #333; |
||||
font-weight: normal; |
||||
cursor: pointer; |
||||
&:hover { |
||||
color: #0097e0; |
||||
} |
||||
} |
||||
} |
||||
.file-update-box { |
||||
padding-top: 4px; |
||||
position: relative; |
||||
.file-update { |
||||
width: 70px; |
||||
height: 40px; |
||||
position: absolute; |
||||
left: 0; |
||||
top: 0; |
||||
cursor: pointer; |
||||
filter: alpha(opacity=0); |
||||
-moz-opacity: 0; |
||||
opacity: 0; |
||||
} |
||||
&:hover { |
||||
.v-btn-dashed { |
||||
background-color: transparent; |
||||
border-color: #47c3ff; |
||||
color: #47c3ff; |
||||
cursor: pointer; |
||||
} |
||||
} |
||||
.progress-box { |
||||
width: 200px; |
||||
position: absolute; |
||||
left: 70px; |
||||
top: 14px; |
||||
} |
||||
} |
||||
.update-popup { |
||||
width: calc(100% - 20px); |
||||
height: calc(100% - 20px); |
||||
background: rgba(255,253,239,.7); |
||||
position: absolute; |
||||
top: 10px; |
||||
left: 10px; |
||||
border-radius: 3px; |
||||
z-index: 1; |
||||
border: .18rem dashed #cccccc; |
||||
.icon-box { |
||||
text-align: center; |
||||
margin-top: 96px; |
||||
.fa,.ans { |
||||
font-size: 50px; |
||||
color: #2d8cf0; |
||||
} |
||||
} |
||||
.p1 { |
||||
text-align: center; |
||||
font-size: 16px; |
||||
color: #333; |
||||
padding-top: 8px; |
||||
} |
||||
} |
||||
} |
||||
</style> |
@ -0,0 +1,335 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0 |
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
<template> |
||||
<m-popup |
||||
ref="popup" |
||||
:ok-text="$t('Upload')" |
||||
:nameText="$t('ReUpload File')" |
||||
@ok="_ok" |
||||
:disabled="progress === 0 ? false : true"> |
||||
<template slot="content"> |
||||
<form name="files" enctype="multipart/form-data" method="post"> |
||||
<div class="file-update-model" |
||||
@drop.prevent="_onDrop" |
||||
@dragover.prevent="dragOver = true" |
||||
@dragleave.prevent="dragOver = false" |
||||
id="file-update-model"> |
||||
<div class="tooltip-info"> |
||||
<em class="ans ans-icon-warn-solid"></em> |
||||
<span>{{$t('Drag the file into the current upload window')}}</span> |
||||
</div> |
||||
<!--<div class="hide-archive" v-if="progress !== 0" @click="_ckArchive"> |
||||
<em class="fa fa-minus" data-toggle="tooltip" title="关闭窗口 继续上传" data-container="body" ></em> |
||||
</div>--> |
||||
<div class="update-popup" v-if="dragOver"> |
||||
<div class="icon-box"> |
||||
<em class="ans ans-icon-upload"></em> |
||||
</div> |
||||
<p class="p1"> |
||||
<span>{{$t('Drag area upload')}}</span> |
||||
</p> |
||||
</div> |
||||
<m-list-box-f> |
||||
<template slot="name"><strong>*</strong>{{$t('File Name')}}</template> |
||||
<template slot="content"> |
||||
<x-input |
||||
type="input" |
||||
v-model="name" |
||||
:disabled="progress !== 0" |
||||
:placeholder="$t('Please enter name')" |
||||
autocomplete="off"> |
||||
</x-input> |
||||
</template> |
||||
</m-list-box-f> |
||||
<m-list-box-f> |
||||
<template slot="name">{{$t('Description')}}</template> |
||||
<template slot="content"> |
||||
<x-input |
||||
type="textarea" |
||||
v-model="description" |
||||
:disabled="progress !== 0" |
||||
:placeholder="$t('Please enter description')" |
||||
autocomplete="off"> |
||||
</x-input> |
||||
</template> |
||||
</m-list-box-f> |
||||
<m-list-box-f> |
||||
<template slot="name"><strong>*</strong>{{$t('Upload Files')}}</template> |
||||
<template slot="content"> |
||||
<div class="file-update-box"> |
||||
<template v-if="progress === 0"> |
||||
<input name="file" id="file" type="file" class="file-update"> |
||||
<x-button type="dashed" size="xsmall"> {{$t('Upload')}} </x-button> |
||||
</template> |
||||
<div class="progress-box" v-if="progress !== 0"> |
||||
<m-progress-bar :value="progress" text-placement="left-right"></m-progress-bar> |
||||
</div> |
||||
</div> |
||||
</template> |
||||
</m-list-box-f> |
||||
</div> |
||||
</form> |
||||
</template> |
||||
</m-popup> |
||||
</template> |
||||
<script> |
||||
import io from '@/module/io' |
||||
import i18n from '@/module/i18n' |
||||
import store from '@/conf/home/store' |
||||
import mPopup from '@/module/components/popup/popup' |
||||
import mListBoxF from '@/module/components/listBoxF/listBoxF' |
||||
import mProgressBar from '@/module/components/progressBar/progressBar' |
||||
|
||||
export default { |
||||
name: 'file-update', |
||||
data () { |
||||
return { |
||||
store, |
||||
// name |
||||
name: '', |
||||
// description |
||||
description: '', |
||||
// progress |
||||
progress: 0, |
||||
// file |
||||
file: null, |
||||
currentDir: '/', |
||||
// Whether to drag upload |
||||
dragOver: false |
||||
} |
||||
}, |
||||
watch: { |
||||
}, |
||||
props: { |
||||
type: String, |
||||
fileName: String, |
||||
desc: String, |
||||
id: Number |
||||
}, |
||||
methods: { |
||||
/** |
||||
* submit |
||||
*/ |
||||
_ok () { |
||||
this.$refs['popup'].spinnerLoading = true |
||||
if (this._validation()) { |
||||
if(this.fileName===this.name) { |
||||
const isLt1024M = this.file.size / 1024 / 1024 < 1024 |
||||
if(isLt1024M) { |
||||
this._formDataUpdate().then(res => { |
||||
setTimeout(() => { |
||||
this.$refs['popup'].spinnerLoading = false |
||||
}, 800) |
||||
}).catch(e => { |
||||
this.$refs['popup'].spinnerLoading = false |
||||
}) |
||||
} else { |
||||
this.$message.warning(`${i18n.$t('Upload File Size')}`) |
||||
this.$refs['popup'].spinnerLoading = false |
||||
} |
||||
} else { |
||||
this.store.dispatch('resource/resourceVerifyName', { |
||||
fullName: '/'+this.name, |
||||
type: this.type |
||||
}).then(res => { |
||||
const isLt1024M = this.file.size / 1024 / 1024 < 1024 |
||||
if(isLt1024M) { |
||||
this._formDataUpdate().then(res => { |
||||
setTimeout(() => { |
||||
this.$refs['popup'].spinnerLoading = false |
||||
}, 800) |
||||
}).catch(e => { |
||||
this.$refs['popup'].spinnerLoading = false |
||||
}) |
||||
} else { |
||||
this.$message.warning(`${i18n.$t('Upload File Size')}`) |
||||
this.$refs['popup'].spinnerLoading = false |
||||
} |
||||
}).catch(e => { |
||||
this.$message.error(e.msg || '') |
||||
this.$refs['popup'].spinnerLoading = false |
||||
}) |
||||
} |
||||
} else { |
||||
this.$refs['popup'].spinnerLoading = false |
||||
} |
||||
}, |
||||
/** |
||||
* validation |
||||
*/ |
||||
_validation () { |
||||
if (!this.name) { |
||||
this.$message.warning(`${i18n.$t('Please enter file name')}`) |
||||
return false |
||||
} |
||||
if (!this.file) { |
||||
this.$message.warning(`${i18n.$t('Please select the file to upload')}`) |
||||
return false |
||||
} |
||||
return true |
||||
}, |
||||
/** |
||||
* update file |
||||
*/ |
||||
_formDataUpdate () { |
||||
return new Promise((resolve, reject) => { |
||||
let self = this |
||||
let formData = new FormData() |
||||
formData.append('file', this.file) |
||||
formData.append('name', this.name) |
||||
formData.append('description', this.description) |
||||
formData.append('id', this.id) |
||||
formData.append('type', this.type) |
||||
io.post(`resources/update`, res => { |
||||
this.$message.success(res.msg) |
||||
resolve() |
||||
self.$emit('onUpdate') |
||||
}, e => { |
||||
reject(e) |
||||
self.$emit('close') |
||||
this.$message.error(e.msg || '') |
||||
}, { |
||||
data: formData, |
||||
emulateJSON: false, |
||||
onUploadProgress (progressEvent) { |
||||
// Size has been uploaded |
||||
let loaded = progressEvent.loaded |
||||
// Total attachment size |
||||
let total = progressEvent.total |
||||
self.progress = Math.floor(100 * loaded / total) |
||||
self.$emit('onProgress', self.progress) |
||||
} |
||||
}) |
||||
}) |
||||
}, |
||||
/** |
||||
* Archive to the top right corner Continue uploading |
||||
*/ |
||||
_ckArchive () { |
||||
$('.update-file-modal').hide() |
||||
this.$emit('onArchive') |
||||
}, |
||||
/** |
||||
* Drag and drop upload |
||||
*/ |
||||
_onDrop (e) { |
||||
let file = e.dataTransfer.files[0] |
||||
this.file = file |
||||
this.name = file.name |
||||
this.dragOver = false |
||||
} |
||||
}, |
||||
mounted () { |
||||
this.name = this.fileName |
||||
this.description = this.desc |
||||
$('#file').change(() => { |
||||
let file = $('#file')[0].files[0] |
||||
this.file = file |
||||
this.name = file.name |
||||
}) |
||||
}, |
||||
components: { mPopup, mListBoxF, mProgressBar } |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss" rel="stylesheet/scss"> |
||||
.file-update-model { |
||||
.tooltip-info { |
||||
position: absolute; |
||||
left: 20px; |
||||
bottom: 26px; |
||||
span { |
||||
font-size: 12px; |
||||
color: #666; |
||||
vertical-align: middle; |
||||
} |
||||
.fa,.ans { |
||||
color: #0097e0; |
||||
font-size: 14px; |
||||
vertical-align: middle; |
||||
} |
||||
} |
||||
.hide-archive { |
||||
position: absolute; |
||||
right: 22px; |
||||
top: 17px; |
||||
.fa,.ans{ |
||||
font-size: 16px; |
||||
color: #333; |
||||
font-weight: normal; |
||||
cursor: pointer; |
||||
&:hover { |
||||
color: #0097e0; |
||||
} |
||||
} |
||||
} |
||||
.file-update-box { |
||||
padding-top: 4px; |
||||
position: relative; |
||||
.file-update { |
||||
width: 70px; |
||||
height: 40px; |
||||
position: absolute; |
||||
left: 0; |
||||
top: 0; |
||||
cursor: pointer; |
||||
filter: alpha(opacity=0); |
||||
-moz-opacity: 0; |
||||
opacity: 0; |
||||
} |
||||
&:hover { |
||||
.v-btn-dashed { |
||||
background-color: transparent; |
||||
border-color: #47c3ff; |
||||
color: #47c3ff; |
||||
cursor: pointer; |
||||
} |
||||
} |
||||
.progress-box { |
||||
width: 200px; |
||||
position: absolute; |
||||
left: 70px; |
||||
top: 14px; |
||||
} |
||||
} |
||||
.update-popup { |
||||
width: calc(100% - 20px); |
||||
height: calc(100% - 20px); |
||||
background: rgba(255,253,239,.7); |
||||
position: absolute; |
||||
top: 10px; |
||||
left: 10px; |
||||
border-radius: 3px; |
||||
z-index: 1; |
||||
border: .18rem dashed #cccccc; |
||||
.icon-box { |
||||
text-align: center; |
||||
margin-top: 96px; |
||||
.fa,.ans { |
||||
font-size: 50px; |
||||
color: #2d8cf0; |
||||
} |
||||
} |
||||
.p1 { |
||||
text-align: center; |
||||
font-size: 16px; |
||||
color: #333; |
||||
padding-top: 8px; |
||||
} |
||||
} |
||||
} |
||||
</style> |
Loading…
Reference in new issue