2019-07-06 23:56:13 +02:00
|
|
|
<template>
|
2021-04-18 07:29:31 +02:00
|
|
|
<div class="xcukqgmh _root" v-if="page" :key="page.id" v-size="{ max: [450] }">
|
|
|
|
<div class="_block main">
|
2021-04-10 16:52:45 +02:00
|
|
|
<!--
|
|
|
|
<div class="header">
|
|
|
|
<h1>{{ page.title }}</h1>
|
2020-04-13 17:13:49 +02:00
|
|
|
</div>
|
2021-04-10 16:52:45 +02:00
|
|
|
-->
|
|
|
|
<div class="banner">
|
|
|
|
<img :src="page.eyeCatchingImage.url" v-if="page.eyeCatchingImageId"/>
|
2020-01-29 22:19:18 +01:00
|
|
|
</div>
|
2021-04-10 16:52:45 +02:00
|
|
|
<div class="content">
|
|
|
|
<XPage :page="page"/>
|
|
|
|
<small style="display: block; opacity: 0.7; margin-top: 1em;">@{{ page.user.username }}</small>
|
|
|
|
</div>
|
|
|
|
<div class="like">
|
2021-04-20 16:22:59 +02:00
|
|
|
<MkButton class="button" @click="unlike()" v-if="page.isLiked" v-tooltip="$ts._pages.unlike" primary><i class="fas fa-heart"></i><span class="count" v-if="page.likedCount > 0">{{ page.likedCount }}</span></MkButton>
|
|
|
|
<MkButton class="button" @click="like()" v-else v-tooltip="$ts._pages.like"><i class="far fa-heart"></i><span class="count" v-if="page.likedCount > 0">{{ page.likedCount }}</span></MkButton>
|
2021-04-10 16:52:45 +02:00
|
|
|
</div>
|
|
|
|
<div class="links">
|
2021-01-30 06:03:11 +01:00
|
|
|
<MkA :to="`/@${username}/pages/${pageName}/view-source`" class="link">{{ $ts._pages.viewSource }}</MkA>
|
2020-12-19 02:55:52 +01:00
|
|
|
<template v-if="$i && $i.id === page.userId">
|
2020-12-26 02:47:36 +01:00
|
|
|
<MkA :to="`/pages/edit/${page.id}`" class="link">{{ $ts._pages.editThisPage }}</MkA>
|
|
|
|
<button v-if="$i.pinnedPageId === page.id" @click="pin(false)" class="link _textButton">{{ $ts.unpin }}</button>
|
|
|
|
<button v-else @click="pin(true)" class="link _textButton">{{ $ts.pin }}</button>
|
2020-01-29 22:19:18 +01:00
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-10 16:52:45 +02:00
|
|
|
<div class="footer">
|
2021-04-20 16:22:59 +02:00
|
|
|
<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>
|
2021-04-10 16:52:45 +02:00
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
2019-07-06 23:56:13 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { computed, defineComponent } from 'vue';
|
2021-03-23 09:30:14 +01:00
|
|
|
import XPage from '@client/components/page/page.vue';
|
2021-04-10 16:52:45 +02:00
|
|
|
import MkButton from '@client/components/ui/button.vue';
|
2021-03-23 09:30:14 +01:00
|
|
|
import * as os from '@client/os';
|
2021-04-10 05:54:12 +02:00
|
|
|
import * as symbols from '@client/symbols';
|
2019-07-06 23:56:13 +02:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2019-07-06 23:56:13 +02:00
|
|
|
components: {
|
2021-04-10 16:52:45 +02:00
|
|
|
XPage,
|
|
|
|
MkButton,
|
2019-07-06 23:56:13 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
pageName: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
username: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
2021-04-10 05:54:12 +02:00
|
|
|
[symbols.PAGE_INFO]: computed(() => this.page ? {
|
2020-11-03 12:36:12 +01:00
|
|
|
title: computed(() => this.page.title || this.page.name),
|
|
|
|
avatar: this.page.user,
|
2021-04-10 16:52:45 +02:00
|
|
|
path: `/@${this.page.user.username}/pages/${this.page.name}`,
|
|
|
|
share: {
|
|
|
|
title: this.page.title || this.page.name,
|
|
|
|
text: this.page.summary,
|
|
|
|
},
|
2020-10-17 13:12:00 +02:00
|
|
|
} : null),
|
2019-07-06 23:56:13 +02:00
|
|
|
page: null,
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
path(): string {
|
|
|
|
return this.username + '/' + this.pageName;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
|
|
|
path() {
|
|
|
|
this.fetch();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
|
|
|
this.fetch();
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
fetch() {
|
2020-10-17 13:12:00 +02:00
|
|
|
os.api('pages/show', {
|
2019-07-06 23:56:13 +02:00
|
|
|
name: this.pageName,
|
|
|
|
username: this.username,
|
|
|
|
}).then(page => {
|
|
|
|
this.page = page;
|
|
|
|
});
|
|
|
|
},
|
2020-01-29 22:19:18 +01:00
|
|
|
|
|
|
|
like() {
|
2021-04-10 16:52:45 +02:00
|
|
|
os.apiWithDialog('pages/like', {
|
2020-01-29 22:19:18 +01:00
|
|
|
pageId: this.page.id,
|
|
|
|
}).then(() => {
|
|
|
|
this.page.isLiked = true;
|
|
|
|
this.page.likedCount++;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2021-04-10 16:52:45 +02:00
|
|
|
async unlike() {
|
|
|
|
const confirm = await os.dialog({
|
|
|
|
type: 'warning',
|
|
|
|
showCancelButton: true,
|
|
|
|
text: this.$ts.unlikeConfirm,
|
|
|
|
});
|
|
|
|
if (confirm.canceled) return;
|
|
|
|
os.apiWithDialog('pages/unlike', {
|
2020-01-29 22:19:18 +01:00
|
|
|
pageId: this.page.id,
|
|
|
|
}).then(() => {
|
|
|
|
this.page.isLiked = false;
|
|
|
|
this.page.likedCount--;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
pin(pin) {
|
2020-10-17 13:12:00 +02:00
|
|
|
os.apiWithDialog('i/update', {
|
2020-01-29 22:19:18 +01:00
|
|
|
pinnedPageId: pin ? this.page.id : null,
|
|
|
|
});
|
|
|
|
}
|
2019-07-06 23:56:13 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.xcukqgmh {
|
2021-04-10 16:52:45 +02:00
|
|
|
--padding: 32px;
|
|
|
|
|
|
|
|
&.max-width_450px {
|
|
|
|
--padding: 16px;
|
|
|
|
}
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
> .main {
|
2021-04-10 16:52:45 +02:00
|
|
|
> .header {
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
> h1 {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .banner {
|
|
|
|
> img {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
height: 120px;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .content {
|
|
|
|
padding: var(--padding);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .like {
|
|
|
|
padding: var(--padding);
|
|
|
|
border-top: solid 0.5px var(--divider);
|
|
|
|
|
|
|
|
> .button {
|
2021-04-24 15:38:24 +02:00
|
|
|
--accent: rgb(241 97 132);
|
2021-04-10 16:52:45 +02:00
|
|
|
--X8: rgb(241 92 128);
|
|
|
|
--buttonBg: rgb(216 71 106 / 5%);
|
|
|
|
--buttonHoverBg: rgb(216 71 106 / 10%);
|
2021-04-24 15:38:24 +02:00
|
|
|
color: #ff002f;
|
2021-04-10 16:52:45 +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-10 16:52:45 +02:00
|
|
|
> .links {
|
|
|
|
padding: var(--padding);
|
|
|
|
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-04-13 19:12:46 +02:00
|
|
|
margin: var(--padding);
|
2021-04-10 16:52:45 +02:00
|
|
|
font-size: 85%;
|
|
|
|
opacity: 0.75;
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
</style>
|