mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-02-11 14:48:13 -05:00
9d4d605acf
ISSUES CLOSED: #310
247 lines
6.6 KiB
Vue
247 lines
6.6 KiB
Vue
<template>
|
||
<div id="upload-view">
|
||
<el-row :gutter="16">
|
||
<el-col :span="20" :offset="2">
|
||
<div class="view-title">
|
||
图片上传 - {{ picBedName }} <i class="el-icon-caret-bottom" @click="handleChangePicBed"></i>
|
||
</div>
|
||
<div
|
||
id="upload-area"
|
||
:class="{ 'is-dragover': dragover }"
|
||
@drop.prevent="onDrop"
|
||
@dragover.prevent="dragover = true"
|
||
@dragleave.prevent="dragover = false"
|
||
>
|
||
<div id="upload-dragger" @click="openUplodWindow">
|
||
<i class="el-icon-upload"></i>
|
||
<div class="upload-dragger__text">
|
||
将文件拖到此处,或 <span>点击上传</span>
|
||
</div>
|
||
<input type="file" id="file-uploader" @change="onChange" multiple>
|
||
</div>
|
||
</div>
|
||
<el-progress
|
||
:percentage="progress"
|
||
:show-text="false"
|
||
class="upload-progress"
|
||
:class="{ 'show': showProgress }"
|
||
:status="showError ? 'exception' : undefined"
|
||
></el-progress>
|
||
<div class="paste-style">
|
||
<div class="el-col-16">
|
||
<div class="paste-style__text">
|
||
链接格式
|
||
</div>
|
||
<el-radio-group v-model="pasteStyle" size="mini"
|
||
@change="handlePasteStyleChange"
|
||
>
|
||
<el-radio-button label="markdown">
|
||
Markdown
|
||
</el-radio-button>
|
||
<el-radio-button label="HTML"></el-radio-button>
|
||
<el-radio-button label="URL"></el-radio-button>
|
||
<el-radio-button label="UBB"></el-radio-button>
|
||
<el-radio-button label="Custom" title="自定义"></el-radio-button>
|
||
</el-radio-group>
|
||
</div>
|
||
<div class="el-col-8">
|
||
<div class="paste-style__text">
|
||
快捷上传
|
||
</div>
|
||
<el-button type="primary" round size="mini" @click="uploadClipboardFiles" class="paste-upload">剪贴板图片上传</el-button>
|
||
</div>
|
||
</div>
|
||
</el-col>
|
||
</el-row>
|
||
</div>
|
||
</template>
|
||
<script lang="ts">
|
||
import { Component, Vue, Watch } from 'vue-property-decorator'
|
||
import {
|
||
ipcRenderer,
|
||
IpcRendererEvent,
|
||
remote
|
||
} from 'electron'
|
||
const { Menu } = remote
|
||
@Component({
|
||
name: 'upload'
|
||
})
|
||
export default class extends Vue {
|
||
dragover = false
|
||
progress = 0
|
||
showProgress = false
|
||
showError = false
|
||
pasteStyle = ''
|
||
picBed: IPicBedType[] = []
|
||
picBedName = ''
|
||
menu: Electron.Menu | null= null
|
||
mounted () {
|
||
ipcRenderer.on('uploadProgress', (event: IpcRendererEvent, progress: number) => {
|
||
if (progress !== -1) {
|
||
this.showProgress = true
|
||
this.progress = progress
|
||
} else {
|
||
this.progress = 100
|
||
this.showError = true
|
||
}
|
||
})
|
||
this.getPasteStyle()
|
||
this.getDefaultPicBed()
|
||
ipcRenderer.on('syncPicBed', () => {
|
||
this.getDefaultPicBed()
|
||
})
|
||
ipcRenderer.send('getPicBeds')
|
||
ipcRenderer.on('getPicBeds', this.getPicBeds)
|
||
}
|
||
@Watch('progress')
|
||
onProgressChange (val: number) {
|
||
if (val === 100) {
|
||
setTimeout(() => {
|
||
this.showProgress = false
|
||
this.showError = false
|
||
}, 1000)
|
||
setTimeout(() => {
|
||
this.progress = 0
|
||
}, 1200)
|
||
}
|
||
}
|
||
beforeDestroy () {
|
||
ipcRenderer.removeAllListeners('uploadProgress')
|
||
ipcRenderer.removeAllListeners('syncPicBed')
|
||
ipcRenderer.removeListener('getPicBeds', this.getPicBeds)
|
||
}
|
||
onDrop (e: DragEvent) {
|
||
this.dragover = false
|
||
this.ipcSendFiles(e.dataTransfer!.files)
|
||
}
|
||
openUplodWindow () {
|
||
document.getElementById('file-uploader')!.click()
|
||
}
|
||
onChange (e: any) {
|
||
this.ipcSendFiles(e.target.files);
|
||
(document.getElementById('file-uploader') as HTMLInputElement).value = ''
|
||
}
|
||
ipcSendFiles (files: FileList) {
|
||
let sendFiles: IFileWithPath[] = []
|
||
Array.from(files).forEach((item, index) => {
|
||
let obj = {
|
||
name: item.name,
|
||
path: item.path
|
||
}
|
||
sendFiles.push(obj)
|
||
})
|
||
ipcRenderer.send('uploadChoosedFiles', sendFiles)
|
||
}
|
||
getPasteStyle () {
|
||
this.pasteStyle = this.$db.get('settings.pasteStyle') || 'markdown'
|
||
}
|
||
handlePasteStyleChange (val: string) {
|
||
this.$db.set('settings.pasteStyle', val)
|
||
}
|
||
uploadClipboardFiles () {
|
||
ipcRenderer.send('uploadClipboardFilesFromUploadPage')
|
||
}
|
||
getDefaultPicBed () {
|
||
const current: string = this.$db.get('picBed.current')
|
||
this.picBed.forEach(item => {
|
||
if (item.type === current) {
|
||
this.picBedName = item.name
|
||
}
|
||
})
|
||
}
|
||
getPicBeds (event: Event, picBeds: IPicBedType[]) {
|
||
this.picBed = picBeds
|
||
this.getDefaultPicBed()
|
||
}
|
||
handleChangePicBed () {
|
||
this.buildMenu()
|
||
// this.menu.popup(remote.getCurrentWindow())
|
||
this.menu!.popup()
|
||
}
|
||
buildMenu () {
|
||
const _this = this
|
||
const submenu = this.picBed.filter(item => item.visible).map(item => {
|
||
return {
|
||
label: item.name,
|
||
type: 'radio',
|
||
checked: this.$db.get('picBed.current') === item.type,
|
||
click () {
|
||
_this.letPicGoSaveData({
|
||
'picBed.current': item.type
|
||
})
|
||
ipcRenderer.send('syncPicBed')
|
||
}
|
||
}
|
||
})
|
||
// @ts-ignore
|
||
this.menu = Menu.buildFromTemplate(submenu)
|
||
}
|
||
}
|
||
</script>
|
||
<style lang='stylus'>
|
||
.view-title
|
||
color #eee
|
||
font-size 20px
|
||
text-align center
|
||
margin 10px auto
|
||
#upload-view
|
||
.view-title
|
||
margin 20px auto
|
||
#upload-area
|
||
height 220px
|
||
border 2px dashed #dddddd
|
||
border-radius 8px
|
||
text-align center
|
||
width 450px
|
||
margin 0 auto
|
||
color #dddddd
|
||
cursor pointer
|
||
transition all .2s ease-in-out
|
||
#upload-dragger
|
||
height 100%
|
||
&.is-dragover,
|
||
&:hover
|
||
border 2px dashed #A4D8FA
|
||
background-color rgba(164, 216, 250, 0.3)
|
||
color #fff
|
||
i
|
||
font-size 66px
|
||
margin 50px 0 16px
|
||
line-height 66px
|
||
span
|
||
color #409EFF
|
||
#file-uploader
|
||
display none
|
||
.upload-progress
|
||
opacity 0
|
||
transition all .2s ease-in-out
|
||
width 450px
|
||
margin 20px auto 0
|
||
&.show
|
||
opacity 1
|
||
.el-progress-bar__inner
|
||
transition all .2s ease-in-out
|
||
.paste-style
|
||
text-align center
|
||
margin-top 16px
|
||
&__text
|
||
font-size 12px
|
||
color #eeeeee
|
||
margin-bottom 4px
|
||
.el-radio-button:first-child
|
||
.el-radio-button__inner
|
||
border-left none
|
||
.el-radio-button:first-child
|
||
.el-radio-button__inner
|
||
border-left none
|
||
border-radius 14px 0 0 14px
|
||
.el-radio-button:last-child
|
||
.el-radio-button__inner
|
||
border-left none
|
||
border-radius 0 14px 14px 0
|
||
.paste-upload
|
||
width 100%
|
||
.el-icon-caret-bottom
|
||
cursor pointer
|
||
</style>
|