2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2023-01-14 02:59:08 +00:00
|
|
|
<div v-if="playerEnabled" :class="$style.player" :style="`padding: ${(player.height || 0) / (player.width || 1) * 100}% 0 0`">
|
|
|
|
<button :class="$style.disablePlayer" :title="i18n.ts.disablePlayer" @click="playerEnabled = false"><i class="ti ti-x"></i></button>
|
2023-02-04 05:20:07 +00:00
|
|
|
<iframe v-if="player.url.startsWith('http://') || player.url.startsWith('https://')" :class="$style.playerIframe" :src="player.url + (player.url.match(/\?/) ? '&autoplay=1&auto_play=1' : '?autoplay=1&auto_play=1')" :width="player.width || '100%'" :heigth="player.height || 250" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen/>
|
|
|
|
<span v-else>invalid url</span>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
2023-01-14 02:59:08 +00:00
|
|
|
<div v-else-if="tweetId && tweetExpanded" ref="twitter" :class="$style.twitter">
|
2022-01-15 23:24:53 +00:00
|
|
|
<iframe ref="tweet" scrolling="no" frameborder="no" :style="{ position: 'relative', width: '100%', height: `${tweetHeight}px` }" :src="`https://platform.twitter.com/embed/index.html?embedId=${embedId}&hideCard=false&hideThread=false&lang=en&theme=${$store.state.darkMode ? 'dark' : 'light'}&id=${tweetId}`"></iframe>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
2023-01-14 02:59:08 +00:00
|
|
|
<div v-else :class="$style.urlPreview">
|
|
|
|
<component :is="self ? 'MkA' : 'a'" :class="[$style.link, { [$style.compact]: compact }]" :[attr]="self ? url.substr(local.length) : url" rel="nofollow noopener" :target="target" :title="url">
|
|
|
|
<div v-if="thumbnail" :class="$style.thumbnail" :style="`background-image: url('${thumbnail}')`">
|
2022-12-30 05:24:00 +00:00
|
|
|
</div>
|
2023-01-14 02:59:08 +00:00
|
|
|
<article :class="$style.body">
|
|
|
|
<header :class="$style.header">
|
|
|
|
<h1 v-if="unknownUrl" :class="$style.title">{{ url }}</h1>
|
|
|
|
<h1 v-else-if="fetching" :class="$style.title"><MkEllipsis/></h1>
|
|
|
|
<h1 v-else :class="$style.title" :title="title">{{ title }}</h1>
|
2022-12-30 05:24:00 +00:00
|
|
|
</header>
|
2023-01-14 02:59:08 +00:00
|
|
|
<p v-if="unknownUrl" :class="$style.text">{{ i18n.ts.cannotLoad }}</p>
|
|
|
|
<p v-else-if="fetching" :class="$style.text"><MkEllipsis/></p>
|
|
|
|
<p v-else-if="description" :class="$style.text" :title="description">{{ description.length > 85 ? description.slice(0, 85) + '…' : description }}</p>
|
|
|
|
<footer :class="$style.footer">
|
|
|
|
<img v-if="icon" :class="$style.siteIcon" :src="icon"/>
|
|
|
|
<p v-if="unknownUrl" :class="$style.siteName">?</p>
|
|
|
|
<p v-else-if="fetching" :class="$style.siteName"><MkEllipsis/></p>
|
|
|
|
<p v-else :class="$style.siteName" :title="sitename">{{ sitename }}</p>
|
2022-12-30 05:24:00 +00:00
|
|
|
</footer>
|
|
|
|
</article>
|
|
|
|
</component>
|
2023-01-14 02:59:08 +00:00
|
|
|
<div v-if="tweetId" :class="$style.action">
|
2022-12-28 09:22:46 +00:00
|
|
|
<MkButton :small="true" inline @click="tweetExpanded = true">
|
2022-12-20 06:15:34 +00:00
|
|
|
<i class="ti ti-brand-twitter"></i> {{ i18n.ts.expandTweet }}
|
2022-12-28 09:22:46 +00:00
|
|
|
</MkButton>
|
|
|
|
</div>
|
2023-01-14 02:59:08 +00:00
|
|
|
<div v-if="!playerEnabled && player.url" :class="$style.action">
|
2022-12-28 09:22:46 +00:00
|
|
|
<MkButton :small="true" inline @click="playerEnabled = true">
|
|
|
|
<i class="ti ti-player-play"></i> {{ i18n.ts.enablePlayer }}
|
|
|
|
</MkButton>
|
|
|
|
<MkButton v-if="!isMobile" :small="true" inline @click="openPlayer()">
|
|
|
|
<i class="ti ti-picture-in-picture"></i> {{ i18n.ts.openInWindow }}
|
|
|
|
</MkButton>
|
2020-07-10 21:25:20 +00:00
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-15 23:24:53 +00:00
|
|
|
<script lang="ts" setup>
|
2023-02-16 14:09:41 +00:00
|
|
|
import { defineAsyncComponent, onUnmounted } from 'vue';
|
2023-01-01 08:11:33 +00:00
|
|
|
import { url as local } from '@/config';
|
2022-07-20 13:24:26 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2022-09-21 23:20:31 +00:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { deviceKind } from '@/scripts/device-kind';
|
2022-12-28 09:22:46 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-01-01 08:11:33 +00:00
|
|
|
import { versatileLang } from '@/scripts/intl-const';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-15 23:24:53 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
url: string;
|
|
|
|
detail?: boolean;
|
|
|
|
compact?: boolean;
|
|
|
|
}>(), {
|
|
|
|
detail: false,
|
|
|
|
compact: false,
|
|
|
|
});
|
|
|
|
|
2022-09-21 23:20:31 +00:00
|
|
|
const MOBILE_THRESHOLD = 500;
|
|
|
|
const isMobile = $ref(deviceKind === 'smartphone' || window.innerWidth <= MOBILE_THRESHOLD);
|
|
|
|
|
2022-01-15 23:24:53 +00:00
|
|
|
const self = props.url.startsWith(local);
|
|
|
|
const attr = self ? 'to' : 'href';
|
|
|
|
const target = self ? null : '_blank';
|
|
|
|
let fetching = $ref(true);
|
|
|
|
let title = $ref<string | null>(null);
|
|
|
|
let description = $ref<string | null>(null);
|
|
|
|
let thumbnail = $ref<string | null>(null);
|
|
|
|
let icon = $ref<string | null>(null);
|
|
|
|
let sitename = $ref<string | null>(null);
|
|
|
|
let player = $ref({
|
|
|
|
url: null,
|
|
|
|
width: null,
|
2022-07-05 14:13:28 +00:00
|
|
|
height: null,
|
2022-01-15 23:24:53 +00:00
|
|
|
});
|
|
|
|
let playerEnabled = $ref(false);
|
|
|
|
let tweetId = $ref<string | null>(null);
|
|
|
|
let tweetExpanded = $ref(props.detail);
|
2022-12-03 10:42:05 +00:00
|
|
|
const embedId = `embed${Math.random().toString().replace(/\D/, '')}`;
|
2022-01-15 23:24:53 +00:00
|
|
|
let tweetHeight = $ref(150);
|
2022-12-30 05:24:00 +00:00
|
|
|
let unknownUrl = $ref(false);
|
2022-01-15 23:24:53 +00:00
|
|
|
|
|
|
|
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-01-15 23:24:53 +00:00
|
|
|
|
2022-08-24 12:02:06 +00:00
|
|
|
if (requestUrl.hostname === 'twitter.com' || requestUrl.hostname === 'mobile.twitter.com') {
|
2022-01-15 23:24:53 +00:00
|
|
|
const m = requestUrl.pathname.match(/^\/.+\/status(?:es)?\/(\d+)/);
|
|
|
|
if (m) tweetId = m[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (requestUrl.hostname === 'music.youtube.com' && requestUrl.pathname.match('^/(?:watch|channel)')) {
|
|
|
|
requestUrl.hostname = 'www.youtube.com';
|
|
|
|
}
|
|
|
|
|
|
|
|
requestUrl.hash = '';
|
|
|
|
|
2023-01-01 08:11:33 +00:00
|
|
|
window.fetch(`/url?url=${encodeURIComponent(requestUrl.href)}&lang=${versatileLang}`).then(res => {
|
2022-01-15 23:24:53 +00:00
|
|
|
res.json().then(info => {
|
2022-12-30 05:24:00 +00:00
|
|
|
if (info.url == null) {
|
|
|
|
unknownUrl = true;
|
|
|
|
return;
|
|
|
|
}
|
2022-01-15 23:24:53 +00:00
|
|
|
title = info.title;
|
|
|
|
description = info.description;
|
|
|
|
thumbnail = info.thumbnail;
|
|
|
|
icon = info.icon;
|
|
|
|
sitename = info.sitename;
|
|
|
|
fetching = false;
|
|
|
|
player = info.player;
|
2022-06-10 05:36:55 +00:00
|
|
|
});
|
2022-01-15 23:24:53 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
function adjustTweetHeight(message: any) {
|
|
|
|
if (message.origin !== 'https://platform.twitter.com') return;
|
|
|
|
const embed = message.data?.['twttr.embed'];
|
|
|
|
if (embed?.method !== 'twttr.private.resize') return;
|
|
|
|
if (embed?.id !== embedId) return;
|
|
|
|
const height = embed?.params[0]?.height;
|
|
|
|
if (height) tweetHeight = height;
|
|
|
|
}
|
|
|
|
|
2022-09-21 23:20:31 +00:00
|
|
|
const openPlayer = (): void => {
|
|
|
|
os.popup(defineAsyncComponent(() => import('@/components/MkYoutubePlayer.vue')), {
|
|
|
|
url: requestUrl.href,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2022-01-15 23:24:53 +00:00
|
|
|
(window as any).addEventListener('message', adjustTweetHeight);
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-15 23:24:53 +00:00
|
|
|
onUnmounted(() => {
|
|
|
|
(window as any).removeEventListener('message', adjustTweetHeight);
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
<style lang="scss" module>
|
2022-12-27 09:29:39 +00:00
|
|
|
.player {
|
2020-01-29 19:37:25 +00:00
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
2023-01-14 02:59:08 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
.disablePlayer {
|
|
|
|
position: absolute;
|
|
|
|
top: -1.5em;
|
|
|
|
right: 0;
|
|
|
|
font-size: 1em;
|
|
|
|
width: 1.5em;
|
|
|
|
height: 1.5em;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
color: var(--fg);
|
|
|
|
background: rgba(128, 128, 128, 0.2);
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
opacity: 0.9;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2023-01-14 02:59:08 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
.playerIframe {
|
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
.twitter {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.urlPreview {
|
|
|
|
}
|
|
|
|
|
|
|
|
.link {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
box-shadow: 0 0 0 1px var(--divider);
|
|
|
|
border-radius: 8px;
|
|
|
|
overflow: clip;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
border-color: rgba(0, 0, 0, 0.2);
|
|
|
|
|
|
|
|
> .body > .header > .title {
|
|
|
|
text-decoration: underline;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2023-01-14 02:59:08 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
&.compact {
|
|
|
|
> .body {
|
|
|
|
> .header .title, .text, .footer {
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
2023-01-14 02:59:08 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
.thumbnail {
|
|
|
|
position: absolute;
|
|
|
|
width: 100px;
|
|
|
|
height: 100%;
|
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
& + .body {
|
|
|
|
left: 100px;
|
|
|
|
width: calc(100% - 100px);
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
.body {
|
|
|
|
position: relative;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding: 16px;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
.header {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
.title {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
.text {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
.footer {
|
|
|
|
margin-top: 8px;
|
|
|
|
height: 16px;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
.siteIcon {
|
|
|
|
display: inline-block;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin-right: 4px;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
.siteName {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0;
|
|
|
|
color: var(--urlPreviewInfo);
|
|
|
|
font-size: 0.8em;
|
|
|
|
line-height: 16px;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2022-12-28 09:22:46 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
.action {
|
|
|
|
display: flex;
|
|
|
|
gap: 6px;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-top: 6px;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2022-12-25 23:40:13 +00:00
|
|
|
|
|
|
|
@container (max-width: 400px) {
|
2023-01-14 02:59:08 +00:00
|
|
|
.link {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
2022-12-25 23:40:13 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
.thumbnail {
|
|
|
|
height: 80px;
|
|
|
|
}
|
2022-12-25 23:40:13 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
.body {
|
|
|
|
padding: 12px;
|
2022-12-25 23:40:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@container (max-width: 350px) {
|
2023-01-14 02:59:08 +00:00
|
|
|
.link {
|
|
|
|
font-size: 10px;
|
2022-12-25 23:40:13 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
&.compact {
|
2022-12-25 23:40:13 +00:00
|
|
|
> .thumbnail {
|
2023-01-14 02:59:08 +00:00
|
|
|
position: absolute;
|
|
|
|
width: 56px;
|
|
|
|
height: 100%;
|
2022-12-25 23:40:13 +00:00
|
|
|
}
|
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
> .body {
|
|
|
|
left: 56px;
|
|
|
|
width: calc(100% - 56px);
|
|
|
|
padding: 4px;
|
2022-12-25 23:40:13 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
> .header {
|
|
|
|
margin-bottom: 2px;
|
2022-12-25 23:40:13 +00:00
|
|
|
}
|
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
> .footer {
|
|
|
|
margin-top: 2px;
|
2022-12-25 23:40:13 +00:00
|
|
|
}
|
|
|
|
}
|
2023-01-14 02:59:08 +00:00
|
|
|
}
|
|
|
|
}
|
2022-12-25 23:40:13 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
.thumbnail {
|
|
|
|
height: 70px;
|
|
|
|
}
|
2022-12-25 23:40:13 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
.body {
|
|
|
|
padding: 8px;
|
|
|
|
}
|
2022-12-25 23:40:13 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
.header {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
2022-12-25 23:40:13 +00:00
|
|
|
|
2023-01-14 02:59:08 +00:00
|
|
|
.footer {
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.siteIcon {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
2022-12-25 23:40:13 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</style>
|