mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-02-11 22:58:14 -05:00
301 lines
8.4 KiB
Vue
301 lines
8.4 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="quick-upload" style="width: 50%">剪贴板图片</el-button>
|
||
<el-button type="primary" round size="mini" @click="uploadURLFiles" class="quick-upload" style="width: 46%; margin-left: 6px">URL</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'
|
||
import {
|
||
SHOW_INPUT_BOX,
|
||
SHOW_INPUT_BOX_RESPONSE
|
||
} from '~/universal/events/constants'
|
||
import {
|
||
isUrl
|
||
} from '~/universal/utils/common'
|
||
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)
|
||
this.$bus.$on(SHOW_INPUT_BOX_RESPONSE, this.handleInputBoxValue)
|
||
}
|
||
@Watch('progress')
|
||
onProgressChange (val: number) {
|
||
if (val === 100) {
|
||
setTimeout(() => {
|
||
this.showProgress = false
|
||
this.showError = false
|
||
}, 1000)
|
||
setTimeout(() => {
|
||
this.progress = 0
|
||
}, 1200)
|
||
}
|
||
}
|
||
beforeDestroy () {
|
||
this.$bus.$off(SHOW_INPUT_BOX_RESPONSE)
|
||
ipcRenderer.removeAllListeners('uploadProgress')
|
||
ipcRenderer.removeAllListeners('syncPicBed')
|
||
ipcRenderer.removeListener('getPicBeds', this.getPicBeds)
|
||
}
|
||
onDrop (e: DragEvent) {
|
||
this.dragover = false
|
||
const items = e.dataTransfer!.items
|
||
if (items.length === 2 && items[0].type === 'text/uri-list') {
|
||
this.handleURLDrag(items, e.dataTransfer!)
|
||
} else if (items[0].type === 'text/plain') {
|
||
const str = e.dataTransfer!.getData(items[0].type)
|
||
if (isUrl(str)) {
|
||
ipcRenderer.send('uploadChoosedFiles', [{ path: str }])
|
||
} else {
|
||
this.$message.error('请拖入合法的图片文件或者图片URL地址')
|
||
}
|
||
} else {
|
||
this.ipcSendFiles(e.dataTransfer!.files)
|
||
}
|
||
}
|
||
handleURLDrag (items: DataTransferItemList, dataTransfer: DataTransfer) {
|
||
// text/html
|
||
// Use this data to get a more precise URL
|
||
const urlString = dataTransfer.getData(items[1].type)
|
||
const urlMatch = urlString.match(/<img.*src="(.*?)"/)
|
||
if (urlMatch) {
|
||
ipcRenderer.send('uploadChoosedFiles', [
|
||
{
|
||
path: urlMatch[1]
|
||
}
|
||
])
|
||
} else {
|
||
this.$message.error('请拖入合法的图片文件或者图片URL地址')
|
||
}
|
||
}
|
||
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')
|
||
}
|
||
async uploadURLFiles () {
|
||
const str = await navigator.clipboard.readText()
|
||
this.$bus.$emit(SHOW_INPUT_BOX, {
|
||
value: isUrl(str) ? str : '',
|
||
title: '请输入URL',
|
||
placeholder: 'http://或者https://开头'
|
||
})
|
||
}
|
||
handleInputBoxValue (val: string) {
|
||
if (val === '') return false
|
||
if (isUrl(val)) {
|
||
ipcRenderer.send('uploadChoosedFiles', [{
|
||
path: val
|
||
}])
|
||
} else {
|
||
this.$message.error('请输入合法的URL')
|
||
}
|
||
}
|
||
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,
|
||
'picBed.uploader': 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
|
||
.el-icon-caret-bottom
|
||
cursor pointer
|
||
</style>
|