2022-07-20 13:24:26 +00:00
|
|
|
<template>
|
|
|
|
<MkStickyContainer>
|
2022-06-20 08:38:49 +00:00
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
2023-05-19 11:52:15 +00:00
|
|
|
<MkSpacer :contentMax="700">
|
2023-05-27 02:35:26 +00:00
|
|
|
<div class="_gaps">
|
|
|
|
<MkButton primary rounded style="margin: 0 auto;" @click="create"><i class="ti ti-plus"></i> {{ i18n.ts.createList }}</MkButton>
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-05-27 02:35:26 +00:00
|
|
|
<MkPagination v-slot="{items}" ref="pagingComponent" :pagination="pagination">
|
|
|
|
<div class="_gaps">
|
|
|
|
<MkA v-for="list in items" :key="list.id" class="_panel" :class="$style.list" :to="`/my/lists/${ list.id }`">
|
|
|
|
<div style="margin-bottom: 4px;">{{ list.name }}</div>
|
|
|
|
<MkAvatars :userIds="list.userIds"/>
|
|
|
|
</MkA>
|
|
|
|
</div>
|
2022-07-20 13:24:26 +00:00
|
|
|
</MkPagination>
|
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-15 07:40:15 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkPagination from '@/components/MkPagination.vue';
|
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import MkAvatars from '@/components/MkAvatars.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import * as os from '@/os';
|
2022-01-15 07:40:15 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 08:38:49 +00:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2023-03-24 07:58:57 +00:00
|
|
|
import { userListsCache } from '@/cache';
|
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-15 07:40:15 +00:00
|
|
|
const pagination = {
|
|
|
|
endpoint: 'users/lists/list' as const,
|
2023-04-08 23:03:29 +00:00
|
|
|
noPaging: true,
|
2022-01-15 07:40:15 +00:00
|
|
|
limit: 10,
|
|
|
|
};
|
|
|
|
|
|
|
|
async function create() {
|
|
|
|
const { canceled, result: name } = await os.inputText({
|
2022-01-28 02:39:49 +00:00
|
|
|
title: i18n.ts.enterListName,
|
2022-01-15 07:40:15 +00:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
await os.apiWithDialog('users/lists/create', { name: name });
|
2023-03-24 07:58:57 +00:00
|
|
|
userListsCache.delete();
|
2022-01-15 07:40:15 +00:00
|
|
|
pagingComponent.reload();
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.manageLists,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-list',
|
2022-06-20 08:38:49 +00:00
|
|
|
action: {
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-plus',
|
2022-06-20 08:38:49 +00:00
|
|
|
handler: create,
|
2022-01-15 07:40:15 +00:00
|
|
|
},
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-05-27 02:35:26 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.list {
|
|
|
|
display: block;
|
|
|
|
padding: 16px;
|
|
|
|
border: solid 1px var(--divider);
|
|
|
|
border-radius: 6px;
|
|
|
|
margin-bottom: 8px;
|
2021-08-10 15:21:24 +00:00
|
|
|
|
2023-05-27 02:35:26 +00:00
|
|
|
&:hover {
|
|
|
|
border: solid 1px var(--accent);
|
|
|
|
text-decoration: none;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|