mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 23:43:09 +02:00
1f7a81aae7
* update deps
* node16
* wip
* wip
* wip
* Update test-utils.ts
* wip
* Update tsconfig.json
* wip
* Update package.json
* wip
* Update following.vue
* Update followers.vue
* Update index.vue
* Update share.vue
* Update MkUserPopup.vue
* Update MkPostForm.vue
* wip
* Update MkTokenGenerateWindow.vue
* Update MkPagination.vue
* refactor
* update deps
* update deps
* Update sw.ts
* wip
* wip
* wip
* Update FetchInstanceMetadataService.ts
* Update FetchInstanceMetadataService.ts
* update node
* update deps
* 🎨
48 lines
1 KiB
Vue
48 lines
1 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkSpacer :contentMax="700">
|
|
<div>
|
|
<MkPagination v-slot="{items}" ref="list" :pagination="pagination">
|
|
<MkA v-for="item in items" :key="item.id" :to="`/clips/${item.id}`" :class="$style.item" class="_panel _margin">
|
|
<b>{{ item.name }}</b>
|
|
<div v-if="item.description" :class="$style.description">{{ item.description }}</div>
|
|
</MkA>
|
|
</MkPagination>
|
|
</div>
|
|
</MkSpacer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed } from 'vue';
|
|
import * as Misskey from 'misskey-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" module>
|
|
.item {
|
|
display: block;
|
|
padding: 16px;
|
|
}
|
|
|
|
.description {
|
|
margin-top: 8px;
|
|
padding-top: 8px;
|
|
border-top: solid 0.5px var(--divider);
|
|
}
|
|
</style>
|