rudeshark.net/packages/client/src/components/MkNotes.vue

58 lines
1.4 KiB
Vue
Raw Normal View History

<template>
<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>
</template>
2021-04-16 17:12:50 +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">
<XNote :key="note._featuredId_ || note._prId_ || note.id" class="qtqtichx" :note="note"/>
</XList>
2021-04-16 17:12:50 +02:00
</div>
</template>
</MkPagination>
</template>
<script lang="ts" setup>
import { ref } from 'vue';
2022-11-09 05:25:22 +01:00
import type { Paging } from '@/components/MkPagination.vue';
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';
const props = defineProps<{
pagination: Paging;
noGap?: boolean;
}>();
const pagingComponent = ref<InstanceType<typeof MkPagination>>();
defineExpose({
pagingComponent,
});
</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>