Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#2391 - Multiple images in the viewer #2419

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
v-if='objectURLList[entryIndex]'
:src='objectURLList[entryIndex]'
:alt='entry.name'
@click='openImageViewer(objectURLList[entryIndex], entry)'
@click='openImageViewer(objectURLList[entryIndex])'
)
.loading-box(v-else :style='loadingBoxStyles[entryIndex]')

Expand Down Expand Up @@ -60,7 +60,7 @@
v-for='(entry, entryIndex) in attachmentList'
:key='entryIndex'
:class='"is-" + fileType(entry)'
@click='openImageViewer(entry.url, entry)'
@click='openImageViewer(entry.url)'
)
img.c-preview-img(
v-if='fileType(entry) === "image" && entry.url'
Expand Down Expand Up @@ -94,6 +94,7 @@ import { MESSAGE_VARIANTS } from '@model/contracts/shared/constants.js'
import { getFileExtension, getFileType } from '@view-utils/filters.js'
import { Secret } from '~/shared/domains/chelonia/Secret.js'
import { OPEN_MODAL } from '@utils/events.js'
import { randomHexString } from '@model/contracts/shared/giLodash.js'

export default {
name: 'ChatAttachmentPreview',
Expand Down Expand Up @@ -212,21 +213,29 @@ export default {
height: `${heightInPixel}px`
}
},
openImageViewer (objectURL, data) {
if (objectURL) {
sbp(
'okTurtles.events/emit', OPEN_MODAL, 'ImageViewerModal',
null,
{
metaData: {
name: data.name,
ownerID: this.ownerID,
imgUrl: objectURL,
createdAt: this.createdAt || new Date()
}
openImageViewer (objectURL) {
if (!objectURL) { return }

const allImageAttachments = this.attachmentList.filter(entry => this.fileType(entry) === 'image')
.map((entry, index) => {
return {
name: entry.name,
ownerID: this.ownerID,
imgUrl: entry.url || this.objectURLList[index] || '',
createdAt: this.createdAt || new Date(),
id: randomHexString(12)
}
)
}
})
const initialIndex = allImageAttachments.findIndex(attachment => attachment.imgUrl === objectURL) || 0

sbp(
'okTurtles.events/emit', OPEN_MODAL, 'ImageViewerModal',
null,
{
images: allImageAttachments,
initialIndex
}
)
}
},
watch: {
Expand Down
148 changes: 118 additions & 30 deletions frontend/views/containers/chatroom/image-viewer/ImageViewerModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,43 @@
.c-image-viewer-modal(@wheel.prevent.stop='')
.c-image-viewer-content
.c-image-blurry-background(:style='blurryBgStyles')
preview-image-area(:img-src='metaData.imgUrl' :name='metaData.name')
preview-image-area(
v-if='currentImage'
:key='currentImage.id'
:img-src='currentImage.imgUrl'
:name='currentImage.name'
)

header.c-modal-header
avatar-user.c-avatar(
v-if='metaData.ownerID'
:contractID='metaData.ownerID'
v-if='currentImage.ownerID'
:contractID='currentImage.ownerID'
size='sm'
)

.c-img-data
.c-name.has-ellipsis {{ displayName }}
.c-filename.has-ellipsis {{ metaData.name }}
.c-filename.has-ellipsis {{ currentImage.name }}

button.is-icon-small.c-close-btn(
type='button'
@click.stop='close'
)
i.icon-times

button.is-icon.c-image-nav-btn.is-prev(
v-if='showPrevButton'
type='button'
@click='selectPrevImage'
)
i.icon-chevron-left

button.is-icon.c-image-nav-btn.is-next(
v-if='showNextButton'
type='button'
@click='selectNextImage'
)
i.icon-chevron-right
</template>

<script>
Expand All @@ -39,30 +58,18 @@ export default {
PreviewImageArea
},
props: {
metaData: Object
images: Array,
initialIndex: {
type: Number,
required: false,
default: 0
}
},
data () {
return {
testImgSrc: '/assets/images/home-bg.jpeg',
ephemeral: {
previewImgAttrs: {
width: undefined,
height: undefined
},
currentZoom: 0,
showSliderOutput: false
},
config: {
imgData: {
minWidth: null,
minHeight: null,
naturalWidth: null,
naturalHeight: null,
aspectRatio: 1 // intrinsic ratio value of width / height
},
zoomMin: 0,
zoomMax: 400, // for now.
sliderUnit: '%'
currentIndex: 0,
isTouch: false
}
}
},
Expand All @@ -73,36 +80,81 @@ export default {
]),
blurryBgStyles () {
return {
backgroundImage: `url(${this.metaData.imgUrl})`
backgroundImage: `url(${this.currentImage.imgUrl})`
}
},
displayName () {
const contractID = this.metaData.ownerID
const contractID = this.currentImage.ownerID
return this.globalProfile(contractID)?.displayName ||
this.usernameFromID(contractID)
},
hasMultipleImages () {
return Array.isArray(this.images) && this.images.length > 1
},
showPrevButton () {
const len = this.images.length
return len > 1 && this.ephemeral.currentIndex > 0
},
showNextButton () {
const len = this.images.length
return len > 1 && this.ephemeral.currentIndex < len - 1
},
currentImage () {
return this.images[this.ephemeral.currentIndex]
}
},
created () {
if (!this.metaData) {
if (!Array.isArray(this.images)) {
this.$nextTick(() => this.close())
} else {
this.ephemeral.currentIndex = this.initialIndex
}

this.touchMatchMedia = window.matchMedia('(hover: none) and (pointer: coarse)')
this.ephemeral.isTouch = this.touchMatchMedia.matches
this.touchMatchMedia.onchange = (e) => {
this.ephemeral.isTouch = e.matches
}
},
mounted () {
document.addEventListener('keydown', this.trapFocus)
document.addEventListener('keydown', this.keydownHandler)
},
beforeDestroy () {
document.removeEventListener('keydown', this.trapFocus)
document.removeEventListener('keydown', this.keydownHandler)
this.touchMatchMedia.onchange = null
},
methods: {
close () {
sbp('okTurtles.events/emit', CLOSE_MODAL, 'ImageViewerModal')
},
selectNextImage () {
if (this.ephemeral.currentIndex < this.images.length - 1) {
this.ephemeral.currentIndex += 1
}
},
selectPrevImage () {
if (this.ephemeral.currentIndex > 0) {
this.ephemeral.currentIndex -= 1
}
},
keydownHandler (e) {
this.trapFocus(e)

switch (e.key) {
case 'ArrowLeft':
this.selectPrevImage()
break
case 'ArrowRight':
this.selectNextImage()
}
}
}
}
</script>

<style lang="scss" scoped>
@import "@assets/style/_variables.scss";
$cta-zindex: 3;

.c-image-viewer-modal {
position: fixed;
Expand Down Expand Up @@ -140,6 +192,9 @@ export default {
width: 100%;
height: 100%;
overflow: hidden;
display: flex;
flex-direction: row;
align-items: stretch;

@include from($tablet) {
border-radius: 0.375rem;
Expand All @@ -154,7 +209,7 @@ export default {
top: 0;
left: 0;
height: auto;
z-index: 3;
z-index: $cta-zindex;
padding: 1rem;
padding-right: 3rem;
display: flex;
Expand Down Expand Up @@ -230,4 +285,37 @@ export default {
color: var(--image-viewer-btn-text-color_active);
}
}

.c-image-nav-btn {
position: absolute;
z-index: $cta-zindex;
top: 50%;
transform: translateY(-50%);
background-color: var(--image-viewer-text-color);
color: var(--image-viewer-btn-color);
width: 2.5rem;
height: 2.5rem;

&.is-prev {
left: 1rem;
}

&.is-next {
right: 1rem;
}

@include phone {
width: 2rem;
height: 2rem;
font-size: 0.75rem;

&.is-prev {
left: 0.75rem;
}

&.is-next {
right: 0.75rem;
}
}
}
</style>
Loading