1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-03 08:29:54 +00:00
bramw_baserow/web-frontend/modules/database/components/row/RowEditFieldBoolean.vue
2021-04-08 14:30:26 +00:00

30 lines
623 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>
</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)
},
},
}
</script>