mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-16 08:36:27 +01:00
7199e6f4e0
* Update reaction.vue * fix bug * wip * wip * wjio * wip * Revert "wip" This reverts commit e427f2160adf4e8a4147006e25a89854edab0033. * wip * wip * wip * Update init.ts * Update drive-window.vue * wip * wip * Use PascalCase for components * Use PascalCase for components * update dep * wip * wip * wip * Update init.ts * wip * Update paging.ts * Update test.vue * watch deep * wip * lint * wip * wip * wip * wip * wiop * wip * Update webpack.config.ts * alllow null poll * wip * wip * wip * wiop * UI redesign & refactor (#6714) * wip * wip * wip * wip * wip * Update drive.vue * Update word-mute.vue * wip * wip * wip * clean up * wip * Update default.vue * wip * Update notes.vue * Update mfm.ts * Update index.home.vue * Update post-form.vue * Update post-form-attaches.vue * wip * Update post-form.vue * Update sidebar.vue * wip * wip * Update index.vue * wip * Update default.vue * Update index.vue * Update index.vue * wip * Update post-form-attaches.vue * Update note.vue * wip * clean up * Update notes.vue * wip * wip * Update ja-JP.yml * wip * wip * Update index.vue * wip * wip * wip * wip * wip * wip * wip * wip * Update default.vue * wip * Update _dark.json5 * wip * wip * wip * clean up * wip * wip * Update index.vue * Update test.vue * wip * wip * fix * wip * wip * wip * wip * clena yop * wip * wip * Update store.ts * Update messaging-room.vue * Update default.widgets.vue * fix * wip * wip * Update modal.vue * wip * Update os.ts * Update os.ts * Update deck.vue * Update init.ts * wip * Update ja-JP.yml * v-sizeは単にwindowのresizeを監視するだけで良いかもしれない * Update modal.vue * wip * Update tooltip.ts * wip * wip * wip * wip * wip * Update image-viewer.vue * wip * wip * Update style.scss * Update style.scss * Update visitor.vue * wip * Update init.ts * Update init.ts * wip * wip * Update visitor.vue * Update visitor.vue * Update visitor.vue * Update visitor.vue * wip * wip * Update modal.vue * Update header.vue * Update menu.vue * Update about.vue * Update about-misskey.vue * wip * wip * Update visitor.vue * Update tooltip.ts * wip * Update drive.vue * wip * Update style.scss * Update header.vue * wip * wip * Update users.user.vue * Update announcements.vue * wip * wip * wip * Update emojis.vue * wip * Update emojis.vue * Update style.scss * Update users.vue * wip * Update style.scss * wip * Update welcome.entrance.vue * Update radio.vue * Update size.ts * Update emoji-edit-dialog.vue * wip * Update emojis.vue * wip * Update emojis.vue * Update emojis.vue * Update emojis.vue * wip * wip * wip * wip * Update file-dialog.vue * wip * wip * Update token-generate-window.vue * Update notification-setting-window.vue * wip * wip * Update _error_.vue * Update ja-JP.yml * wip * wip * Update store.ts * Update emojis.vue * Update emojis.vue * Update emojis.vue * Update announcements.vue * Update store.ts * wip * Update page-editor.vue * wip * wip * Update modal.vue * wip * Update select-file.ts * Update timeline.vue * Update emojis.vue * Update os.ts * wip * Update user-select.vue * Update mfm.ts * Update get-file-info.ts * Update drive.vue * Update init.ts * Update mfm.ts * wip * wip * Update window.vue * Update note.vue * wip * wip * Update user-info.vue * wip * wip * wip * wip * wip * Update header.vue * Update header.vue * wip * Update explore.vue * wip * wip * wip * Update webpack.config.ts * wip * wip * wip * wip * wip * wip * Update autocomplete.ts * wip * wip * wip * Update toast.vue * wip * Update post-form-dialog.vue * wip * wip * wip * wip * wip * Update users.vue * wip * Update explore.vue * wip * wip * wip * Update package.json * wip * Update icon-dialog.vue * wip * wip * Update user-preview.ts * wip * wip * wip * wip * wip * Update instance.vue * Update user-name.vue * Update federation.vue * Update instance.vue * wip * wip * Update tag.vue * wip * wip * wip * wip * wip * Update instance.vue * wip * Update os.ts * Update os.ts * wip * wip * wip * Update router.ts * wip * Update init.ts * Update note.vue * Update messages.vue * wip * wip * wip * wip * wip * google * wip * wip * wip * wip * Update theme-editor.vue * wip * wip * Update room.vue * Update channel-editor.vue * wip * Update window.vue * Update window.vue * wip * Update window.vue * Update window.vue * wip * Update menu.vue * wip * wip * wip * wip * Update messaging-room.vue * wip * Update post-form.vue * Update default.widgets.vue * Update window.vue * wip
231 lines
6.6 KiB
Vue
231 lines
6.6 KiB
Vue
<template>
|
|
<div>
|
|
<div class="_section">
|
|
<MkInput v-model:value="query" :debounce="true" type="search"><template #icon><Fa :icon="faSearch"/></template><span>{{ $t('searchUser') }}</span></MkInput>
|
|
|
|
<XUserList v-if="query" class="_vMargin" :pagination="searchPagination" ref="search"/>
|
|
|
|
<div class="localfedi7 _panel _vMargin" v-if="meta && stats && tag == null" :style="{ backgroundImage: meta.bannerUrl ? `url(${meta.bannerUrl})` : null }">
|
|
<header><span>{{ $t('explore', { host: meta.name || 'Misskey' }) }}</span></header>
|
|
<div><span>{{ $t('exploreUsersCount', { count: num(stats.originalUsersCount) }) }}</span></div>
|
|
</div>
|
|
|
|
<template v-if="tag == null">
|
|
<MkFolder class="_vMargin" persist-key="explore-pinned-users">
|
|
<template #header><Fa :icon="faBookmark" fixed-width style="margin-right: 0.5em;"/>{{ $t('pinnedUsers') }}</template>
|
|
<XUserList :pagination="pinnedUsers"/>
|
|
</MkFolder>
|
|
<MkFolder class="_vMargin" persist-key="explore-popular-users">
|
|
<template #header><Fa :icon="faChartLine" fixed-width style="margin-right: 0.5em;"/>{{ $t('popularUsers') }}</template>
|
|
<XUserList :pagination="popularUsers"/>
|
|
</MkFolder>
|
|
<MkFolder class="_vMargin" persist-key="explore-recently-updated-users">
|
|
<template #header><Fa :icon="faCommentAlt" fixed-width style="margin-right: 0.5em;"/>{{ $t('recentlyUpdatedUsers') }}</template>
|
|
<XUserList :pagination="recentlyUpdatedUsers"/>
|
|
</MkFolder>
|
|
<MkFolder class="_vMargin" persist-key="explore-recently-registered-users">
|
|
<template #header><Fa :icon="faPlus" fixed-width style="margin-right: 0.5em;"/>{{ $t('recentlyRegisteredUsers') }}</template>
|
|
<XUserList :pagination="recentlyRegisteredUsers"/>
|
|
</MkFolder>
|
|
</template>
|
|
</div>
|
|
<div class="_section">
|
|
<div class="localfedi7 _panel _vMargin" v-if="tag == null" :style="{ backgroundImage: `url(/assets/fedi.jpg)` }">
|
|
<header><span>{{ $t('exploreFediverse') }}</span></header>
|
|
</div>
|
|
|
|
<MkFolder :body-togglable="true" :expanded="false" ref="tags" class="_vMargin">
|
|
<template #header><Fa :icon="faHashtag" fixed-width style="margin-right: 0.5em;"/>{{ $t('popularTags') }}</template>
|
|
|
|
<div class="vxjfqztj">
|
|
<router-link v-for="tag in tagsLocal" :to="`/explore/tags/${tag.tag}`" :key="'local:' + tag.tag" class="local">{{ tag.tag }}</router-link>
|
|
<router-link v-for="tag in tagsRemote" :to="`/explore/tags/${tag.tag}`" :key="'remote:' + tag.tag">{{ tag.tag }}</router-link>
|
|
</div>
|
|
</MkFolder>
|
|
|
|
<MkFolder v-if="tag != null" :key="`${tag}`" class="_vMargin">
|
|
<template #header><Fa :icon="faHashtag" fixed-width style="margin-right: 0.5em;"/>{{ tag }}</template>
|
|
<XUserList :pagination="tagUsers"/>
|
|
</MkFolder>
|
|
|
|
<template v-if="tag == null">
|
|
<MkFolder class="_vMargin">
|
|
<template #header><Fa :icon="faChartLine" fixed-width style="margin-right: 0.5em;"/>{{ $t('popularUsers') }}</template>
|
|
<XUserList :pagination="popularUsersF"/>
|
|
</MkFolder>
|
|
<MkFolder class="_vMargin">
|
|
<template #header><Fa :icon="faCommentAlt" fixed-width style="margin-right: 0.5em;"/>{{ $t('recentlyUpdatedUsers') }}</template>
|
|
<XUserList :pagination="recentlyUpdatedUsersF"/>
|
|
</MkFolder>
|
|
<MkFolder class="_vMargin">
|
|
<template #header><Fa :icon="faRocket" fixed-width style="margin-right: 0.5em;"/>{{ $t('recentlyDiscoveredUsers') }}</template>
|
|
<XUserList :pagination="recentlyRegisteredUsersF"/>
|
|
</MkFolder>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { computed, defineComponent } from 'vue';
|
|
import { faChartLine, faPlus, faHashtag, faRocket, faSearch } from '@fortawesome/free-solid-svg-icons';
|
|
import { faBookmark, faCommentAlt } from '@fortawesome/free-regular-svg-icons';
|
|
import XUserList from '@/components/user-list.vue';
|
|
import MkFolder from '@/components/ui/folder.vue';
|
|
import MkInput from '@/components/ui/input.vue';
|
|
import number from '@/filters/number';
|
|
import * as os from '@/os';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
XUserList,
|
|
MkFolder,
|
|
MkInput,
|
|
},
|
|
|
|
props: {
|
|
tag: {
|
|
type: String,
|
|
required: false
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
INFO: {
|
|
header: [{
|
|
title: this.$t('explore'),
|
|
icon: faHashtag
|
|
}],
|
|
},
|
|
pinnedUsers: { endpoint: 'pinned-users' },
|
|
popularUsers: { endpoint: 'users', limit: 10, noPaging: true, params: {
|
|
state: 'alive',
|
|
origin: 'local',
|
|
sort: '+follower',
|
|
} },
|
|
recentlyUpdatedUsers: { endpoint: 'users', limit: 10, noPaging: true, params: {
|
|
origin: 'local',
|
|
sort: '+updatedAt',
|
|
} },
|
|
recentlyRegisteredUsers: { endpoint: 'users', limit: 10, noPaging: true, params: {
|
|
origin: 'local',
|
|
state: 'alive',
|
|
sort: '+createdAt',
|
|
} },
|
|
popularUsersF: { endpoint: 'users', limit: 10, noPaging: true, params: {
|
|
state: 'alive',
|
|
origin: 'remote',
|
|
sort: '+follower',
|
|
} },
|
|
recentlyUpdatedUsersF: { endpoint: 'users', limit: 10, noPaging: true, params: {
|
|
origin: 'combined',
|
|
sort: '+updatedAt',
|
|
} },
|
|
recentlyRegisteredUsersF: { endpoint: 'users', limit: 10, noPaging: true, params: {
|
|
origin: 'combined',
|
|
sort: '+createdAt',
|
|
} },
|
|
searchPagination: {
|
|
endpoint: 'users/search',
|
|
limit: 10,
|
|
params: computed(() => (this.query && this.query !== '') ? {
|
|
query: this.query
|
|
} : null)
|
|
},
|
|
tagsLocal: [],
|
|
tagsRemote: [],
|
|
stats: null,
|
|
query: null,
|
|
num: number,
|
|
faBookmark, faChartLine, faCommentAlt, faPlus, faHashtag, faRocket, faSearch,
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
meta() {
|
|
return this.$store.state.instance.meta;
|
|
},
|
|
tagUsers(): any {
|
|
return {
|
|
endpoint: 'hashtags/users',
|
|
limit: 30,
|
|
params: {
|
|
tag: this.tag,
|
|
origin: 'combined',
|
|
sort: '+follower',
|
|
}
|
|
};
|
|
},
|
|
},
|
|
|
|
watch: {
|
|
tag() {
|
|
if (this.$refs.tags) this.$refs.tags.toggleContent(this.tag == null);
|
|
},
|
|
},
|
|
|
|
created() {
|
|
os.api('hashtags/list', {
|
|
sort: '+attachedLocalUsers',
|
|
attachedToLocalUserOnly: true,
|
|
limit: 30
|
|
}).then(tags => {
|
|
this.tagsLocal = tags;
|
|
});
|
|
os.api('hashtags/list', {
|
|
sort: '+attachedRemoteUsers',
|
|
attachedToRemoteUserOnly: true,
|
|
limit: 30
|
|
}).then(tags => {
|
|
this.tagsRemote = tags;
|
|
});
|
|
os.api('stats').then(stats => {
|
|
this.stats = stats;
|
|
});
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.localfedi7 {
|
|
color: #fff;
|
|
padding: 16px;
|
|
height: 80px;
|
|
background-position: 50%;
|
|
background-size: cover;
|
|
margin-bottom: var(--margin);
|
|
|
|
> * {
|
|
&:not(:last-child) {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
> span {
|
|
display: inline-block;
|
|
padding: 6px 8px;
|
|
background: rgba(0, 0, 0, 0.7);
|
|
}
|
|
}
|
|
|
|
> header {
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
> div {
|
|
font-size: 14px;
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
|
|
.vxjfqztj {
|
|
> * {
|
|
margin-right: 16px;
|
|
|
|
&.local {
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|
|
</style>
|