forked from bootstrap-vue/bootstrap-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform-control.js
51 lines (45 loc) · 1.19 KB
/
form-control.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
import { extend } from '../vue'
import { PROP_TYPE_BOOLEAN, PROP_TYPE_STRING } from '../constants/props'
import { attemptFocus, isVisible, matches, requestAF, select } from '../utils/dom'
import { makeProp, makePropsConfigurable } from '../utils/props'
// --- Constants ---
const SELECTOR = 'input, textarea, select'
// --- Props ---
export const props = makePropsConfigurable(
{
autofocus: makeProp(PROP_TYPE_BOOLEAN, false),
disabled: makeProp(PROP_TYPE_BOOLEAN, false),
form: makeProp(PROP_TYPE_STRING),
id: makeProp(PROP_TYPE_STRING),
name: makeProp(PROP_TYPE_STRING),
required: makeProp(PROP_TYPE_BOOLEAN, false)
},
'formControls'
)
// --- Mixin ---
// @vue/component
export const formControlMixin = extend({
props,
mounted() {
this.handleAutofocus()
},
/* istanbul ignore next */
activated() {
this.handleAutofocus()
},
methods: {
handleAutofocus() {
this.$nextTick(() => {
requestAF(() => {
let el = this.$el
if (this.autofocus && isVisible(el)) {
if (!matches(el, SELECTOR)) {
el = select(SELECTOR, el)
}
attemptFocus(el)
}
})
})
}
}
})