@gitlab/ui
Version:
GitLab UI Components
136 lines (115 loc) • 4.11 kB
JavaScript
import _truncate from 'lodash/truncate';
import _get from 'lodash/get';
import { avatarsInlineSizeOptions } from '../../../utils/constants';
import GlAvatar from '../avatar/avatar';
import GlTooltip from '../tooltip/tooltip';
import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
var script = {
name: 'AvatarsInline',
components: {
GlAvatar,
GlTooltip
},
props: {
avatars: {
type: Array,
required: true
},
maxVisible: {
type: Number,
required: true
},
avatarSize: {
type: Number,
required: true,
validator: value => avatarsInlineSizeOptions.includes(value)
},
collapsed: {
type: Boolean,
required: false,
default: false
},
badgeTooltipProp: {
type: String,
required: false,
default: ''
},
badgeTooltipMaxChars: {
type: Number,
required: false,
default: null
}
},
computed: {
hiddenAvatars() {
return this.avatars.slice(this.maxVisible);
},
collapsable() {
return this.hiddenAvatars.length > 0;
},
visibleAvatars() {
return this.collapsed ? this.avatars.slice(0, this.maxVisible) : this.avatars;
},
containerSizeStyles() {
return {
width: `${this.avatarSize * this.visibleAvatars.length}px`,
height: `${this.avatarSize}px`
};
},
badgeSize() {
return this.avatarSize === 24 ? 'md' : 'lg';
},
badgeLabel() {
return `+${this.hiddenAvatars.length}`;
},
badgeTooltipTitle() {
if (!this.badgeTooltipProp) {
return '';
}
const tooltipTitle = this.hiddenAvatars.map(avatar => _get(avatar, this.badgeTooltipProp, '').trim()).join(', '); // truncate will append '...'
// we need to take these extra 3 characters into account in badgeTooltipMaxChars
return this.badgeTooltipMaxChars ? _truncate(tooltipTitle, {
length: this.badgeTooltipMaxChars
}) : tooltipTitle;
}
},
methods: {
calcAvatarPosition(avatarIndex) {
// According to pajamas, overlap is 25% of the avatar height
const overlapDistance = this.avatarSize * 0.75;
return {
left: `${overlapDistance * avatarIndex}px`,
zIndex: this.maxVisible + (avatarIndex - 1)
};
}
}
};
/* script */
const __vue_script__ = script;
/* template */
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{class:['gl-avatars-inline', { collapsed: _vm.collapsed }],style:(_vm.containerSizeStyles)},[_vm._l((_vm.visibleAvatars),function(avatar,index){return _c('div',{key:index,staticClass:"gl-avatars-inline-child",style:(_vm.calcAvatarPosition(index))},[_vm._t("avatar",[_c('gl-avatar',_vm._b({attrs:{"size":_vm.avatarSize}},'gl-avatar',avatar,false))],{"avatar":avatar})],2)}),_vm._v(" "),(_vm.collapsed && _vm.collapsable)?_c('div',{staticClass:"gl-avatars-inline-child",style:(_vm.calcAvatarPosition(_vm.visibleAvatars.length))},[(_vm.badgeTooltipProp)?_c('gl-tooltip',{attrs:{"target":function () { return _vm.$refs.badge; }}},[_vm._v("\n "+_vm._s(_vm.badgeTooltipTitle)+"\n ")]):_vm._e(),_vm._v(" "),_c('span',{ref:"badge",class:['gl-avatars-inline-badge', _vm.badgeSize]},[_vm._v("\n "+_vm._s(_vm.badgeLabel)+"\n ")])],1):_vm._e()],2)};
var __vue_staticRenderFns__ = [];
/* style */
const __vue_inject_styles__ = undefined;
/* scoped */
const __vue_scope_id__ = undefined;
/* module identifier */
const __vue_module_identifier__ = undefined;
/* functional template */
const __vue_is_functional_template__ = false;
/* style inject */
/* style inject SSR */
/* style inject shadow dom */
const __vue_component__ = __vue_normalize__(
{ render: __vue_render__, staticRenderFns: __vue_staticRenderFns__ },
__vue_inject_styles__,
__vue_script__,
__vue_scope_id__,
__vue_is_functional_template__,
__vue_module_identifier__,
false,
undefined,
undefined,
undefined
);
export default __vue_component__;