2022-07-01 16:33:47 +02:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<MkSpacer :content-max="800">
|
|
|
|
<MkTab v-model="tab" style="margin-bottom: var(--margin)">
|
|
|
|
<option value="local">{{ i18n.ts.local }}</option>
|
|
|
|
<option value="remote">{{ i18n.ts.remote }}</option>
|
|
|
|
</MkTab>
|
|
|
|
<XNotes v-if="tab === 'local'" :pagination="paginationForLocal" />
|
|
|
|
<XNotes
|
|
|
|
v-else-if="tab === 'remote'"
|
|
|
|
:pagination="paginationForRemote"
|
|
|
|
/>
|
|
|
|
</MkSpacer>
|
2022-07-01 16:33:47 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import XNotes from "@/components/MkNotes.vue";
|
|
|
|
import MkTab from "@/components/MkTab.vue";
|
|
|
|
import { i18n } from "@/i18n";
|
2022-07-01 16:33:47 +02:00
|
|
|
|
2023-02-12 21:07:07 +01:00
|
|
|
const paginationForLocal = {
|
2023-04-08 02:01:42 +02:00
|
|
|
endpoint: "notes/featured" as const,
|
2022-07-01 16:33:47 +02:00
|
|
|
limit: 10,
|
2023-04-08 02:01:42 +02:00
|
|
|
origin: "local",
|
2022-07-01 16:33:47 +02:00
|
|
|
offsetMode: true,
|
2023-04-07 07:48:07 +02:00
|
|
|
params: {
|
|
|
|
days: 14,
|
2023-04-08 02:01:42 +02:00
|
|
|
},
|
2022-07-01 16:33:47 +02:00
|
|
|
};
|
2022-07-01 16:42:03 +02:00
|
|
|
|
2023-02-12 21:07:07 +01:00
|
|
|
const paginationForRemote = {
|
2023-04-08 02:01:42 +02:00
|
|
|
endpoint: "notes/featured" as const,
|
2023-02-13 00:38:19 +01:00
|
|
|
limit: 20,
|
2022-07-01 16:42:03 +02:00
|
|
|
offsetMode: true,
|
2023-02-12 21:40:47 +01:00
|
|
|
params: {
|
2023-04-08 02:01:42 +02:00
|
|
|
origin: "remote",
|
2023-04-07 07:48:07 +02:00
|
|
|
days: 7,
|
2023-04-08 02:01:42 +02:00
|
|
|
},
|
|
|
|
};
|
2023-02-12 21:07:07 +01:00
|
|
|
|
|
|
|
// const paginationForRemote = {
|
|
|
|
// endpoint: 'notes/polls/recommendation' as const,
|
|
|
|
// limit: 10,
|
|
|
|
// offsetMode: true,
|
|
|
|
// };
|
2022-07-01 16:42:03 +02:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
let tab = $ref("local");
|
2022-07-01 16:33:47 +02:00
|
|
|
</script>
|