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
54 lines (49 loc) • 1.86 kB
JavaScript
import { extend, mergeData } from '../../vue';
import { NAME_MEDIA } from '../../constants/components';
import { PROP_TYPE_BOOLEAN, PROP_TYPE_STRING } from '../../constants/props';
import { SLOT_NAME_ASIDE, SLOT_NAME_DEFAULT } from '../../constants/slots';
import { normalizeSlot } from '../../utils/normalize-slot';
import { makeProp, makePropsConfigurable } from '../../utils/props';
import { BMediaAside } from './media-aside';
import { BMediaBody } from './media-body'; // --- Props ---
export var props = makePropsConfigurable({
noBody: makeProp(PROP_TYPE_BOOLEAN, false),
rightAlign: makeProp(PROP_TYPE_BOOLEAN, false),
tag: makeProp(PROP_TYPE_STRING, 'div'),
verticalAlign: makeProp(PROP_TYPE_STRING, 'top')
}, NAME_MEDIA); // --- Main component ---
// @vue/component
export var BMedia = /*#__PURE__*/extend({
name: NAME_MEDIA,
functional: true,
props: props,
render: function render(h, _ref) {
var props = _ref.props,
data = _ref.data,
slots = _ref.slots,
scopedSlots = _ref.scopedSlots,
children = _ref.children;
var noBody = props.noBody,
rightAlign = props.rightAlign,
verticalAlign = props.verticalAlign;
var $children = noBody ? children : [];
if (!noBody) {
var slotScope = {};
var $slots = slots();
var $scopedSlots = scopedSlots || {};
$children.push(h(BMediaBody, normalizeSlot(SLOT_NAME_DEFAULT, slotScope, $scopedSlots, $slots)));
var $aside = normalizeSlot(SLOT_NAME_ASIDE, slotScope, $scopedSlots, $slots);
if ($aside) {
$children[rightAlign ? 'push' : 'unshift'](h(BMediaAside, {
props: {
right: rightAlign,
verticalAlign: verticalAlign
}
}, $aside));
}
}
return h(props.tag, mergeData(data, {
staticClass: 'media'
}), $children);
}
});