2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
2022-01-09 06:35:35 -06:00
|
|
|
<MkPagination ref="pagingComponent" :pagination="pagination">
|
|
|
|
<template #empty>
|
|
|
|
<div class="_fullinfo">
|
|
|
|
<img src="https://xn--931a.moe/assets/info.jpg" class="_ghost"/>
|
|
|
|
<div>{{ $ts.noNotes }}</div>
|
2021-04-16 10:12:50 -05:00
|
|
|
</div>
|
2022-01-09 06:35:35 -06:00
|
|
|
</template>
|
2021-04-16 10:12:50 -05:00
|
|
|
|
2022-01-09 06:35:35 -06: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-13 19:25:51 -06:00
|
|
|
<XNote :key="note._featuredId_ || note._prId_ || note.id" class="qtqtichx" :note="note"/>
|
2022-01-09 06:35:35 -06:00
|
|
|
</XList>
|
2021-04-16 10:12:50 -05:00
|
|
|
</div>
|
2022-01-09 06:35:35 -06:00
|
|
|
</template>
|
|
|
|
</MkPagination>
|
2020-01-29 13:37:25 -06:00
|
|
|
</template>
|
|
|
|
|
2022-01-09 06:35:35 -06:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref } from 'vue';
|
|
|
|
import XNote from '@/components/note.vue';
|
|
|
|
import XList from '@/components/date-separated-list.vue';
|
|
|
|
import MkPagination from '@/components/ui/pagination.vue';
|
|
|
|
import { Paging } from '@/components/ui/pagination.vue';
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2022-01-09 06:35:35 -06:00
|
|
|
const props = defineProps<{
|
|
|
|
pagination: Paging;
|
|
|
|
noGap?: boolean;
|
|
|
|
}>();
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2022-01-09 06:35:35 -06:00
|
|
|
const pagingComponent = ref<InstanceType<typeof MkPagination>>();
|
2020-01-29 13:37:25 -06:00
|
|
|
|
2022-01-09 06:35:35 -06:00
|
|
|
defineExpose({
|
2022-01-21 01:43:56 -06:00
|
|
|
pagingComponent,
|
2020-01-29 13:37:25 -06:00
|
|
|
});
|
|
|
|
</script>
|
2021-04-16 10:12:50 -05:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2021-08-14 08:35:15 -05:00
|
|
|
.giivymft {
|
2021-08-16 01:21:58 -05:00
|
|
|
&.noGap {
|
|
|
|
> .notes {
|
|
|
|
background: var(--panel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.noGap) {
|
|
|
|
> .notes {
|
2021-08-21 03:40:15 -05:00
|
|
|
background: var(--bg);
|
|
|
|
|
2021-08-16 01:21:58 -05:00
|
|
|
.qtqtichx {
|
|
|
|
background: var(--panel);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
}
|
|
|
|
}
|
2021-08-14 08:35:15 -05:00
|
|
|
}
|
|
|
|
}
|
2021-04-16 10:12:50 -05:00
|
|
|
</style>
|