2018-09-04 18:08:18 +02:00
|
|
|
<template>
|
|
|
|
<div class="mk-media-banner">
|
2021-11-19 11:36:12 +01:00
|
|
|
<div v-if="media.isSensitive && hide" class="sensitive" @click="hide = false">
|
2023-03-11 22:01:04 +01:00
|
|
|
<span class="icon"><i class="ph-warning ph-bold ph-lg"></i></span>
|
2022-11-10 23:12:44 +01:00
|
|
|
<b>{{ i18n.ts.sensitive }}</b>
|
|
|
|
<span>{{ i18n.ts.clickToShow }}</span>
|
2018-09-04 18:08:18 +02:00
|
|
|
</div>
|
2021-11-19 11:36:12 +01:00
|
|
|
<div v-else-if="media.type.startsWith('audio') && media.type !== 'audio/midi'" class="audio">
|
2022-09-21 22:10:47 +02:00
|
|
|
<VuePlyr
|
|
|
|
:options="{
|
|
|
|
controls: [
|
|
|
|
'play-large',
|
|
|
|
'play',
|
|
|
|
'progress',
|
|
|
|
'current-time',
|
|
|
|
'mute',
|
|
|
|
'volume',
|
|
|
|
'download',
|
|
|
|
],
|
|
|
|
disableContextMenu: false,
|
|
|
|
}"
|
|
|
|
>
|
|
|
|
<audio
|
|
|
|
ref="audioEl"
|
2022-08-17 02:43:33 +02:00
|
|
|
class="audio"
|
|
|
|
:src="media.url"
|
|
|
|
:title="media.name"
|
|
|
|
controls
|
|
|
|
preload="metadata"
|
2022-09-21 22:10:47 +02:00
|
|
|
@volumechange="volumechange"
|
|
|
|
/>
|
2022-08-17 02:43:33 +02:00
|
|
|
</VuePlyr>
|
2018-09-04 18:08:18 +02:00
|
|
|
</div>
|
2022-09-21 22:10:47 +02:00
|
|
|
<a
|
|
|
|
v-else class="download"
|
2018-09-04 18:08:18 +02:00
|
|
|
:href="media.url"
|
|
|
|
:title="media.name"
|
|
|
|
:download="media.name"
|
|
|
|
>
|
2023-03-11 22:01:04 +01:00
|
|
|
<span class="icon"><i class="ph-download-simple ph-bold ph-lg"></i></span>
|
2018-09-04 18:08:18 +02:00
|
|
|
<b>{{ media.name }}</b>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-16 00:24:53 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onMounted } from 'vue';
|
2022-08-18 01:38:17 +02:00
|
|
|
import VuePlyr from 'vue-plyr';
|
2022-12-12 04:24:12 +01:00
|
|
|
import type * as misskey from 'calckey-js';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { ColdDeviceStorage } from '@/store';
|
2022-08-18 01:38:17 +02:00
|
|
|
import 'vue-plyr/dist/vue-plyr.css';
|
2022-11-10 23:12:44 +01:00
|
|
|
import { i18n } from '@/i18n';
|
2018-09-04 18:08:18 +02:00
|
|
|
|
2022-01-16 00:24:53 +01: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(() => {
|
2022-07-19 07:56:28 +02:00
|
|
|
if (audioEl) audioEl.volume = ColdDeviceStorage.get('mediaVolume');
|
2022-01-16 00:24:53 +01:00
|
|
|
});
|
2018-09-04 18:08:18 +02:00
|
|
|
</script>
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mk-media-banner {
|
|
|
|
width: 100%;
|
|
|
|
border-radius: 4px;
|
|
|
|
margin-top: 4px;
|
2021-03-02 14:57:16 +01:00
|
|
|
overflow: hidden;
|
2022-08-17 02:43:33 +02:00
|
|
|
--plyr-color-main: var(--accent);
|
2022-11-13 19:58:30 +01:00
|
|
|
--plyr-audio-controls-background: var(--panelHighlight);
|
|
|
|
--plyr-audio-controls-background-hover: var(--accentedBg);
|
2022-11-13 20:03:12 +01:00
|
|
|
--plyr-audio-control-color: var(--navFg);
|
2018-09-04 18:08:18 +02:00
|
|
|
|
2018-09-15 21:21:48 +02:00
|
|
|
> .download,
|
2020-01-29 20:37:25 +01:00
|
|
|
> .sensitive {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 8px 12px;
|
|
|
|
white-space: nowrap;
|
2018-09-04 18:08:18 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> * {
|
|
|
|
display: block;
|
|
|
|
}
|
2018-09-04 18:08:18 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> b {
|
2021-03-02 14:57:16 +01:00
|
|
|
overflow: hidden;
|
2020-01-29 20:37:25 +01:00
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
2018-09-04 18:08:18 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> *:not(:last-child) {
|
|
|
|
margin-right: .2em;
|
|
|
|
}
|
2018-09-04 18:08:18 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> .icon {
|
|
|
|
font-size: 1.6em;
|
|
|
|
}
|
|
|
|
}
|
2018-09-04 18:08:18 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> .download {
|
|
|
|
background: var(--noteAttachedFile);
|
|
|
|
}
|
2018-09-04 18:08:18 +02:00
|
|
|
|
2022-07-19 07:56:28 +02:00
|
|
|
> .sensitive {
|
2020-01-29 20:37:25 +01:00
|
|
|
background: #111;
|
|
|
|
color: #fff;
|
2022-07-19 07:56:28 +02:00
|
|
|
}
|
2018-09-05 12:46:55 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> .audio {
|
|
|
|
.audio {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-09-04 18:08:18 +02:00
|
|
|
</style>
|