forked from bootstrap-vue/bootstrap-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform-radio-check-group.js
162 lines (149 loc) · 4.72 KB
/
form-radio-check-group.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
import { extend } from '../vue'
import { PROP_TYPE_BOOLEAN, PROP_TYPE_BOOLEAN_STRING, PROP_TYPE_STRING } from '../constants/props'
import { SLOT_NAME_FIRST } from '../constants/slots'
import { htmlOrText } from '../utils/html'
import { looseEqual } from '../utils/loose-equal'
import { makeModelMixin } from '../utils/model'
import { omit, pick, sortKeys } from '../utils/object'
import { makeProp, makePropsConfigurable } from '../utils/props'
import { BFormCheckbox } from '../components/form-checkbox/form-checkbox'
import { BFormRadio } from '../components/form-radio/form-radio'
import { formControlMixin, props as formControlProps } from './form-control'
import { formCustomMixin, props as formCustomProps } from './form-custom'
import { formOptionsMixin, props as formOptionsProps } from './form-options'
import { formSizeMixin, props as formSizeProps } from './form-size'
import { formStateMixin, props as formStateProps } from './form-state'
import { idMixin, props as idProps } from './id'
import { normalizeSlotMixin } from './normalize-slot'
// --- Constants ---
// Attributes to pass down to checks/radios instead of applying them to the group
const PASS_DOWN_ATTRS = ['aria-describedby', 'aria-labelledby']
const {
mixin: modelMixin,
props: modelProps,
prop: MODEL_PROP_NAME,
event: MODEL_EVENT_NAME
} = makeModelMixin('checked')
export { MODEL_PROP_NAME, MODEL_EVENT_NAME }
// --- Props ---
export const props = makePropsConfigurable(
sortKeys({
...idProps,
...modelProps,
...formControlProps,
...formOptionsProps,
...formSizeProps,
...formStateProps,
...formCustomProps,
ariaInvalid: makeProp(PROP_TYPE_BOOLEAN_STRING, false),
// Only applicable when rendered with button style
buttonVariant: makeProp(PROP_TYPE_STRING),
// Render as button style
buttons: makeProp(PROP_TYPE_BOOLEAN, false),
stacked: makeProp(PROP_TYPE_BOOLEAN, false),
validated: makeProp(PROP_TYPE_BOOLEAN, false)
}),
'formRadioCheckGroups'
)
// --- Mixin ---
// @vue/component
export const formRadioCheckGroupMixin = extend({
mixins: [
idMixin,
modelMixin,
normalizeSlotMixin,
formControlMixin,
formOptionsMixin,
formSizeMixin,
formStateMixin,
formCustomMixin
],
inheritAttrs: false,
props,
data() {
return {
localChecked: this[MODEL_PROP_NAME]
}
},
computed: {
inline() {
return !this.stacked
},
groupName() {
// Checks/Radios tied to the same model must have the same name,
// especially for ARIA accessibility
return this.name || this.safeId()
},
groupClasses() {
const { inline, size, validated } = this
let classes = { 'was-validated': validated }
if (this.buttons) {
classes = [
classes,
'btn-group-toggle',
{
'btn-group': inline,
'btn-group-vertical': !inline,
[`btn-group-${size}`]: size
}
]
}
return classes
}
},
watch: {
[MODEL_PROP_NAME](newValue) {
if (!looseEqual(newValue, this.localChecked)) {
this.localChecked = newValue
}
},
localChecked(newValue, oldValue) {
if (!looseEqual(newValue, oldValue)) {
this.$emit(MODEL_EVENT_NAME, newValue)
}
}
},
render(h) {
const { isRadioGroup } = this
const attrs = pick(this.$attrs, PASS_DOWN_ATTRS)
const optionComponent = isRadioGroup ? BFormRadio : BFormCheckbox
const $inputs = this.formOptions.map((option, index) => {
const key = `BV_option_${index}`
return h(
optionComponent,
{
props: {
// Individual radios or checks can be disabled in a group
disabled: option.disabled || false,
id: this.safeId(key),
value: option.value
// We don't need to include these, since the input's will know they are inside here
// form: this.form || null,
// name: this.groupName,
// required: Boolean(this.name && this.required),
// state: this.state
},
attrs,
key
},
[h('span', { domProps: htmlOrText(option.html, option.text) })]
)
})
return h(
'div',
{
class: [this.groupClasses, 'bv-no-focus-ring'],
attrs: {
...omit(this.$attrs, PASS_DOWN_ATTRS),
'aria-invalid': this.computedAriaInvalid,
'aria-required': this.required ? 'true' : null,
id: this.safeId(),
role: isRadioGroup ? 'radiogroup' : 'group',
// Add `tabindex="-1"` to allow group to be focused if needed by screen readers
tabindex: '-1'
}
},
[this.normalizeSlot(SLOT_NAME_FIRST), $inputs, this.normalizeSlot()]
)
}
})