Sharkey/src/client/app/desktop/views/components/media-video.vue

106 lines
1.8 KiB
Vue
Raw Normal View History

2018-03-26 15:54:38 +03:00
<template>
2018-07-19 20:53:32 +03:00
<div class="uofhebxjdgksfmltszlxurtjnjjsvioh" v-if="video.isSensitive && hide" @click="hide = false">
<div>
<b>%fa:exclamation-triangle% %i18n:@sensitive%</b>
<span>%i18n:@click-to-show%</span>
</div>
</div>
<div class="vwxdhznewyashiknzolsoihtlpicqepe" v-else>
<video class="video"
2018-03-26 15:54:38 +03:00
:src="video.url"
:title="video.name"
controls
@dblclick.prevent="onClick"
ref="video"
v-if="inlinePlayable" />
2018-07-19 20:53:32 +03:00
<a class="thumbnail"
2018-03-26 15:54:38 +03:00
:href="video.url"
:style="imageStyle"
@click.prevent="onClick"
:title="video.name"
v-else>
%fa:R play-circle%
</a>
2018-07-19 20:53:32 +03:00
</div>
2018-03-26 15:54:38 +03:00
</template>
<script lang="ts">
import Vue from 'vue';
import MkMediaVideoDialog from './media-video-dialog.vue';
export default Vue.extend({
2018-07-19 20:53:32 +03:00
props: {
video: {
type: Object,
required: true
},
inlinePlayable: {
default: false
},
hide: {
type: Boolean,
default: true
}
},
2018-03-26 15:54:38 +03:00
computed: {
imageStyle(): any {
return {
2018-07-24 17:43:14 +03:00
'background-image': `url(${this.video.url})`
2018-03-26 15:54:38 +03:00
};
}
},
methods: {
onClick() {
const videoTag = this.$refs.video as (HTMLVideoElement | null)
var start = 0
if (videoTag) {
start = videoTag.currentTime
videoTag.pause()
}
(this as any).os.new(MkMediaVideoDialog, {
video: this.video,
start,
})
}
}
})
</script>
<style lang="stylus" scoped>
2018-07-19 20:53:32 +03:00
.vwxdhznewyashiknzolsoihtlpicqepe
.video
display block
width 100%
height 100%
border-radius 4px
.thumbnail
display flex
justify-content center
align-items center
font-size 3.5em
2018-05-04 10:27:03 +03:00
2018-07-19 20:53:32 +03:00
cursor zoom-in
overflow hidden
background-position center
background-size cover
width 100%
height 100%
.uofhebxjdgksfmltszlxurtjnjjsvioh
2018-03-26 15:54:38 +03:00
display flex
justify-content center
align-items center
2018-07-19 20:53:32 +03:00
background #111
color #fff
> div
display table-cell
text-align center
font-size 12px
> b
display block
2018-03-26 15:54:38 +03:00
</style>