103 lines
2 KiB
Vue
103 lines
2 KiB
Vue
<template>
|
|
<MkSpacer :content-max="700">
|
|
<div class="qtcaoidl">
|
|
<MkButton primary class="add" @click="create"><i class="fas fa-plus"></i> {{ $ts.add }}</MkButton>
|
|
|
|
<MkPagination v-slot="{items}" ref="list" :pagination="pagination" class="list">
|
|
<MkA v-for="item in items" :key="item.id" :to="`/clips/${item.id}`" class="item _panel _gap">
|
|
<b>{{ item.name }}</b>
|
|
<div v-if="item.description" class="description">{{ item.description }}</div>
|
|
</MkA>
|
|
</MkPagination>
|
|
</div>
|
|
</MkSpacer>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import MkPagination from '@/components/ui/pagination.vue';
|
|
import MkButton from '@/components/ui/button.vue';
|
|
import * as os from '@/os';
|
|
import * as symbols from '@/symbols';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
MkPagination,
|
|
MkButton,
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
[symbols.PAGE_INFO]: {
|
|
title: this.$ts.clip,
|
|
icon: 'fas fa-paperclip',
|
|
bg: 'var(--bg)',
|
|
action: {
|
|
icon: 'fas fa-plus',
|
|
handler: this.create
|
|
}
|
|
},
|
|
pagination: {
|
|
endpoint: 'clips/list' as const,
|
|
limit: 10,
|
|
},
|
|
draft: null,
|
|
};
|
|
},
|
|
|
|
methods: {
|
|
async create() {
|
|
const { canceled, result } = await os.form(this.$ts.createNewClip, {
|
|
name: {
|
|
type: 'string',
|
|
label: this.$ts.name
|
|
},
|
|
description: {
|
|
type: 'string',
|
|
required: false,
|
|
multiline: true,
|
|
label: this.$ts.description
|
|
},
|
|
isPublic: {
|
|
type: 'boolean',
|
|
label: this.$ts.public,
|
|
default: false
|
|
}
|
|
});
|
|
if (canceled) return;
|
|
|
|
os.apiWithDialog('clips/create', result);
|
|
},
|
|
|
|
onClipCreated() {
|
|
this.$refs.list.reload();
|
|
this.draft = null;
|
|
},
|
|
|
|
onClipDeleted() {
|
|
this.$refs.list.reload();
|
|
},
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.qtcaoidl {
|
|
> .add {
|
|
margin: 0 auto 16px auto;
|
|
}
|
|
|
|
> .list {
|
|
> .item {
|
|
display: block;
|
|
padding: 16px;
|
|
|
|
> .description {
|
|
margin-top: 8px;
|
|
padding-top: 8px;
|
|
border-top: solid 0.5px var(--divider);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|