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 }">
|
|
|
|
<div class="giivymft" :class="{ noGap }">
|
2023-01-09 20:31:02 +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="notes">
|
2022-01-14 01:25:51 +00:00
|
|
|
<XNote :key="note._featuredId_ || note._prId_ || note.id" class="qtqtichx" :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';
|
2022-08-30 15:24:33 +00:00
|
|
|
import XNote 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
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
<style lang="scss" scoped>
|
2021-08-14 13:35:15 +00:00
|
|
|
.giivymft {
|
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);
|
|
|
|
|
2021-08-16 06:21:58 +00:00
|
|
|
.qtqtichx {
|
|
|
|
background: var(--panel);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
}
|
|
|
|
}
|
2021-08-14 13:35:15 +00:00
|
|
|
}
|
|
|
|
}
|
2021-04-16 15:12:50 +00:00
|
|
|
</style>
|