- Move map pin icon to right side of input with adjusted spacing - Change button styling from accent to primary color
89 lines
3.5 KiB
Vue
89 lines
3.5 KiB
Vue
<template>
|
|
<div class="flex flex-col gap-3 max-w-md w-full">
|
|
<!-- Row 1: postcode + button -->
|
|
<div class="flex flex-col sm:flex-row gap-3">
|
|
<div class="relative flex-1">
|
|
<label for="postcode-input" class="sr-only">Postcode or city</label>
|
|
<span aria-hidden="true"
|
|
class="absolute right-4 top-1/2 -translate-y-1/2 text-zinc-500 p-4"
|
|
>
|
|
<iconify-icon icon="lucide:map-pin" style="font-size:1.25rem"></iconify-icon>
|
|
</span>
|
|
<input
|
|
id="postcode-input"
|
|
v-model="postcode"
|
|
type="text"
|
|
placeholder="Enter postcode, e.g. SW1A 1AA"
|
|
class="w-full h-14 pr-12 pl-4 bg-white border border-zinc-300 rounded-xl focus:outline-none focus:ring-2 focus:ring-accent shadow-inner text-base"
|
|
@keyup.enter="onSearch"
|
|
/>
|
|
</div>
|
|
<button
|
|
@click="onSearch"
|
|
:disabled="!postcode.trim()"
|
|
class="h-14 px-8 bg-primary text-white rounded-xl font-bold text-base shadow-xl hover:bg-primary-dark transition-all disabled:cursor-not-allowed"
|
|
>
|
|
Find Prices
|
|
</button>
|
|
</div>
|
|
|
|
<!-- Row 2: fuel type + radius + sort -->
|
|
<div class="grid grid-cols-3 gap-2">
|
|
<select
|
|
v-model="fuelType"
|
|
aria-label="Fuel type"
|
|
class="min-w-0 h-10 px-2 bg-white border border-zinc-300 rounded-xl text-sm font-medium text-zinc-700 focus:outline-none focus:ring-2 focus:ring-accent truncate"
|
|
>
|
|
<option value="e10">Petrol (E10)</option>
|
|
<option value="e5">Premium (E5)</option>
|
|
<option value="b7_standard">Diesel (B7)</option>
|
|
<option value="b7_premium">Prem Diesel</option>
|
|
<option value="b10">Diesel (B10)</option>
|
|
<option value="hvo">HVO</option>
|
|
</select>
|
|
<select
|
|
v-model="radius"
|
|
aria-label="Search radius"
|
|
class="min-w-0 h-10 px-2 bg-white border border-zinc-300 rounded-xl text-sm font-medium text-zinc-700 focus:outline-none focus:ring-2 focus:ring-accent"
|
|
>
|
|
<option :value="2">2 miles</option>
|
|
<option :value="5">5 miles</option>
|
|
<option :value="10">10 miles</option>
|
|
<option :value="20">20 miles</option>
|
|
</select>
|
|
<select
|
|
v-model="sort"
|
|
aria-label="Sort by"
|
|
class="min-w-0 h-10 px-2 bg-white border border-zinc-300 rounded-xl text-sm font-medium text-zinc-700 focus:outline-none focus:ring-2 focus:ring-accent"
|
|
>
|
|
<option value="price">Price</option>
|
|
<option value="distance">Distance</option>
|
|
<option value="updated">Updated</option>
|
|
<option value="brand">Brand</option>
|
|
<option value="reliable">Reliable</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue'
|
|
|
|
const emit = defineEmits(['search'])
|
|
|
|
const postcode = ref('')
|
|
const fuelType = ref('e10')
|
|
const radius = ref(10)
|
|
const sort = ref('price')
|
|
|
|
function onSearch() {
|
|
if (!postcode.value.trim()) return
|
|
emit('search', {
|
|
postcode: postcode.value.trim(),
|
|
fuelType: fuelType.value,
|
|
radius: radius.value,
|
|
sort: sort.value,
|
|
})
|
|
}
|
|
</script>
|