Enable a vue-loading overlay for the media viewer

This commit modifies the CSS for the media viewer heavily. Please report
back if there are any issues!
This commit is contained in:
L. E. Segovia 2018-11-18 12:05:57 +00:00
parent e86d1c909a
commit a313b95625
No known key found for this signature in database
GPG Key ID: D5D1DC48B52B7AD5
3 changed files with 43 additions and 9 deletions

View File

@ -86,8 +86,7 @@ export default {
}
.image-content {
height: 100%;
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;

View File

@ -1,10 +1,18 @@
<template>
<video :src="src" v-if="isMovieFile()" controls></video>
<video :src="src" v-else-if="isGIF()" autoplay loop></video>
<img :src="src" v-else>
<div
id="current-media"
v-loading="loading"
element-loading-background="rgba(0, 0, 0, 0.8)"
>
<video :src="src" v-if="isMovieFile()" controls v-on:loadstart="loaded()"></video>
<video :src="src" v-else-if="isGIF()" autoplay loop v-on:loadstart="loaded()"></video>
<img :src="src" v-else v-on:load="loaded()">
</div>
</template>
<script>
import { mapState } from 'vuex'
export default {
props: {
src: {
@ -16,22 +24,35 @@ export default {
default: ''
}
},
computed: {
...mapState({
loading: state => state.TimelineSpace.Modals.ImageViewer.loading
})
},
methods: {
isMovieFile () {
return ['video'].includes(this.type)
},
isGIF () {
return ['gifv'].includes(this.type)
},
async loaded () {
this.$store.dispatch('TimelineSpace/Modals/ImageViewer/loaded')
}
}
}
</script>
<style lang="scss" scoped>
img,
video {
#current-media {
max-width: 80%;
max-height: 80%;
min-width: 10%;
height: 80%;
img,
video {
max-height: 100%;
}
}
</style>

View File

@ -3,7 +3,8 @@ const ImageViewer = {
state: {
modalOpen: false,
currentIndex: -1,
mediaList: []
mediaList: [],
loading: false
},
mutations: {
changeModal (state, value) {
@ -20,6 +21,9 @@ const ImageViewer = {
},
decrementIndex (state) {
state.currentIndex--
},
loading (state, value) {
state.loading = value
}
},
actions: {
@ -27,17 +31,24 @@ const ImageViewer = {
commit('changeModal', true)
commit('changeCurrentIndex', currentIndex)
commit('changeMedliaList', mediaList)
commit('loading', true)
},
closeModal ({ commit }) {
commit('changeModal', false)
commit('changeCurrentIndex', -1)
commit('changeMedliaList', [])
commit('loading', false)
},
incrementIndex ({ commit }) {
commit('incrementIndex')
commit('loading', true)
},
decrementIndex ({ commit }) {
commit('decrementIndex')
commit('loading', true)
},
async loaded ({ commit }) {
commit('loading', false)
}
},
getters: {
@ -60,6 +71,9 @@ const ImageViewer = {
const notLast = (state.currentIndex < (state.mediaList.length - 1))
const isManyItem = (state.mediaList.length > 1)
return (notLast && isManyItem)
},
loading (state) {
return state.loading
}
}
}