2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
|
|
|
<div>
|
2020-10-17 13:12:00 +02:00
|
|
|
<MkTab v-model:value="tab" :items="[{ label: $t('_pages.my'), value: 'my', icon: faEdit }, { label: $t('_pages.liked'), value: 'liked', icon: faHeart }]"/>
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-10-18 14:21:52 +02:00
|
|
|
<div class="_section">
|
|
|
|
<div class="rknalgpo _content my" v-if="tab === 'my'">
|
|
|
|
<MkButton class="new" @click="create()"><Fa :icon="faPlus"/></MkButton>
|
|
|
|
<MkPagination :pagination="myPagesPagination" #default="{items}">
|
|
|
|
<MkPagePreview v-for="page in items" class="ckltabjg" :page="page" :key="page.id"/>
|
|
|
|
</MkPagination>
|
|
|
|
</div>
|
2020-07-28 03:08:08 +02:00
|
|
|
|
2020-10-18 14:21:52 +02: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 03:08:08 +02:00
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { defineComponent } from 'vue';
|
2020-01-29 20:37:25 +01:00
|
|
|
import { faPlus, faEdit } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import { faStickyNote, faHeart } from '@fortawesome/free-regular-svg-icons';
|
2020-10-17 13:12:00 +02:00
|
|
|
import MkPagePreview from '@/components/page-preview.vue';
|
|
|
|
import MkPagination from '@/components/ui/pagination.vue';
|
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import MkTab from '@/components/tab.vue';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2020-01-29 20:37:25 +01:00
|
|
|
components: {
|
2020-07-28 03:08:08 +02:00
|
|
|
MkPagePreview, MkPagination, MkButton, MkTab
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2020-10-17 13:12:00 +02:00
|
|
|
INFO: {
|
|
|
|
header: [{
|
|
|
|
title: this.$t('pages'),
|
|
|
|
icon: faStickyNote
|
|
|
|
}],
|
|
|
|
action: {
|
|
|
|
icon: faPlus,
|
|
|
|
handler: this.create
|
|
|
|
}
|
|
|
|
},
|
2020-07-28 03:08:08 +02:00
|
|
|
tab: 'my',
|
2020-01-29 20:37:25 +01:00
|
|
|
myPagesPagination: {
|
|
|
|
endpoint: 'i/pages',
|
|
|
|
limit: 5,
|
|
|
|
},
|
|
|
|
likedPagesPagination: {
|
|
|
|
endpoint: 'i/page-likes',
|
|
|
|
limit: 5,
|
|
|
|
},
|
|
|
|
faStickyNote, faPlus, faEdit, faHeart
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
create() {
|
|
|
|
this.$router.push(`/my/pages/new`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</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>
|