ameliabooking
/
v3
/
src
/
views
/
admin
/
customize
/
steps
/
Cabinet
/
common
/
parts
/
TimeZoneSelect.vue
ameliabooking
/
v3
/
src
/
views
/
admin
/
customize
/
steps
/
Cabinet
/
common
/
parts
Last commit date
CollapseCard
1 month ago
AppointmentBooking.vue
1 month ago
CancelPopup.vue
1 month ago
DeleteProfile.vue
1 month ago
Filters.vue
1 month ago
PaymentButton.vue
1 month ago
Skeleton.vue
1 month ago
TimeZoneSelect.vue
1 month ago
TimeZoneSelect.vue
47 lines
| 1 | <template> |
| 2 | <AmSelect |
| 3 | v-model="timeZoneSelection" |
| 4 | :filterable="true" |
| 5 | :placeholder="useCurrentTimeZone()" |
| 6 | prefix-icon="globe-watch" |
| 7 | > |
| 8 | <AmOption |
| 9 | v-for="(timeZone, index) in timeZones" |
| 10 | :key="index" |
| 11 | :value="timeZone" |
| 12 | :label="timeZone" |
| 13 | > |
| 14 | {{ timeZone }} |
| 15 | </AmOption> |
| 16 | </AmSelect> |
| 17 | </template> |
| 18 | |
| 19 | <script setup> |
| 20 | // * Import from Vue |
| 21 | import { inject, onBeforeMount, ref } from 'vue' |
| 22 | |
| 23 | // * Composables |
| 24 | import { useCurrentTimeZone } from '../../../../../../../assets/js/common/helper' |
| 25 | |
| 26 | // * _components |
| 27 | import AmOption from '../../../../../../_components/select/AmOption.vue' |
| 28 | import AmSelect from '../../../../../../_components/select/AmSelect.vue' |
| 29 | |
| 30 | const amSettings = inject('settings') |
| 31 | const adminTimeZone = inject('timeZone') |
| 32 | |
| 33 | let timeZoneSelection = ref('') |
| 34 | |
| 35 | const timeZones = ref([]) |
| 36 | |
| 37 | onBeforeMount(() => { |
| 38 | if (!amSettings.general.showClientTimeZone) { |
| 39 | timeZoneSelection.value = adminTimeZone.value |
| 40 | } else { |
| 41 | timeZoneSelection.value = useCurrentTimeZone() |
| 42 | } |
| 43 | }) |
| 44 | </script> |
| 45 | |
| 46 | <style lang="scss"></style> |
| 47 |