yumechi-no-kuni/packages/client/src/pages/my-clips/index.vue

97 lines
1.9 KiB
Vue
Raw Normal View History

2020-11-14 21:04:54 -06:00
<template>
2021-12-02 05:09:12 -06:00
<MkSpacer :content-max="700">
<div class="qtcaoidl">
<MkButton primary class="add" @click="create"><i class="fas fa-plus"></i> {{ $ts.add }}</MkButton>
2020-11-14 21:04:54 -06:00
<MkPagination v-slot="{items}" ref="pagingComponent" :pagination="pagination" class="list">
2021-04-10 04:17:42 -05:00
<MkA v-for="item in items" :key="item.id" :to="`/clips/${item.id}`" class="item _panel _gap">
2020-11-14 21:34:47 -06:00
<b>{{ item.name }}</b>
<div v-if="item.description" class="description">{{ item.description }}</div>
</MkA>
2020-11-14 21:04:54 -06:00
</MkPagination>
</div>
2021-12-02 05:09:12 -06:00
</MkSpacer>
2020-11-14 21:04:54 -06:00
</template>
<script lang="ts" setup>
import { } from 'vue';
2021-11-11 11:02:25 -06:00
import MkPagination from '@/components/ui/pagination.vue';
import MkButton from '@/components/ui/button.vue';
import * as os from '@/os';
import * as symbols from '@/symbols';
import { i18n } from '@/i18n';
2020-11-14 21:04:54 -06:00
const pagination = {
endpoint: 'clips/list' as const,
limit: 10,
};
2020-11-14 21:04:54 -06:00
const pagingComponent = $ref<InstanceType<typeof MkPagination>>();
2020-11-14 21:04:54 -06:00
async function create() {
const { canceled, result } = await os.form(i18n.ts.createNewClip, {
name: {
type: 'string',
label: i18n.ts.name,
2020-11-14 21:04:54 -06:00
},
description: {
type: 'string',
required: false,
multiline: true,
label: i18n.ts.description,
2020-11-14 21:04:54 -06:00
},
isPublic: {
type: 'boolean',
label: i18n.ts.public,
default: false,
},
});
if (canceled) return;
os.apiWithDialog('clips/create', result);
pagingComponent.reload();
}
function onClipCreated() {
pagingComponent.reload();
}
2020-11-14 21:04:54 -06:00
function onClipDeleted() {
pagingComponent.reload();
}
defineExpose({
[symbols.PAGE_INFO]: {
title: i18n.ts.clip,
icon: 'fas fa-paperclip',
bg: 'var(--bg)',
action: {
icon: 'fas fa-plus',
handler: create
2020-11-14 21:04:54 -06:00
},
},
2020-11-14 21:04:54 -06:00
});
</script>
2020-11-14 21:34:47 -06:00
<style lang="scss" scoped>
.qtcaoidl {
> .add {
margin: 0 auto 16px auto;
}
2021-12-02 05:09:12 -06:00
> .list {
> .item {
display: block;
padding: 16px;
2020-11-14 21:34:47 -06:00
2021-12-02 05:09:12 -06:00
> .description {
margin-top: 8px;
padding-top: 8px;
border-top: solid 0.5px var(--divider);
2020-11-14 21:34:47 -06:00
}
}
}
}
</style>