2020-11-29 04:34:39 +01:00
|
|
|
<template>
|
2022-12-27 06:19:43 +01:00
|
|
|
<MkSpacer :content-max="800">
|
|
|
|
<div class="pages-user-clips">
|
|
|
|
<MkPagination v-slot="{items}" ref="list" :pagination="pagination" class="list">
|
2022-11-15 04:13:04 +01:00
|
|
|
<MkA v-for="item in items" :key="item.id" :to="`/clips/${item.id}`" class="item _panel _gap">
|
2022-12-27 06:19:43 +01:00
|
|
|
<b>{{ item.name }}</b>
|
|
|
|
<div v-if="item.description" class="description">{{ item.description }}</div>
|
2022-11-15 04:13:04 +01:00
|
|
|
</MkA>
|
|
|
|
</MkPagination>
|
2022-12-27 06:19:43 +01:00
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
2020-11-29 04:34:39 +01:00
|
|
|
</template>
|
|
|
|
|
2022-08-31 16:12:22 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed } from 'vue';
|
2022-12-12 04:24:12 +01:00
|
|
|
import * as misskey from 'calckey-js';
|
2022-09-06 11:21:49 +02:00
|
|
|
import MkPagination from '@/components/MkPagination.vue';
|
2020-11-29 04:34:39 +01:00
|
|
|
|
2022-08-31 16:12:22 +02:00
|
|
|
const props = defineProps<{
|
|
|
|
user: misskey.entities.User;
|
|
|
|
}>();
|
2020-11-29 04:34:39 +01:00
|
|
|
|
2022-08-31 16:12:22 +02:00
|
|
|
const pagination = {
|
|
|
|
endpoint: 'users/clips' as const,
|
|
|
|
limit: 20,
|
|
|
|
params: computed(() => ({
|
|
|
|
userId: props.user.id,
|
|
|
|
})),
|
|
|
|
};
|
2020-11-29 04:34:39 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2022-12-27 06:19:43 +01:00
|
|
|
.pages-user-clips {
|
|
|
|
> .list {
|
|
|
|
> .item {
|
|
|
|
display: block;
|
|
|
|
padding: 16px;
|
2020-11-29 04:34:39 +01:00
|
|
|
|
2022-12-27 06:19:43 +01:00
|
|
|
> .description {
|
|
|
|
margin-top: 8px;
|
|
|
|
padding-top: 8px;
|
|
|
|
border-top: solid 0.5px var(--divider);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-29 04:34:39 +01:00
|
|
|
</style>
|