2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2023-06-30 09:52:22 +02:00
|
|
|
<transition
|
|
|
|
:name="defaultStore.state.animation ? 'zoom' : ''"
|
|
|
|
mode="out-in"
|
2023-04-08 02:01:42 +02:00
|
|
|
>
|
2023-06-30 09:52:22 +02:00
|
|
|
<!-- v-if="!fetching" for now, I think there's something
|
|
|
|
weird w/ some links stuck loading (?) -->
|
|
|
|
<article
|
|
|
|
v-if="!fetching"
|
|
|
|
class="url-preview"
|
|
|
|
@click.stop
|
2023-06-24 02:47:14 +02:00
|
|
|
>
|
2023-04-08 02:01:42 +02:00
|
|
|
<component
|
|
|
|
:is="self ? 'MkA' : 'a'"
|
2023-06-30 09:52:22 +02:00
|
|
|
:[attr]="self ? url.substring(local.length) : url"
|
2023-04-08 02:01:42 +02:00
|
|
|
rel="nofollow noopener"
|
|
|
|
:target="target"
|
|
|
|
:title="url"
|
2023-06-30 09:52:22 +02:00
|
|
|
:class="{
|
|
|
|
hasButton: tweetId || player.url
|
|
|
|
}"
|
2023-04-08 02:01:42 +02:00
|
|
|
>
|
|
|
|
<div
|
|
|
|
v-if="thumbnail"
|
|
|
|
class="thumbnail"
|
|
|
|
>
|
2023-06-30 09:52:22 +02:00
|
|
|
<img :src="thumbnail" loading="lazy"/>
|
|
|
|
<button
|
|
|
|
v-if="tweetId"
|
|
|
|
class="_button"
|
|
|
|
v-tooltip="tweetExpanded ? i18n.ts.close : i18n.ts.expandTweet"
|
|
|
|
@click.stop.prevent="tweetExpanded = !tweetExpanded"
|
|
|
|
>
|
|
|
|
<i v-if="!tweetExpanded" class="ph-twitter-logo ph-bold ph-lg"></i>
|
|
|
|
<i v-else class="ph-x ph-bold ph-lg"></i>
|
|
|
|
</button>
|
2023-04-08 02:01:42 +02:00
|
|
|
<button
|
2023-06-30 09:52:22 +02:00
|
|
|
v-else-if="player.url"
|
2023-04-08 02:01:42 +02:00
|
|
|
class="_button"
|
2023-06-30 09:52:22 +02:00
|
|
|
v-tooltip="playerEnabled ? i18n.ts.close : i18n.ts.enablePlayer"
|
|
|
|
@click.stop.prevent="playerEnabled = !playerEnabled"
|
2023-04-08 02:01:42 +02:00
|
|
|
>
|
2023-06-30 09:52:22 +02:00
|
|
|
<i v-if="!playerEnabled" class="ph-play ph-bold ph-lg"></i>
|
|
|
|
<i v-else class="ph-x ph-bold ph-lg"></i>
|
2023-04-08 02:01:42 +02:00
|
|
|
</button>
|
|
|
|
</div>
|
2023-06-30 09:52:22 +02:00
|
|
|
<div v-if="fetching">
|
|
|
|
<MkLoading mini />
|
|
|
|
</div>
|
|
|
|
<div v-else>
|
|
|
|
<h1 :title="title || undefined">{{ title || url }}</h1>
|
|
|
|
<p :title="description">
|
|
|
|
<span>
|
|
|
|
<span :title="sitename || undefined">
|
|
|
|
<img v-if="icon" class="icon" :src="icon" />
|
|
|
|
{{ sitename }}:
|
|
|
|
</span>
|
|
|
|
{{ description }}
|
|
|
|
</span>
|
2023-04-08 02:01:42 +02:00
|
|
|
</p>
|
2023-06-30 09:52:22 +02:00
|
|
|
</div>
|
2023-04-08 02:01:42 +02:00
|
|
|
</component>
|
2023-06-30 09:52:22 +02:00
|
|
|
<iframe
|
|
|
|
v-if="playerEnabled"
|
|
|
|
:src="
|
|
|
|
player.url +
|
|
|
|
(player.url.match(/\?/)
|
|
|
|
? '&autoplay=1&auto_play=1'
|
|
|
|
: '?autoplay=1&auto_play=1')
|
|
|
|
"
|
|
|
|
:style="`aspect-ratio: ${((player.width || 1) / (player.height || 1))}`"
|
|
|
|
frameborder="0"
|
|
|
|
allow="autoplay; encrypted-media"
|
|
|
|
allowfullscreen
|
|
|
|
@click.stop
|
|
|
|
/>
|
|
|
|
<iframe
|
|
|
|
v-else-if="tweetId && tweetExpanded"
|
|
|
|
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=${
|
|
|
|
defaultStore.state.darkMode ? 'dark' : 'light'
|
|
|
|
}&id=${tweetId}`"
|
|
|
|
@click.stop
|
|
|
|
></iframe>
|
|
|
|
</article>
|
|
|
|
</transition>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-16 00:24:53 +01:00
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import { onMounted, onUnmounted } from "vue";
|
|
|
|
import { url as local, lang } from "@/config";
|
|
|
|
import { i18n } from "@/i18n";
|
2023-06-24 02:40:01 +02:00
|
|
|
import { defaultStore } from "@/store";
|
2023-04-08 02:01:42 +02:00
|
|
|
|
|
|
|
const props = withDefaults(
|
|
|
|
defineProps<{
|
|
|
|
url: string;
|
|
|
|
detail?: boolean;
|
|
|
|
}>(),
|
|
|
|
{
|
|
|
|
detail: false,
|
|
|
|
}
|
|
|
|
);
|
2022-01-16 00:24:53 +01:00
|
|
|
|
|
|
|
const self = props.url.startsWith(local);
|
2023-04-08 02:01:42 +02:00
|
|
|
const attr = self ? "to" : "href";
|
|
|
|
const target = self ? null : "_blank";
|
2022-01-16 00:24:53 +01:00
|
|
|
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 16:13:28 +02:00
|
|
|
height: null,
|
2022-01-16 00:24:53 +01:00
|
|
|
});
|
|
|
|
let playerEnabled = $ref(false);
|
|
|
|
let tweetId = $ref<string | null>(null);
|
|
|
|
let tweetExpanded = $ref(props.detail);
|
2023-04-08 02:01:42 +02:00
|
|
|
const embedId = `embed${Math.random().toString().replace(/\D/, "")}`;
|
2022-01-16 00:24:53 +01:00
|
|
|
let tweetHeight = $ref(150);
|
|
|
|
|
|
|
|
const requestUrl = new URL(props.url);
|
2023-04-08 02:01:42 +02:00
|
|
|
if (!["http:", "https:"].includes(requestUrl.protocol))
|
|
|
|
throw new Error("invalid url");
|
2022-01-16 00:24:53 +01:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
if (
|
|
|
|
requestUrl.hostname === "twitter.com" ||
|
|
|
|
requestUrl.hostname === "mobile.twitter.com"
|
|
|
|
) {
|
2022-01-16 00:24:53 +01:00
|
|
|
const m = requestUrl.pathname.match(/^\/.+\/status(?:es)?\/(\d+)/);
|
|
|
|
if (m) tweetId = m[1];
|
|
|
|
}
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
if (
|
|
|
|
requestUrl.hostname === "music.youtube.com" &&
|
|
|
|
requestUrl.pathname.match("^/(?:watch|channel)")
|
|
|
|
) {
|
|
|
|
requestUrl.hostname = "www.youtube.com";
|
2022-01-16 00:24:53 +01:00
|
|
|
}
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
const requestLang = (lang || "ja-JP").replace("ja-KS", "ja-JP");
|
2022-01-16 00:24:53 +01:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
requestUrl.hash = "";
|
2022-01-16 00:24:53 +01:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
fetch(
|
|
|
|
`/url?url=${encodeURIComponent(requestUrl.href)}&lang=${requestLang}`
|
|
|
|
).then((res) => {
|
|
|
|
res.json().then((info) => {
|
2022-01-16 00:24:53 +01:00
|
|
|
if (info.url == null) return;
|
|
|
|
title = info.title;
|
|
|
|
description = info.description;
|
|
|
|
thumbnail = info.thumbnail;
|
|
|
|
icon = info.icon;
|
|
|
|
sitename = info.sitename;
|
|
|
|
fetching = false;
|
|
|
|
player = info.player;
|
2022-06-10 07:36:55 +02:00
|
|
|
});
|
2022-01-16 00:24:53 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
function adjustTweetHeight(message: any) {
|
2023-04-08 02:01:42 +02:00
|
|
|
if (message.origin !== "https://platform.twitter.com") return;
|
|
|
|
const embed = message.data?.["twttr.embed"];
|
|
|
|
if (embed?.method !== "twttr.private.resize") return;
|
2022-01-16 00:24:53 +01:00
|
|
|
if (embed?.id !== embedId) return;
|
|
|
|
const height = embed?.params[0]?.height;
|
|
|
|
if (height) tweetHeight = height;
|
|
|
|
}
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
(window as any).addEventListener("message", adjustTweetHeight);
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-16 00:24:53 +01:00
|
|
|
onUnmounted(() => {
|
2023-04-08 02:01:42 +02:00
|
|
|
(window as any).removeEventListener("message", adjustTweetHeight);
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2023-06-30 09:52:22 +02:00
|
|
|
.url-preview {
|
|
|
|
border: 1px solid var(--divider);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
overflow: hidden;
|
|
|
|
> a {
|
|
|
|
display: flex;
|
|
|
|
transition: background .2s;
|
|
|
|
> div:first-child:not(:last-child) {
|
|
|
|
position: relative;
|
|
|
|
width: 90px;
|
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
img {
|
|
|
|
position: absolute;
|
|
|
|
inset: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
transition: opacity .2s;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2023-06-30 09:52:22 +02:00
|
|
|
button {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
i {
|
|
|
|
|
|
|
|
background: var(--bg);
|
|
|
|
padding: 14px;
|
|
|
|
border-radius: var(--radius);
|
|
|
|
transform: scale(.95);
|
|
|
|
opacity: 0;
|
|
|
|
transition: transform .2s, opacity .2s, background .2s;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2023-06-30 09:52:22 +02:00
|
|
|
&:hover, &:focus {
|
|
|
|
i {
|
|
|
|
background: var(--panelHighlight) !important;
|
|
|
|
transform: scale(1.1) !important;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-06-30 09:52:22 +02:00
|
|
|
> div:last-child {
|
|
|
|
padding: 14px 16px;
|
|
|
|
width: 0;
|
|
|
|
flex-grow: 1;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2023-06-30 09:52:22 +02:00
|
|
|
h1, p {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
max-width: 100%;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2023-06-30 09:52:22 +02:00
|
|
|
h1 {
|
|
|
|
font-size: 1em;
|
|
|
|
white-space: nowrap;
|
|
|
|
margin-bottom: .2em;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
margin-bottom: -.5em;
|
|
|
|
> span {
|
|
|
|
display: -webkit-inline-box;
|
|
|
|
font-size: .8em;
|
|
|
|
-webkit-line-clamp: 2;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
overflow: hidden;
|
|
|
|
> span {
|
|
|
|
font-weight: 600;
|
|
|
|
margin-right: .4em;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
2023-06-30 09:52:22 +02:00
|
|
|
}
|
|
|
|
.icon {
|
|
|
|
width: 1.2em;
|
|
|
|
height: 1.2em;
|
|
|
|
vertical-align: middle;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
&:hover, &:focus, &:focus-within {
|
|
|
|
background: var(--panelHighlight);
|
|
|
|
h1 {
|
|
|
|
text-decoration: underline;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2023-06-30 09:52:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
&:hover, &:focus-within {
|
|
|
|
> .hasButton {
|
|
|
|
> div:first-child {
|
|
|
|
img {
|
|
|
|
opacity: .2;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2023-06-30 09:52:22 +02:00
|
|
|
button i {
|
|
|
|
transform: none;
|
|
|
|
opacity: 1;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-06-30 09:52:22 +02:00
|
|
|
}
|
|
|
|
iframe {
|
|
|
|
border-top: 1px solid var(--divider);
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
overflow-y: auto;
|
|
|
|
&:not([src^="https://platform.twitter"]) {
|
|
|
|
max-height: 70vh;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|