2021-08-24 09:41:43 -04:00

71 lines
2.8 KiB
Vue

<template lang="pug">
form.container
.row
.col.col-xs-12.col-sm-6.col-md-4.col-lg-3
continent-list(v-model='criteria.continentId' topLabel='Any' @update:modelValue='updateContinent')
.col.col-xs-12.col-sm-6.col-offset-md-2.col-lg-3.col-offset-lg-0
label.jjj-label Seeking Remote Work?
br
.form-check.form-check-inline
input.form-check-input(type='radio' id='remoteNull' name='remoteWork' :checked="criteria.remoteWork === ''"
@click="updateValue('remoteWork', '')")
label.form-check-label(for='remoteNull') No Selection
.form-check.form-check-inline
input.form-check-input(type='radio' id='remoteYes' name='remoteWork' :checked="criteria.remoteWork === 'yes'"
@click="updateValue('remoteWork', 'yes')")
label.form-check-label(for='remoteYes') Yes
.form-check.form-check-inline
input.form-check-input(type='radio' id='remoteNo' name='remoteWork' :checked="criteria.remoteWork === 'no'"
@click="updateValue('remoteWork', 'no')")
label.form-check-label(for='remoteNo') No
.col.col-xs-12.col-sm-6.col-lg-3
.form-floating
input.form-control(type='text' id='skillSearch' placeholder="(free-form text)" :value='criteria.skill'
@input="updateValue('skill', $event.target.value)")
label(for='skillSearch') Skill
.form-text (free-form text)
.col.col-xs-12.col-sm-6.col-lg-3
.form-floating
input.form-control(type='text' id='bioSearch' placeholder="(free-form text)" :value='criteria.bioExperience'
@input="updateValue('bioExperience', $event.target.value)")
label(for='bioSearch') Bio / Experience
.form-text (free-form text)
.row: .col.col-xs-12
br
button.btn.btn-outline-primary(type='submit' @click.prevent="$emit('search')") Search
</template>
<script lang="ts">
import { defineComponent, Ref, ref } from 'vue'
import { ProfileSearch } from '@/api'
import ContinentList from '../ContinentList.vue'
export default defineComponent({
name: 'ProfileSearchForm',
components: { ContinentList },
props: {
modelValue: {
type: Object,
required: true
}
},
emits: ['search', 'update:modelValue'],
setup (props, { emit }) {
/** The initial search criteria passed; this is what we'll update and emit when data changes */
const criteria : Ref<ProfileSearch> = ref({ ...props.modelValue as ProfileSearch })
/** Emit a value update */
const updateValue = (key : string, value : string) => {
criteria.value = { ...criteria.value, [key]: value }
emit('update:modelValue', criteria.value)
}
return {
criteria,
updateContinent: (c : string) => updateValue('continentId', c),
updateValue
}
}
})
</script>