Blame view

node_modules/bootstrap-vue/src/components/dropdown/dropdown-form.js 1.36 KB
4cd4fd28   郭伟龙   feat: 初始化项目
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
import { extend, mergeData } from '../../vue'
import { NAME_DROPDOWN_FORM } from '../../constants/components'
import { PROP_TYPE_ARRAY_OBJECT_STRING, PROP_TYPE_BOOLEAN } from '../../constants/props'
import { omit, sortKeys } from '../../utils/object'
import { makeProp, makePropsConfigurable } from '../../utils/props'
import { BForm, props as formControlProps } from '../form/form'

// --- Props ---

export const props = makePropsConfigurable(
  sortKeys({
    ...formControlProps,
    disabled: makeProp(PROP_TYPE_BOOLEAN, false),
    formClass: makeProp(PROP_TYPE_ARRAY_OBJECT_STRING)
  }),
  NAME_DROPDOWN_FORM
)

// --- Main component ---

// @vue/component
export const BDropdownForm = /*#__PURE__*/ extend({
  name: NAME_DROPDOWN_FORM,
  functional: true,
  props,
  render(h, { props, data, listeners, children }) {
    return h('li', mergeData(omit(data, ['attrs', 'on']), { attrs: { role: 'presentation' } }), [
      h(
        BForm,
        {
          staticClass: 'b-dropdown-form',
          class: [props.formClass, { disabled: props.disabled }],
          props,
          attrs: {
            ...(data.attrs || {}),
            disabled: props.disabled,
            // Tab index of -1 for keyboard navigation
            tabindex: props.disabled ? null : '-1'
          },
          on: listeners,
          ref: 'form'
        },
        children
      )
    ])
  }
})