1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-25 13:23:42 +00:00
bramw_baserow/web-frontend/modules/database/components/row/RowEditFieldBoolean.vue
2021-07-11 18:02:37 +00:00

34 lines
722 B
Vue

<template>
<div class="control__elements">
<div
class="field-boolean__checkbox"
:class="{ active: value, 'field-boolean__checkbox--disabled': readOnly }"
@click="toggle(value)"
>
<i class="fas fa-check check"></i>
</div>
<div v-show="touched && !valid" class="error">
{{ error }}
</div>
</div>
</template>
<script>
import rowEditField from '@baserow/modules/database/mixins/rowEditField'
export default {
mixins: [rowEditField],
methods: {
toggle(value) {
if (this.readOnly) {
return
}
const oldValue = !!value
const newValue = !value
this.$emit('update', newValue, oldValue)
this.touch()
},
},
}
</script>