Added multiple filters
This commit is contained in:
@@ -20,6 +20,11 @@
|
|||||||
--red-500: #dc2626;
|
--red-500: #dc2626;
|
||||||
--red-700: #b60909;
|
--red-700: #b60909;
|
||||||
--green-500: #16a34a;
|
--green-500: #16a34a;
|
||||||
|
--green-700: #15803d;
|
||||||
|
--blue-500: #0ea5e9;
|
||||||
|
--blue-700: #0284c7;
|
||||||
|
--orange-500: #f97316;
|
||||||
|
--orange-700: #c2410c;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
|
|||||||
@@ -50,6 +50,7 @@ whenever(shortcutKeyCombo, () => {
|
|||||||
})
|
})
|
||||||
whenever(eraseKeyCombo, () => {
|
whenever(eraseKeyCombo, () => {
|
||||||
resetQueryValue()
|
resetQueryValue()
|
||||||
|
setSearchMode('query')
|
||||||
isFocused.value = true
|
isFocused.value = true
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -92,9 +93,15 @@ type SearchMode = "query" | MapMarkerGroup;
|
|||||||
|
|
||||||
const currentSearchMode = ref<SearchMode>('query');
|
const currentSearchMode = ref<SearchMode>('query');
|
||||||
|
|
||||||
|
// This should be refactored with better type checking
|
||||||
|
// It does the job for now but will be a pain if I had another feature that uses group sorting
|
||||||
|
const hasGroupFilter = computed(() => {
|
||||||
|
return currentSearchMode.value !== 'query'
|
||||||
|
})
|
||||||
|
|
||||||
const currentLimit = computed(() => {
|
const currentLimit = computed(() => {
|
||||||
if (currentSearchMode.value === "query") return 10
|
if (currentSearchMode.value === "query") return 10
|
||||||
return 20;
|
return 100;
|
||||||
})
|
})
|
||||||
|
|
||||||
function setSearchMode(m: SearchMode) {
|
function setSearchMode(m: SearchMode) {
|
||||||
@@ -121,6 +128,10 @@ function resetQueryValue() {
|
|||||||
<button v-if="hasPlayers" data-to-players class="player-btn" :tabindex="shouldBeActive ? 1 : 0" title="Aller à la position actuelle des joueurs">
|
<button v-if="hasPlayers" data-to-players class="player-btn" :tabindex="shouldBeActive ? 1 : 0" title="Aller à la position actuelle des joueurs">
|
||||||
<i class="pin-icon ph-fill ph-map-pin"></i>
|
<i class="pin-icon ph-fill ph-map-pin"></i>
|
||||||
</button>
|
</button>
|
||||||
|
|
||||||
|
<button v-if="hasGroupFilter" @click="setSearchMode('query')" class="close-btn" title="Enlever le filtre">
|
||||||
|
<i class="ph-light ph-x"></i>
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ul class="search-results" v-if="shouldBeActive">
|
<ul class="search-results" v-if="shouldBeActive">
|
||||||
@@ -137,7 +148,11 @@ function resetQueryValue() {
|
|||||||
<div class="desc" v-html="m.description"></div>
|
<div class="desc" v-html="m.description"></div>
|
||||||
|
|
||||||
<div class="icon" v-if="m.group === 'quests'">
|
<div class="icon" v-if="m.group === 'quests'">
|
||||||
<i class="ph-fill ph-flag"></i>
|
<i class="ph-fill ph-flag-banner"></i>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="icon" v-else-if="m.group === 'landmarks'">
|
||||||
|
<i class="ph-fill ph-castle-turret"></i>
|
||||||
</div>
|
</div>
|
||||||
</button>
|
</button>
|
||||||
</li>
|
</li>
|
||||||
@@ -146,15 +161,58 @@ function resetQueryValue() {
|
|||||||
|
|
||||||
<menu class="tag-list">
|
<menu class="tag-list">
|
||||||
<li>
|
<li>
|
||||||
<button @click="setActiveCategory('quests')">
|
<button
|
||||||
|
@click="setActiveCategory('quests')"
|
||||||
|
class="red"
|
||||||
|
:class="{
|
||||||
|
'active': currentSearchMode === 'quests'
|
||||||
|
}"
|
||||||
|
>
|
||||||
<span class="icon">
|
<span class="icon">
|
||||||
<i class="ph-fill ph-flag-banner"></i>
|
<i v-if="currentSearchMode === 'quests'" class="ph-bold ph-check"></i>
|
||||||
|
<i v-else class="ph-fill ph-flag-banner"></i>
|
||||||
</span>
|
</span>
|
||||||
<span class="label">
|
<span class="label">
|
||||||
Quêtes
|
Quêtes
|
||||||
</span>
|
</span>
|
||||||
</button>
|
</button>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<button
|
||||||
|
@click="setActiveCategory('capitals')"
|
||||||
|
class="blue"
|
||||||
|
:class="{
|
||||||
|
'active': currentSearchMode === 'capitals'
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
<span class="icon">
|
||||||
|
<i v-if="currentSearchMode === 'capitals'" class="ph-bold ph-check"></i>
|
||||||
|
<i v-else class="ph-fill ph-castle-turret"></i>
|
||||||
|
</span>
|
||||||
|
<span class="label">
|
||||||
|
Capitales
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<button
|
||||||
|
@click="setActiveCategory('landmarks')"
|
||||||
|
class="orange"
|
||||||
|
:class="{
|
||||||
|
'active': currentSearchMode === 'landmarks'
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
<span class="icon">
|
||||||
|
<i v-if="currentSearchMode === 'landmarks'" class="ph-bold ph-check"></i>
|
||||||
|
<i v-else class="ph-fill ph-lighthouse"></i>
|
||||||
|
</span>
|
||||||
|
<span class="label">
|
||||||
|
Points d'intérêt
|
||||||
|
</span>
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
</menu>
|
</menu>
|
||||||
</nav>
|
</nav>
|
||||||
</template>
|
</template>
|
||||||
@@ -205,13 +263,11 @@ function resetQueryValue() {
|
|||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.player-btn {
|
.player-btn, .close-btn {
|
||||||
position: relative;
|
position: relative;
|
||||||
isolation: isolate;
|
isolation: isolate;
|
||||||
aspect-ratio: 1 / 1;
|
aspect-ratio: 1 / 1;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
font-size: 1.5em;
|
|
||||||
color: var(--red-500);
|
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
@@ -243,6 +299,30 @@ function resetQueryValue() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.player-btn {
|
||||||
|
font-size: 1.5em;
|
||||||
|
color: var(--red-500);
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
&::before {
|
||||||
|
background-color: var(--slate-300);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:focus-visible {
|
||||||
|
&::before {
|
||||||
|
background-color: var(--slate-200);
|
||||||
|
outline: 1px dotted var(--slate-500);
|
||||||
|
outline: 4px auto var(--slate-900);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.close-btn {
|
||||||
|
font-size: 1.1em;
|
||||||
|
color: var(--slate-500);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.search-results {
|
.search-results {
|
||||||
@@ -270,7 +350,7 @@ function resetQueryValue() {
|
|||||||
position: relative;
|
position: relative;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
padding: .4rem .25em;
|
padding: .4rem .25em;
|
||||||
padding-right: 2.4rem;
|
padding-right: 2.75rem;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
outline-offset: -1px;
|
outline-offset: -1px;
|
||||||
|
|
||||||
@@ -301,7 +381,7 @@ function resetQueryValue() {
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
transform: translateY(-50%);
|
transform: translateY(-50%);
|
||||||
right: .4rem;
|
right: .75rem;
|
||||||
color: var(--slate-400);
|
color: var(--slate-400);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -365,6 +445,8 @@ function resetQueryValue() {
|
|||||||
* TAG LIST
|
* TAG LIST
|
||||||
*/
|
*/
|
||||||
.tag-list {
|
.tag-list {
|
||||||
|
display: flex;
|
||||||
|
gap: .5rem;
|
||||||
margin-top: .5rem;
|
margin-top: .5rem;
|
||||||
|
|
||||||
button {
|
button {
|
||||||
@@ -381,7 +463,8 @@ function resetQueryValue() {
|
|||||||
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
|
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
|
||||||
pointer-events: all;
|
pointer-events: all;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition-property: color, background-color, border-color;
|
outline: .2rem solid transparent;
|
||||||
|
transition-property: color, background-color, border-color, outline-color;
|
||||||
transition-duration: .15s;
|
transition-duration: .15s;
|
||||||
transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
|
transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
|
||||||
|
|
||||||
@@ -389,10 +472,37 @@ function resetQueryValue() {
|
|||||||
font-size: 1.1em;
|
font-size: 1.1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
.label {
|
||||||
color: var(--white);
|
text-underline-offset: .15rem;
|
||||||
background-color: var(--red-500);
|
}
|
||||||
border-color: var(--red-700);
|
|
||||||
|
$colors: 'red', 'blue', 'orange';
|
||||||
|
|
||||||
|
@each $c in $colors {
|
||||||
|
&.#{$c} {
|
||||||
|
&.active {
|
||||||
|
color: var(--white);
|
||||||
|
background-color: var(--#{$c}-500);
|
||||||
|
border-color: var(--#{$c}-700);
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not(.active) {
|
||||||
|
&:hover,
|
||||||
|
&:focus-visible {
|
||||||
|
color: var(--#{$c}-500);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover,
|
||||||
|
&:focus-visible {
|
||||||
|
outline-color: color-mix(in srgb, var(--#{$c}-500) 20%, transparent);
|
||||||
|
border-color: var(--#{$c}-500);
|
||||||
|
|
||||||
|
.label {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user