mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
52 lines
1.8 KiB
Vue
52 lines
1.8 KiB
Vue
<script setup lang="ts">
|
|
import type { InputOption } from '~/types'
|
|
|
|
const { filter, switcher } = storeToRefs(useData())
|
|
const options: InputOption[] = [
|
|
{ label: 'A to Z', value: 'atoz' },
|
|
{ label: 'Score', value: 'score' },
|
|
{ label: 'Anonymity', value: 'anonymity' },
|
|
]
|
|
|
|
const isSearchFocused = ref(false)
|
|
</script>
|
|
|
|
<template>
|
|
<div flex justify-between gap-16px items-centeer>
|
|
<div border-2px flex items-center max-w-320px w-full hover:opacity-100 :class="isSearchFocused ? 'opacity-100' : 'opacity-25'">
|
|
<div px-12px py-0px flex w-fit>
|
|
<UnoIcon
|
|
i-web-search text-16px
|
|
:class="isSearchFocused ? 'opacity-100' : 'opacity-50' "
|
|
class="uno-icon"
|
|
/>
|
|
</div>
|
|
<input
|
|
v-model="filter.query" type="text"
|
|
bg-transparent border-transparent
|
|
focus:border-transparent focus:ring-0
|
|
h-full w-full outline-none @focus="isSearchFocused = true" @blur="isSearchFocused = false"
|
|
>
|
|
</div>
|
|
<div>
|
|
<div flex gap-24px items-center w-full>
|
|
<div gap-12px items-center xl:flex hidden invisible>
|
|
<UnoIcon i-web-list text-16px cursor-pointer hover:opacity-100 :class="switcher ? 'opacity-100' : 'opacity-50'" @click="switcher = true" />
|
|
<UnoIcon i-web-blocks text-16px cursor-pointer hover:opacity-100 :class="!switcher ? 'opacity-100' : 'opacity-50'" @click="switcher = false" />
|
|
</div>
|
|
<div flex gap-12px items-center w-full>
|
|
<h4 xl:block hidden text-16px opacity-50 w-fit>
|
|
Sort by
|
|
</h4>
|
|
<SelectBox v-model="filter.sortby" :black-and-white="false" :options="options" w-99px sm:w-162px text-black :is-margin-top="false" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
div:hover .uno-icon {
|
|
opacity: 1;
|
|
}
|
|
</style>
|