2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
2020-12-19 01:55:52 +00:00
|
|
|
<MkTab v-model:value="tab" v-if="$i">
|
2021-04-20 14:22:59 +00:00
|
|
|
<option value="featured"><i class="fas fa-fire-alt"></i> {{ $ts._pages.featured }}</option>
|
|
|
|
<option value="my"><i class="fas fa-edit"></i> {{ $ts._pages.my }}</option>
|
|
|
|
<option value="liked"><i class="fas fa-heart"></i> {{ $ts._pages.liked }}</option>
|
2020-11-17 05:59:15 +00:00
|
|
|
</MkTab>
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-10-18 12:21:52 +00:00
|
|
|
<div class="_section">
|
2020-11-17 05:59:15 +00:00
|
|
|
<div class="rknalgpo _content" v-if="tab === 'featured'">
|
|
|
|
<MkPagination :pagination="featuredPagesPagination" #default="{items}">
|
|
|
|
<MkPagePreview v-for="page in items" class="ckltabjg" :page="page" :key="page.id"/>
|
|
|
|
</MkPagination>
|
|
|
|
</div>
|
|
|
|
|
2020-10-18 12:21:52 +00:00
|
|
|
<div class="rknalgpo _content my" v-if="tab === 'my'">
|
2021-04-20 14:22:59 +00:00
|
|
|
<MkButton class="new" @click="create()"><i class="fas fa-plus"></i></MkButton>
|
2020-10-18 12:21:52 +00:00
|
|
|
<MkPagination :pagination="myPagesPagination" #default="{items}">
|
|
|
|
<MkPagePreview v-for="page in items" class="ckltabjg" :page="page" :key="page.id"/>
|
|
|
|
</MkPagination>
|
|
|
|
</div>
|
2020-07-28 01:08:08 +00:00
|
|
|
|
2020-10-18 12:21:52 +00:00
|
|
|
<div class="rknalgpo _content" v-if="tab === 'liked'">
|
|
|
|
<MkPagination :pagination="likedPagesPagination" #default="{items}">
|
|
|
|
<MkPagePreview v-for="like in items" class="ckltabjg" :page="like.page" :key="like.page.id"/>
|
|
|
|
</MkPagination>
|
|
|
|
</div>
|
2020-07-28 01:08:08 +00:00
|
|
|
</div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 11:12:00 +00:00
|
|
|
import { defineComponent } from 'vue';
|
2021-03-23 08:30:14 +00:00
|
|
|
import MkPagePreview from '@client/components/page-preview.vue';
|
|
|
|
import MkPagination from '@client/components/ui/pagination.vue';
|
|
|
|
import MkButton from '@client/components/ui/button.vue';
|
|
|
|
import MkTab from '@client/components/tab.vue';
|
2021-04-10 03:54:12 +00:00
|
|
|
import * as symbols from '@client/symbols';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
export default defineComponent({
|
2020-01-29 19:37:25 +00:00
|
|
|
components: {
|
2020-07-28 01:08:08 +00:00
|
|
|
MkPagePreview, MkPagination, MkButton, MkTab
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2021-04-10 03:54:12 +00:00
|
|
|
[symbols.PAGE_INFO]: {
|
2020-12-26 01:47:36 +00:00
|
|
|
title: this.$ts.pages,
|
2021-04-20 14:22:59 +00:00
|
|
|
icon: 'fas fa-sticky-note',
|
2021-04-10 15:03:31 +00:00
|
|
|
actions: [{
|
2021-04-20 14:22:59 +00:00
|
|
|
icon: 'fas fa-plus',
|
2021-04-10 15:03:31 +00:00
|
|
|
text: this.$ts.create,
|
2020-10-17 11:12:00 +00:00
|
|
|
handler: this.create
|
2021-04-10 15:03:31 +00:00
|
|
|
}]
|
2020-10-17 11:12:00 +00:00
|
|
|
},
|
2020-11-17 05:59:15 +00:00
|
|
|
tab: 'featured',
|
|
|
|
featuredPagesPagination: {
|
|
|
|
endpoint: 'pages/featured',
|
|
|
|
noPaging: true,
|
|
|
|
},
|
2020-01-29 19:37:25 +00:00
|
|
|
myPagesPagination: {
|
|
|
|
endpoint: 'i/pages',
|
|
|
|
limit: 5,
|
|
|
|
},
|
|
|
|
likedPagesPagination: {
|
|
|
|
endpoint: 'i/page-likes',
|
|
|
|
limit: 5,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
create() {
|
2020-11-17 05:59:15 +00:00
|
|
|
this.$router.push(`/pages/new`);
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.rknalgpo {
|
|
|
|
&.my .ckltabjg:first-child {
|
|
|
|
margin-top: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ckltabjg:not(:last-child) {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 500px) {
|
|
|
|
.ckltabjg:not(:last-child) {
|
|
|
|
margin-bottom: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|