2018-03-17 18:26:18 +05:30
|
|
|
<script>
|
2018-12-13 13:39:08 +05:30
|
|
|
import tooltip from '~/vue_shared/directives/tooltip';
|
|
|
|
import icon from '~/vue_shared/components/icon.vue';
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
icon,
|
|
|
|
},
|
|
|
|
directives: {
|
|
|
|
tooltip,
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
title: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
default: '',
|
2018-03-17 18:26:18 +05:30
|
|
|
},
|
2018-12-13 13:39:08 +05:30
|
|
|
cssClass: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
default: '',
|
2018-03-17 18:26:18 +05:30
|
|
|
},
|
2018-12-13 13:39:08 +05:30
|
|
|
iconName: {
|
|
|
|
type: String,
|
|
|
|
required: true,
|
2018-03-17 18:26:18 +05:30
|
|
|
},
|
2018-12-13 13:39:08 +05:30
|
|
|
tooltipPlacement: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
default: 'bottom',
|
2018-03-17 18:26:18 +05:30
|
|
|
},
|
2018-12-13 13:39:08 +05:30
|
|
|
/**
|
|
|
|
* value could either be number or string
|
|
|
|
* as `memberCount` is always passed as string
|
|
|
|
* while `subgroupCount` & `projectCount`
|
|
|
|
* are always number
|
|
|
|
*/
|
|
|
|
value: {
|
|
|
|
type: [Number, String],
|
|
|
|
required: false,
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
isValuePresent() {
|
|
|
|
return this.value !== '';
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
2018-03-17 18:26:18 +05:30
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<span
|
|
|
|
v-tooltip
|
|
|
|
:data-placement="tooltipPlacement"
|
|
|
|
:class="cssClass"
|
|
|
|
:title="title"
|
2018-11-08 19:23:39 +05:30
|
|
|
data-container="body"
|
2018-03-17 18:26:18 +05:30
|
|
|
>
|
2019-02-15 15:39:39 +05:30
|
|
|
<icon :name="iconName" /> <span v-if="isValuePresent" class="stat-value"> {{ value }} </span>
|
2018-03-17 18:26:18 +05:30
|
|
|
</span>
|
|
|
|
</template>
|