2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
2024-02-13 15:59:27 +00:00
|
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 05:31:52 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2022-07-01 14:33:47 +00:00
|
|
|
<template>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkSpacer :contentMax="1200">
|
2022-07-13 09:09:41 +00:00
|
|
|
<MkTab v-model="origin" style="margin-bottom: var(--margin);">
|
2022-07-20 13:24:26 +00:00
|
|
|
<option value="local">{{ i18n.ts.local }}</option>
|
|
|
|
<option value="remote">{{ i18n.ts.remote }}</option>
|
2022-07-13 09:09:41 +00:00
|
|
|
</MkTab>
|
2022-07-01 14:33:47 +00:00
|
|
|
<div v-if="origin === 'local'">
|
|
|
|
<template v-if="tag == null">
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkFoldableSection class="_margin" persistKey="explore-pinned-users">
|
2023-09-30 22:46:42 +00:00
|
|
|
<template #header><i class="ph-bookmark ph-bold ph-lg ti-fw" style="margin-right: 0.5em;"></i>{{ i18n.ts.pinnedUsers }}</template>
|
2023-02-22 05:43:18 +00:00
|
|
|
<MkUserList :pagination="pinnedUsers"/>
|
2023-01-09 00:41:25 +00:00
|
|
|
</MkFoldableSection>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkFoldableSection class="_margin" persistKey="explore-popular-users">
|
2023-11-03 22:20:53 +00:00
|
|
|
<template #header><i class="ph-chart-line ph-bold ph-lg ti-fw" style="margin-right: 0.5em;"></i>{{ i18n.ts.popularUsers }}</template>
|
2023-02-22 05:43:18 +00:00
|
|
|
<MkUserList :pagination="popularUsers"/>
|
2023-01-09 00:41:25 +00:00
|
|
|
</MkFoldableSection>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkFoldableSection class="_margin" persistKey="explore-recently-updated-users">
|
2023-09-30 22:46:42 +00:00
|
|
|
<template #header><i class="ph-chat-text ph-bold ph-lg ti-fw" style="margin-right: 0.5em;"></i>{{ i18n.ts.recentlyUpdatedUsers }}</template>
|
2023-02-22 05:43:18 +00:00
|
|
|
<MkUserList :pagination="recentlyUpdatedUsers"/>
|
2023-01-09 00:41:25 +00:00
|
|
|
</MkFoldableSection>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkFoldableSection class="_margin" persistKey="explore-recently-registered-users">
|
2023-09-30 19:53:52 +00:00
|
|
|
<template #header><i class="ph-plus ph-bold ph-lg ti-fw" style="margin-right: 0.5em;"></i>{{ i18n.ts.recentlyRegisteredUsers }}</template>
|
2023-02-22 05:43:18 +00:00
|
|
|
<MkUserList :pagination="recentlyRegisteredUsers"/>
|
2023-01-09 00:41:25 +00:00
|
|
|
</MkFoldableSection>
|
2022-07-01 14:33:47 +00:00
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
<div v-else>
|
2023-01-09 00:41:25 +00:00
|
|
|
<MkFoldableSection ref="tagsEl" :foldable="true" :expanded="false" class="_margin">
|
2023-09-30 19:53:52 +00:00
|
|
|
<template #header><i class="ph-hash ph-bold ph-lg ti-fw" style="margin-right: 0.5em;"></i>{{ i18n.ts.popularTags }}</template>
|
2022-07-01 14:33:47 +00:00
|
|
|
|
2023-05-10 08:45:13 +00:00
|
|
|
<div>
|
|
|
|
<MkA v-for="tag in tagsLocal" :key="'local:' + tag.tag" :to="`/user-tags/${tag.tag}`" style="margin-right: 16px; font-weight: bold;">{{ tag.tag }}</MkA>
|
|
|
|
<MkA v-for="tag in tagsRemote" :key="'remote:' + tag.tag" :to="`/user-tags/${tag.tag}`" style="margin-right: 16px;">{{ tag.tag }}</MkA>
|
2022-07-01 14:33:47 +00:00
|
|
|
</div>
|
2023-01-09 00:41:25 +00:00
|
|
|
</MkFoldableSection>
|
2022-07-01 14:33:47 +00:00
|
|
|
|
2023-01-09 00:41:25 +00:00
|
|
|
<MkFoldableSection v-if="tag != null" :key="`${tag}`" class="_margin">
|
2023-09-30 19:53:52 +00:00
|
|
|
<template #header><i class="ph-hash ph-bold ph-lg ti-fw" style="margin-right: 0.5em;"></i>{{ tag }}</template>
|
2023-02-22 05:43:18 +00:00
|
|
|
<MkUserList :pagination="tagUsers"/>
|
2023-01-09 00:41:25 +00:00
|
|
|
</MkFoldableSection>
|
2022-07-01 14:33:47 +00:00
|
|
|
|
|
|
|
<template v-if="tag == null">
|
2023-01-09 00:41:25 +00:00
|
|
|
<MkFoldableSection class="_margin">
|
2023-11-03 22:20:53 +00:00
|
|
|
<template #header><i class="ph-chart-line ph-bold ph-lg ti-fw" style="margin-right: 0.5em;"></i>{{ i18n.ts.popularUsers }}</template>
|
2023-02-22 05:43:18 +00:00
|
|
|
<MkUserList :pagination="popularUsersF"/>
|
2023-01-09 00:41:25 +00:00
|
|
|
</MkFoldableSection>
|
|
|
|
<MkFoldableSection class="_margin">
|
2023-09-30 22:46:42 +00:00
|
|
|
<template #header><i class="ph-chat-text ph-bold ph-lg ti-fw" style="margin-right: 0.5em;"></i>{{ i18n.ts.recentlyUpdatedUsers }}</template>
|
2023-02-22 05:43:18 +00:00
|
|
|
<MkUserList :pagination="recentlyUpdatedUsersF"/>
|
2023-01-09 00:41:25 +00:00
|
|
|
</MkFoldableSection>
|
|
|
|
<MkFoldableSection class="_margin">
|
2023-11-03 22:20:53 +00:00
|
|
|
<template #header><i class="ph-rocket-launch ph-bold ph-lg ti-fw" style="margin-right: 0.5em;"></i>{{ i18n.ts.recentlyDiscoveredUsers }}</template>
|
2023-02-22 05:43:18 +00:00
|
|
|
<MkUserList :pagination="recentlyRegisteredUsersF"/>
|
2023-01-09 00:41:25 +00:00
|
|
|
</MkFoldableSection>
|
2022-07-01 14:33:47 +00:00
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2023-12-07 05:42:09 +00:00
|
|
|
import { watch, ref, shallowRef, computed } from 'vue';
|
2023-12-26 05:19:35 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-02-22 05:43:18 +00:00
|
|
|
import MkUserList from '@/components/MkUserList.vue';
|
2023-01-09 00:41:25 +00:00
|
|
|
import MkFoldableSection from '@/components/MkFoldableSection.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import MkTab from '@/components/MkTab.vue';
|
2024-01-04 09:32:46 +00:00
|
|
|
import { misskeyApi } from '@/scripts/misskey-api.js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { i18n } from '@/i18n.js';
|
2022-07-01 14:33:47 +00:00
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
tag?: string;
|
|
|
|
}>();
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const origin = ref('local');
|
|
|
|
const tagsEl = shallowRef<InstanceType<typeof MkFoldableSection>>();
|
2023-12-26 05:19:35 +00:00
|
|
|
const tagsLocal = ref<Misskey.entities.Hashtag[]>([]);
|
|
|
|
const tagsRemote = ref<Misskey.entities.Hashtag[]>([]);
|
2022-07-01 14:33:47 +00:00
|
|
|
|
|
|
|
watch(() => props.tag, () => {
|
2023-12-07 05:42:09 +00:00
|
|
|
if (tagsEl.value) tagsEl.value.toggleContent(props.tag == null);
|
2022-07-01 14:33:47 +00:00
|
|
|
});
|
|
|
|
|
2023-12-07 05:42:09 +00:00
|
|
|
const tagUsers = computed(() => ({
|
2022-07-01 14:33:47 +00:00
|
|
|
endpoint: 'hashtags/users' as const,
|
|
|
|
limit: 30,
|
|
|
|
params: {
|
|
|
|
tag: props.tag,
|
|
|
|
origin: 'combined',
|
|
|
|
sort: '+follower',
|
|
|
|
},
|
|
|
|
}));
|
|
|
|
|
2023-04-08 23:12:50 +00:00
|
|
|
const pinnedUsers = { endpoint: 'pinned-users', noPaging: true };
|
2022-07-01 14:33:47 +00:00
|
|
|
const popularUsers = { endpoint: 'users', limit: 10, noPaging: true, params: {
|
|
|
|
state: 'alive',
|
|
|
|
origin: 'local',
|
|
|
|
sort: '+follower',
|
|
|
|
} };
|
|
|
|
const recentlyUpdatedUsers = { endpoint: 'users', limit: 10, noPaging: true, params: {
|
|
|
|
origin: 'local',
|
|
|
|
sort: '+updatedAt',
|
|
|
|
} };
|
|
|
|
const recentlyRegisteredUsers = { endpoint: 'users', limit: 10, noPaging: true, params: {
|
|
|
|
origin: 'local',
|
|
|
|
state: 'alive',
|
|
|
|
sort: '+createdAt',
|
|
|
|
} };
|
|
|
|
const popularUsersF = { endpoint: 'users', limit: 10, noPaging: true, params: {
|
|
|
|
state: 'alive',
|
|
|
|
origin: 'remote',
|
|
|
|
sort: '+follower',
|
|
|
|
} };
|
|
|
|
const recentlyUpdatedUsersF = { endpoint: 'users', limit: 10, noPaging: true, params: {
|
|
|
|
origin: 'combined',
|
|
|
|
sort: '+updatedAt',
|
|
|
|
} };
|
|
|
|
const recentlyRegisteredUsersF = { endpoint: 'users', limit: 10, noPaging: true, params: {
|
|
|
|
origin: 'combined',
|
|
|
|
sort: '+createdAt',
|
|
|
|
} };
|
|
|
|
|
2024-01-04 09:32:46 +00:00
|
|
|
misskeyApi('hashtags/list', {
|
2022-07-01 14:33:47 +00:00
|
|
|
sort: '+attachedLocalUsers',
|
|
|
|
attachedToLocalUserOnly: true,
|
|
|
|
limit: 30,
|
|
|
|
}).then(tags => {
|
2023-12-07 05:42:09 +00:00
|
|
|
tagsLocal.value = tags;
|
2022-07-01 14:33:47 +00:00
|
|
|
});
|
2024-01-04 09:32:46 +00:00
|
|
|
misskeyApi('hashtags/list', {
|
2022-07-01 14:33:47 +00:00
|
|
|
sort: '+attachedRemoteUsers',
|
|
|
|
attachedToRemoteUserOnly: true,
|
|
|
|
limit: 30,
|
|
|
|
}).then(tags => {
|
2023-12-07 05:42:09 +00:00
|
|
|
tagsRemote.value = tags;
|
2022-07-01 14:33:47 +00:00
|
|
|
});
|
|
|
|
</script>
|