2020-07-10 19:13:11 -06:00
|
|
|
<template>
|
2022-03-20 12:11:14 -06:00
|
|
|
<XColumn :column="column" :is-stacked="isStacked" @parent-focus="$event => emit('parent-focus', $event)">
|
2021-04-20 08:22:59 -06:00
|
|
|
<template #header><i class="fas fa-at" style="margin-right: 8px;"></i>{{ column.name }}</template>
|
2020-07-10 19:13:11 -06:00
|
|
|
|
2022-01-12 10:29:27 -07:00
|
|
|
<XNotes :pagination="pagination"/>
|
2020-10-17 05:12:00 -06:00
|
|
|
</XColumn>
|
2020-07-10 19:13:11 -06:00
|
|
|
</template>
|
|
|
|
|
2022-01-12 10:29:27 -07:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2020-07-10 19:13:11 -06:00
|
|
|
import XColumn from './column.vue';
|
2021-11-11 10:02:25 -07:00
|
|
|
import XNotes from '@/components/notes.vue';
|
2022-03-20 12:11:14 -06:00
|
|
|
import { Column } from './deck-store';
|
2020-07-10 19:13:11 -06:00
|
|
|
|
2022-03-20 12:11:14 -06:00
|
|
|
defineProps<{
|
|
|
|
column: Column;
|
2022-01-12 10:29:27 -07:00
|
|
|
isStacked: boolean;
|
|
|
|
}>();
|
2020-07-10 19:13:11 -06:00
|
|
|
|
2022-03-20 12:11:14 -06:00
|
|
|
const emit = defineEmits<{
|
2022-05-19 02:35:43 -06:00
|
|
|
(ev: 'parent-focus', direction: 'up' | 'down' | 'left' | 'right'): void;
|
2022-03-20 12:11:14 -06:00
|
|
|
}>();
|
|
|
|
|
2022-01-12 10:29:27 -07:00
|
|
|
const pagination = {
|
|
|
|
endpoint: 'notes/mentions' as const,
|
|
|
|
limit: 10,
|
|
|
|
};
|
2020-07-10 19:13:11 -06:00
|
|
|
</script>
|