2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2022-09-21 23:20:31 +00:00
|
|
|
<template>
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkWindow :initialWidth="640" :initialHeight="402" :canResize="true" :closeButton="true">
|
2022-09-21 23:20:31 +00:00
|
|
|
<template #header>
|
2023-09-30 22:46:42 +00:00
|
|
|
<i class="icon ph-youtube-logo ph-bold ph-lg" style="margin-right: 0.5em;"></i>
|
2022-12-20 06:11:20 +00:00
|
|
|
<span>{{ title ?? 'YouTube' }}</span>
|
2022-09-21 23:20:31 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<div class="poamfof">
|
2023-04-01 04:42:40 +00:00
|
|
|
<Transition :name="defaultStore.state.animation ? 'fade' : ''" mode="out-in">
|
2023-02-04 05:20:07 +00:00
|
|
|
<div v-if="player.url && (player.url.startsWith('http://') || player.url.startsWith('https://'))" class="player">
|
2022-09-21 23:20:31 +00:00
|
|
|
<iframe v-if="!fetching" :src="player.url + (player.url.match(/\?/) ? '&autoplay=1&auto_play=1' : '?autoplay=1&auto_play=1')" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen/>
|
|
|
|
</div>
|
2023-02-04 05:20:07 +00:00
|
|
|
<span v-else>invalid url</span>
|
2022-12-30 04:37:14 +00:00
|
|
|
</Transition>
|
2022-09-21 23:20:31 +00:00
|
|
|
<MkLoading v-if="fetching"/>
|
|
|
|
<MkError v-else-if="!player.url" @retry="ytFetch()"/>
|
|
|
|
</div>
|
2023-01-06 00:59:17 +00:00
|
|
|
</MkWindow>
|
2022-09-21 23:20:31 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2023-12-07 05:42:09 +00:00
|
|
|
import { ref } from 'vue';
|
2023-01-06 00:59:17 +00:00
|
|
|
import MkWindow from '@/components/MkWindow.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { versatileLang } from '@/scripts/intl-const.js';
|
|
|
|
import { defaultStore } from '@/store.js';
|
2022-09-21 23:20:31 +00:00
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
url: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const requestUrl = new URL(props.url);
|
2023-02-04 00:10:01 +00:00
|
|
|
if (!['http:', 'https:'].includes(requestUrl.protocol)) throw new Error('invalid url');
|
2022-09-21 23:20:31 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const fetching = ref(true);
|
|
|
|
const title = ref<string | null>(null);
|
|
|
|
const player = ref({
|
2022-09-21 23:20:31 +00:00
|
|
|
url: null,
|
|
|
|
width: null,
|
|
|
|
height: null,
|
|
|
|
});
|
|
|
|
|
|
|
|
const ytFetch = (): void => {
|
2023-12-07 05:42:09 +00:00
|
|
|
fetching.value = true;
|
2023-01-01 08:11:33 +00:00
|
|
|
window.fetch(`/url?url=${encodeURIComponent(requestUrl.href)}&lang=${versatileLang}`).then(res => {
|
2022-09-21 23:20:31 +00:00
|
|
|
res.json().then(info => {
|
|
|
|
if (info.url == null) return;
|
2023-12-07 05:42:09 +00:00
|
|
|
title.value = info.title;
|
|
|
|
fetching.value = false;
|
|
|
|
player.value = info.player;
|
2022-09-21 23:20:31 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
ytFetch();
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
.poamfof {
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
.player {
|
|
|
|
position: absolute;
|
|
|
|
inset: 0;
|
|
|
|
|
|
|
|
iframe {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|