2020-01-29 21:37:25 +02:00
|
|
|
<template>
|
2021-10-23 22:03:07 +03:00
|
|
|
<div class="qkcjvfiv">
|
|
|
|
<MkButton @click="create" primary class="add"><i class="fas fa-plus"></i> {{ $ts.createList }}</MkButton>
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2021-10-23 22:03:07 +03:00
|
|
|
<MkPagination :pagination="pagination" #default="{items}" class="lists _content" ref="list">
|
|
|
|
<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>
|
2020-01-29 21:37:25 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 14:12:00 +03:00
|
|
|
import { defineComponent } from 'vue';
|
2021-03-23 10:30:14 +02:00
|
|
|
import MkPagination from '@client/components/ui/pagination.vue';
|
|
|
|
import MkButton from '@client/components/ui/button.vue';
|
2021-08-10 18:21:24 +03:00
|
|
|
import MkAvatars from '@client/components/avatars.vue';
|
2021-03-23 10:30:14 +02:00
|
|
|
import * as os from '@client/os';
|
2021-04-10 06:54:12 +03:00
|
|
|
import * as symbols from '@client/symbols';
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2020-10-17 14:12:00 +03:00
|
|
|
export default defineComponent({
|
2020-01-29 21:37:25 +02:00
|
|
|
components: {
|
|
|
|
MkPagination,
|
|
|
|
MkButton,
|
2021-08-10 18:21:24 +03:00
|
|
|
MkAvatars,
|
2020-01-29 21:37:25 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
2021-04-10 06:54:12 +03:00
|
|
|
[symbols.PAGE_INFO]: {
|
2020-12-26 03:47:36 +02:00
|
|
|
title: this.$ts.manageLists,
|
2021-04-20 17:22:59 +03:00
|
|
|
icon: 'fas fa-list-ul',
|
2021-10-09 06:33:08 +03:00
|
|
|
bg: 'var(--bg)',
|
2020-10-17 14:12:00 +03:00
|
|
|
action: {
|
2021-04-20 17:22:59 +03:00
|
|
|
icon: 'fas fa-plus',
|
2020-10-17 14:12:00 +03:00
|
|
|
handler: this.create
|
2021-10-23 22:03:07 +03:00
|
|
|
},
|
2020-10-17 14:12:00 +03:00
|
|
|
},
|
2020-01-29 21:37:25 +02:00
|
|
|
pagination: {
|
|
|
|
endpoint: 'users/lists/list',
|
|
|
|
limit: 10,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
async create() {
|
2020-10-17 14:12:00 +03:00
|
|
|
const { canceled, result: name } = await os.dialog({
|
2020-12-26 03:47:36 +02:00
|
|
|
title: this.$ts.enterListName,
|
2020-01-29 21:37:25 +02:00
|
|
|
input: true
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
2020-10-17 14:12:00 +03:00
|
|
|
await os.api('users/lists/create', { name: name });
|
2020-01-29 21:37:25 +02:00
|
|
|
this.$refs.list.reload();
|
2020-10-17 14:12:00 +03:00
|
|
|
os.success();
|
2020-01-29 21:37:25 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.qkcjvfiv {
|
2021-08-09 12:01:12 +03:00
|
|
|
padding: 16px;
|
|
|
|
|
2020-01-29 21:37:25 +02:00
|
|
|
> .add {
|
2020-02-08 08:11:12 +02:00
|
|
|
margin: 0 auto var(--margin) auto;
|
2020-01-29 21:37:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
> .lists {
|
|
|
|
> .list {
|
2021-08-10 18:21:24 +03:00
|
|
|
display: block;
|
2020-01-29 21:37:25 +02:00
|
|
|
padding: 16px;
|
2021-08-09 12:01:12 +03:00
|
|
|
border: solid 1px var(--divider);
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
border: solid 1px var(--accent);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2021-08-10 18:21:24 +03:00
|
|
|
|
|
|
|
> .name {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
2020-01-29 21:37:25 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|