225 lines
4.9 KiB
Vue
225 lines
4.9 KiB
Vue
<template>
|
|
<div class="dv-capsule-chart">
|
|
<template v-if="mergedConfig">
|
|
<div class="label-column">
|
|
<div v-for="item in mergedConfig.data" :key="item.name">{{ item.name }}</div>
|
|
<div> </div>
|
|
</div>
|
|
|
|
<div class="capsule-container">
|
|
<div class="capsule-item" v-for="(capsule, index) in capsuleLength" :key="index">
|
|
<div
|
|
class="capsule-item-column"
|
|
:style="`width: ${capsule * 100}%; background-color: ${mergedConfig.colors[index % mergedConfig.colors.length]};`"
|
|
>
|
|
<div
|
|
v-if="mergedConfig.showValue"
|
|
class="capsule-item-value"
|
|
>{{ capsuleValue[index] }}</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="unit-label">
|
|
<div
|
|
v-for="(label, index) in labelData"
|
|
:key="label + index"
|
|
>{{ label }}</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="unit-text" v-if="mergedConfig.unit">{{ mergedConfig.unit }}</div>
|
|
</template>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
|
|
|
import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
|
|
|
|
export default {
|
|
name: 'DvCapsuleChart',
|
|
props: {
|
|
config: {
|
|
type: Object,
|
|
default: () => ({})
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
defaultConfig: {
|
|
/**
|
|
* @description Capsule chart data
|
|
* @type {Array<Object>}
|
|
* @default data = []
|
|
* @example data = [{ name: 'foo1', value: 100 }, { name: 'foo2', value: 100 }]
|
|
*/
|
|
data: [],
|
|
/**
|
|
* @description Colors (hex|rgb|rgba|color keywords)
|
|
* @type {Array<String>}
|
|
* @default color = ['#37a2da', '#32c5e9', '#67e0e3', '#9fe6b8', '#ffdb5c', '#ff9f7f', '#fb7293']
|
|
* @example color = ['#000', 'rgb(0, 0, 0)', 'rgba(0, 0, 0, 1)', 'red']
|
|
*/
|
|
colors: [
|
|
'#37a2da',
|
|
'#32c5e9',
|
|
'#67e0e3',
|
|
'#9fe6b8',
|
|
'#ffdb5c',
|
|
'#ff9f7f',
|
|
'#fb7293'
|
|
],
|
|
/**
|
|
* @description Chart unit
|
|
* @type {String}
|
|
* @default unit = ''
|
|
*/
|
|
unit: '',
|
|
/**
|
|
* @description Show item value
|
|
* @type {Boolean}
|
|
* @default showValue = false
|
|
*/
|
|
showValue: false
|
|
},
|
|
|
|
mergedConfig: null,
|
|
|
|
capsuleLength: [],
|
|
capsuleValue: [],
|
|
labelData: [],
|
|
labelDataLength: []
|
|
}
|
|
},
|
|
watch: {
|
|
config() {
|
|
const { calcData } = this
|
|
|
|
calcData()
|
|
}
|
|
},
|
|
methods: {
|
|
calcData() {
|
|
const { mergeConfig, calcCapsuleLengthAndLabelData } = this
|
|
|
|
mergeConfig()
|
|
|
|
calcCapsuleLengthAndLabelData()
|
|
},
|
|
mergeConfig() {
|
|
let { config, defaultConfig } = this
|
|
|
|
this.mergedConfig = deepMerge(
|
|
deepClone(defaultConfig, true),
|
|
config || {}
|
|
)
|
|
},
|
|
calcCapsuleLengthAndLabelData() {
|
|
const { data } = this.mergedConfig
|
|
|
|
if (!data.length) return
|
|
|
|
const capsuleValue = data.map(({ value }) => value)
|
|
|
|
const maxValue = Math.max(...capsuleValue)
|
|
|
|
this.capsuleValue = capsuleValue
|
|
|
|
this.capsuleLength = capsuleValue.map(v => (maxValue ? v / maxValue : 0))
|
|
|
|
const oneFifth = maxValue / 5
|
|
|
|
const labelData = Array.from(
|
|
new Set(new Array(6).fill(0).map((v, i) => Math.ceil(i * oneFifth)))
|
|
)
|
|
|
|
this.labelData = labelData
|
|
|
|
this.labelDataLength = Array.from(labelData).map(v =>
|
|
maxValue ? v / maxValue : 0
|
|
)
|
|
}
|
|
},
|
|
mounted() {
|
|
const { calcData } = this
|
|
|
|
calcData()
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less">
|
|
.dv-capsule-chart {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: row;
|
|
box-sizing: border-box;
|
|
padding: 10px;
|
|
color: #fff;
|
|
|
|
.label-column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding-right: 10px;
|
|
text-align: right;
|
|
font-size: 12px;
|
|
|
|
div {
|
|
height: 20px;
|
|
line-height: 20px;
|
|
}
|
|
}
|
|
|
|
.capsule-container {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.capsule-item {
|
|
box-shadow: 0 0 3px #999;
|
|
height: 10px;
|
|
margin: 5px 0px;
|
|
border-radius: 5px;
|
|
|
|
.capsule-item-column {
|
|
position: relative;
|
|
height: 8px;
|
|
margin-top: 1px;
|
|
border-radius: 5px;
|
|
transition: all 0.3s;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
|
|
.capsule-item-value {
|
|
font-size: 12px;
|
|
transform: translateX(100%);
|
|
}
|
|
}
|
|
}
|
|
|
|
.unit-label {
|
|
height: 20px;
|
|
font-size: 12px;
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.unit-text {
|
|
text-align: right;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
font-size: 12px;
|
|
line-height: 20px;
|
|
margin-left: 10px;
|
|
}
|
|
}
|
|
</style>
|