60 lines
1.1 KiB
Vue
60 lines
1.1 KiB
Vue
<template>
|
|
<MkSpacer :content-max="800">
|
|
<div class="pages-user-clips">
|
|
<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" setup>
|
|
import { computed } from "vue";
|
|
import * as misskey from "calckey-js";
|
|
import MkPagination from "@/components/MkPagination.vue";
|
|
|
|
const props = defineProps<{
|
|
user: misskey.entities.User;
|
|
}>();
|
|
|
|
const pagination = {
|
|
endpoint: "users/clips" as const,
|
|
limit: 20,
|
|
params: computed(() => ({
|
|
userId: props.user.id,
|
|
})),
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.pages-user-clips {
|
|
> .list {
|
|
> .item {
|
|
display: block;
|
|
padding: 16px;
|
|
|
|
> .description {
|
|
margin-top: 8px;
|
|
padding-top: 8px;
|
|
border-top: solid 0.5px var(--divider);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|