UNPKG

bootstrap-vue

Version:

With more than 85 components, over 45 available plugins, several directives, and 1000+ icons, BootstrapVue provides one of the most comprehensive implementations of the Bootstrap v4 component and grid system available for Vue.js v2.6, complete with extens

113 lines (107 loc) 3.43 kB
import { SLOT_NAME_FIRST } from '../constants/slot-names'; import looseEqual from '../utils/loose-equal'; import normalizeSlotMixin from './normalize-slot'; import { htmlOrText } from '../utils/html'; import { BFormCheckbox } from '../components/form-checkbox/form-checkbox'; import { BFormRadio } from '../components/form-radio/form-radio'; // @vue/component export default { mixins: [normalizeSlotMixin], model: { prop: 'checked', event: 'input' }, props: { validated: { type: Boolean, default: false }, ariaInvalid: { type: [Boolean, String], default: false }, stacked: { type: Boolean, default: false }, plain: { type: Boolean, default: false }, buttons: { // Render as button style type: Boolean, default: false }, buttonVariant: { // Only applicable when rendered with button style type: String, default: 'secondary' } }, computed: { inline: function inline() { return !this.stacked; }, groupName: function groupName() { // Checks/Radios tied to the same model must have the same name, // especially for ARIA accessibility. return this.name || this.safeId(); }, groupClasses: function groupClasses() { if (this.buttons) { return ['btn-group-toggle', this.inline ? 'btn-group' : 'btn-group-vertical', this.size ? "btn-group-".concat(this.size) : '', this.validated ? "was-validated" : '']; } return [this.validated ? "was-validated" : '']; }, computedAriaInvalid: function computedAriaInvalid() { var ariaInvalid = this.ariaInvalid; if (ariaInvalid === true || ariaInvalid === 'true' || ariaInvalid === '') { return 'true'; } return this.computedState === false ? 'true' : null; } }, watch: { checked: function checked(newVal) { if (!looseEqual(newVal, this.localChecked)) { this.localChecked = newVal; } }, localChecked: function localChecked(newValue, oldValue) { if (!looseEqual(newValue, oldValue)) { this.$emit('input', newValue); } } }, render: function render(h) { var _this = this; var $inputs = this.formOptions.map(function (option, index) { var key = "BV_option_".concat(index); return h(_this.isRadioGroup ? BFormRadio : BFormCheckbox, { props: { id: _this.safeId(key), value: option.value, // Individual radios or checks can be disabled in a group disabled: option.disabled || false // We don't need to include these, since the input's will know they are inside here // name: this.groupName, // form: this.form || null, // required: Boolean(this.name && this.required) }, key: key }, [h('span', { domProps: htmlOrText(option.html, option.text) })]); }); return h('div', { class: [this.groupClasses, 'bv-no-focus-ring'], attrs: { id: this.safeId(), role: this.isRadioGroup ? 'radiogroup' : 'group', // Add `tabindex="-1"` to allow group to be focused if needed by screen readers tabindex: '-1', 'aria-required': this.required ? 'true' : null, 'aria-invalid': this.computedAriaInvalid } }, [this.normalizeSlot(SLOT_NAME_FIRST), $inputs, this.normalizeSlot()]); } };