mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-17 22:06:27 +01:00
05b8111c19
* wip * wip * wip * Update page-editor.vue * wip * wip * wip * wip * wip * wip * wip * Update page-editor.variable.core.vue * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * Update aiscript.ts * wip * Update package.json * wip * wip * wip * wip * wip * Update page.vue * wip * wip * wip * wip * more info * wip fn * wip * wip * wip
94 lines
2 KiB
Vue
94 lines
2 KiB
Vue
<template>
|
|
<mk-ui>
|
|
<template #header><span style="margin-right:4px;"><fa :icon="faStickyNote"/></span>{{ $t('@.pages') }}</template>
|
|
|
|
<main>
|
|
<ui-button @click="create()"><fa :icon="faPlus"/></ui-button>
|
|
<sequential-entrance animation="entranceFromTop" delay="25">
|
|
<template v-for="page in pages">
|
|
<x-page-preview class="page" :page="page" :key="page.id"/>
|
|
</template>
|
|
</sequential-entrance>
|
|
<ui-button v-if="existMore" @click="fetchMore()">{{ $t('@.load-more') }}</ui-button>
|
|
</main>
|
|
</mk-ui>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import i18n from '../../../i18n';
|
|
import Progress from '../../../common/scripts/loading';
|
|
import { faPlus } from '@fortawesome/free-solid-svg-icons';
|
|
import { faStickyNote } from '@fortawesome/free-regular-svg-icons';
|
|
import XPagePreview from '../../../common/views/components/page-preview.vue';
|
|
|
|
export default Vue.extend({
|
|
i18n: i18n(),
|
|
components: {
|
|
XPagePreview
|
|
},
|
|
data() {
|
|
return {
|
|
fetching: true,
|
|
pages: [],
|
|
existMore: false,
|
|
moreFetching: false,
|
|
faStickyNote, faPlus
|
|
};
|
|
},
|
|
created() {
|
|
this.fetch();
|
|
},
|
|
methods: {
|
|
fetch() {
|
|
Progress.start();
|
|
this.fetching = true;
|
|
|
|
this.$root.api('i/pages', {
|
|
limit: 11
|
|
}).then(pages => {
|
|
if (pages.length == 11) {
|
|
this.existMore = true;
|
|
pages.pop();
|
|
}
|
|
|
|
this.pages = pages;
|
|
this.fetching = false;
|
|
|
|
Progress.done();
|
|
});
|
|
},
|
|
fetchMore() {
|
|
this.moreFetching = true;
|
|
this.$root.api('i/pages', {
|
|
limit: 11,
|
|
untilId: this.pages[this.pages.length - 1].id
|
|
}).then(pages => {
|
|
if (pages.length == 11) {
|
|
this.existMore = true;
|
|
pages.pop();
|
|
} else {
|
|
this.existMore = false;
|
|
}
|
|
|
|
this.pages = this.pages.concat(pages);
|
|
this.moreFetching = false;
|
|
});
|
|
},
|
|
create() {
|
|
this.$router.push(`/i/pages/new`);
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
main
|
|
> * > .page
|
|
margin-bottom 8px
|
|
|
|
@media (min-width 500px)
|
|
> * > .page
|
|
margin-bottom 16px
|
|
|
|
</style>
|