2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2023-01-06 00:41:14 +00:00
|
|
|
<MkA :to="`/@${page.user.username}/pages/${page.name}`" class="vhpxefrj" tabindex="-1">
|
2023-09-10 09:40:20 +00:00
|
|
|
<div v-if="page.eyeCatchingImage" class="thumbnail">
|
|
|
|
<MediaImage
|
|
|
|
:image="page.eyeCatchingImage"
|
|
|
|
:disableImageLink="true"
|
|
|
|
:controls="false"
|
|
|
|
:cover="true"
|
|
|
|
:class="$style.eyeCatchingImageRoot"
|
|
|
|
/>
|
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
<article>
|
|
|
|
<header>
|
|
|
|
<h1 :title="page.title">{{ page.title }}</h1>
|
|
|
|
</header>
|
|
|
|
<p v-if="page.summary" :title="page.summary">{{ page.summary.length > 85 ? page.summary.slice(0, 85) + '…' : page.summary }}</p>
|
|
|
|
<footer>
|
|
|
|
<img class="icon" :src="page.user.avatarUrl"/>
|
2020-10-17 11:12:00 +00:00
|
|
|
<p>{{ userName(page.user) }}</p>
|
2020-01-29 19:37:25 +00:00
|
|
|
</footer>
|
|
|
|
</article>
|
2020-10-24 16:21:41 +00:00
|
|
|
</MkA>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2023-01-05 04:59:48 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2023-09-04 04:33:38 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { userName } from '@/filters/user.js';
|
2023-09-10 09:40:20 +00:00
|
|
|
import MediaImage from '@/components/MkMediaImage.vue';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-05 04:59:48 +00:00
|
|
|
const props = defineProps<{
|
2023-09-04 04:33:38 +00:00
|
|
|
page: Misskey.entities.Page;
|
2023-01-05 04:59:48 +00:00
|
|
|
}>();
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
2023-09-10 09:40:20 +00:00
|
|
|
<style module>
|
|
|
|
.eyeCatchingImageRoot {
|
|
|
|
width: 100%;
|
|
|
|
height: 200px;
|
|
|
|
border-radius: var(--radius) var(--radius) 0 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
<style lang="scss" scoped>
|
2020-01-29 19:37:25 +00:00
|
|
|
.vhpxefrj {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
2020-11-15 04:42:04 +00:00
|
|
|
color: var(--accent);
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .thumbnail {
|
|
|
|
& + article {
|
2023-09-10 09:40:20 +00:00
|
|
|
border-radius: 0 0 var(--radius) var(--radius);
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> article {
|
2023-09-10 09:40:20 +00:00
|
|
|
background-color: var(--panel);
|
2020-01-29 19:37:25 +00:00
|
|
|
padding: 16px;
|
2023-09-10 09:40:20 +00:00
|
|
|
border-radius: var(--radius);
|
2020-01-29 19:37:25 +00:00
|
|
|
|
|
|
|
> header {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
|
|
> h1 {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1em;
|
|
|
|
color: var(--urlPreviewTitle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> p {
|
|
|
|
margin: 0;
|
|
|
|
color: var(--urlPreviewText);
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
> 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) {
|
|
|
|
> .thumbnail {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 100px;
|
|
|
|
|
|
|
|
& + article {
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 550px) {
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
|
|
> .thumbnail {
|
|
|
|
height: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> article {
|
|
|
|
padding: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
font-size: 10px;
|
|
|
|
|
|
|
|
> .thumbnail {
|
|
|
|
height: 70px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> article {
|
|
|
|
padding: 8px;
|
|
|
|
|
|
|
|
> header {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> footer {
|
|
|
|
margin-top: 4px;
|
|
|
|
|
|
|
|
> img {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
</style>
|