File size: 4,157 Bytes
3a1d71c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
<script setup lang="ts">
import { useImgSliStore } from '@/store/useImgSli'
import { toImageThumbnailUrl, toRawFileUrl, getFileTransferDataFromDragEvent } from '@/util/file'
import { CloseCircleOutlined } from '@/icon'
import { isImageFile } from '@/util'
import { storeToRefs } from 'pinia'
import { useGlobalStore, ImgSliTabPane } from '@/store/useGlobalStore'
import { ok } from 'vue3-ts-util'
import { t } from '@/i18n'
import { uniqueId } from 'lodash-es'
const sliStore = useImgSliStore()
const g = useGlobalStore()
const { left, right } = storeToRefs(sliStore)
const onImageDrop = async (e: DragEvent, side: 'left' | 'right') => {
const data = getFileTransferDataFromDragEvent(e)
if (data) {
const img = data.nodes[0]
if (!isImageFile(img.name)) {
return
}
sliStore[side] = img
}
}
const onCancel = () => {
sliStore.left = undefined
sliStore.right = undefined
sliStore.opened = false
}
const openInNewTab = () => {
ok(left.value && right.value)
const pane: ImgSliTabPane = {
type: 'img-sli',
left: left.value,
right: right.value,
name: `${t('imgCompare')} ( ${left.value.name} vs ${right.value.name})`,
key: uniqueId()
}
g.tabList[0].panes.push(pane)
g.tabList[0].key = pane.key
}
</script>
<template>
<Transition>
<div class="dragging-port-wrap" v-if="(sliStore.fileDragging || left || right || sliStore.opened) && !sliStore.imgSliActived">
<h2>{{ $t('imgCompare') }}</h2>
<div class="content">
<div class="left port" @dragover.prevent @drop.prevent="onImageDrop($event, 'left')">
<div v-if="left" class="img-wrap">
<AImage :src="toImageThumbnailUrl(left)" :preview="{ src: toRawFileUrl(left) }" />
<CloseCircleOutlined class="close" @click="left = undefined" />
</div>
<div v-else>
{{ $t('dragImageHere') }}
</div>
</div>
<div style="padding: 16px" />
<div class="right port" @dragover.prevent @drop.prevent="onImageDrop($event, 'right')">
<div v-if="right" class="img-wrap">
<AImage :src="toImageThumbnailUrl(right)" :preview="{ src: toRawFileUrl(right) }" />
<CloseCircleOutlined class="close" @click="right = undefined" />
</div>
<div v-else>
{{ $t('dragImageHere') }}
</div>
</div>
</div>
<p class="tips" v-if="sliStore.opened" style="max-width: 30vw;">
Tips: {{ $t('imageCompareTips') }}
</p>
<div class="actions" >
<AButton v-if="left && right" type="primary" @click="sliStore.drawerVisible = true">{{ $t('confirm') }}</AButton>
<AButton v-if="left && right" type="primary" @click="openInNewTab">{{ $t('confirm') }}({{$t('openInNewTab')}})</AButton>
<AButton style="margin-left: 16px;" @click="onCancel">{{ $t('close') }}</AButton>
</div>
</div>
</Transition>
</template>
<style scoped lang="scss">
.dragging-port-wrap {
position: fixed;
bottom: 15%;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
background: var(--zp-primary-background);
box-shadow: 0 0 4px var(--zp-secondary);
border-radius: 8px;
padding: 16px 32px;
.content {
display: flex;
align-items: center;
margin: 16px 0;
.port {
display: flex;
align-items: center;
justify-content: center;
width: 128px;
height: 128px;
border-radius: 8px;
border: 1px solid var(--zp-tertiary);
.img-wrap {
position: relative;
:deep() img {
max-width: 128px;
max-height: 128px;
object-fit: contain;
}
.close {
position: absolute;
top: 0;
right: 0;
transform: translate(50%, -50%);
font-size: 1.5em;
background: white;
border-radius: 100%;
color: black;
z-index: 999;
cursor: pointer;
}
}
}
}
}
.v-enter-active,
.v-leave-active {
transition: opacity 0.5s ease;
}
.v-enter-from,
.v-leave-to {
opacity: 0;
}
</style> |