2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkStickyContainer>
|
2022-06-22 09:29:21 +02:00
|
|
|
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
2022-07-01 16:33:47 +02:00
|
|
|
<div class="lznhrdub">
|
|
|
|
<div v-if="tab === 'featured'">
|
|
|
|
<XFeatured/>
|
|
|
|
</div>
|
2022-07-13 11:09:41 +02:00
|
|
|
<div v-else-if="tab === 'users'">
|
|
|
|
<XUsers/>
|
2022-07-01 16:33:47 +02:00
|
|
|
</div>
|
|
|
|
<div v-else-if="tab === 'search'">
|
2022-07-05 15:40:15 +02:00
|
|
|
<MkSpacer :content-max="1200">
|
|
|
|
<div>
|
|
|
|
<MkInput v-model="searchQuery" :debounce="true" type="search" class="_formBlock">
|
|
|
|
<template #prefix><i class="fas fa-search"></i></template>
|
2022-07-20 15:24:26 +02:00
|
|
|
<template #label>{{ i18n.ts.searchUser }}</template>
|
2022-07-05 15:40:15 +02:00
|
|
|
</MkInput>
|
|
|
|
<MkRadios v-model="searchOrigin" class="_formBlock">
|
2022-07-20 15:24:26 +02:00
|
|
|
<option value="combined">{{ i18n.ts.all }}</option>
|
|
|
|
<option value="local">{{ i18n.ts.local }}</option>
|
|
|
|
<option value="remote">{{ i18n.ts.remote }}</option>
|
2022-07-05 15:40:15 +02:00
|
|
|
</MkRadios>
|
|
|
|
</div>
|
2021-10-10 08:19:16 +02:00
|
|
|
|
2022-07-05 15:40:15 +02:00
|
|
|
<XUserList v-if="searchQuery" ref="searchEl" class="_gap" :pagination="searchPagination"/>
|
|
|
|
</MkSpacer>
|
2021-10-10 08:19:16 +02:00
|
|
|
</div>
|
2022-07-01 16:33:47 +02:00
|
|
|
</div>
|
2022-06-20 10:38:49 +02:00
|
|
|
</MkStickyContainer>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
<script lang="ts" setup>
|
2022-07-01 16:33:47 +02:00
|
|
|
import { computed, watch } from 'vue';
|
|
|
|
import XFeatured from './explore.featured.vue';
|
|
|
|
import XUsers from './explore.users.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import MkFolder from '@/components/ui/folder.vue';
|
|
|
|
import MkInput from '@/components/form/input.vue';
|
|
|
|
import MkRadios from '@/components/form/radios.vue';
|
|
|
|
import number from '@/filters/number';
|
|
|
|
import * as os from '@/os';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { instance } from '@/instance';
|
2022-08-30 17:24:33 +02:00
|
|
|
import XUserList from '@/components/MkUserList.vue';
|
2022-06-20 10:38:49 +02:00
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
tag?: string;
|
|
|
|
}>();
|
|
|
|
|
2022-07-01 16:33:47 +02:00
|
|
|
let tab = $ref('featured');
|
2022-06-20 10:38:49 +02:00
|
|
|
let tagsEl = $ref<InstanceType<typeof MkFolder>>();
|
|
|
|
let searchQuery = $ref(null);
|
|
|
|
let searchOrigin = $ref('combined');
|
|
|
|
|
|
|
|
watch(() => props.tag, () => {
|
|
|
|
if (tagsEl) tagsEl.toggleContent(props.tag == null);
|
|
|
|
});
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const searchPagination = {
|
|
|
|
endpoint: 'users/search' as const,
|
|
|
|
limit: 10,
|
|
|
|
params: computed(() => (searchQuery && searchQuery !== '') ? {
|
|
|
|
query: searchQuery,
|
|
|
|
origin: searchOrigin,
|
|
|
|
} : null),
|
|
|
|
};
|
|
|
|
|
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => [{
|
2022-07-01 16:33:47 +02:00
|
|
|
key: 'featured',
|
|
|
|
icon: 'fas fa-bolt',
|
|
|
|
title: i18n.ts.featured,
|
2022-06-20 10:38:49 +02:00
|
|
|
}, {
|
2022-07-13 11:09:41 +02:00
|
|
|
key: 'users',
|
2022-07-01 16:33:47 +02:00
|
|
|
icon: 'fas fa-users',
|
|
|
|
title: i18n.ts.users,
|
2022-06-20 10:38:49 +02:00
|
|
|
}, {
|
2022-06-22 09:29:21 +02:00
|
|
|
key: 'search',
|
2022-06-20 10:38:49 +02:00
|
|
|
title: i18n.ts.search,
|
|
|
|
}]);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: i18n.ts.explore,
|
|
|
|
icon: 'fas fa-hashtag',
|
|
|
|
})));
|
2020-01-29 20:37:25 +01:00
|
|
|
</script>
|