* Rewrite Parity * Update SEO, fix modals, add dashes to changelog * Edit create version title * Cache tags, SEO for search/partial noscript support, notifications fix * Deploy? * Fix vercel config * Fix it again * Finish user editing * Remove broken docker build * Switch reports to modals * Update project card * Navbar line animation in most places * Add chips * Move to navlink query params * remove autogen file * Add copy code * Fix webkit text box outlines, port report modal * Update error page * Switch to avatar component * Make keyboard nav work * Fix team member spacing * improve project ID display (#676) * Bug fixes * Update OG site title * More fixes * Design tweaks * Fix card wrapping on mobile * Darken light theme color a little * Sidebar navigation for settings, notifications, and moderation * Change follow icon from a heart to a bell * Revert "Change follow icon from a heart to a bell" This reverts commit e30b46ec5d93c57df847be88eba123c7419dd03b. * Change follows icon in settings * AaaaUUUUUUUGghghhhhhhhh * Project sidebar transparent button animations * Update file input button styling and change icon remove button text * Fix environments filter condition being inverted * Remove -> revert * Improve readability of warning banners on light mode * Fix mobile menu button colors * Clean up notifications page more * Creator dashboard and monetization work * Add processing fees declarations and acknowledgement box * Beta badges * Downgrade Nuxt Vercel Builder * Update the style of button groups to be more consistent * More button consistency * Remove desktop navbar on mobile * Update home page progress indicators * Fix page jumping (Thanks @stairman06) * Make checkbox checked style consistent with other selection indicators * More home page updates * Properly reset NavRows * Move filters menu on mobile * Stylized checkbox updated to match active styling * Filters icon * Respect prefers-reduced-motion * Add most backend payouts changes (untested) * Finish tested payouts code * Allow monetization unenrolling * No longer use brand color for active highlights on standard nav elements * More consistent button group on project page * Rounded tables * Fix some things (#716) * Team member fixes + re-add changelog/versions stuff * Remove dummy data * The great CSS refactor * Remove commented out css * Give modals the legacy label styles and update profile edit labels * Fix active chip size * Remove shadow from selected chip * Require email set for CMP * Update styles of notifications to universal-card * Equivalent exchange, trading some jank for some less bad jank * Fix all gallery buttons being missing when there is only 1 image * Update project creation modal * Make beta badge less bright * Beta badge heading styling * Update withdraw processing fees info * Remove redundant label * be * Fix inverted logic * 2% is 0.02 * Add toggle to turn off alpha modpacks banner * Why warning button? * Add more footer links (#719) * Add more footer links * Move twitter * Make items on user pages less comically large and move ad above navigation * Bump text down a little on home page * Update favicon colors * Remove task list package and change default description to use bullet points * I don't remember why I made this important but let's not * Ah, yes * this doesn't actually need to be important * Align items in input groups * Adjust some spacings and clear creation modal on opening * Versions now clickable * Add link to edit page to default description * Improve monetization information text * Make wrapped text inputs not shrink * Make chips work better * smol margin on clear mod message button * Allow non-authenticated users to access settings * Remove settings anchors * Fix versions page button style on firefox * Add advanced rendering toggle * Update slug input and icon card in project edit page * Legal sidebar * h1 at beginning of description no longer has top margin * Use universal card for legal pages * Update email addresses on legal pages * Update various page titles and descriptions for consistency * Various fixes and consolidation to API URL retrieval Prevents a bug where it's possible to generate the tags under one API, switch the API, and still have tags leftover from the old API Also finally fixes staging URL being jank * Make the theme button show regardless of login state Also remove the change theme from the user dropdown because it's very redundant with the several other ways of changing theme * Make mobile profile dropdown ordering consistent with desktop * Change the base url back * Revert "Change the base url back" This reverts commit c1da89fddb83776b39f626eab33c8dc67f8a75e4. * constantize * Tiny fixes (#722) * Box-shadow chip outlines * Show settings when signed out * mods -> projects * space * Beta badge border * Slug input overflow fix, scrollable * 🙈 it will all be okay 🙊 this is just temporary 🙉 😭😭 forgive me * Fix minor bugs * fix moderation page * More fixes * Temp fix for download button * BEGONE TABLES * Fix download button Co-authored-by: Ryan Cao <70191398+ryanccn@users.noreply.github.com> Co-authored-by: Prospector <prospectordev@gmail.com> Co-authored-by: stairman06 <36215135+stairman06@users.noreply.github.com> Co-authored-by: triphora <emmaffle@modrinth.com>
996 lines
29 KiB
Vue
996 lines
29 KiB
Vue
<template>
|
|
<div
|
|
:class="{
|
|
'search-page': true,
|
|
'normal-page': true,
|
|
'alt-layout': $store.state.cosmetics.searchLayout,
|
|
}"
|
|
>
|
|
<aside
|
|
:class="{
|
|
'normal-page__sidebar': true,
|
|
open: sidebarMenuOpen,
|
|
}"
|
|
aria-label="Filters"
|
|
>
|
|
<section class="card filters-card" role="presentation">
|
|
<div
|
|
class="sidebar-menu"
|
|
:class="{ 'sidebar-menu_open': sidebarMenuOpen }"
|
|
>
|
|
<button
|
|
:disabled="
|
|
selectedLicenses.length === 0 &&
|
|
selectedEnvironments.length === 0 &&
|
|
selectedVersions.length === 0 &&
|
|
facets.length === 0 &&
|
|
orFacets.length === 0
|
|
"
|
|
class="iconified-button"
|
|
@click="clearFilters"
|
|
>
|
|
<ClearIcon aria-hidden="true" />
|
|
Clear filters
|
|
</button>
|
|
<section aria-label="Category filters">
|
|
<div v-for="(categories, header) in categoriesMap" :key="header">
|
|
<h3
|
|
v-if="
|
|
categories.filter(
|
|
(x) => x.project_type === projectType.actual
|
|
).length > 0
|
|
"
|
|
class="sidebar-menu-heading"
|
|
>
|
|
{{ $formatCategoryHeader(header) }}
|
|
</h3>
|
|
|
|
<SearchFilter
|
|
v-for="category in categories
|
|
.filter((x) => x.project_type === projectType.actual)
|
|
.sort((a, b) => {
|
|
if (header === 'resolutions') {
|
|
return (
|
|
a.name.replace(/\D/g, '') - b.name.replace(/\D/g, '')
|
|
)
|
|
}
|
|
return 0
|
|
})"
|
|
:key="category.name"
|
|
:active-filters="facets"
|
|
:display-name="$formatCategory(category.name)"
|
|
:facet-name="`categories:'${encodeURIComponent(
|
|
category.name
|
|
)}'`"
|
|
:icon="header === 'resolutions' ? null : category.icon"
|
|
@toggle="toggleFacet"
|
|
/>
|
|
</div>
|
|
</section>
|
|
<section
|
|
v-if="projectType.id !== 'resourcepack'"
|
|
aria-label="Loader filters"
|
|
>
|
|
<h3
|
|
v-if="
|
|
$tag.loaders.filter((x) =>
|
|
x.supported_project_types.includes(projectType.actual)
|
|
).length > 0
|
|
"
|
|
class="sidebar-menu-heading"
|
|
>
|
|
Loaders
|
|
</h3>
|
|
<SearchFilter
|
|
v-for="loader in $tag.loaders.filter((x) => {
|
|
if (
|
|
projectType.id === 'mod' &&
|
|
!showAllLoaders &&
|
|
x.name !== 'forge' &&
|
|
x.name !== 'fabric' &&
|
|
x.name !== 'quilt'
|
|
) {
|
|
return false
|
|
}
|
|
|
|
if (projectType.id === 'mod' && showAllLoaders) {
|
|
return $tag.loaderData.modLoaders.includes(x.name)
|
|
}
|
|
|
|
return projectType.id === 'plugin'
|
|
? $tag.loaderData.pluginLoaders.includes(x.name)
|
|
: x.supported_project_types.includes(projectType.actual)
|
|
})"
|
|
:key="loader.name"
|
|
ref="loaderFilters"
|
|
:active-filters="orFacets"
|
|
:display-name="$formatCategory(loader.name)"
|
|
:facet-name="`categories:'${encodeURIComponent(loader.name)}'`"
|
|
:icon="loader.icon"
|
|
@toggle="toggleOrFacet"
|
|
/>
|
|
<Checkbox
|
|
v-if="projectType.id === 'mod'"
|
|
v-model="showAllLoaders"
|
|
:label="showAllLoaders ? 'Less' : 'More'"
|
|
description="Show all loaders"
|
|
style="margin-bottom: 0.5rem"
|
|
:border="false"
|
|
:collapsing-toggle-style="true"
|
|
/>
|
|
</section>
|
|
<section
|
|
v-if="projectType.id === 'plugin'"
|
|
aria-label="Platform loader filters"
|
|
>
|
|
<h3
|
|
v-if="
|
|
$tag.loaders.filter((x) =>
|
|
x.supported_project_types.includes(projectType.actual)
|
|
).length > 0
|
|
"
|
|
class="sidebar-menu-heading"
|
|
>
|
|
Proxies
|
|
</h3>
|
|
<SearchFilter
|
|
v-for="loader in $tag.loaders.filter((x) =>
|
|
$tag.loaderData.pluginPlatformLoaders.includes(x.name)
|
|
)"
|
|
:key="loader.name"
|
|
ref="platformFilters"
|
|
:active-filters="orFacets"
|
|
:display-name="$formatCategory(loader.name)"
|
|
:facet-name="`categories:'${encodeURIComponent(loader.name)}'`"
|
|
:icon="loader.icon"
|
|
@toggle="toggleOrFacet"
|
|
/>
|
|
</section>
|
|
<section
|
|
v-if="!['resourcepack', 'plugin'].includes(projectType.id)"
|
|
aria-label="Environment filters"
|
|
>
|
|
<h3 class="sidebar-menu-heading">Environments</h3>
|
|
<SearchFilter
|
|
:active-filters="selectedEnvironments"
|
|
display-name="Client"
|
|
facet-name="client"
|
|
@toggle="toggleEnv"
|
|
>
|
|
<ClientSide aria-hidden="true" />
|
|
</SearchFilter>
|
|
<SearchFilter
|
|
:active-filters="selectedEnvironments"
|
|
display-name="Server"
|
|
facet-name="server"
|
|
@toggle="toggleEnv"
|
|
>
|
|
<ServerSide aria-hidden="true" />
|
|
</SearchFilter>
|
|
</section>
|
|
<h3 class="sidebar-menu-heading">Minecraft versions</h3>
|
|
<Checkbox
|
|
v-model="showSnapshots"
|
|
label="Include snapshots"
|
|
description="Include snapshots"
|
|
style="margin-bottom: 0.5rem"
|
|
:border="false"
|
|
/>
|
|
<multiselect
|
|
v-model="selectedVersions"
|
|
:options="
|
|
showSnapshots
|
|
? $tag.gameVersions.map((x) => x.version)
|
|
: $tag.gameVersions
|
|
.filter((it) => it.version_type === 'release')
|
|
.map((x) => x.version)
|
|
"
|
|
:multiple="true"
|
|
:searchable="true"
|
|
:show-no-results="false"
|
|
:close-on-select="false"
|
|
:clear-search-on-select="false"
|
|
:show-labels="false"
|
|
:selectable="() => selectedVersions.length <= 6"
|
|
placeholder="Choose versions..."
|
|
@input="onSearchChange(1)"
|
|
></multiselect>
|
|
<h3 class="sidebar-menu-heading">Licenses</h3>
|
|
<Multiselect
|
|
v-model="selectedLicenses"
|
|
placeholder="Choose licenses..."
|
|
:loading="$tag.licenses.length === 0"
|
|
:options="$tag.licenses.map((x) => x.short.toUpperCase())"
|
|
:multiple="true"
|
|
:searchable="true"
|
|
:close-on-select="false"
|
|
:show-labels="false"
|
|
:allow-empty="true"
|
|
@input="onSearchChange(1)"
|
|
/>
|
|
</div>
|
|
</section>
|
|
</aside>
|
|
<section class="normal-page__content">
|
|
<div
|
|
v-if="
|
|
projectType.id === 'modpack' &&
|
|
$orElse($store.state.cosmetics.modpacksAlphaNotice, true)
|
|
"
|
|
class="card warning"
|
|
aria-label="Warning"
|
|
>
|
|
Modpack support is currently in alpha, and can only be created and
|
|
installed through third party tools. Our documentation includes
|
|
instructions on
|
|
<a
|
|
href="https://docs.modrinth.com/docs/modpacks/playing_modpacks/"
|
|
target="_blank"
|
|
>playing modpacks</a
|
|
>
|
|
with
|
|
<a href="https://atlauncher.com/about" target="_blank">ATLauncher</a>,
|
|
<a href="https://multimc.org/" target="_blank">MultiMC</a>, and
|
|
<a href="https://prismlauncher.org" target="_blank">Prism Launcher</a>.
|
|
Pack creators can reference our documentation on
|
|
<a
|
|
href="https://docs.modrinth.com/docs/modpacks/creating_modpacks/"
|
|
target="_blank"
|
|
>creating modpacks</a
|
|
>. Join us on
|
|
<a href="https://discord.gg/EUHuJHt" target="_blank">Discord</a>
|
|
for support.
|
|
</div>
|
|
<Advertisement
|
|
type="banner"
|
|
small-screen="square"
|
|
ethical-ads-small
|
|
ethical-ads-big
|
|
/>
|
|
<div class="card search-controls">
|
|
<div class="search-filter-container">
|
|
<button
|
|
class="iconified-button sidebar-menu-close-button"
|
|
:class="{ open: sidebarMenuOpen }"
|
|
@click="sidebarMenuOpen = !sidebarMenuOpen"
|
|
>
|
|
<FilterIcon aria-hidden="true" />
|
|
Filters...
|
|
</button>
|
|
<div class="iconified-input">
|
|
<label class="hidden" for="search">Search</label>
|
|
<SearchIcon aria-hidden="true" />
|
|
<input
|
|
id="search"
|
|
v-model="query"
|
|
type="search"
|
|
name="search"
|
|
:placeholder="`Search ${projectType.display}s...`"
|
|
autocomplete="off"
|
|
@input="onSearchChange(1)"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="sort-controls">
|
|
<div class="labeled-control">
|
|
<span class="labeled-control__label">Sort by</span>
|
|
<Multiselect
|
|
v-model="sortType"
|
|
placeholder="Select one"
|
|
class="search-controls__sorting labeled-control__control"
|
|
track-by="display"
|
|
label="display"
|
|
:options="sortTypes"
|
|
:searchable="false"
|
|
:close-on-select="true"
|
|
:show-labels="false"
|
|
:allow-empty="false"
|
|
@input="onSearchChange(1)"
|
|
>
|
|
<template slot="singleLabel" slot-scope="{ option }">{{
|
|
option.display
|
|
}}</template>
|
|
</Multiselect>
|
|
</div>
|
|
<div class="labeled-control">
|
|
<span class="labeled-control__label">Show per page</span>
|
|
<Multiselect
|
|
v-model="maxResults"
|
|
placeholder="Select one"
|
|
class="labeled-control__control"
|
|
:options="[5, 10, 15, 20, 50, 100]"
|
|
:searchable="false"
|
|
:close-on-select="true"
|
|
:show-labels="false"
|
|
:allow-empty="false"
|
|
@input="onSearchChange(currentPage)"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<pagination
|
|
:page="currentPage"
|
|
:count="pageCount"
|
|
:link-function="(x) => getSearchUrl(x <= 1 ? 0 : (x - 1) * maxResults)"
|
|
class="pagination-before"
|
|
@switch-page="onSearchChange"
|
|
></pagination>
|
|
<div class="search-results-container">
|
|
<div v-if="isLoading" class="no-results">
|
|
<LogoAnimated aria-hidden="true" />
|
|
<p>Loading...</p>
|
|
</div>
|
|
<div v-else id="search-results" role="list" aria-label="Search results">
|
|
<SearchResult
|
|
v-for="result in results"
|
|
:id="result.slug ? result.slug : result.project_id"
|
|
:key="result.project_id"
|
|
:type="result.project_type"
|
|
:author="result.author"
|
|
:name="result.title"
|
|
:description="result.description"
|
|
:created-at="result.date_created"
|
|
:updated-at="result.date_modified"
|
|
:downloads="result.downloads.toString()"
|
|
:follows="result.follows.toString()"
|
|
:icon-url="result.icon_url"
|
|
:client-side="result.client_side"
|
|
:server-side="result.server_side"
|
|
:categories="result.display_categories"
|
|
:search="true"
|
|
/>
|
|
<div v-if="results && results.length === 0" class="no-results">
|
|
<p>No results found for your query!</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<pagination
|
|
:page="currentPage"
|
|
:count="pageCount"
|
|
:link-function="(x) => getSearchUrl(x <= 1 ? 0 : (x - 1) * maxResults)"
|
|
class="pagination-after"
|
|
@switch-page="onSearchChangeToTop"
|
|
></pagination>
|
|
</section>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Multiselect from 'vue-multiselect'
|
|
import SearchResult from '~/components/ui/ProjectCard'
|
|
import Pagination from '~/components/ui/Pagination'
|
|
import SearchFilter from '~/components/ui/search/SearchFilter'
|
|
import LogoAnimated from '~/components/ui/search/LogoAnimated'
|
|
import Checkbox from '~/components/ui/Checkbox'
|
|
|
|
import ClientSide from '~/assets/images/categories/client.svg?inline'
|
|
import ServerSide from '~/assets/images/categories/server.svg?inline'
|
|
|
|
import SearchIcon from '~/assets/images/utils/search.svg?inline'
|
|
import ClearIcon from '~/assets/images/utils/clear.svg?inline'
|
|
import FilterIcon from '~/assets/images/utils/filter.svg?inline'
|
|
|
|
import Advertisement from '~/components/ads/Advertisement'
|
|
|
|
export default {
|
|
auth: false,
|
|
components: {
|
|
Advertisement,
|
|
SearchResult,
|
|
Pagination,
|
|
Multiselect,
|
|
SearchFilter,
|
|
Checkbox,
|
|
ClientSide,
|
|
ServerSide,
|
|
SearchIcon,
|
|
ClearIcon,
|
|
FilterIcon,
|
|
LogoAnimated,
|
|
},
|
|
data() {
|
|
return {
|
|
query: '',
|
|
|
|
selectedLicenses: [],
|
|
|
|
showSnapshots: false,
|
|
selectedVersions: [],
|
|
|
|
selectedEnvironments: [],
|
|
|
|
facets: [],
|
|
orFacets: [],
|
|
results: null,
|
|
pageCount: 1,
|
|
currentPage: 1,
|
|
|
|
projectType: { id: 'mod', display: 'mod', actual: 'mod' },
|
|
|
|
sortTypes: [
|
|
{ display: 'Relevance', name: 'relevance' },
|
|
{ display: 'Download count', name: 'downloads' },
|
|
{ display: 'Follow count', name: 'follows' },
|
|
{ display: 'Recently created', name: 'newest' },
|
|
{ display: 'Recently updated', name: 'updated' },
|
|
],
|
|
sortType: { display: 'Relevance', name: 'relevance' },
|
|
|
|
maxResults: 20,
|
|
|
|
sidebarMenuOpen: false,
|
|
showAllLoaders: false,
|
|
|
|
skipLink: '#search-results',
|
|
|
|
isLoading: true,
|
|
}
|
|
},
|
|
async fetch() {
|
|
if (this.$route.query.q) this.query = this.$route.query.q
|
|
if (this.$route.query.f) {
|
|
const facets = this.$route.query.f.split(',')
|
|
|
|
for (const facet of facets) await this.toggleFacet(facet, true)
|
|
}
|
|
if (this.$route.query.g) {
|
|
const orFacets = this.$route.query.g.split(',')
|
|
|
|
for (const orFacet of orFacets) await this.toggleOrFacet(orFacet, true)
|
|
}
|
|
if (this.$route.query.v)
|
|
this.selectedVersions = this.$route.query.v.split(',')
|
|
if (this.$route.query.l)
|
|
this.selectedLicenses = this.$route.query.l.split(',')
|
|
if (this.$route.query.h) this.showSnapshots = this.$route.query.h === 'true'
|
|
if (this.$route.query.e)
|
|
this.selectedEnvironments = this.$route.query.e.split(',')
|
|
if (this.$route.query.s) {
|
|
this.sortType.name = this.$route.query.s
|
|
|
|
switch (this.sortType.name) {
|
|
case 'relevance':
|
|
this.sortType.display = 'Relevance'
|
|
break
|
|
case 'downloads':
|
|
this.sortType.display = 'Downloads'
|
|
break
|
|
case 'newest':
|
|
this.sortType.display = 'Recently created'
|
|
break
|
|
case 'updated':
|
|
this.sortType.display = 'Recently updated'
|
|
break
|
|
case 'follows':
|
|
this.sortType.display = 'Follow count'
|
|
break
|
|
}
|
|
}
|
|
if (this.$route.query.m) {
|
|
this.maxResults = this.$route.query.m
|
|
}
|
|
if (this.$route.query.o)
|
|
this.currentPage = Math.ceil(this.$route.query.o / this.maxResults) + 1
|
|
|
|
this.projectType = this.$tag.projectTypes.find(
|
|
(x) => x.id === this.$route.name.substring(0, this.$route.name.length - 1)
|
|
)
|
|
|
|
await this.onSearchChange(this.currentPage)
|
|
|
|
this.isLoading = false
|
|
},
|
|
head() {
|
|
const name = this.$route.name.substring(0, this.$route.name.length - 1)
|
|
|
|
return {
|
|
title: `Search ${this.$formatProjectType(name)}s - Modrinth`,
|
|
meta: [
|
|
{
|
|
hid: 'apple-mobile-web-app-title',
|
|
name: 'apple-mobile-web-app-title',
|
|
content: `Search ${this.$formatProjectType(name)}s`,
|
|
},
|
|
{
|
|
hid: 'og:title',
|
|
name: 'og:title',
|
|
content: `Search ${this.$formatProjectType(name)}s`,
|
|
},
|
|
{
|
|
hid: 'description',
|
|
name: 'description',
|
|
content: `Search and browse thousands of Minecraft ${name}s on Modrinth with instant, accurate search results. Our filters help you quickly find the best Minecraft ${name}s.\n`,
|
|
},
|
|
],
|
|
}
|
|
},
|
|
computed: {
|
|
categoriesMap() {
|
|
const categories = {}
|
|
|
|
for (const category of this.$tag.categories) {
|
|
if (categories[category.header]) {
|
|
categories[category.header].push(category)
|
|
} else {
|
|
categories[category.header] = [category]
|
|
}
|
|
}
|
|
|
|
const newVals = Object.keys(categories)
|
|
.sort()
|
|
.reduce((obj, key) => {
|
|
obj[key] = categories[key]
|
|
return obj
|
|
}, {})
|
|
|
|
for (const header of Object.keys(categories)) {
|
|
newVals[header].sort((a, b) => a.name.localeCompare(b.name))
|
|
}
|
|
|
|
return newVals
|
|
},
|
|
},
|
|
watch: {
|
|
'$route.path': {
|
|
async handler() {
|
|
this.isLoading = true
|
|
this.projectType = this.$tag.projectTypes.find(
|
|
(x) =>
|
|
x.id === this.$route.name.substring(0, this.$route.name.length - 1)
|
|
)
|
|
|
|
this.results = null
|
|
this.pageCount = 1
|
|
this.currentPage = 1
|
|
this.query = ''
|
|
this.maxResults = 20
|
|
this.sortType = { display: 'Relevance', name: 'relevance' }
|
|
this.showAllLoaders = false
|
|
this.sidebarMenuOpen = false
|
|
|
|
await this.clearFilters()
|
|
|
|
this.isLoading = false
|
|
},
|
|
},
|
|
},
|
|
created() {
|
|
// This is currently using the global event bus as I couldn't figure out how to use the local one
|
|
this.$nuxt.$emit('registerSkipLink', {
|
|
id: '#search-results',
|
|
text: 'Skip to Search Results',
|
|
})
|
|
},
|
|
destroyed() {
|
|
// Not sure about this
|
|
this.$nuxt.$emit('registerSkipLink')
|
|
},
|
|
methods: {
|
|
async clearFilters() {
|
|
for (const facet of [...this.facets]) await this.toggleFacet(facet, true)
|
|
for (const facet of [...this.orFacets])
|
|
await this.toggleOrFacet(facet, true)
|
|
|
|
this.selectedLicenses = []
|
|
this.selectedVersions = []
|
|
this.selectedEnvironments = []
|
|
await this.onSearchChange(1)
|
|
},
|
|
async toggleFacet(elementName, doNotSendRequest) {
|
|
const index = this.facets.indexOf(elementName)
|
|
if (index !== -1) {
|
|
this.facets.splice(index, 1)
|
|
} else {
|
|
this.facets.push(elementName)
|
|
}
|
|
|
|
if (!doNotSendRequest) await this.onSearchChange(1)
|
|
},
|
|
async toggleOrFacet(elementName, doNotSendRequest) {
|
|
const index = this.orFacets.indexOf(elementName)
|
|
if (index !== -1) {
|
|
this.orFacets.splice(index, 1)
|
|
} else {
|
|
if (elementName === 'categories:purpur') {
|
|
if (!this.orFacets.includes('categories:paper'))
|
|
this.orFacets.push('categories:paper')
|
|
if (!this.orFacets.includes('categories:spigot'))
|
|
this.orFacets.push('categories:spigot')
|
|
if (!this.orFacets.includes('categories:bukkit'))
|
|
this.orFacets.push('categories:bukkit')
|
|
} else if (elementName === 'categories:paper') {
|
|
if (!this.orFacets.includes('categories:spigot'))
|
|
this.orFacets.push('categories:spigot')
|
|
if (!this.orFacets.includes('categories:bukkit'))
|
|
this.orFacets.push('categories:bukkit')
|
|
} else if (elementName === 'categories:spigot') {
|
|
if (!this.orFacets.includes('categories:bukkit'))
|
|
this.orFacets.push('categories:bukkit')
|
|
} else if (elementName === 'categories:waterfall') {
|
|
if (!this.orFacets.includes('categories:bungeecord'))
|
|
this.orFacets.push('categories:bungeecord')
|
|
}
|
|
this.orFacets.push(elementName)
|
|
}
|
|
|
|
if (!doNotSendRequest) await this.onSearchChange(1)
|
|
},
|
|
async toggleEnv(environment, sendRequest) {
|
|
const index = this.selectedEnvironments.indexOf(environment)
|
|
if (index !== -1) {
|
|
this.selectedEnvironments.splice(index, 1)
|
|
} else {
|
|
this.selectedEnvironments.push(environment)
|
|
}
|
|
|
|
if (!sendRequest) await this.onSearchChange(1)
|
|
},
|
|
async onSearchChangeToTop(newPageNumber) {
|
|
if (process.client) window.scrollTo({ top: 0, behavior: 'smooth' })
|
|
|
|
await this.onSearchChange(newPageNumber)
|
|
},
|
|
async onSearchChange(newPageNumber) {
|
|
this.currentPage = newPageNumber
|
|
|
|
if (this.query === null) return
|
|
|
|
try {
|
|
const params = [
|
|
`limit=${this.maxResults}`,
|
|
`index=${this.sortType.name}`,
|
|
]
|
|
|
|
if (this.query.length > 0) {
|
|
params.push(`query=${this.query.replace(/ /g, '+')}`)
|
|
}
|
|
|
|
if (
|
|
this.facets.length > 0 ||
|
|
this.orFacets.length > 0 ||
|
|
this.selectedVersions.length > 0 ||
|
|
this.selectedEnvironments.length > 0 ||
|
|
this.projectType
|
|
) {
|
|
let formattedFacets = []
|
|
for (const facet of this.facets) {
|
|
formattedFacets.push([facet])
|
|
}
|
|
|
|
// loaders specifier
|
|
if (this.orFacets.length > 0) {
|
|
formattedFacets.push(this.orFacets)
|
|
} else if (this.projectType.id === 'plugin') {
|
|
formattedFacets.push(
|
|
this.$tag.loaderData.allPluginLoaders.map(
|
|
(x) => `categories:'${encodeURIComponent(x)}'`
|
|
)
|
|
)
|
|
} else if (this.projectType.id === 'mod') {
|
|
formattedFacets.push(
|
|
this.$tag.loaderData.modLoaders.map(
|
|
(x) => `categories:'${encodeURIComponent(x)}'`
|
|
)
|
|
)
|
|
}
|
|
|
|
if (this.selectedVersions.length > 0) {
|
|
const versionFacets = []
|
|
for (const facet of this.selectedVersions) {
|
|
versionFacets.push('versions:' + facet)
|
|
}
|
|
formattedFacets.push(versionFacets)
|
|
}
|
|
|
|
if (this.selectedLicenses.length > 0) {
|
|
const licenseFacets = []
|
|
for (const facet of this.selectedLicenses) {
|
|
licenseFacets.push('license:' + facet.toLowerCase())
|
|
}
|
|
formattedFacets.push(licenseFacets)
|
|
}
|
|
|
|
if (this.selectedEnvironments.length > 0) {
|
|
let environmentFacets = []
|
|
|
|
const includesClient = this.selectedEnvironments.includes('client')
|
|
const includesServer = this.selectedEnvironments.includes('server')
|
|
if (includesClient && includesServer) {
|
|
environmentFacets = [
|
|
['client_side:required'],
|
|
['server_side:required'],
|
|
]
|
|
} else {
|
|
if (includesClient) {
|
|
environmentFacets = [
|
|
['client_side:optional', 'client_side:required'],
|
|
['server_side:optional', 'server_side:unsupported'],
|
|
]
|
|
}
|
|
if (includesServer) {
|
|
environmentFacets = [
|
|
['client_side:optional', 'client_side:unsupported'],
|
|
['server_side:optional', 'server_side:required'],
|
|
]
|
|
}
|
|
}
|
|
|
|
formattedFacets = [...formattedFacets, ...environmentFacets]
|
|
}
|
|
|
|
if (this.projectType)
|
|
formattedFacets.push([`project_type:${this.projectType.actual}`])
|
|
|
|
params.push(`facets=${JSON.stringify(formattedFacets)}`)
|
|
}
|
|
|
|
const offset = (newPageNumber - 1) * this.maxResults
|
|
if (newPageNumber !== 1) {
|
|
params.push(`offset=${offset}`)
|
|
}
|
|
|
|
let url = 'search'
|
|
|
|
if (params.length > 0) {
|
|
for (let i = 0; i < params.length; i++) {
|
|
url += i === 0 ? `?${params[i]}` : `&${params[i]}`
|
|
}
|
|
}
|
|
|
|
const res = await this.$axios.get(url, this.$defaultHeaders())
|
|
this.results = res.data.hits
|
|
|
|
this.pageCount = Math.ceil(res.data.total_hits / res.data.limit)
|
|
|
|
if (process.client) {
|
|
url = this.getSearchUrl(offset)
|
|
|
|
await this.$router.replace({ path: url })
|
|
}
|
|
} catch (err) {
|
|
// eslint-disable-next-line no-console
|
|
console.error(err)
|
|
}
|
|
},
|
|
getSearchUrl(offset) {
|
|
const queryItems = []
|
|
|
|
if (this.query) queryItems.push(`q=${encodeURIComponent(this.query)}`)
|
|
if (offset > 0) queryItems.push(`o=${offset}`)
|
|
if (this.facets.length > 0)
|
|
queryItems.push(`f=${encodeURIComponent(this.facets)}`)
|
|
if (this.orFacets.length > 0)
|
|
queryItems.push(`g=${encodeURIComponent(this.orFacets)}`)
|
|
if (this.selectedVersions.length > 0)
|
|
queryItems.push(`v=${encodeURIComponent(this.selectedVersions)}`)
|
|
if (this.selectedLicenses.length > 0)
|
|
queryItems.push(`l=${encodeURIComponent(this.selectedLicenses)}`)
|
|
if (this.showSnapshots) queryItems.push(`h=true`)
|
|
if (this.selectedEnvironments.length > 0)
|
|
queryItems.push(`e=${encodeURIComponent(this.selectedEnvironments)}`)
|
|
if (this.sortType.name !== 'relevance')
|
|
queryItems.push(`s=${encodeURIComponent(this.sortType.name)}`)
|
|
if (this.maxResults !== 20)
|
|
queryItems.push(`m=${encodeURIComponent(this.maxResults)}`)
|
|
|
|
let url = `${this.$route.path}`
|
|
|
|
if (queryItems.length > 0) {
|
|
url += `?${queryItems[0]}`
|
|
|
|
for (let i = 1; i < queryItems.length; i++) {
|
|
url += `&${queryItems[i]}`
|
|
}
|
|
}
|
|
|
|
return url
|
|
},
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
// Mobile-first CSS: search page is grid on mobile...
|
|
.search-page {
|
|
display: grid;
|
|
grid-template-rows: auto;
|
|
grid-template-columns: 100%;
|
|
|
|
// ...and flex on desktop
|
|
@media screen and (min-width: 1024px) {
|
|
display: flex;
|
|
|
|
// Note that the actual flex layout properties come from .normal-page
|
|
}
|
|
}
|
|
|
|
.normal-page__content {
|
|
// Passthrough children as grid items on mobile
|
|
display: contents;
|
|
|
|
@media screen and (min-width: 1024px) {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
// Move the filters "sidebar" on mobile underneath the search card
|
|
.normal-page__sidebar {
|
|
grid-row: 3;
|
|
|
|
// Hide on mobile unless open
|
|
@media screen and (max-width: 1024px) {
|
|
display: none;
|
|
|
|
&.open {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
|
|
.filters-card {
|
|
padding: var(--spacing-card-md);
|
|
|
|
@media screen and (min-width: 1024px) {
|
|
padding: var(--spacing-card-lg);
|
|
}
|
|
}
|
|
|
|
.sidebar-menu {
|
|
display: none;
|
|
}
|
|
|
|
.sidebar-menu_open {
|
|
display: block;
|
|
}
|
|
|
|
.sidebar-menu-heading {
|
|
margin: 1.5rem 0 0.5rem 0;
|
|
}
|
|
|
|
// EthicalAds
|
|
.content-wrapper {
|
|
grid-row: 1;
|
|
}
|
|
|
|
.search-controls {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: var(--spacing-card-md);
|
|
flex-wrap: wrap;
|
|
padding: var(--spacing-card-md);
|
|
grid-row: 2;
|
|
|
|
.search-filter-container {
|
|
display: flex;
|
|
width: 100%;
|
|
align-items: center;
|
|
|
|
.sidebar-menu-close-button {
|
|
max-height: none;
|
|
// match height of the search field
|
|
height: 40px;
|
|
transition: box-shadow 0.1s ease-in-out;
|
|
margin-right: var(--spacing-card-md);
|
|
|
|
&.open {
|
|
color: var(--color-button-text-active);
|
|
background-color: var(--color-brand-highlight);
|
|
box-shadow: inset 0 0 0 transparent, 0 0 0 2px var(--color-brand);
|
|
}
|
|
}
|
|
|
|
.iconified-input {
|
|
flex: 1;
|
|
|
|
input {
|
|
width: 100%;
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.sort-controls {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: var(--spacing-card-md);
|
|
flex-wrap: wrap;
|
|
|
|
.labeled-control {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
|
|
.labeled-control__label {
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.search-controls__sorting {
|
|
min-width: 14rem;
|
|
}
|
|
|
|
.labeled-control__label,
|
|
.labeled-control__control {
|
|
display: block;
|
|
}
|
|
|
|
.pagination-before {
|
|
grid-row: 4;
|
|
}
|
|
|
|
.search-results-container {
|
|
grid-row: 5;
|
|
}
|
|
|
|
.pagination-after {
|
|
grid-row: 6;
|
|
}
|
|
|
|
.no-results {
|
|
text-align: center;
|
|
}
|
|
|
|
@media screen and (min-width: 750px) {
|
|
.search-controls {
|
|
flex-wrap: nowrap;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.sort-controls {
|
|
min-width: fit-content;
|
|
max-width: fit-content;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.labeled-control {
|
|
align-items: center;
|
|
display: flex;
|
|
flex-direction: column !important;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
max-width: fit-content;
|
|
}
|
|
|
|
.labeled-control__label {
|
|
flex-shrink: 0;
|
|
margin-bottom: 0 !important;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 860px) {
|
|
.labeled-control {
|
|
flex-wrap: nowrap !important;
|
|
flex-direction: row !important;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 1024px) {
|
|
.sidebar-menu {
|
|
display: block;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.sidebar-menu-close-button {
|
|
display: none;
|
|
}
|
|
|
|
.labeled-control {
|
|
flex-wrap: wrap !important;
|
|
flex-direction: column !important;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 1100px) {
|
|
.labeled-control {
|
|
flex-wrap: nowrap !important;
|
|
flex-direction: row !important;
|
|
}
|
|
}
|
|
</style>
|