1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-23 12:50:16 +00:00
bramw_baserow/web-frontend/modules/database/components/field/FieldDateSubForm.vue

102 lines
3 KiB
Vue

<template>
<div>
<div class="control">
<label class="control__label control__label--small">{{
$t('fieldDateSubForm.dateFormatLabel')
}}</label>
<div class="control__elements">
<Dropdown
v-model="values.date_format"
:class="{ 'dropdown--error': $v.values.date_format.$error }"
@hide="$v.values.date_format.$touch()"
>
<DropdownItem
:name="$t('fieldDateSubForm.dateFormatEuropean') + ' (20/02/2020)'"
value="EU"
></DropdownItem>
<DropdownItem
:name="$t('fieldDateSubForm.dateFormatUS') + ' (02/20/2020)'"
value="US"
></DropdownItem>
<DropdownItem
:name="$t('fieldDateSubForm.dateFormatISO') + ' (2020-02-20)'"
value="ISO"
></DropdownItem>
</Dropdown>
</div>
</div>
<div class="control">
<div class="control__elements">
<Checkbox v-model="values.date_include_time">{{
$t('fieldDateSubForm.includeTimeLabel')
}}</Checkbox>
</div>
</div>
<div v-show="values.date_include_time" class="control">
<label class="control__label control__label--small">{{
$t('fieldDateSubForm.timeFormatLabel')
}}</label>
<div class="control__elements">
<Dropdown
v-model="values.date_time_format"
:class="{ 'dropdown--error': $v.values.date_time_format.$error }"
@hide="$v.values.date_time_format.$touch()"
>
<DropdownItem
:name="$t('fieldDateSubForm.24Hour') + ' (23:00)'"
value="24"
></DropdownItem>
<DropdownItem
:name="$t('fieldDateSubForm.12Hour') + ' (11:00 PM)'"
value="12"
></DropdownItem>
</Dropdown>
</div>
</div>
</div>
</template>
<script>
import { required } from 'vuelidate/lib/validators'
import form from '@baserow/modules/core/mixins/form'
import fieldSubForm from '@baserow/modules/database/mixins/fieldSubForm'
export default {
name: 'FieldDateSubForm',
mixins: [form, fieldSubForm],
data() {
return {
allowedValues: ['date_format', 'date_include_time', 'date_time_format'],
values: {
date_format: 'EU',
date_include_time: false,
date_time_format: '24',
},
}
},
watch: {
'values.date_time_format'(newValue, oldValue) {
// For formula fields date_time_format is nullable, ensure it is set to the
// default otherwise we will be sending nulls to the server.
if (newValue == null) {
this.values.date_time_format = '24'
}
},
'values.date_include_time'(newValue, oldValue) {
// For formula fields date_include_time is nullable, ensure it is set to the
// default otherwise we will be sending nulls to the server.
if (newValue == null) {
this.values.date_include_time = false
}
},
},
validations: {
values: {
date_format: { required },
date_time_format: { required },
},
},
}
</script>