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
77 lines (67 loc) • 2.21 kB
JavaScript
import { extend, mergeData } from '../../vue'
import { NAME_LIST_GROUP_ITEM } from '../../constants/components'
import { PROP_TYPE_BOOLEAN, PROP_TYPE_STRING } from '../../constants/props'
import { arrayIncludes } from '../../utils/array'
import { isTag } from '../../utils/dom'
import { omit, sortKeys } from '../../utils/object'
import { makeProp, makePropsConfigurable, pluckProps } from '../../utils/props'
import { isLink } from '../../utils/router'
import { BLink, props as BLinkProps } from '../link/link'
// --- Constants ---
const actionTags = ['a', 'router-link', 'button', 'b-link']
// --- Props ---
const linkProps = omit(BLinkProps, ['event', 'routerTag'])
delete linkProps.href.default
delete linkProps.to.default
export const props = makePropsConfigurable(
sortKeys({
...linkProps,
action: makeProp(PROP_TYPE_BOOLEAN, false),
button: makeProp(PROP_TYPE_BOOLEAN, false),
tag: makeProp(PROP_TYPE_STRING, 'div'),
variant: makeProp(PROP_TYPE_STRING)
}),
NAME_LIST_GROUP_ITEM
)
// --- Main component ---
// @vue/component
export const BListGroupItem = /*#__PURE__*/ extend({
name: NAME_LIST_GROUP_ITEM,
functional: true,
props,
render(h, { props, data, children }) {
const { button, variant, active, disabled } = props
const link = isLink(props)
const tag = button ? 'button' : !link ? props.tag : BLink
const action = !!(props.action || link || button || arrayIncludes(actionTags, props.tag))
const attrs = {}
let itemProps = {}
if (isTag(tag, 'button')) {
if (!data.attrs || !data.attrs.type) {
// Add a type for button is one not provided in passed attributes
attrs.type = 'button'
}
if (props.disabled) {
// Set disabled attribute if button and disabled
attrs.disabled = true
}
} else {
itemProps = pluckProps(linkProps, props)
}
return h(
tag,
mergeData(data, {
attrs,
props: itemProps,
staticClass: 'list-group-item',
class: {
[`list-group-item-${variant}`]: variant,
'list-group-item-action': action,
active,
disabled
}
}),
children
)
}
})