PicList/src/renderer/pages/Gallery.vue

459 lines
13 KiB
Vue
Raw Normal View History

2017-12-06 22:26:29 -05:00
<template>
<div id="gallery-view">
<div class="view-title">
相册 - {{ filterList.length }} <i class="el-icon-caret-bottom" @click="toggleHandleBar" :class="{'active': handleBarActive}"></i>
2017-12-06 22:26:29 -05:00
</div>
<transition name="el-zoom-in-top">
<el-row v-show="handleBarActive">
<el-col :span="20" :offset="2">
<el-row class="handle-bar" :gutter="16">
<el-col :span="12">
<el-select
v-model="choosedPicBed"
multiple
collapse-tags
size="mini"
style="width: 100%"
placeholder="请选择显示的图床">
<el-option
2018-12-23 10:15:00 -05:00
v-for="item in picBed"
:key="item.type"
:label="item.name"
:value="item.type">
</el-option>
</el-select>
</el-col>
<el-col :span="12">
<el-select
v-model="pasteStyle"
size="mini"
style="width: 100%"
@change="handlePasteStyleChange"
placeholder="请选择粘贴的格式">
<el-option
v-for="(value, key) in pasteStyleMap"
:key="key"
:label="key"
:value="value">
</el-option>
</el-select>
</el-col>
</el-row>
<el-row class="handle-bar" :gutter="16">
<el-col :span="12">
<el-input
placeholder="搜索"
size="mini"
v-model="searchText">
2018-07-23 10:24:18 -04:00
<i slot="suffix" class="el-input__icon el-icon-close" v-if="searchText" @click="cleanSearch" style="cursor: pointer"></i>
</el-input>
</el-col>
<el-col :span="6">
<div class="item-base copy round" :class="{ active: isMultiple(choosedList)}" @click="multiCopy">
2018-07-23 10:24:18 -04:00
<i class="el-icon-document"></i> 批量复制
</div>
</el-col>
<el-col :span="6">
2019-01-11 08:13:16 -05:00
<div class="item-base delete round" :class="{ active: isMultiple(choosedList)}" @click="multiRemove">
<i class="el-icon-delete"></i> 批量删除
</div>
</el-col>
</el-row>
</el-col>
</el-row>
</transition>
<el-row class="gallery-list" :class="{ small: handleBarActive }">
2017-12-06 22:26:29 -05:00
<el-col :span="20" :offset="2">
<el-row :gutter="16">
<gallerys
:images="images"
:index="idx"
@close="handleClose"
:options="options"
></gallerys>
2018-06-19 01:45:07 -04:00
<el-col :span="6" v-for="(item, index) in images" :key="item.id" class="gallery-list__img">
2017-12-06 22:26:29 -05:00
<div
class="gallery-list__item"
@click="zoomImage(index)"
>
<img v-lazy="item.imgUrl" class="gallery-list__item-img">
2017-12-06 22:26:29 -05:00
</div>
<div class="gallery-list__tool-panel">
2019-01-11 04:22:33 -05:00
<i class="el-icon-document" @click="copy(item)"></i>
2018-04-08 11:43:34 -04:00
<i class="el-icon-edit-outline" @click="openDialog(item)"></i>
2017-12-06 22:26:29 -05:00
<i class="el-icon-delete" @click="remove(item.id)"></i>
<el-checkbox v-model="choosedList[item.id]" class="pull-right" @change=" handleBarActive = true"></el-checkbox>
2017-12-06 22:26:29 -05:00
</div>
</el-col>
</el-row>
</el-col>
</el-row>
2018-04-08 11:43:34 -04:00
<el-dialog
:visible.sync="dialogVisible"
title="修改图片URL"
width="500px"
:modal-append-to-body="false"
>
<el-input v-model="imgInfo.imgUrl"></el-input>
<span slot="footer" class="dialog-footer">
<el-button @click="dialogVisible = false"> </el-button>
<el-button type="primary" @click="confirmModify"> </el-button>
</span>
</el-dialog>
2017-12-06 22:26:29 -05:00
</div>
</template>
<script>
import gallerys from 'vue-gallery'
2018-12-10 04:13:48 -05:00
import pasteStyle from '~/main/utils/pasteTemplate'
2017-12-06 22:26:29 -05:00
export default {
name: 'gallery',
components: {
gallerys
},
data () {
return {
images: [],
idx: null,
options: {
titleProperty: 'fileName',
urlProperty: 'imgUrl',
closeOnSlideClick: true
2018-04-08 11:43:34 -04:00
},
dialogVisible: false,
imgInfo: {
id: null,
imgUrl: ''
2018-06-19 01:45:07 -04:00
},
choosedList: {},
2018-06-20 08:45:12 -04:00
choosedPicBed: [],
searchText: '',
handleBarActive: false,
pasteStyle: '',
pasteStyleMap: {
Markdown: 'markdown',
HTML: 'HTML',
URL: 'URL',
UBB: 'UBB',
Custom: 'Custom'
2018-12-23 10:15:00 -05:00
},
picBed: []
2017-12-06 22:26:29 -05:00
}
},
2019-01-23 22:29:48 -05:00
beforeRouteEnter (to, from, next) {
next(vm => {
vm.getGallery()
vm.getPasteStyle()
vm.getPicBeds()
})
},
2017-12-06 22:26:29 -05:00
created () {
this.$electron.ipcRenderer.on('updateGallery', (event) => {
2018-08-08 02:39:40 -04:00
this.$nextTick(() => {
this.filterList = this.getGallery()
})
})
2018-12-24 03:05:30 -05:00
this.$electron.ipcRenderer.send('getPicBeds')
this.$electron.ipcRenderer.on('getPicBeds', this.getPicBeds)
2017-12-06 22:26:29 -05:00
},
2018-06-20 08:45:12 -04:00
computed: {
filterList: {
get () {
return this.getGallery()
},
set (val) {
return this.val
}
2018-06-20 08:45:12 -04:00
}
},
methods: {
2018-12-24 03:05:30 -05:00
getPicBeds (event, picBeds) {
this.picBed = picBeds
2018-12-23 10:15:00 -05:00
},
2018-06-20 08:45:12 -04:00
getGallery () {
if (this.choosedPicBed.length > 0) {
2018-06-19 01:45:07 -04:00
let arr = []
2018-06-20 08:45:12 -04:00
this.choosedPicBed.forEach(item => {
let obj = {
type: item
}
if (this.searchText) {
obj.fileName = this.searchText
}
arr = arr.concat(this.$db.read().get('uploaded').filter(obj => {
return obj.fileName.indexOf(this.searchText) !== -1 && obj.type === item
}).reverse().value())
2018-06-19 01:45:07 -04:00
})
this.images = arr
} else {
2018-06-20 08:45:12 -04:00
if (this.searchText) {
let data = this.$db.read().get('uploaded')
.filter(item => {
return item.fileName.indexOf(this.searchText) !== -1
}).reverse().value()
this.images = data
} else {
this.images = this.$db.read().get('uploaded').slice().reverse().value()
}
2018-06-19 01:45:07 -04:00
}
2018-06-20 08:45:12 -04:00
return this.images
2017-12-06 22:26:29 -05:00
},
zoomImage (index) {
this.idx = index
this.changeZIndexForGallery(true)
},
changeZIndexForGallery (isOpen) {
if (isOpen) {
document.querySelector('.main-content.el-row').style.zIndex = 101
} else {
document.querySelector('.main-content.el-row').style.zIndex = 10
}
2017-12-06 22:26:29 -05:00
},
handleClose () {
this.idx = null
this.changeZIndexForGallery(false)
2017-12-06 22:26:29 -05:00
},
2019-01-11 04:22:33 -05:00
copy (item) {
2019-09-11 07:30:08 -04:00
const style = this.$db.get('settings.pasteStyle') || 'markdown'
const copyLink = pasteStyle(style, item)
2017-12-06 22:26:29 -05:00
const obj = {
title: '复制链接成功',
body: copyLink,
icon: item.url || item.imgUrl
2017-12-06 22:26:29 -05:00
}
const myNotification = new window.Notification(obj.title, obj)
this.$electron.clipboard.writeText(copyLink)
myNotification.onclick = () => {
2018-07-24 11:15:19 -04:00
return true
2017-12-06 22:26:29 -05:00
}
},
remove (id) {
this.$confirm('此操作将把该图片移出相册, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
2019-09-11 07:30:08 -04:00
const file = this.$db.get('uploaded').getById(id)
2017-12-06 22:26:29 -05:00
this.$db.read().get('uploaded').removeById(id).write()
2019-01-11 08:13:16 -05:00
this.$electron.ipcRenderer.send('removeFiles', [file])
2017-12-06 22:26:29 -05:00
const obj = {
title: '操作结果',
body: '删除成功'
}
const myNotification = new window.Notification(obj.title, obj)
myNotification.onclick = () => {
return true
}
this.getGallery()
}).catch(() => {
return true
})
2018-04-08 11:43:34 -04:00
},
openDialog (item) {
this.imgInfo.id = item.id
this.imgInfo.imgUrl = item.imgUrl
this.dialogVisible = true
},
confirmModify () {
this.$db.read().get('uploaded')
.getById(this.imgInfo.id)
.assign({imgUrl: this.imgInfo.imgUrl})
.write()
const obj = {
title: '修改图片URL成功',
body: this.imgInfo.imgUrl,
icon: this.imgInfo.imgUrl
}
const myNotification = new window.Notification(obj.title, obj)
myNotification.onclick = () => {
return true
}
this.dialogVisible = false
this.getGallery()
2018-06-19 01:45:07 -04:00
},
choosePicBed (type) {
let idx = this.choosedPicBed.indexOf(type)
if (idx !== -1) {
this.choosedPicBed.splice(idx, 1)
} else {
this.choosedPicBed.push(type)
}
2018-06-20 08:45:12 -04:00
},
cleanSearch () {
this.searchText = ''
},
isMultiple (obj) {
return Object.values(obj).some(item => item)
},
2019-01-11 08:13:16 -05:00
multiRemove () {
// choosedList -> { [id]: true or false }; true means choosed. false means not choosed.
2018-06-20 08:45:12 -04:00
if (Object.values(this.choosedList).some(item => item)) {
this.$confirm('将删除刚才选中的图片,是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
2019-01-11 08:13:16 -05:00
let files = []
2018-06-20 08:45:12 -04:00
Object.keys(this.choosedList).forEach(key => {
if (this.choosedList[key]) {
2019-01-11 08:13:16 -05:00
const file = this.$db.read().get('uploaded').getById(key).value()
files.push(file)
2018-06-20 08:45:12 -04:00
this.$db.read().get('uploaded').removeById(key).write()
}
})
this.choosedList = {}
this.getGallery()
const obj = {
title: '操作结果',
body: '删除成功'
}
2019-01-11 08:13:16 -05:00
this.$electron.ipcRenderer.send('removeFiles', files)
2018-06-20 08:45:12 -04:00
const myNotification = new window.Notification(obj.title, obj)
myNotification.onclick = () => {
return true
}
}).catch(() => {
return true
})
}
},
2018-07-23 10:24:18 -04:00
multiCopy () {
2018-07-24 11:15:19 -04:00
if (Object.values(this.choosedList).some(item => item)) {
let copyString = ''
2019-09-11 07:30:08 -04:00
const style = this.$db.get('settings.pasteStyle') || 'markdown'
// choosedList -> { [id]: true or false }; true means choosed. false means not choosed.
2018-07-24 11:15:19 -04:00
Object.keys(this.choosedList).forEach(key => {
if (this.choosedList[key]) {
2019-01-11 04:22:33 -05:00
const item = this.$db.read().get('uploaded').getById(key).value()
copyString += pasteStyle(style, item) + '\n'
this.choosedList[key] = false
2018-07-24 11:15:19 -04:00
}
})
const obj = {
title: '批量复制链接成功',
body: copyString
}
const myNotification = new window.Notification(obj.title, obj)
this.$electron.clipboard.writeText(copyString)
myNotification.onclick = () => {
return true
2018-07-23 10:24:18 -04:00
}
}
},
toggleHandleBar () {
this.handleBarActive = !this.handleBarActive
},
getPasteStyle () {
2019-09-11 07:30:08 -04:00
this.pasteStyle = this.$db.get('settings.pasteStyle') || 'markdown'
},
handlePasteStyleChange (val) {
2019-09-11 07:30:08 -04:00
this.$db.set('settings.pasteStyle', val)
this.pasteStyle = val
2017-12-06 22:26:29 -05:00
}
},
beforeDestroy () {
this.$electron.ipcRenderer.removeAllListeners('updateGallery')
2018-12-24 03:05:30 -05:00
this.$electron.ipcRenderer.removeListener('getPicBeds', this.getPicBeds)
2017-12-06 22:26:29 -05:00
}
}
</script>
<style lang='stylus'>
.view-title
color #eee
font-size 20px
text-align center
2018-04-28 04:22:35 -04:00
margin 10px auto
.sub-title
font-size 14px
.el-icon-caret-bottom
cursor: pointer
transition all .2s ease-in-out
&.active
transform: rotate(180deg)
2019-01-23 22:29:48 -05:00
#gallery-view
height 100%
2018-06-19 01:45:07 -04:00
.item-base
background #2E2E2E
text-align center
2018-06-20 08:45:12 -04:00
padding 5px 0
2018-06-19 01:45:07 -04:00
cursor pointer
font-size 13px
transition all .2s ease-in-out
height: 28px
box-sizing: border-box
2018-07-23 10:24:18 -04:00
&.copy
cursor not-allowed
background #49B1F5
&.active
cursor pointer
background #1B9EF3
color #fff
2018-06-19 01:45:07 -04:00
&.delete
cursor not-allowed
2018-06-20 08:45:12 -04:00
background #F47466
2018-07-23 10:24:18 -04:00
&.active
cursor pointer
background #F15140
color #fff
2017-12-06 22:26:29 -05:00
#gallery-view
position relative
.round
border-radius 14px
2018-06-19 01:45:07 -04:00
.pull-right
float right
2017-12-06 22:26:29 -05:00
.gallery-list
height 360px
box-sizing border-box
padding 8px 0
overflow-y auto
overflow-x hidden
position absolute
top: 38px
transition all .2s ease-in-out .1s
2018-07-06 11:54:36 -04:00
width 100%
&.small
height: 287px
top: 113px
2018-06-19 01:45:07 -04:00
&__img
2017-12-06 22:26:29 -05:00
height 150px
position relative
margin-bottom 16px
&__item
width 100%
height 120px
transition all .2s ease-in-out
cursor pointer
margin-bottom 8px
overflow hidden
display flex
2017-12-06 22:26:29 -05:00
&-fake
position absolute
top 0
left 0
opacity 0
width 100%
z-index -1
&:hover
transform scale(1.1)
&-img
width 100%
object-fit fill
2017-12-06 22:26:29 -05:00
&__tool-panel
color #ddd
i
cursor pointer
transition all .2s ease-in-out
&.el-icon-document
&:hover
color #49B1F5
2018-04-08 11:43:34 -04:00
&.el-icon-edit-outline
&:hover
color #69C282
2017-12-06 22:26:29 -05:00
&.el-icon-delete
&:hover
color #F15140
2018-06-19 01:45:07 -04:00
.handle-bar
color #ddd
margin-bottom 10px
2018-06-20 08:45:12 -04:00
.el-input__inner
border-radius 14px
2017-12-06 22:26:29 -05:00
</style>