2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2022-07-20 13:24:26 +00:00
|
|
|
<template>
|
|
|
|
<MkStickyContainer>
|
2022-06-20 08:38:49 +00:00
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
2023-05-19 11:52:15 +00:00
|
|
|
<MkSpacer :contentMax="700">
|
2023-05-27 02:35:26 +00:00
|
|
|
<div class="_gaps">
|
2023-07-10 06:55:10 +00:00
|
|
|
<div v-if="items.length === 0" class="empty">
|
|
|
|
<div class="_fullinfo">
|
|
|
|
<img :src="infoImageUrl" class="_ghost"/>
|
|
|
|
<div>{{ i18n.ts.nothing }}</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-09-30 19:53:52 +00:00
|
|
|
<MkButton primary rounded style="margin: 0 auto;" @click="create"><i class="ph-plus ph-bold ph-lg"></i> {{ i18n.ts.createList }}</MkButton>
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-07-10 06:55:10 +00:00
|
|
|
<div v-if="items.length > 0" class="_gaps">
|
|
|
|
<MkA v-for="list in items" :key="list.id" class="_panel" :class="$style.list" :to="`/my/lists/${ list.id }`">
|
2023-07-15 04:53:09 +00:00
|
|
|
<div style="margin-bottom: 4px;">{{ list.name }} <span :class="$style.nUsers">({{ i18n.t('nUsers', { n: `${list.userIds.length}/${$i?.policies['userEachUserListsLimit']}` }) }})</span></div>
|
2023-07-10 06:55:10 +00:00
|
|
|
<MkAvatars :userIds="list.userIds" :limit="10"/>
|
|
|
|
</MkA>
|
|
|
|
</div>
|
2022-07-20 13:24:26 +00:00
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-15 07:40:15 +00:00
|
|
|
<script lang="ts" setup>
|
2023-12-07 05:42:09 +00:00
|
|
|
import { onActivated, computed } from 'vue';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import MkAvatars from '@/components/MkAvatars.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
2023-12-24 07:16:58 +00:00
|
|
|
import { userListsCache } from '@/cache.js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { infoImageUrl } from '@/instance.js';
|
|
|
|
import { $i } from '@/account.js';
|
2023-07-10 06:55:10 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const items = computed(() => userListsCache.value.value ?? []);
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-07-10 06:55:10 +00:00
|
|
|
function fetch() {
|
2023-09-11 05:55:18 +00:00
|
|
|
userListsCache.fetch();
|
2023-07-10 06:55:10 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-07-10 06:55:10 +00:00
|
|
|
fetch();
|
2022-01-15 07:40:15 +00:00
|
|
|
|
|
|
|
async function create() {
|
|
|
|
const { canceled, result: name } = await os.inputText({
|
2022-01-28 02:39:49 +00:00
|
|
|
title: i18n.ts.enterListName,
|
2022-01-15 07:40:15 +00:00
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
await os.apiWithDialog('users/lists/create', { name: name });
|
2023-03-24 07:58:57 +00:00
|
|
|
userListsCache.delete();
|
2023-07-10 06:55:10 +00:00
|
|
|
fetch();
|
2022-01-15 07:40:15 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const headerActions = computed(() => [{
|
2023-07-10 06:55:10 +00:00
|
|
|
asFullButton: true,
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-arrows-counter-clockwise ph-bold ph-lg',
|
2023-07-10 06:55:10 +00:00
|
|
|
text: i18n.ts.reload,
|
|
|
|
handler: () => {
|
|
|
|
userListsCache.delete();
|
|
|
|
fetch();
|
|
|
|
},
|
|
|
|
}]);
|
2022-06-20 08:38:49 +00:00
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const headerTabs = computed(() => []);
|
2022-06-20 08:38:49 +00:00
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.manageLists,
|
2023-11-03 22:20:53 +00:00
|
|
|
icon: 'ph-list ph-bold ph-lg',
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
2023-07-10 06:55:10 +00:00
|
|
|
|
|
|
|
onActivated(() => {
|
|
|
|
fetch();
|
|
|
|
});
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
2023-05-27 02:35:26 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.list {
|
|
|
|
display: block;
|
|
|
|
padding: 16px;
|
|
|
|
border: solid 1px var(--divider);
|
2023-10-31 18:44:34 +00:00
|
|
|
border-radius: var(--radius-sm);
|
2023-05-27 02:35:26 +00:00
|
|
|
margin-bottom: 8px;
|
2021-08-10 15:21:24 +00:00
|
|
|
|
2023-05-27 02:35:26 +00:00
|
|
|
&:hover {
|
|
|
|
border: solid 1px var(--accent);
|
|
|
|
text-decoration: none;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
2023-07-15 04:53:09 +00:00
|
|
|
|
|
|
|
.nUsers {
|
|
|
|
font-size: .9em;
|
|
|
|
opacity: .7;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</style>
|