2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2021-12-02 11:09:12 +00:00
|
|
|
<MkSpacer :content-max="700">
|
|
|
|
<div class="qkcjvfiv">
|
|
|
|
<MkButton primary class="add" @click="create"><i class="fas fa-plus"></i> {{ $ts.createList }}</MkButton>
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-15 07:40:15 +00:00
|
|
|
<MkPagination v-slot="{items}" ref="pagingComponent" :pagination="pagination" class="lists _content">
|
2021-12-02 11:09:12 +00:00
|
|
|
<MkA v-for="list in items" :key="list.id" class="list _panel" :to="`/my/lists/${ list.id }`">
|
|
|
|
<div class="name">{{ list.name }}</div>
|
|
|
|
<MkAvatars :user-ids="list.userIds"/>
|
|
|
|
</MkA>
|
|
|
|
</MkPagination>
|
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-15 07:40:15 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import MkPagination from '@/components/ui/pagination.vue';
|
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import MkAvatars from '@/components/avatars.vue';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import * as symbols from '@/symbols';
|
2022-01-15 07:40:15 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-15 07:40:15 +00:00
|
|
|
const pagingComponent = $ref<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,
|
|
|
|
limit: 10,
|
|
|
|
};
|
|
|
|
|
|
|
|
async function create() {
|
|
|
|
const { canceled, result: name } = await os.inputText({
|
|
|
|
title: i18n.locale.enterListName,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
await os.apiWithDialog('users/lists/create', { name: name });
|
|
|
|
pagingComponent.reload();
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-15 07:40:15 +00:00
|
|
|
defineExpose({
|
|
|
|
[symbols.PAGE_INFO]: {
|
|
|
|
title: i18n.locale.manageLists,
|
|
|
|
icon: 'fas fa-list-ul',
|
|
|
|
bg: 'var(--bg)',
|
|
|
|
action: {
|
|
|
|
icon: 'fas fa-plus',
|
|
|
|
handler: create,
|
2020-01-29 19:37:25 +00:00
|
|
|
},
|
2022-01-15 07:40:15 +00:00
|
|
|
},
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.qkcjvfiv {
|
|
|
|
> .add {
|
2020-02-08 06:11:12 +00:00
|
|
|
margin: 0 auto var(--margin) auto;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .lists {
|
|
|
|
> .list {
|
2021-08-10 15:21:24 +00:00
|
|
|
display: block;
|
2020-01-29 19:37:25 +00:00
|
|
|
padding: 16px;
|
2021-08-09 09:01:12 +00:00
|
|
|
border: solid 1px var(--divider);
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border: solid 1px var(--accent);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2021-08-10 15:21:24 +00:00
|
|
|
|
|
|
|
> .name {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|