summaryrefslogtreecommitdiff
path: root/src/client/app/mobile/views/components/media-video.vue
blob: 8cd9971b77f04bd7142e734f39d150cd03583523 (plain)
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
<template>
<div class="icozogqfvdetwohsdglrbswgrejoxbdj" v-if="video.isSensitive && hide" @click="hide = false">
	<div>
		<b><fa icon="exclamation-triangle"/> {{ $t('sensitive') }}</b>
		<span>{{ $t('click-to-show') }}</span>
	</div>
</div>
<a class="kkjnbbplepmiyuadieoenjgutgcmtsvu" v-else
	:href="video.url"
	target="_blank"
	:style="imageStyle"
	:title="video.name"
>
	<fa :icon="['far', 'play-circle']"/>
</a>
</template>

<script lang="ts">
import Vue from 'vue';
import i18n from '../../../i18n';

export default Vue.extend({
	i18n: i18n('mobile/views/components/media-video.vue'),
	props: {
		video: {
			type: Object,
			required: true
		}
	},
	data() {
		return {
			hide: true
		};
	},
	computed: {
		imageStyle(): any {
			return {
				'background-image': null // TODO `url(${this.video.thumbnailUrl})`
			};
		}
	}
});
</script>

<style lang="stylus" scoped>
.kkjnbbplepmiyuadieoenjgutgcmtsvu
	display flex
	justify-content center
	align-items center

	font-size 3.5em
	overflow hidden
	background-position center
	background-size cover
	width 100%
	height 100%

.icozogqfvdetwohsdglrbswgrejoxbdj
	display flex
	justify-content center
	align-items center
	background #111
	color #fff

	> div
		display table-cell
		text-align center
		font-size 12px

		> b
			display block

</style>