egirlskey/packages/frontend/src/components/MkMediaBanner.vue

103 lines
1.8 KiB
Vue
Raw Normal View History

2018-09-04 16:08:18 +00:00
<template>
<div class="mk-media-banner">
2021-11-19 10:36:12 +00:00
<div v-if="media.isSensitive && hide" class="sensitive" @click="hide = false">
<span class="icon"><i class="ti ti-alert-triangle"></i></span>
2020-12-26 01:47:36 +00:00
<b>{{ $ts.sensitive }}</b>
<span>{{ $ts.clickToShow }}</span>
2018-09-04 16:08:18 +00:00
</div>
2021-11-19 10:36:12 +00:00
<div v-else-if="media.type.startsWith('audio') && media.type !== 'audio/midi'" class="audio">
<audio
ref="audioEl"
2021-11-19 10:36:12 +00:00
class="audio"
2018-09-04 16:08:18 +00:00
:src="media.url"
:title="media.name"
controls
2021-11-19 10:36:12 +00:00
preload="metadata"
@volumechange="volumechange"
/>
2018-09-04 16:08:18 +00:00
</div>
<a
v-else class="download"
2018-09-04 16:08:18 +00:00
:href="media.url"
:title="media.name"
:download="media.name"
>
<span class="icon"><i class="ti ti-download"></i></span>
2018-09-04 16:08:18 +00:00
<b>{{ media.name }}</b>
</a>
</div>
</template>
<script lang="ts" setup>
import { onMounted } from 'vue';
import * as misskey from 'misskey-js';
2021-11-11 17:02:25 +00:00
import { ColdDeviceStorage } from '@/store';
2018-09-04 16:08:18 +00:00
const props = withDefaults(defineProps<{
media: misskey.entities.DriveFile;
}>(), {
});
const audioEl = $ref<HTMLAudioElement | null>();
let hide = $ref(true);
function volumechange() {
if (audioEl) ColdDeviceStorage.set('mediaVolume', audioEl.volume);
}
onMounted(() => {
if (audioEl) audioEl.volume = ColdDeviceStorage.get('mediaVolume');
});
2018-09-04 16:08:18 +00:00
</script>
<style lang="scss" scoped>
.mk-media-banner {
width: 100%;
border-radius: 4px;
margin-top: 4px;
overflow: hidden;
2018-09-04 16:08:18 +00:00
> .download,
> .sensitive {
display: flex;
align-items: center;
font-size: 12px;
padding: 8px 12px;
white-space: nowrap;
2018-09-04 16:08:18 +00:00
> * {
display: block;
}
2018-09-04 16:08:18 +00:00
> b {
overflow: hidden;
text-overflow: ellipsis;
}
2018-09-04 16:08:18 +00:00
> *:not(:last-child) {
margin-right: .2em;
}
2018-09-04 16:08:18 +00:00
> .icon {
font-size: 1.6em;
}
}
2018-09-04 16:08:18 +00:00
> .download {
background: var(--noteAttachedFile);
}
2018-09-04 16:08:18 +00:00
> .sensitive {
background: #111;
color: #fff;
}
2018-09-05 10:46:55 +00:00
> .audio {
.audio {
display: block;
width: 100%;
}
}
}
2018-09-04 16:08:18 +00:00
</style>