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