2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2023-01-05 04:59:48 +00:00
|
|
|
<template>
|
2023-01-06 01:34:49 +00:00
|
|
|
<MkA :to="`/play/${flash.id}`" class="vhpxefrk _panel" tabindex="-1">
|
2023-01-05 04:59:48 +00:00
|
|
|
<article>
|
|
|
|
<header>
|
|
|
|
<h1 :title="flash.title">{{ flash.title }}</h1>
|
|
|
|
</header>
|
2024-01-14 06:31:11 +00:00
|
|
|
<p v-if="flash.summary" :title="flash.summary">
|
|
|
|
<Mfm class="summaryMfm" :text="flash.summary" :plain="true" :nowrap="true"/>
|
|
|
|
</p>
|
2023-01-05 04:59:48 +00:00
|
|
|
<footer>
|
|
|
|
<img class="icon" :src="flash.user.avatarUrl"/>
|
|
|
|
<p>{{ userName(flash.user) }}</p>
|
|
|
|
</footer>
|
|
|
|
</article>
|
|
|
|
</MkA>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { userName } from '@/filters/user.js';
|
2023-01-05 04:59:48 +00:00
|
|
|
|
|
|
|
const props = defineProps<{
|
2023-09-04 04:33:38 +00:00
|
|
|
//flash: Misskey.entities.Flash;
|
2023-01-05 04:59:48 +00:00
|
|
|
flash: any;
|
|
|
|
}>();
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.vhpxefrk {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
|
|
|
|
> article {
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
> header {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
|
|
> h1 {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1em;
|
|
|
|
color: var(--urlPreviewTitle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> p {
|
|
|
|
margin: 0;
|
|
|
|
color: var(--urlPreviewText);
|
|
|
|
font-size: 0.8em;
|
2024-01-14 06:31:11 +00:00
|
|
|
overflow: clip;
|
|
|
|
|
|
|
|
> .summaryMfm {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2023-01-05 04:59:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> footer {
|
|
|
|
margin-top: 8px;
|
|
|
|
height: 16px;
|
|
|
|
|
|
|
|
> img {
|
|
|
|
display: inline-block;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
margin-right: 4px;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
> p {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0;
|
|
|
|
color: var(--urlPreviewInfo);
|
|
|
|
font-size: 0.8em;
|
|
|
|
line-height: 16px;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 700px) {
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 550px) {
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
|
|
> article {
|
|
|
|
padding: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
font-size: 10px;
|
2023-07-07 22:08:16 +00:00
|
|
|
|
2023-01-05 04:59:48 +00:00
|
|
|
> article {
|
|
|
|
padding: 8px;
|
|
|
|
|
|
|
|
> header {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> footer {
|
|
|
|
margin-top: 4px;
|
|
|
|
|
|
|
|
> img {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|