mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 08:23:08 +02:00
0db88a5a3b
* enhane: unison-reloadに指定したパスに移動できるように * null * null * feat: ログインするアカウントのIDをクエリ文字列で指定する機能 * null * await? * rename * rename * Update read.ts * merge * get-note-summary * fix * swパッケージに * add missing packages * fix getNoteSummary * add webpack-cli * ✌️ * remove plugins * sw-inject分離したがテストしてない * fix notification.vue * remove a blank line * disconnect intersection observer * disconnect2 * fix notification.vue * remove a blank line * disconnect intersection observer * disconnect2 * fix * ✌️ * clean up config * typesを戻した * backend/src/web/index.ts * notification-badges * add scripts * change create-notification.ts * Update packages/client/src/components/notification.vue Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * disconnect * oops * Failed to load the script unexpectedly回避 sw.jsとlib.tsを分離してみた * truncate notification * Update packages/client/src/ui/_common_/common.vue Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * clean up * clean up * refactor * キャッシュ対策 * Truncate push notification message * fix * wip * clean up * migration * migration * comment * move soundConfigStore * ✌️ * clean up * クライアントがあったらストリームに接続しているということなので通知しない判定の位置を修正 * components/drive-file-thumbnail.vue * components/drive-select-dialog.vue * components/drive-window.vue * merge * fix * remove reversi setting * Service Workerのビルドにesbuildを使うようにする * return createEmptyNotification() * fix * fix * i18n.ts * update * ✌️ * remove ts-loader * fix * fix * enhance: Service Workerを常に登録するように * pollEnded * pollEnded * URLをsw.jsに戻す * clean up * clean up * update sounds.vue * update * fix type * ✌️ * ;v; --------- Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
106 lines
2.1 KiB
Vue
106 lines
2.1 KiB
Vue
<template>
|
|
<div class="mk-media-banner">
|
|
<div v-if="media.isSensitive && hide" class="sensitive" @click="hide = false">
|
|
<span class="icon"><i class="ti ti-alert-triangle"></i></span>
|
|
<b>{{ i18n.ts.sensitive }}</b>
|
|
<span>{{ i18n.ts.clickToShow }}</span>
|
|
</div>
|
|
<div v-else-if="media.type.startsWith('audio') && media.type !== 'audio/midi'" class="audio">
|
|
<VuePlyr :options="{ volume: 0.5 }">
|
|
<audio controls preload="metadata">
|
|
<source
|
|
:src="media.url"
|
|
:type="media.type"
|
|
/>
|
|
</audio>
|
|
</VuePlyr>
|
|
</div>
|
|
<a
|
|
v-else class="download"
|
|
:href="media.url"
|
|
:title="media.name"
|
|
:download="media.name"
|
|
>
|
|
<span class="icon"><i class="ti ti-download"></i></span>
|
|
<b>{{ media.name }}</b>
|
|
</a>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onMounted } from 'vue';
|
|
import * as misskey from 'misskey-js';
|
|
import VuePlyr from 'vue-plyr';
|
|
import { soundConfigStore } from '@/scripts/sound';
|
|
import 'vue-plyr/dist/vue-plyr.css';
|
|
import { i18n } from '@/i18n';
|
|
|
|
const props = withDefaults(defineProps<{
|
|
media: misskey.entities.DriveFile;
|
|
}>(), {
|
|
});
|
|
|
|
const audioEl = $shallowRef<HTMLAudioElement | null>();
|
|
let hide = $ref(true);
|
|
|
|
function volumechange() {
|
|
if (audioEl) soundConfigStore.set('mediaVolume', audioEl.volume);
|
|
}
|
|
|
|
onMounted(() => {
|
|
if (audioEl) audioEl.volume = soundConfigStore.state.mediaVolume;
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.mk-media-banner {
|
|
width: 100%;
|
|
border-radius: 4px;
|
|
margin-top: 4px;
|
|
// overflow: clip;
|
|
|
|
--plyr-color-main: var(--accent);
|
|
--plyr-audio-controls-background: var(--bg);
|
|
--plyr-audio-controls-color: var(--accentLighten);
|
|
|
|
> .download,
|
|
> .sensitive {
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 12px;
|
|
padding: 8px 12px;
|
|
white-space: nowrap;
|
|
|
|
> * {
|
|
display: block;
|
|
}
|
|
|
|
> b {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
> *:not(:last-child) {
|
|
margin-right: .2em;
|
|
}
|
|
|
|
> .icon {
|
|
font-size: 1.6em;
|
|
}
|
|
}
|
|
|
|
> .download {
|
|
background: var(--noteAttachedFile);
|
|
}
|
|
|
|
> .sensitive {
|
|
background: #111;
|
|
color: #fff;
|
|
}
|
|
|
|
> .audio {
|
|
border-radius: 8px;
|
|
// overflow: clip;
|
|
}
|
|
}
|
|
</style>
|