2022-06-20 10:38:49 +02:00
|
|
|
<template><MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<MkSpacer :content-max="700">
|
2022-01-25 15:18:21 +01:00
|
|
|
<transition :name="$store.state.animation ? 'fade' : ''" mode="out-in">
|
2021-11-19 11:36:12 +01:00
|
|
|
<div v-if="page" :key="page.id" v-size="{ max: [450] }" class="xcukqgmh">
|
2021-10-23 21:03:07 +02:00
|
|
|
<div class="_block main">
|
|
|
|
<!--
|
|
|
|
<div class="header">
|
|
|
|
<h1>{{ page.title }}</h1>
|
|
|
|
</div>
|
|
|
|
-->
|
|
|
|
<div class="banner">
|
2021-11-19 11:36:12 +01:00
|
|
|
<img v-if="page.eyeCatchingImageId" :src="page.eyeCatchingImage.url"/>
|
2021-10-23 21:03:07 +02:00
|
|
|
</div>
|
|
|
|
<div class="content">
|
|
|
|
<XPage :page="page"/>
|
|
|
|
</div>
|
|
|
|
<div class="actions">
|
|
|
|
<div class="like">
|
2021-11-19 11:36:12 +01:00
|
|
|
<MkButton v-if="page.isLiked" v-tooltip="$ts._pages.unlike" class="button" primary @click="unlike()"><i class="fas fa-heart"></i><span v-if="page.likedCount > 0" class="count">{{ page.likedCount }}</span></MkButton>
|
|
|
|
<MkButton v-else v-tooltip="$ts._pages.like" class="button" @click="like()"><i class="far fa-heart"></i><span v-if="page.likedCount > 0" class="count">{{ page.likedCount }}</span></MkButton>
|
2021-10-14 11:51:15 +02:00
|
|
|
</div>
|
2021-10-23 21:03:07 +02:00
|
|
|
<div class="other">
|
2021-11-19 11:36:12 +01:00
|
|
|
<button v-tooltip="$ts.shareWithNote" v-click-anime class="_button" @click="shareWithNote"><i class="fas fa-retweet fa-fw"></i></button>
|
|
|
|
<button v-tooltip="$ts.share" v-click-anime class="_button" @click="share"><i class="fas fa-share-alt fa-fw"></i></button>
|
2021-10-14 11:51:15 +02:00
|
|
|
</div>
|
2021-10-23 21:03:07 +02:00
|
|
|
</div>
|
|
|
|
<div class="user">
|
|
|
|
<MkAvatar :user="page.user" class="avatar"/>
|
|
|
|
<div class="name">
|
|
|
|
<MkUserName :user="page.user" style="display: block;"/>
|
|
|
|
<MkAcct :user="page.user"/>
|
2021-04-25 08:14:26 +02:00
|
|
|
</div>
|
2021-10-23 21:03:07 +02:00
|
|
|
<MkFollowButton v-if="!$i || $i.id != page.user.id" :user="page.user" :inline="true" :transparent="false" :full="true" large class="koudoku"/>
|
2021-04-25 08:14:26 +02:00
|
|
|
</div>
|
2021-10-23 21:03:07 +02:00
|
|
|
<div class="links">
|
|
|
|
<MkA :to="`/@${username}/pages/${pageName}/view-source`" class="link">{{ $ts._pages.viewSource }}</MkA>
|
|
|
|
<template v-if="$i && $i.id === page.userId">
|
|
|
|
<MkA :to="`/pages/edit/${page.id}`" class="link">{{ $ts._pages.editThisPage }}</MkA>
|
2021-11-19 11:36:12 +01:00
|
|
|
<button v-if="$i.pinnedPageId === page.id" class="link _textButton" @click="pin(false)">{{ $ts.unpin }}</button>
|
|
|
|
<button v-else class="link _textButton" @click="pin(true)">{{ $ts.pin }}</button>
|
2021-10-23 21:03:07 +02:00
|
|
|
</template>
|
2021-04-25 08:14:26 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-10-23 21:03:07 +02:00
|
|
|
<div class="footer">
|
|
|
|
<div><i class="far fa-clock"></i> {{ $ts.createdAt }}: <MkTime :time="page.createdAt" mode="detail"/></div>
|
|
|
|
<div v-if="page.createdAt != page.updatedAt"><i class="far fa-clock"></i> {{ $ts.updatedAt }}: <MkTime :time="page.updatedAt" mode="detail"/></div>
|
|
|
|
</div>
|
|
|
|
<MkAd :prefer="['horizontal', 'horizontal-big']"/>
|
|
|
|
<MkContainer :max-height="300" :foldable="true" class="other">
|
|
|
|
<template #header><i class="fas fa-clock"></i> {{ $ts.recentPosts }}</template>
|
2021-12-02 12:09:12 +01:00
|
|
|
<MkPagination v-slot="{items}" :pagination="otherPostsPagination">
|
2021-11-19 11:36:12 +01:00
|
|
|
<MkPagePreview v-for="page in items" :key="page.id" :page="page" class="_gap"/>
|
2021-10-23 21:03:07 +02:00
|
|
|
</MkPagination>
|
|
|
|
</MkContainer>
|
|
|
|
</div>
|
|
|
|
<MkError v-else-if="error" @retry="fetch()"/>
|
|
|
|
<MkLoading v-else/>
|
|
|
|
</transition>
|
2022-06-20 10:38:49 +02:00
|
|
|
</MkSpacer></MkStickyContainer>
|
2019-07-06 23:56:13 +02:00
|
|
|
</template>
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed, watch } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import XPage from '@/components/page/page.vue';
|
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import { url } from '@/config';
|
|
|
|
import MkFollowButton from '@/components/follow-button.vue';
|
|
|
|
import MkContainer from '@/components/ui/container.vue';
|
|
|
|
import MkPagination from '@/components/ui/pagination.vue';
|
|
|
|
import MkPagePreview from '@/components/page-preview.vue';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
pageName: string;
|
|
|
|
username: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
let page = $ref(null);
|
|
|
|
let error = $ref(null);
|
|
|
|
const otherPostsPagination = {
|
|
|
|
endpoint: 'users/pages' as const,
|
|
|
|
limit: 6,
|
|
|
|
params: computed(() => ({
|
|
|
|
userId: page.user.id,
|
|
|
|
})),
|
|
|
|
};
|
|
|
|
const path = $computed(() => props.username + '/' + props.pageName);
|
|
|
|
|
|
|
|
function fetchPage() {
|
|
|
|
page = null;
|
|
|
|
os.api('pages/show', {
|
|
|
|
name: props.pageName,
|
|
|
|
username: props.username,
|
|
|
|
}).then(_page => {
|
|
|
|
page = _page;
|
|
|
|
}).catch(err => {
|
|
|
|
error = err;
|
|
|
|
});
|
|
|
|
}
|
2019-07-06 23:56:13 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
function share() {
|
|
|
|
navigator.share({
|
|
|
|
title: page.title ?? page.name,
|
|
|
|
text: page.summary,
|
|
|
|
url: `${url}/@${page.user.username}/pages/${page.name}`,
|
|
|
|
});
|
|
|
|
}
|
2019-07-06 23:56:13 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
function shareWithNote() {
|
|
|
|
os.post({
|
|
|
|
initialText: `${page.title || page.name} ${url}/@${page.user.username}/pages/${page.name}`,
|
|
|
|
});
|
|
|
|
}
|
2019-07-06 23:56:13 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
function like() {
|
|
|
|
os.apiWithDialog('pages/like', {
|
|
|
|
pageId: page.id,
|
|
|
|
}).then(() => {
|
|
|
|
page.isLiked = true;
|
|
|
|
page.likedCount++;
|
|
|
|
});
|
|
|
|
}
|
2019-07-06 23:56:13 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
async function unlike() {
|
|
|
|
const confirm = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.ts.unlikeConfirm,
|
|
|
|
});
|
|
|
|
if (confirm.canceled) return;
|
|
|
|
os.apiWithDialog('pages/unlike', {
|
|
|
|
pageId: page.id,
|
|
|
|
}).then(() => {
|
|
|
|
page.isLiked = false;
|
|
|
|
page.likedCount--;
|
|
|
|
});
|
|
|
|
}
|
2019-07-06 23:56:13 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
function pin(pin) {
|
|
|
|
os.apiWithDialog('i/update', {
|
|
|
|
pinnedPageId: pin ? page.id : null,
|
|
|
|
});
|
|
|
|
}
|
2019-07-06 23:56:13 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
watch(() => path, fetchPage, { immediate: true });
|
2019-07-06 23:56:13 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => page ? {
|
|
|
|
title: computed(() => page.title || page.name),
|
|
|
|
avatar: page.user,
|
|
|
|
path: `/@${page.user.username}/pages/${page.name}`,
|
|
|
|
share: {
|
|
|
|
title: page.title || page.name,
|
|
|
|
text: page.summary,
|
|
|
|
},
|
|
|
|
} : null));
|
2019-07-06 23:56:13 +02:00
|
|
|
</script>
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2021-04-25 08:14:26 +02:00
|
|
|
.fade-enter-active,
|
|
|
|
.fade-leave-active {
|
|
|
|
transition: opacity 0.125s ease;
|
|
|
|
}
|
|
|
|
.fade-enter-from,
|
|
|
|
.fade-leave-to {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
.xcukqgmh {
|
2020-10-17 13:12:00 +02:00
|
|
|
> .main {
|
2021-04-25 08:14:26 +02:00
|
|
|
|
2021-04-10 16:52:45 +02:00
|
|
|
> .header {
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
> h1 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .banner {
|
|
|
|
> img {
|
2021-04-25 08:14:26 +02:00
|
|
|
// TODO: 良い感じのアスペクト比で表示
|
2021-04-10 16:52:45 +02:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
2021-04-25 08:14:26 +02:00
|
|
|
height: 150px;
|
2021-04-10 16:52:45 +02:00
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .content {
|
2021-04-25 08:14:26 +02:00
|
|
|
margin-top: 16px;
|
|
|
|
padding: 16px 0 0 0;
|
2021-04-10 16:52:45 +02:00
|
|
|
}
|
|
|
|
|
2021-04-25 08:14:26 +02:00
|
|
|
> .actions {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 16px;
|
|
|
|
padding: 16px 0 0 0;
|
2021-04-10 16:52:45 +02:00
|
|
|
border-top: solid 0.5px var(--divider);
|
|
|
|
|
2021-04-25 08:14:26 +02:00
|
|
|
> .like {
|
|
|
|
> .button {
|
|
|
|
--accent: rgb(241 97 132);
|
|
|
|
--X8: rgb(241 92 128);
|
|
|
|
--buttonBg: rgb(216 71 106 / 5%);
|
|
|
|
--buttonHoverBg: rgb(216 71 106 / 10%);
|
|
|
|
color: #ff002f;
|
2021-04-10 16:52:45 +02:00
|
|
|
|
2021-04-25 08:14:26 +02:00
|
|
|
::v-deep(.count) {
|
|
|
|
margin-left: 0.5em;
|
|
|
|
}
|
2020-10-17 13:12:00 +02:00
|
|
|
}
|
2020-04-17 13:36:51 +02:00
|
|
|
}
|
2021-04-25 08:14:26 +02:00
|
|
|
|
|
|
|
> .other {
|
|
|
|
margin-left: auto;
|
|
|
|
|
|
|
|
> button {
|
|
|
|
padding: 8px;
|
|
|
|
margin: 0 8px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: var(--fgHighlighted);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .user {
|
|
|
|
margin-top: 16px;
|
|
|
|
padding: 16px 0 0 0;
|
|
|
|
border-top: solid 0.5px var(--divider);
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
width: 52px;
|
|
|
|
height: 52px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .name {
|
|
|
|
margin: 0 0 0 12px;
|
|
|
|
font-size: 90%;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .koudoku {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
2020-04-17 13:36:51 +02:00
|
|
|
}
|
|
|
|
|
2021-04-10 16:52:45 +02:00
|
|
|
> .links {
|
2021-04-25 08:14:26 +02:00
|
|
|
margin-top: 16px;
|
|
|
|
padding: 24px 0 0 0;
|
2021-04-10 16:52:45 +02:00
|
|
|
border-top: solid 0.5px var(--divider);
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
> .link {
|
|
|
|
margin-right: 0.75em;
|
2020-04-17 13:36:51 +02:00
|
|
|
}
|
2020-04-13 17:13:49 +02:00
|
|
|
}
|
2020-04-05 10:55:51 +02:00
|
|
|
}
|
2021-04-10 16:52:45 +02:00
|
|
|
|
|
|
|
> .footer {
|
2021-12-03 04:41:30 +01:00
|
|
|
margin: var(--margin) 0 var(--margin) 0;
|
2021-04-10 16:52:45 +02:00
|
|
|
font-size: 85%;
|
|
|
|
opacity: 0.75;
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
</style>
|