mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
407 lines
11 KiB
407 lines
11 KiB
3 years ago
|
<template>
|
||
|
<div class="main">
|
||
|
<div class="d-flex align-center img-container">
|
||
|
<div v-for="(item,i) in localState" :key="i" class="thumbnail align-center justify-center d-flex">
|
||
|
<v-tooltip bottom>
|
||
3 years ago
|
<template #activator="{on}">
|
||
3 years ago
|
<v-img
|
||
3 years ago
|
v-if="isImage(item.title)"
|
||
3 years ago
|
:key="item.url"
|
||
3 years ago
|
lazy-src="https://via.placeholder.com/60.png?text=Loading..."
|
||
|
alt="#"
|
||
|
max-height="33px"
|
||
|
contain
|
||
|
:src="item.url"
|
||
|
v-on="on"
|
||
|
@click="selectImage(item.url,i)"
|
||
|
>
|
||
|
<template #placeholder>
|
||
|
<v-skeleton-loader type="image" height="33" width="33" />
|
||
3 years ago
|
</template>
|
||
|
</v-img>
|
||
3 years ago
|
<v-icon v-else-if="item.icon" size="33" v-on="on" @click="openUrl(item.url,'_blank')">
|
||
|
{{
|
||
3 years ago
|
item.icon
|
||
|
}}
|
||
|
</v-icon>
|
||
3 years ago
|
<v-icon v-else size="33" v-on="on" @click="openUrl(item.url,'_blank')">
|
||
|
mdi-file
|
||
|
</v-icon>
|
||
3 years ago
|
</template>
|
||
|
<span>{{ item.title }}</span>
|
||
|
</v-tooltip>
|
||
|
</div>
|
||
|
|
||
|
<div class="add d-flex align-center justify-center px-1" @click="addFile">
|
||
3 years ago
|
<v-icon v-if="uploading" small color="primary">
|
||
|
mdi-loading mdi-spin
|
||
|
</v-icon>
|
||
|
<v-icon v-else small color="primary">
|
||
|
mdi-plus
|
||
|
</v-icon>
|
||
3 years ago
|
</div>
|
||
|
|
||
3 years ago
|
<v-spacer />
|
||
3 years ago
|
|
||
3 years ago
|
<v-icon class="expand-icon mr-1" x-small color="primary" @click.stop="dialog = true">
|
||
|
mdi-arrow-expand
|
||
|
</v-icon>
|
||
|
<input ref="file" type="file" multiple class="d-none" @change="onFileSelection">
|
||
3 years ago
|
</div>
|
||
|
|
||
|
<v-dialog
|
||
|
v-model="dialog"
|
||
|
width="800"
|
||
|
>
|
||
|
<v-card class="h-100 images-modal">
|
||
|
<v-card-text class="h-100 backgroundColor">
|
||
3 years ago
|
<v-btn small class="my-4" :loading="uploading" @click="addFile">
|
||
|
<v-icon small class="mr-2">
|
||
|
mdi-link-variant
|
||
|
</v-icon>
|
||
3 years ago
|
Attach File
|
||
|
</v-btn>
|
||
|
|
||
|
<div class="d-flex flex-wrap h-100">
|
||
|
<v-container fluid style="max-height:calc(90vh - 80px);overflow-y: auto">
|
||
|
<v-row>
|
||
|
<v-col v-for="(item,i) in localState" :key="i" cols="4">
|
||
3 years ago
|
<v-card
|
||
|
class="modal-thumbnail-card align-center justify-center d-flex"
|
||
|
height="200px"
|
||
|
style="position: relative"
|
||
|
>
|
||
3 years ago
|
<v-icon small class="remove-icon" @click="removeItem(i)">
|
||
|
mdi-close-circle
|
||
|
</v-icon>
|
||
|
<div class="pa-2 d-flex align-center" style="height:200px">
|
||
3 years ago
|
<img
|
||
|
v-if="isImage(item.title)"
|
||
|
style="max-height: 100%;max-width: 100%"
|
||
|
alt="#"
|
||
|
:src="item.url"
|
||
|
@click="selectImage(item.url,i)"
|
||
|
>
|
||
|
|
||
|
<v-icon v-else-if="item.icon" size="33" @click="openUrl(item.url,'_blank')">
|
||
|
{{
|
||
3 years ago
|
item.icon
|
||
|
}}
|
||
|
</v-icon>
|
||
3 years ago
|
<v-icon v-else size="33" @click="openUrl(item.url,'_blank')">
|
||
|
mdi-file
|
||
|
</v-icon>
|
||
3 years ago
|
</div>
|
||
|
</v-card>
|
||
3 years ago
|
<p class="caption mt-2 modal-title" :title="item.title">
|
||
|
{{ item.title }}
|
||
|
</p>
|
||
3 years ago
|
</v-col>
|
||
|
</v-row>
|
||
|
</v-container>
|
||
|
</div>
|
||
|
</v-card-text>
|
||
|
</v-card>
|
||
|
</v-dialog>
|
||
|
|
||
|
<v-overlay v-model="showImage" z-index="99999" opacity=".93">
|
||
3 years ago
|
<div v-click-outside="hideIfVisible" class="image-overlay-container">
|
||
|
<v-carousel v-if="showImage && selectedImage" v-model="carousel" height="calc(100vh - 100px)" hide-delimiters>
|
||
3 years ago
|
<v-carousel-item
|
||
|
|
||
|
v-for="(item,i) in localState"
|
||
|
:key="i"
|
||
|
>
|
||
|
<div class="mx-auto d-flex flex-column justify-center align-center">
|
||
3 years ago
|
<p class="title text-center">
|
||
|
{{ item.title }}
|
||
|
</p>
|
||
3 years ago
|
|
||
|
<div style="width:90vh;height:calc(100vh - 150px)" class="d-flex align-center justify-center">
|
||
3 years ago
|
<img
|
||
|
v-if="isImage(item.title)"
|
||
|
style="max-width:90vh;max-height:calc(100vh - 100px)"
|
||
|
:src="item.url"
|
||
|
>
|
||
|
<v-icon v-else-if="item.icon" size="55">
|
||
|
{{ item.icon }}
|
||
|
</v-icon>
|
||
|
<v-icon v-else size="55">
|
||
|
mdi-file
|
||
|
</v-icon>
|
||
3 years ago
|
</div>
|
||
|
</div>
|
||
|
</v-carousel-item>
|
||
|
</v-carousel>
|
||
|
<v-sheet
|
||
|
class="mx-auto align-center justify-center"
|
||
|
max-width="90vw"
|
||
|
height="80px"
|
||
|
style="background: transparent"
|
||
|
>
|
||
|
<v-slide-group
|
||
|
multiple
|
||
|
show-arrows
|
||
|
>
|
||
|
<v-slide-item
|
||
|
v-for="(item,i) in localState"
|
||
|
:key="i"
|
||
|
>
|
||
|
<!-- <div class="d-flex justify-center" style="height:80px">-->
|
||
|
<v-card
|
||
3 years ago
|
:key="i"
|
||
3 years ago
|
class="ma-2 pa-2 d-flex align-center justify-center overlay-thumbnail"
|
||
|
:class="{active: carousel === i}"
|
||
3 years ago
|
width="48"
|
||
|
height="48"
|
||
3 years ago
|
@click="carousel = i"
|
||
3 years ago
|
>
|
||
|
<img
|
||
|
v-if="isImage(item.title)"
|
||
|
style="max-width:100%;max-height:100%"
|
||
|
:src="item.url"
|
||
|
>
|
||
|
<v-icon v-else-if="item.icon" size="48">
|
||
|
{{ item.icon }}
|
||
|
</v-icon>
|
||
|
<v-icon v-else size="48">
|
||
|
mdi-file
|
||
|
</v-icon>
|
||
3 years ago
|
</v-card>
|
||
|
<!-- </div>-->
|
||
|
</v-slide-item>
|
||
|
</v-slide-group>
|
||
|
</v-sheet>
|
||
|
|
||
|
<v-icon x-large class="close-icon" @click="showImage=false">
|
||
|
mdi-close-circle
|
||
|
</v-icon>
|
||
|
</div>
|
||
|
</v-overlay>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
3 years ago
|
import { isImage } from '@/components/project/spreadsheet/helpers/imageExt'
|
||
3 years ago
|
|
||
|
export default {
|
||
3 years ago
|
name: 'Attachment',
|
||
3 years ago
|
props: ['dbAlias', 'value'],
|
||
3 years ago
|
data: () => ({
|
||
|
carousel: null,
|
||
|
uploading: false,
|
||
|
localState: '',
|
||
|
dialog: false,
|
||
|
showImage: false,
|
||
|
selectedImage: null
|
||
|
}),
|
||
|
watch: {
|
||
3 years ago
|
value(val) {
|
||
3 years ago
|
try {
|
||
|
this.localState = (typeof val === 'string' ? JSON.parse(val) : val) || []
|
||
|
} catch (e) {
|
||
|
this.localState = []
|
||
|
}
|
||
|
}
|
||
|
// localState(val) {
|
||
|
// if (this.isForm) {
|
||
|
// this.$emit('input', JSON.stringify(val))
|
||
|
// }
|
||
|
// }
|
||
|
},
|
||
3 years ago
|
created() {
|
||
3 years ago
|
try {
|
||
|
this.localState = (typeof this.value === 'string' ? JSON.parse(this.value) : this.value) || []
|
||
|
} catch (e) {
|
||
|
this.localState = []
|
||
|
}
|
||
|
document.addEventListener('keydown', this.onArrowDown)
|
||
|
},
|
||
3 years ago
|
beforeDestroy() {
|
||
3 years ago
|
document.removeEventListener('keydown', this.onArrowDown)
|
||
|
},
|
||
3 years ago
|
mounted() {
|
||
3 years ago
|
},
|
||
3 years ago
|
methods: {
|
||
3 years ago
|
openUrl(url, target) {
|
||
3 years ago
|
window.open(url, target)
|
||
|
},
|
||
|
isImage,
|
||
3 years ago
|
hideIfVisible() {
|
||
3 years ago
|
if (this.showImage) {
|
||
3 years ago
|
this.showImage = false
|
||
3 years ago
|
}
|
||
|
},
|
||
3 years ago
|
selectImage(selectedImage, i) {
|
||
3 years ago
|
this.showImage = true
|
||
|
this.carousel = i
|
||
|
this.selectedImage = selectedImage
|
||
3 years ago
|
},
|
||
3 years ago
|
addFile() {
|
||
3 years ago
|
this.$refs.file.click()
|
||
3 years ago
|
},
|
||
3 years ago
|
async onFileSelection() {
|
||
3 years ago
|
if (!this.$refs.file.files || !this.$refs.file.files.length) {
|
||
3 years ago
|
return
|
||
3 years ago
|
}
|
||
3 years ago
|
this.uploading = true
|
||
3 years ago
|
for (const file of this.$refs.file.files) {
|
||
3 years ago
|
const item = await this.$store.dispatch('sqlMgr/ActUploadOld', [{
|
||
3 years ago
|
dbAlias: this.dbAlias
|
||
3 years ago
|
}, 'xcAttachmentUpload', { public: true }, file])
|
||
|
this.localState.push(item)
|
||
3 years ago
|
}
|
||
|
|
||
3 years ago
|
this.uploading = false
|
||
3 years ago
|
this.$emit('input', JSON.stringify(this.localState))
|
||
|
this.$emit('update')
|
||
|
},
|
||
3 years ago
|
removeItem(i) {
|
||
3 years ago
|
this.localState.splice(i, 1)
|
||
|
this.$emit('input', JSON.stringify(this.localState))
|
||
|
this.$emit('update')
|
||
|
},
|
||
3 years ago
|
onArrowDown(e) {
|
||
3 years ago
|
if (!this.showImage) { return }
|
||
|
e = e || window.event
|
||
|
// eslint-disable-next-line eqeqeq
|
||
3 years ago
|
if (e.keyCode == '37') {
|
||
3 years ago
|
this.carousel = (this.carousel || this.localState.length) - 1
|
||
|
// eslint-disable-next-line eqeqeq
|
||
3 years ago
|
} else if (e.keyCode == '39') {
|
||
3 years ago
|
this.carousel = ++this.carousel % this.localState.length
|
||
3 years ago
|
}
|
||
|
}
|
||
3 years ago
|
}
|
||
3 years ago
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
.img-container {
|
||
|
margin: 0 -2px;
|
||
|
}
|
||
|
|
||
|
.add {
|
||
|
transition: .2s background-color;
|
||
|
/*background-color: #666666ee;*/
|
||
|
border-radius: 4px;
|
||
|
height: 33px;
|
||
|
margin: 5px 2px;
|
||
|
}
|
||
|
|
||
|
.add:hover {
|
||
|
/*background-color: #66666699;*/
|
||
|
}
|
||
|
|
||
|
.thumbnail {
|
||
|
height: 33px;
|
||
|
width: 33px;
|
||
|
margin: 2px;
|
||
|
border-radius: 4px;
|
||
|
}
|
||
|
|
||
|
.thumbnail img {
|
||
|
/*max-height: 33px;*/
|
||
|
max-width: 33px;
|
||
|
}
|
||
|
|
||
|
.main {
|
||
|
position: relative
|
||
|
}
|
||
|
|
||
|
.expand-icon {
|
||
|
border-radius: 2px;
|
||
|
/*opacity: 0;*/
|
||
|
transition: .3s background-color;
|
||
|
}
|
||
|
|
||
|
.expand-icon:hover {
|
||
|
/*opacity: 1;*/
|
||
|
background-color: var(--v-primary-lighten4);
|
||
|
}
|
||
|
|
||
|
.modal-thumbnail img {
|
||
|
height: 50px;
|
||
|
max-width: 100%;
|
||
|
border-radius: 4px;
|
||
|
|
||
|
}
|
||
|
|
||
|
.modal-thumbnail {
|
||
|
position: relative;
|
||
|
margin: 10px 10px;
|
||
|
}
|
||
|
|
||
|
.remove-icon {
|
||
|
position: absolute;
|
||
|
top: 5px;
|
||
|
right: 5px
|
||
|
}
|
||
|
|
||
|
.image-overlay-container {
|
||
|
max-height: 100vh;
|
||
|
overflow-y: auto;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.image-overlay-container .close-icon {
|
||
|
position: fixed;
|
||
|
top: 15px;
|
||
|
right: 15px
|
||
|
}
|
||
|
|
||
|
.overlay-thumbnail {
|
||
|
transition: .4s transform, .4s opacity;
|
||
|
opacity: .5;
|
||
|
}
|
||
|
|
||
|
.overlay-thumbnail.active {
|
||
|
transform: scale(1.4);
|
||
|
opacity: 1;
|
||
|
}
|
||
|
|
||
|
.overlay-thumbnail:hover {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
|
||
|
.modal-title {
|
||
|
text-overflow: ellipsis;
|
||
|
white-space: nowrap;
|
||
|
width: 100%;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.modal-thumbnail-card {
|
||
|
transition: .4s transform;
|
||
|
}
|
||
|
|
||
|
.modal-thumbnail-card:hover {
|
||
|
transform: scale(1.05);
|
||
|
}
|
||
|
|
||
|
</style>
|
||
|
<!--
|
||
|
/**
|
||
|
* @copyright Copyright (c) 2021, Xgene Cloud Ltd
|
||
|
*
|
||
|
* @author Naveen MR <oof1lab@gmail.com>
|
||
|
* @author Pranav C Balan <pranavxc@gmail.com>
|
||
|
*
|
||
|
* @license GNU AGPL version 3 or any later version
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU Affero General Public License as
|
||
|
* published by the Free Software Foundation, either version 3 of the
|
||
|
* License, or (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU Affero General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Affero General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*
|
||
|
*/
|
||
|
-->
|