egirlskey/src/client/components/media-video.vue

80 lines
1.4 KiB
Vue
Raw Normal View History

2018-03-26 13:04:34 +00:00
<template>
<div class="icozogqfvdetwohsdglrbswgrejoxbdj" v-if="video.isSensitive && hide && !$store.state.device.alwaysShowNsfw" @click="hide = false">
2018-07-19 17:53:32 +00:00
<div>
<b><fa icon="exclamation-triangle"/> {{ $t('sensitive') }}</b>
<span>{{ $t('clickToShow') }}</span>
2018-07-19 17:53:32 +00:00
</div>
</div>
<a class="kkjnbbplepmiyuadieoenjgutgcmtsvu" v-else
:href="video.url"
2019-05-13 17:50:23 +00:00
rel="nofollow noopener"
2018-07-19 17:53:32 +00:00
target="_blank"
:style="imageStyle"
2018-10-07 16:03:07 +00:00
:title="video.name"
>
<fa :icon="faPlayCircle"/>
2018-07-19 17:53:32 +00:00
</a>
2018-03-26 13:04:34 +00:00
</template>
<script lang="ts">
2018-09-15 19:31:55 +00:00
import Vue from 'vue';
import { faPlayCircle } from '@fortawesome/free-regular-svg-icons';
import i18n from '../i18n';
2018-09-15 19:31:55 +00:00
2018-03-26 13:04:34 +00:00
export default Vue.extend({
i18n,
2018-07-19 17:53:32 +00:00
props: {
video: {
type: Object,
required: true
}
},
2018-09-15 19:31:55 +00:00
data() {
return {
hide: true,
faPlayCircle
2018-09-15 19:31:55 +00:00
};
},
2018-03-26 13:04:34 +00:00
computed: {
imageStyle(): any {
return {
'background-image': `url(${this.video.thumbnailUrl})`
2018-03-26 13:04:34 +00:00
};
}
2018-09-15 19:31:55 +00:00
}
});
2018-03-26 13:04:34 +00:00
</script>
<style lang="scss" scoped>
.kkjnbbplepmiyuadieoenjgutgcmtsvu {
display: flex;
justify-content: center;
align-items: center;
2018-03-26 13:04:34 +00:00
font-size: 3.5em;
overflow: hidden;
background-position: center;
background-size: cover;
width: 100%;
height: 100%;
}
2018-07-19 17:53:32 +00:00
.icozogqfvdetwohsdglrbswgrejoxbdj {
display: flex;
justify-content: center;
align-items: center;
background: #111;
color: #fff;
2018-07-19 17:53:32 +00:00
> div {
display: table-cell;
text-align: center;
font-size: 12px;
2018-07-19 17:53:32 +00:00
> b {
display: block;
}
}
}
2018-03-26 13:04:34 +00:00
</style>