2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2022-01-09 13:35:35 +01:00
|
|
|
<MkPagination ref="pagingComponent" :pagination="pagination">
|
|
|
|
<template #empty>
|
|
|
|
<div class="_fullinfo">
|
2022-08-08 23:07:09 +02:00
|
|
|
<img src="/static-assets/badges/info.png" class="_ghost" alt="Info"/>
|
2022-07-20 15:24:26 +02:00
|
|
|
<div>{{ i18n.ts.noNotes }}</div>
|
2021-04-16 17:12:50 +02:00
|
|
|
</div>
|
2022-01-09 13:35:35 +01:00
|
|
|
</template>
|
2021-04-16 17:12:50 +02:00
|
|
|
|
2022-01-09 13:35:35 +01: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 02:25:51 +01:00
|
|
|
<XNote :key="note._featuredId_ || note._prId_ || note.id" class="qtqtichx" :note="note"/>
|
2022-01-09 13:35:35 +01:00
|
|
|
</XList>
|
2021-04-16 17:12:50 +02:00
|
|
|
</div>
|
2022-01-09 13:35:35 +01:00
|
|
|
</template>
|
|
|
|
</MkPagination>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-09 13:35:35 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref } from 'vue';
|
2022-11-09 05:25:22 +01:00
|
|
|
import type { Paging } from '@/components/MkPagination.vue';
|
2022-08-30 17:24:33 +02:00
|
|
|
import XNote from '@/components/MkNote.vue';
|
|
|
|
import XList from '@/components/MkDateSeparatedList.vue';
|
2022-11-09 05:25:22 +01:00
|
|
|
import MkPagination from '@/components/MkPagination.vue';
|
2022-07-20 15:24:26 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-09 13:35:35 +01:00
|
|
|
const props = defineProps<{
|
|
|
|
pagination: Paging;
|
|
|
|
noGap?: boolean;
|
|
|
|
}>();
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-09 13:35:35 +01:00
|
|
|
const pagingComponent = ref<InstanceType<typeof MkPagination>>();
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-09 13:35:35 +01:00
|
|
|
defineExpose({
|
2022-01-21 08:43:56 +01:00
|
|
|
pagingComponent,
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|
|
|
|
</script>
|
2021-04-16 17:12:50 +02:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2021-08-14 15:35:15 +02:00
|
|
|
.giivymft {
|
2021-08-16 08:21:58 +02:00
|
|
|
&.noGap {
|
|
|
|
> .notes {
|
|
|
|
background: var(--panel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&:not(.noGap) {
|
|
|
|
> .notes {
|
2021-08-21 10:40:15 +02:00
|
|
|
background: var(--bg);
|
2021-08-16 08:21:58 +02:00
|
|
|
.qtqtichx {
|
|
|
|
background: var(--panel);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
}
|
|
|
|
}
|
2021-08-14 15:35:15 +02:00
|
|
|
}
|
|
|
|
}
|
2021-04-16 17:12:50 +02:00
|
|
|
</style>
|