2021-04-24 13:38:24 +00:00
|
|
|
<template>
|
2022-06-30 12:38:34 +00:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<MkSpacer :content-max="1000" :margin-min="16" :margin-max="32">
|
|
|
|
<div class="_root">
|
|
|
|
<transition :name="$store.state.animation ? 'fade' : ''" mode="out-in">
|
|
|
|
<div v-if="post" class="rkxwuolj">
|
|
|
|
<div class="files">
|
|
|
|
<div v-for="file in post.files" :key="file.id" class="file">
|
|
|
|
<img :src="file.url"/>
|
|
|
|
</div>
|
2021-04-24 13:38:24 +00:00
|
|
|
</div>
|
2022-06-30 12:38:34 +00:00
|
|
|
<div class="body _block">
|
|
|
|
<div class="title">{{ post.title }}</div>
|
|
|
|
<div class="description"><Mfm :text="post.description"/></div>
|
|
|
|
<div class="info">
|
|
|
|
<i class="fas fa-clock"></i> <MkTime :time="post.createdAt" mode="detail"/>
|
|
|
|
</div>
|
|
|
|
<div class="actions">
|
|
|
|
<div class="like">
|
2022-07-20 13:24:26 +00:00
|
|
|
<MkButton v-if="post.isLiked" v-tooltip="i18n.ts._gallery.unlike" class="button" primary @click="unlike()"><i class="fas fa-heart"></i><span v-if="post.likedCount > 0" class="count">{{ post.likedCount }}</span></MkButton>
|
|
|
|
<MkButton v-else v-tooltip="i18n.ts._gallery.like" class="button" @click="like()"><i class="far fa-heart"></i><span v-if="post.likedCount > 0" class="count">{{ post.likedCount }}</span></MkButton>
|
2022-06-30 12:38:34 +00:00
|
|
|
</div>
|
|
|
|
<div class="other">
|
2022-07-20 13:24:26 +00:00
|
|
|
<button v-if="$i && $i.id === post.user.id" v-tooltip="i18n.ts.edit" v-click-anime class="_button" @click="edit"><i class="fas fa-pencil-alt fa-fw"></i></button>
|
|
|
|
<button v-tooltip="i18n.ts.shareWithNote" v-click-anime class="_button" @click="shareWithNote"><i class="fas fa-retweet fa-fw"></i></button>
|
|
|
|
<button v-tooltip="i18n.ts.share" v-click-anime class="_button" @click="share"><i class="fas fa-share-alt fa-fw"></i></button>
|
2022-06-30 12:38:34 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="user">
|
|
|
|
<MkAvatar :user="post.user" class="avatar"/>
|
|
|
|
<div class="name">
|
|
|
|
<MkUserName :user="post.user" style="display: block;"/>
|
|
|
|
<MkAcct :user="post.user"/>
|
|
|
|
</div>
|
|
|
|
<MkFollowButton v-if="!$i || $i.id != post.user.id" :user="post.user" :inline="true" :transparent="false" :full="true" large class="koudoku"/>
|
|
|
|
</div>
|
2021-04-24 13:38:24 +00:00
|
|
|
</div>
|
2022-06-30 12:38:34 +00:00
|
|
|
<MkAd :prefer="['horizontal', 'horizontal-big']"/>
|
|
|
|
<MkContainer :max-height="300" :foldable="true" class="other">
|
2022-07-20 13:24:26 +00:00
|
|
|
<template #header><i class="fas fa-clock"></i> {{ i18n.ts.recentPosts }}</template>
|
2022-06-30 12:38:34 +00:00
|
|
|
<MkPagination v-slot="{items}" :pagination="otherPostsPagination">
|
|
|
|
<div class="sdrarzaf">
|
|
|
|
<MkGalleryPostPreview v-for="post in items" :key="post.id" :post="post" class="post"/>
|
|
|
|
</div>
|
|
|
|
</MkPagination>
|
|
|
|
</MkContainer>
|
2021-04-24 13:38:24 +00:00
|
|
|
</div>
|
2022-06-30 12:38:34 +00:00
|
|
|
<MkError v-else-if="error" @retry="fetch()"/>
|
|
|
|
<MkLoading v-else/>
|
|
|
|
</transition>
|
2021-04-24 13:38:24 +00:00
|
|
|
</div>
|
2022-06-30 12:38:34 +00:00
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2021-04-24 13:38:24 +00:00
|
|
|
</template>
|
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed, defineComponent, inject, watch } from 'vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import MkContainer from '@/components/ui/container.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import ImgWithBlurhash from '@/components/MkImgWithBlurhash.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import MkPagination from '@/components/ui/pagination.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import MkGalleryPostPreview from '@/components/MkGalleryPostPreview.vue';
|
|
|
|
import MkFollowButton from '@/components/MkFollowButton.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import { url } from '@/config';
|
2022-06-20 08:38:49 +00:00
|
|
|
import { useRouter } from '@/router';
|
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
|
|
|
|
|
|
|
const router = useRouter();
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
postId: string;
|
|
|
|
}>();
|
|
|
|
|
2022-07-04 14:22:11 +00:00
|
|
|
let post = $ref(null);
|
|
|
|
let error = $ref(null);
|
2022-06-20 08:38:49 +00:00
|
|
|
const otherPostsPagination = {
|
|
|
|
endpoint: 'users/gallery/posts' as const,
|
|
|
|
limit: 6,
|
|
|
|
params: computed(() => ({
|
|
|
|
userId: post.user.id,
|
|
|
|
})),
|
|
|
|
};
|
|
|
|
|
|
|
|
function fetchPost() {
|
|
|
|
post = null;
|
|
|
|
os.api('gallery/posts/show', {
|
|
|
|
postId: props.postId,
|
|
|
|
}).then(_post => {
|
|
|
|
post = _post;
|
|
|
|
}).catch(_error => {
|
|
|
|
error = _error;
|
|
|
|
});
|
|
|
|
}
|
2021-04-24 13:38:24 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
function share() {
|
|
|
|
navigator.share({
|
|
|
|
title: post.title,
|
|
|
|
text: post.description,
|
|
|
|
url: `${url}/gallery/${post.id}`,
|
|
|
|
});
|
|
|
|
}
|
2021-04-24 13:38:24 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
function shareWithNote() {
|
|
|
|
os.post({
|
|
|
|
initialText: `${post.title} ${url}/gallery/${post.id}`,
|
|
|
|
});
|
|
|
|
}
|
2021-04-24 13:38:24 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
function like() {
|
|
|
|
os.apiWithDialog('gallery/posts/like', {
|
|
|
|
postId: props.postId,
|
|
|
|
}).then(() => {
|
|
|
|
post.isLiked = true;
|
|
|
|
post.likedCount++;
|
|
|
|
});
|
|
|
|
}
|
2021-04-24 13:38:24 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
async function unlike() {
|
|
|
|
const confirm = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.ts.unlikeConfirm,
|
|
|
|
});
|
|
|
|
if (confirm.canceled) return;
|
|
|
|
os.apiWithDialog('gallery/posts/unlike', {
|
|
|
|
postId: props.postId,
|
|
|
|
}).then(() => {
|
|
|
|
post.isLiked = false;
|
|
|
|
post.likedCount--;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function edit() {
|
|
|
|
router.push(`/gallery/${post.id}/edit`);
|
|
|
|
}
|
|
|
|
|
|
|
|
watch(() => props.postId, fetchPost, { immediate: true });
|
|
|
|
|
2022-06-30 12:38:34 +00:00
|
|
|
const headerActions = $computed(() => [{
|
|
|
|
icon: 'fas fa-pencil-alt',
|
|
|
|
text: i18n.ts.edit,
|
|
|
|
handler: edit,
|
|
|
|
}]);
|
2022-06-20 08:38:49 +00:00
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => post ? {
|
|
|
|
title: post.title,
|
|
|
|
avatar: post.user,
|
|
|
|
} : null));
|
2021-04-24 13:38:24 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.fade-enter-active,
|
|
|
|
.fade-leave-active {
|
|
|
|
transition: opacity 0.125s ease;
|
|
|
|
}
|
|
|
|
.fade-enter-from,
|
|
|
|
.fade-leave-to {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rkxwuolj {
|
|
|
|
> .files {
|
|
|
|
> .file {
|
|
|
|
> img {
|
|
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 500px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
& + .file {
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .body {
|
|
|
|
padding: 32px;
|
|
|
|
|
|
|
|
> .title {
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.2em;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .info {
|
|
|
|
margin-top: 16px;
|
|
|
|
font-size: 90%;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .actions {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 16px;
|
|
|
|
padding: 16px 0 0 0;
|
|
|
|
border-top: solid 0.5px var(--divider);
|
|
|
|
|
|
|
|
> .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;
|
|
|
|
|
|
|
|
::v-deep(.count) {
|
|
|
|
margin-left: 0.5em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sdrarzaf {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
|
|
|
|
grid-gap: 12px;
|
|
|
|
margin: var(--margin);
|
|
|
|
|
|
|
|
> .post {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|