Ocelot-Social/webapp/components/Select/LocationSelect.vue
mahula 51564e5d9b
refactor(webapp): make group form's location select available as a separate component (#6245)
* WIP make location select a separate component

* trying ...

* fix update of geolocale from component

* clean up location select code

* refactor code

* refactor code

* clean up

* linting

* add first unit tests for location select

* reuse location setting component in user settings

* get it working

* fix unit test

* Update webapp/components/Select/LocationSelect.vue

Co-authored-by: Wolfgang Huß <wolle.huss@pjannto.com>

* Update webapp/components/Select/LocationSelect.spec.js

Co-authored-by: Wolfgang Huß <wolle.huss@pjannto.com>

* Update webapp/components/Select/LocationSelect.spec.js

Co-authored-by: Wolfgang Huß <wolle.huss@pjannto.com>

---------

Co-authored-by: Moriz Wahl <moriz.wahl@gmx.de>
Co-authored-by: ogerly <fridolin@tutanota.com>
Co-authored-by: Wolfgang Huß <wolle.huss@pjannto.com>
2025-05-29 16:58:36 +00:00

119 lines
2.7 KiB
Vue

<template>
<div>
<label class="ds-input-label">
{{ `${$t('settings.data.labelCity')}` }}
<span v-if="locationName">{{ ` ${locationName}` }}</span>
</label>
<ds-select
id="city"
v-model="currentValue"
:options="cities"
icon="map-marker"
:icon-right="null"
:placeholder="$t('settings.data.labelCity') + ' …'"
:loading="loadingGeo"
@input.native="handleCityInput"
/>
<base-button
v-if="locationName !== ''"
icon="close"
ghost
size="small"
style="position: relative; display: inline-block; right: -94%; top: -48px; width: 29px"
@click.native="clearLocationName"
></base-button>
</div>
</template>
<script>
import { queryLocations } from '~/graphql/location'
let timeout
export default {
name: 'LocationSelect',
props: {
value: {
required: true,
},
},
async created() {
const result = await this.requestGeoData(this.locationName)
this.$nextTick(() => {
this.currentValue = result || this.locationName
})
},
data() {
return {
currentValue: this.value,
loadingGeo: false,
cities: [],
}
},
computed: {
locationName() {
return typeof this.value === 'object' ? this.value.value : this.value
},
},
watch: {
currentValue() {
if (this.currentValue !== this.value) {
this.$emit('input', this.currentValue)
}
},
value() {
if (this.value !== this.currentValue) {
this.currentValue = this.value
}
},
},
methods: {
handleCityInput(event) {
clearTimeout(timeout)
timeout = setTimeout(
() => this.requestGeoData(event.target ? event.target.value.trim() : ''),
500,
)
},
processLocationsResult(places) {
if (!places.length) {
return []
}
const result = []
places.forEach((place) => {
result.push({
label: place.place_name,
value: place.place_name,
id: place.id,
})
})
return result
},
async requestGeoData(value) {
if (value === '') {
this.cities = []
return
}
this.loadingGeo = true
const place = encodeURIComponent(value)
const lang = this.$i18n.locale()
const {
data: { queryLocations: result },
} = await this.$apollo.query({ query: queryLocations(), variables: { place, lang } })
this.cities = this.processLocationsResult(result)
this.loadingGeo = false
return this.cities.find((city) => city.value === value)
},
clearLocationName(event) {
event.target.value = ''
this.$emit('input', event.target.value)
},
},
}
</script>