2020-01-29 21:37:25 +02:00
|
|
|
<template>
|
2022-06-20 11:38:49 +03:00
|
|
|
<MkStickyContainer>
|
2022-06-22 10:29:21 +03:00
|
|
|
<template #header><MkPageHeader v-model:tab="tab" :actions="headerActions" :tabs="headerTabs"/></template>
|
2022-07-01 17:33:47 +03:00
|
|
|
<div class="lznhrdub">
|
|
|
|
<div v-if="tab === 'featured'">
|
|
|
|
<XFeatured/>
|
|
|
|
</div>
|
2022-07-13 12:09:41 +03:00
|
|
|
<div v-else-if="tab === 'users'">
|
|
|
|
<XUsers/>
|
2022-07-01 17:33:47 +03:00
|
|
|
</div>
|
|
|
|
<div v-else-if="tab === 'search'">
|
2022-07-05 16:40:15 +03:00
|
|
|
<MkSpacer :content-max="1200">
|
|
|
|
<div>
|
2023-01-05 14:04:56 +02:00
|
|
|
<MkInput v-model="searchQuery" :debounce="true" type="search">
|
2022-12-19 12:01:30 +02:00
|
|
|
<template #prefix><i class="ti ti-search"></i></template>
|
2022-07-20 16:24:26 +03:00
|
|
|
<template #label>{{ i18n.ts.searchUser }}</template>
|
2022-07-05 16:40:15 +03:00
|
|
|
</MkInput>
|
2023-01-05 14:04:56 +02:00
|
|
|
<MkRadios v-model="searchOrigin">
|
2022-07-20 16:24:26 +03: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 16:40:15 +03:00
|
|
|
</MkRadios>
|
|
|
|
</div>
|
2021-10-10 09:19:16 +03:00
|
|
|
|
2023-01-05 14:04:56 +02:00
|
|
|
<XUserList v-if="searchQuery" ref="searchEl" class="_margin" :pagination="searchPagination"/>
|
2022-07-05 16:40:15 +03:00
|
|
|
</MkSpacer>
|
2021-10-10 09:19:16 +03:00
|
|
|
</div>
|
2022-07-01 17:33:47 +03:00
|
|
|
</div>
|
2022-06-20 11:38:49 +03:00
|
|
|
</MkStickyContainer>
|
2020-01-29 21:37:25 +02:00
|
|
|
</template>
|
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
<script lang="ts" setup>
|
2022-07-01 17:33:47 +03:00
|
|
|
import { computed, watch } from 'vue';
|
|
|
|
import XFeatured from './explore.featured.vue';
|
|
|
|
import XUsers from './explore.users.vue';
|
2022-09-06 12:21:49 +03:00
|
|
|
import MkFolder from '@/components/MkFolder.vue';
|
2023-01-07 08:09:46 +02:00
|
|
|
import MkInput from '@/components/MkInput.vue';
|
|
|
|
import MkRadios from '@/components/MkRadios.vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import number from '@/filters/number';
|
|
|
|
import * as os from '@/os';
|
2022-06-20 11:38:49 +03:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { instance } from '@/instance';
|
2022-08-30 18:24:33 +03:00
|
|
|
import XUserList from '@/components/MkUserList.vue';
|
2022-06-20 11:38:49 +03:00
|
|
|
|
2023-01-02 06:19:32 +02:00
|
|
|
const props = withDefaults(defineProps<{
|
2022-06-20 11:38:49 +03:00
|
|
|
tag?: string;
|
2023-01-02 06:19:32 +02:00
|
|
|
initialTab?: string;
|
|
|
|
}>(), {
|
|
|
|
initialTab: 'featured',
|
|
|
|
});
|
2022-06-20 11:38:49 +03:00
|
|
|
|
2023-01-02 06:19:32 +02:00
|
|
|
let tab = $ref(props.initialTab);
|
2023-01-03 06:37:32 +02:00
|
|
|
let tagsEl = $shallowRef<InstanceType<typeof MkFolder>>();
|
2022-06-20 11:38:49 +03:00
|
|
|
let searchQuery = $ref(null);
|
|
|
|
let searchOrigin = $ref('combined');
|
|
|
|
|
|
|
|
watch(() => props.tag, () => {
|
|
|
|
if (tagsEl) tagsEl.toggleContent(props.tag == null);
|
|
|
|
});
|
2020-01-29 21:37:25 +02:00
|
|
|
|
2022-06-20 11:38:49 +03: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 17:33:47 +03:00
|
|
|
key: 'featured',
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-bolt',
|
2022-07-01 17:33:47 +03:00
|
|
|
title: i18n.ts.featured,
|
2022-06-20 11:38:49 +03:00
|
|
|
}, {
|
2022-07-13 12:09:41 +03:00
|
|
|
key: 'users',
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-users',
|
2022-07-01 17:33:47 +03:00
|
|
|
title: i18n.ts.users,
|
2022-06-20 11:38:49 +03:00
|
|
|
}, {
|
2022-06-22 10:29:21 +03:00
|
|
|
key: 'search',
|
2022-06-20 11:38:49 +03:00
|
|
|
title: i18n.ts.search,
|
|
|
|
}]);
|
|
|
|
|
|
|
|
definePageMetadata(computed(() => ({
|
|
|
|
title: i18n.ts.explore,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-hash',
|
2022-06-20 11:38:49 +03:00
|
|
|
})));
|
2020-01-29 21:37:25 +02:00
|
|
|
</script>
|