mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-17 17:56:30 +01:00
0144408500
* wip * Update maps.ts * wip * wip * wip * wip * Update base.vue * wip * wip * wip * wip * Update link.vue * wip * wip * wip * wip * wip * wip * wip * wip * wip * Update privacy.vue * wip * wip * wip * wip * Update range.vue * wip * wip * wip * wip * Update profile.vue * wip * Update a.vue * Update index.vue * wip * Update sidebar.vue * wip * wip * Update account-info.vue * Update a.vue * wip * wip * Update sounds.vue * wip * wip * wip * wip * wip * wip * wip * wip * Update account-info.vue * Update account-info.vue * wip * wip * wip * Update d-persimmon.json5 * wip
72 lines
1.3 KiB
Vue
72 lines
1.3 KiB
Vue
<template>
|
|
<div>
|
|
<MkPagination :pagination="pagination" #default="{items}" class="mk-following-or-followers _content" ref="list">
|
|
<div class="users">
|
|
<MkUserInfo class="user" v-for="user in items.map(x => type === 'following' ? x.followee : x.follower)" :user="user" :key="user.id"/>
|
|
</div>
|
|
</MkPagination>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import MkUserInfo from '@/components/user-info.vue';
|
|
import MkPagination from '@/components/ui/pagination.vue';
|
|
import { userPage, acct } from '../../filters/user';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
MkPagination,
|
|
MkUserInfo,
|
|
},
|
|
|
|
props: {
|
|
user: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
type: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
pagination: {
|
|
endpoint: () => this.type === 'following' ? 'users/following' : 'users/followers',
|
|
limit: 20,
|
|
params: {
|
|
userId: this.user.id,
|
|
}
|
|
},
|
|
};
|
|
},
|
|
|
|
watch: {
|
|
type() {
|
|
this.$refs.list.reload();
|
|
},
|
|
|
|
user() {
|
|
this.$refs.list.reload();
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
userPage,
|
|
|
|
acct
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.mk-following-or-followers {
|
|
> .users {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
|
|
grid-gap: var(--margin);
|
|
}
|
|
}
|
|
</style>
|