add nova
This commit is contained in:
75
nova/resources/js/fields/Form/BooleanField.vue
Normal file
75
nova/resources/js/fields/Form/BooleanField.vue
Normal file
@@ -0,0 +1,75 @@
|
||||
<template>
|
||||
<DefaultField
|
||||
:field="currentField"
|
||||
:errors="errors"
|
||||
:show-help-text="showHelpText"
|
||||
:full-width-content="fullWidthContent"
|
||||
>
|
||||
<template #field>
|
||||
<Checkbox
|
||||
:disabled="currentlyIsReadonly"
|
||||
:dusk="currentField.uniqueKey"
|
||||
:id="currentField.uniqueKey"
|
||||
:model-value="checked"
|
||||
:name="field.name"
|
||||
@change="toggle"
|
||||
class="mt-2"
|
||||
/>
|
||||
</template>
|
||||
</DefaultField>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { Checkbox } from 'laravel-nova-ui'
|
||||
import { DependentFormField, HandlesValidationErrors } from '@/mixins'
|
||||
|
||||
export default {
|
||||
components: {
|
||||
Checkbox,
|
||||
},
|
||||
|
||||
mixins: [HandlesValidationErrors, DependentFormField],
|
||||
|
||||
methods: {
|
||||
/*
|
||||
* Set the initial value for the field
|
||||
*/
|
||||
setInitialValue() {
|
||||
this.value = this.currentField.value ?? this.value
|
||||
},
|
||||
|
||||
/**
|
||||
* Return the field default value.
|
||||
*/
|
||||
fieldDefaultValue() {
|
||||
return false
|
||||
},
|
||||
|
||||
/**
|
||||
* Provide a function that fills a passed FormData object with the
|
||||
* field's internal value attribute
|
||||
*/
|
||||
fill(formData) {
|
||||
this.fillIfVisible(formData, this.fieldAttribute, this.trueValue)
|
||||
},
|
||||
|
||||
toggle() {
|
||||
this.value = !this.value
|
||||
|
||||
if (this.field) {
|
||||
this.emitFieldValueChange(this.fieldAttribute, this.value)
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
computed: {
|
||||
checked() {
|
||||
return Boolean(this.value)
|
||||
},
|
||||
|
||||
trueValue() {
|
||||
return +this.checked
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user