mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 06:33:09 +02:00
77 lines
1.8 KiB
Vue
77 lines
1.8 KiB
Vue
<template>
|
|
<div>
|
|
<ui-container :body-togglable="true">
|
|
<template #header><fa :icon="faEdit" fixed-width/>{{ $t('my-pages') }}</template>
|
|
<div class="rknalgpo my">
|
|
<ui-button class="new" @click="create()"><fa :icon="faPlus"/></ui-button>
|
|
<ui-pagination :pagination="myPagesPagination" #default="{items}">
|
|
<x-page-preview v-for="page in items" class="ckltabjg" :page="page" :key="page.id"/>
|
|
</ui-pagination>
|
|
</div>
|
|
</ui-container>
|
|
|
|
<ui-container :body-togglable="true">
|
|
<template #header><fa :icon="faHeart" fixed-width/>{{ $t('liked-pages') }}</template>
|
|
<div class="rknalgpo">
|
|
<ui-pagination :pagination="likedPagesPagination" #default="{items}">
|
|
<x-page-preview v-for="like in items" class="ckltabjg" :page="like.page" :key="like.page.id"/>
|
|
</ui-pagination>
|
|
</div>
|
|
</ui-container>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import { faPlus, faEdit } from '@fortawesome/free-solid-svg-icons';
|
|
import { faStickyNote, faHeart } from '@fortawesome/free-regular-svg-icons';
|
|
import i18n from '../../../i18n';
|
|
import XPagePreview from '../../views/components/page-preview.vue';
|
|
|
|
export default Vue.extend({
|
|
i18n: i18n('pages'),
|
|
components: {
|
|
XPagePreview
|
|
},
|
|
data() {
|
|
return {
|
|
myPagesPagination: {
|
|
endpoint: 'i/pages',
|
|
limit: 5,
|
|
},
|
|
likedPagesPagination: {
|
|
endpoint: 'i/page-likes',
|
|
limit: 5,
|
|
},
|
|
faStickyNote, faPlus, faEdit, faHeart
|
|
};
|
|
},
|
|
created() {
|
|
this.$emit('init', {
|
|
title: this.$t('@.pages'),
|
|
icon: faStickyNote
|
|
});
|
|
},
|
|
methods: {
|
|
create() {
|
|
this.$router.push(`/i/pages/new`);
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.rknalgpo
|
|
padding 16px
|
|
|
|
&.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>
|