2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2022-01-09 12:35:35 +00: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 13:24:26 +00:00
|
|
|
<div>{{ i18n.ts.noNotes }}</div>
|
2021-04-16 15:12:50 +00:00
|
|
|
</div>
|
2022-01-09 12:35:35 +00:00
|
|
|
</template>
|
2021-04-16 15:12:50 +00:00
|
|
|
|
2022-01-09 12:35:35 +00:00
|
|
|
<template #default="{ items: notes }">
|
2023-01-09 23:48:37 +00:00
|
|
|
<div :class="[$style.root, { [$style.noGap]: noGap }]">
|
2023-01-13 09:25:40 +00:00
|
|
|
<MkDateSeparatedList
|
|
|
|
ref="notes"
|
|
|
|
v-slot="{ item: note }"
|
|
|
|
:items="notes"
|
|
|
|
:direction="pagination.reversed ? 'up' : 'down'"
|
|
|
|
:reversed="pagination.reversed"
|
|
|
|
:no-gap="noGap"
|
|
|
|
:ad="true"
|
|
|
|
:class="$style.notes"
|
|
|
|
>
|
2023-03-31 05:14:30 +00:00
|
|
|
<MkNote :key="note._featuredId_ || note._prId_ || note.id" :class="$style.note" :note="note"/>
|
2023-01-09 20:31:02 +00:00
|
|
|
</MkDateSeparatedList>
|
2021-04-16 15:12:50 +00:00
|
|
|
</div>
|
2022-01-09 12:35:35 +00:00
|
|
|
</template>
|
|
|
|
</MkPagination>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-09 12:35:35 +00:00
|
|
|
<script lang="ts" setup>
|
2023-01-03 04:37:32 +00:00
|
|
|
import { shallowRef } from 'vue';
|
2023-03-31 05:14:30 +00:00
|
|
|
import MkNote from '@/components/MkNote.vue';
|
2023-01-09 20:31:02 +00:00
|
|
|
import MkDateSeparatedList from '@/components/MkDateSeparatedList.vue';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkPagination, { Paging } from '@/components/MkPagination.vue';
|
2022-07-20 13:24:26 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-09 12:35:35 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
pagination: Paging;
|
|
|
|
noGap?: boolean;
|
|
|
|
}>();
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-03 04:37:32 +00:00
|
|
|
const pagingComponent = shallowRef<InstanceType<typeof MkPagination>>();
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-09 12:35:35 +00:00
|
|
|
defineExpose({
|
2022-01-21 07:43:56 +00:00
|
|
|
pagingComponent,
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
|
|
|
</script>
|
2021-04-16 15:12:50 +00:00
|
|
|
|
2023-01-09 23:48:37 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2021-08-16 06:21:58 +00:00
|
|
|
&.noGap {
|
|
|
|
> .notes {
|
|
|
|
background: var(--panel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.noGap) {
|
|
|
|
> .notes {
|
2021-08-21 08:40:15 +00:00
|
|
|
background: var(--bg);
|
|
|
|
|
2023-01-09 23:48:37 +00:00
|
|
|
.note {
|
2021-08-16 06:21:58 +00:00
|
|
|
background: var(--panel);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
}
|
|
|
|
}
|
2021-08-14 13:35:15 +00:00
|
|
|
}
|
|
|
|
}
|
2021-04-16 15:12:50 +00:00
|
|
|
</style>
|