custom-bootstrap-vue
Version:
Custom version of bootstrap-vue created for providing specific theme to a particular project
119 lines (108 loc) • 3.29 kB
JavaScript
import { mergeData } from 'vue-functional-data-merge'
import Vue from '../../utils/vue'
import { htmlOrText } from '../../utils/html'
import { hasNormalizedSlot, normalizeSlot } from '../../utils/normalize-slot'
import { copyProps, pluckProps, prefixPropName, unprefixPropName } from '../../utils/props'
import cardMixin from '../../mixins/card'
import { BCardBody, props as bodyProps } from './card-body'
import { BCardHeader, props as headerProps } from './card-header'
import { BCardFooter, props as footerProps } from './card-footer'
import { BCardImg, props as imgProps } from './card-img'
const cardImgProps = copyProps(imgProps, prefixPropName.bind(null, 'img'))
cardImgProps.imgSrc.required = false
export const props = {
...bodyProps,
...headerProps,
...footerProps,
...cardImgProps,
...copyProps(cardMixin.props),
align: {
type: String
// default: null
},
noBody: {
type: Boolean,
default: false
}
}
// @vue/component
export const BCard = /*#__PURE__*/ Vue.extend({
name: 'BCard',
functional: true,
props,
render(h, { props, data, slots, scopedSlots }) {
const {
imgLeft,
imgRight,
imgStart,
imgEnd,
header,
headerHtml,
footer,
footerHtml,
align,
textVariant,
bgVariant,
borderVariant
} = props
const $scopedSlots = scopedSlots || {}
const $slots = slots()
const slotScope = {}
let $imgFirst = h()
let $imgLast = h()
if (props.imgSrc) {
const $img = h(BCardImg, {
props: pluckProps(cardImgProps, props, unprefixPropName.bind(null, 'img'))
})
if (props.imgBottom) {
$imgLast = $img
} else {
$imgFirst = $img
}
}
let $header = h()
const hasHeaderSlot = hasNormalizedSlot('header', $scopedSlots, $slots)
if (hasHeaderSlot || header || headerHtml) {
$header = h(
BCardHeader,
{
props: pluckProps(headerProps, props),
domProps: hasHeaderSlot ? {} : htmlOrText(headerHtml, header)
},
normalizeSlot('header', slotScope, $scopedSlots, $slots)
)
}
let $content = normalizeSlot('default', slotScope, $scopedSlots, $slots)
// Wrap content in <card-body> when `noBody` prop set
if (!props.noBody) {
$content = h(BCardBody, { props: pluckProps(bodyProps, props) }, $content)
}
let $footer = h()
const hasFooterSlot = hasNormalizedSlot('footer', $scopedSlots, $slots)
if (hasFooterSlot || footer || footerHtml) {
$footer = h(
BCardFooter,
{
props: pluckProps(footerProps, props),
domProps: hasHeaderSlot ? {} : htmlOrText(footerHtml, footer)
},
normalizeSlot('footer', slotScope, $scopedSlots, $slots)
)
}
return h(
props.tag,
mergeData(data, {
staticClass: 'card',
class: {
'flex-row': imgLeft || imgStart,
'flex-row-reverse': (imgRight || imgEnd) && !(imgLeft || imgStart),
[`text-${align}`]: align,
[`bg-${bgVariant}`]: bgVariant,
[`border-${borderVariant}`]: borderVariant,
[`text-${textVariant}`]: textVariant
}
}),
[$imgFirst, $header, $content, $footer, $imgLast]
)
}
})