72 lines
1.5 KiB
Vue
72 lines
1.5 KiB
Vue
<template>
|
|
<div class="qkcjvfiv _section">
|
|
<MkButton @click="create" primary class="add"><i class="fas fa-plus"></i> {{ $ts.createList }}</MkButton>
|
|
|
|
<MkPagination :pagination="pagination" #default="{items}" class="lists _content" ref="list">
|
|
<div class="list _panel" v-for="(list, i) in items" :key="list.id">
|
|
<MkA :to="`/my/lists/${ list.id }`">{{ list.name }}</MkA>
|
|
</div>
|
|
</MkPagination>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import MkPagination from '@client/components/ui/pagination.vue';
|
|
import MkButton from '@client/components/ui/button.vue';
|
|
import * as os from '@client/os';
|
|
import * as symbols from '@client/symbols';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
MkPagination,
|
|
MkButton,
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
[symbols.PAGE_INFO]: {
|
|
title: this.$ts.manageLists,
|
|
icon: 'fas fa-list-ul',
|
|
action: {
|
|
icon: 'fas fa-plus',
|
|
handler: this.create
|
|
}
|
|
},
|
|
pagination: {
|
|
endpoint: 'users/lists/list',
|
|
limit: 10,
|
|
},
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
async create() {
|
|
const { canceled, result: name } = await os.dialog({
|
|
title: this.$ts.enterListName,
|
|
input: true
|
|
});
|
|
if (canceled) return;
|
|
await os.api('users/lists/create', { name: name });
|
|
this.$refs.list.reload();
|
|
os.success();
|
|
},
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.qkcjvfiv {
|
|
> .add {
|
|
margin: 0 auto var(--margin) auto;
|
|
}
|
|
|
|
> .lists {
|
|
> .list {
|
|
display: flex;
|
|
padding: 16px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|