2020-01-29 21:37:25 +02:00
|
|
|
<template>
|
2022-01-09 14:35:35 +02:00
|
|
|
<MkPagination ref="pagingComponent" :pagination="pagination">
|
|
|
|
<template #empty>
|
|
|
|
<div class="_fullinfo">
|
|
|
|
<img src="https://xn--931a.moe/assets/info.jpg" class="_ghost"/>
|
2022-07-20 16:24:26 +03:00
|
|
|
<div>{{ i18n.ts.noNotes }}</div>
|
2021-04-16 18:12:50 +03:00
|
|
|
</div>
|
2022-01-09 14:35:35 +02:00
|
|
|
</template>
|
2021-04-16 18:12:50 +03:00
|
|
|
|
2022-01-09 14:35:35 +02:00
|
|
|
<template #default="{ items: notes }">
|
|
|
|
<div class="giivymft" :class="{ noGap }">
|
|
|
|
<XList ref="notes" v-slot="{ item: note }" :items="notes" :direction="pagination.reversed ? 'up' : 'down'" :reversed="pagination.reversed" :no-gap="noGap" :ad="true" class="notes">
|
2022-01-14 03:25:51 +02:00
|
|
|
<XNote :key="note._featuredId_ || note._prId_ || note.id" class="qtqtichx" :note="note"/>
|
2022-01-09 14:35:35 +02:00
|
|
|
</XList>
|
2021-04-16 18:12:50 +03:00
|
|
|
</div>
|
2022-01-09 14:35:35 +02:00
|
|
|
</template>
|
|
|
|
</MkPagination>
|
2020-01-29 21:37:25 +02:00
|
|
|
</template>
|
|
|
|
|
2022-01-09 14:35:35 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref } from 'vue';
|
2022-08-30 18:24:33 +03:00
|
|
|
import XNote from '@/components/MkNote.vue';
|
|
|
|
import XList from '@/components/MkDateSeparatedList.vue';
|
2022-09-06 12:21:49 +03:00
|
|
|
import MkPagination, { Paging } from '@/components/MkPagination.vue';
|
2022-07-20 16:24:26 +03:00
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2022-01-09 14:35:35 +02:00
|
|
|
const props = defineProps<{
|
|
|
|
pagination: Paging;
|
|
|
|
noGap?: boolean;
|
|
|
|
}>();
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2022-01-09 14:35:35 +02:00
|
|
|
const pagingComponent = ref<InstanceType<typeof MkPagination>>();
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2022-01-09 14:35:35 +02:00
|
|
|
defineExpose({
|
2022-01-21 09:43:56 +02:00
|
|
|
pagingComponent,
|
2020-01-29 21:37:25 +02:00
|
|
|
});
|
|
|
|
</script>
|
2021-04-16 18:12:50 +03:00
|
|
|
|
2022-12-27 11:29:39 +02:00
|
|
|
<style lang="scss" scoped>
|
2021-08-14 16:35:15 +03:00
|
|
|
.giivymft {
|
2021-08-16 09:21:58 +03:00
|
|
|
&.noGap {
|
|
|
|
> .notes {
|
|
|
|
background: var(--panel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.noGap) {
|
|
|
|
> .notes {
|
2021-08-21 11:40:15 +03:00
|
|
|
background: var(--bg);
|
|
|
|
|
2021-08-16 09:21:58 +03:00
|
|
|
.qtqtichx {
|
|
|
|
background: var(--panel);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
}
|
|
|
|
}
|
2021-08-14 16:35:15 +03:00
|
|
|
}
|
|
|
|
}
|
2021-04-16 18:12:50 +03:00
|
|
|
</style>
|