Compare commits
47 Commits
V2.8.2-alp
...
V2.9.3-alp
Author | SHA1 | Date | |
---|---|---|---|
9318431c88 | |||
abba9ad931 | |||
2b06940ac7 | |||
026d9139c4 | |||
9b84417f01 | |||
86da84af2e | |||
1ea106fd83 | |||
7491b34711 | |||
a2875684ce | |||
f581aee5c3 | |||
3f5148cea3 | |||
e270fadcd2 | |||
beaef5c59a | |||
b17399416a | |||
5f3fdfc798 | |||
e7c237cbac | |||
3d3de766e3 | |||
330815d90a | |||
4f6fc240d2 | |||
1d0f369509 | |||
ea058a90c3 | |||
934e3f314a | |||
eea32d7e39 | |||
7dd7baebba | |||
4a7fdf0c1c | |||
53991795a0 | |||
dde29fa61a | |||
c82b979432 | |||
e938b66dc0 | |||
71a9be2a13 | |||
f0432e4c42 | |||
65f5b529bf | |||
054854480a | |||
6ce83e1fd8 | |||
8e5f279b6e | |||
22afc8e787 | |||
eb78915c93 | |||
22c88c4ea5 | |||
c98ca00179 | |||
c257ca6d9c | |||
ce4cf0d342 | |||
7df0c0247a | |||
df2369dfe4 | |||
7799ef3dae | |||
dd37ba167a | |||
fdd1e243a7 | |||
57b6c726eb |
50
CHANGELOG.md
50
CHANGELOG.md
@ -1,3 +1,51 @@
|
|||||||
|
# 2.9.3-alpha (2020-07-02)
|
||||||
|
|
||||||
|
### Perfect
|
||||||
|
|
||||||
|
- **uuid:** Optimization of `-` in uuid will cause abnormal svg animation [(#108)](https://github.com/DataV-Team/DataV/issues/108).
|
||||||
|
|
||||||
|
# 2.9.2-alpha (2020-06-16)
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- **scrollBoard:** reset animationIndex when config upate.
|
||||||
|
|
||||||
|
# 2.9.1-alpha (2020-06-16)
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
- **scrollRankingBoard:** Calculation optimization of negative values [(#101)](https://github.com/DataV-Team/DataV/pull/101).
|
||||||
|
|
||||||
|
### Perfect
|
||||||
|
|
||||||
|
- **digitalFlop:** add number formatter.
|
||||||
|
|
||||||
|
# 2.9.0-alpha (2020-06-10)
|
||||||
|
|
||||||
|
### ScrollBoard
|
||||||
|
|
||||||
|
- **hoverPause:** add `hoverPause` configuration [(#96)](https://github.com/DataV-Team/DataV/pull/96).
|
||||||
|
- **mouseover:** add `mouseover` event [(#96)](https://github.com/DataV-Team/DataV/pull/96).
|
||||||
|
|
||||||
|
# 2.8.4-alpha (2020-05-25)
|
||||||
|
|
||||||
|
### Perfect
|
||||||
|
|
||||||
|
- **uuid:** Use uuid to produce unique id.
|
||||||
|
|
||||||
|
# 2.8.3-alpha (2020-05-06)
|
||||||
|
|
||||||
|
### Perfect
|
||||||
|
|
||||||
|
- **activeRingChart:** add `showOriginValue` configuration.
|
||||||
|
- **capsuleChart:** add `showValue` configuration.
|
||||||
|
|
||||||
|
# 2.8.2-alpha (2020-05-06)
|
||||||
|
|
||||||
|
### Perfect
|
||||||
|
|
||||||
|
- **borderBox8:** add `reverse` configuration.
|
||||||
|
|
||||||
# 2.8.1-alpha (2020-05-03)
|
# 2.8.1-alpha (2020-05-03)
|
||||||
|
|
||||||
### Perfect
|
### Perfect
|
||||||
@ -70,7 +118,7 @@
|
|||||||
|
|
||||||
# 2.4.7-alpha (2019-10-24)
|
# 2.4.7-alpha (2019-10-24)
|
||||||
|
|
||||||
### perfect
|
### Perfect
|
||||||
|
|
||||||
- **charts:** Optimize memory leaks.
|
- **charts:** Optimize memory leaks.
|
||||||
- **digitalFlop:** Optimize memory leaks.
|
- **digitalFlop:** Optimize memory leaks.
|
||||||
|
414
dist/datav.map.vue.js
vendored
414
dist/datav.map.vue.js
vendored
File diff suppressed because it is too large
Load Diff
2
dist/datav.min.vue.js
vendored
2
dist/datav.min.vue.js
vendored
File diff suppressed because one or more lines are too long
@ -94,7 +94,13 @@ export default {
|
|||||||
* @type {String}
|
* @type {String}
|
||||||
* @default animationFrame = 50
|
* @default animationFrame = 50
|
||||||
*/
|
*/
|
||||||
animationFrame: 50
|
animationFrame: 50,
|
||||||
|
/**
|
||||||
|
* @description showOriginValue
|
||||||
|
* @type {Boolean}
|
||||||
|
* @default showOriginValue = false
|
||||||
|
*/
|
||||||
|
showOriginValue: false
|
||||||
},
|
},
|
||||||
|
|
||||||
mergedConfig: null,
|
mergedConfig: null,
|
||||||
@ -112,17 +118,30 @@ export default {
|
|||||||
|
|
||||||
if (!mergedConfig) return {}
|
if (!mergedConfig) return {}
|
||||||
|
|
||||||
const { digitalFlopStyle, digitalFlopToFixed, data } = mergedConfig
|
const {
|
||||||
|
digitalFlopStyle,
|
||||||
|
digitalFlopToFixed,
|
||||||
|
data,
|
||||||
|
showOriginValue
|
||||||
|
} = mergedConfig
|
||||||
|
|
||||||
const value = data.map(({ value }) => value)
|
const value = data.map(({ value }) => value)
|
||||||
|
|
||||||
|
let displayValue
|
||||||
|
|
||||||
|
if (showOriginValue) {
|
||||||
|
displayValue = value[activeIndex]
|
||||||
|
} else {
|
||||||
const sum = value.reduce((all, v) => all + v, 0)
|
const sum = value.reduce((all, v) => all + v, 0)
|
||||||
|
|
||||||
const percent = parseFloat(value[activeIndex] / sum * 100) || 0
|
const percent = parseFloat((value[activeIndex] / sum) * 100) || 0
|
||||||
|
|
||||||
|
displayValue = percent
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
content: '{nt}%',
|
content: showOriginValue ? '{nt}' : '{nt}%',
|
||||||
number: [percent],
|
number: [displayValue],
|
||||||
style: digitalFlopStyle,
|
style: digitalFlopStyle,
|
||||||
toFixed: digitalFlopToFixed
|
toFixed: digitalFlopToFixed
|
||||||
}
|
}
|
||||||
@ -173,7 +192,10 @@ export default {
|
|||||||
mergeConfig() {
|
mergeConfig() {
|
||||||
const { defaultConfig, config } = this
|
const { defaultConfig, config } = this
|
||||||
|
|
||||||
this.mergedConfig = deepMerge(deepClone(defaultConfig, true), config || {})
|
this.mergedConfig = deepMerge(
|
||||||
|
deepClone(defaultConfig, true),
|
||||||
|
config || {}
|
||||||
|
)
|
||||||
},
|
},
|
||||||
setRingOption() {
|
setRingOption() {
|
||||||
const { getRingOption, chart, ringAnimation } = this
|
const { getRingOption, chart, ringAnimation } = this
|
||||||
@ -217,7 +239,8 @@ export default {
|
|||||||
|
|
||||||
let realRadius = active ? activeRadius : radius
|
let realRadius = active ? activeRadius : radius
|
||||||
|
|
||||||
if (typeof realRadius !== 'number') realRadius = parseInt(realRadius) / 100 * maxRadius
|
if (typeof realRadius !== 'number')
|
||||||
|
realRadius = (parseInt(realRadius) / 100) * maxRadius
|
||||||
|
|
||||||
const insideRadius = realRadius - halfLineWidth
|
const insideRadius = realRadius - halfLineWidth
|
||||||
const outSideRadius = realRadius + halfLineWidth
|
const outSideRadius = realRadius + halfLineWidth
|
||||||
|
@ -216,6 +216,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import autoResize from '../../../mixin/autoResize'
|
import autoResize from '../../../mixin/autoResize'
|
||||||
|
import { uuid } from '../../../util/index'
|
||||||
|
|
||||||
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
||||||
|
|
||||||
@ -245,10 +246,10 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
ref: 'border-box-11',
|
ref: 'border-box-11',
|
||||||
filterId: `border-box-11-filterId-${timestamp}`,
|
filterId: `border-box-11-filterId-${id}`,
|
||||||
|
|
||||||
defaultColor: ['#8aaafb', '#1f33a2'],
|
defaultColor: ['#8aaafb', '#1f33a2'],
|
||||||
|
|
||||||
|
@ -92,6 +92,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import autoResize from '../../../mixin/autoResize'
|
import autoResize from '../../../mixin/autoResize'
|
||||||
|
import { uuid } from '../../../util/index'
|
||||||
|
|
||||||
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
||||||
|
|
||||||
@ -113,10 +114,10 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = +new Date()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
ref: 'border-box-12',
|
ref: 'border-box-12',
|
||||||
filterId: `borderr-box-12-filterId-${timestamp}`,
|
filterId: `borderr-box-12-filterId-${id}`,
|
||||||
|
|
||||||
defaultColor: ['#2e6099', '#7ce7fd'],
|
defaultColor: ['#2e6099', '#7ce7fd'],
|
||||||
|
|
||||||
|
@ -61,7 +61,6 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = +new Date()
|
|
||||||
return {
|
return {
|
||||||
ref: 'border-box-13',
|
ref: 'border-box-13',
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<defs>
|
<defs>
|
||||||
<path
|
<path
|
||||||
:id="path"
|
:id="path"
|
||||||
:d="`M2.5, 2.5 L${width - 2.5}, 2.5 L${width - 2.5}, ${height - 2.5} L2.5, ${height - 2.5} L2.5, 2.5`"
|
:d="pathD"
|
||||||
fill="transparent"
|
fill="transparent"
|
||||||
/>
|
/>
|
||||||
<radialGradient
|
<radialGradient
|
||||||
@ -25,7 +25,7 @@
|
|||||||
<circle cx="0" cy="0" r="150" :fill="`url(#${gradient})`">
|
<circle cx="0" cy="0" r="150" :fill="`url(#${gradient})`">
|
||||||
<animateMotion
|
<animateMotion
|
||||||
:dur="`${dur}s`"
|
:dur="`${dur}s`"
|
||||||
:path="`M2.5, 2.5 L${width - 2.5}, 2.5 L${width - 2.5}, ${height - 2.5} L2.5, ${height - 2.5} L2.5, 2.5`"
|
:path="pathD"
|
||||||
rotate="auto"
|
rotate="auto"
|
||||||
repeatCount="indefinite"
|
repeatCount="indefinite"
|
||||||
/>
|
/>
|
||||||
@ -65,6 +65,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import autoResize from '../../../mixin/autoResize'
|
import autoResize from '../../../mixin/autoResize'
|
||||||
|
import { uuid } from '../../../util/index'
|
||||||
|
|
||||||
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
||||||
|
|
||||||
@ -85,15 +86,19 @@ export default {
|
|||||||
backgroundColor: {
|
backgroundColor: {
|
||||||
type: String,
|
type: String,
|
||||||
default: 'transparent'
|
default: 'transparent'
|
||||||
|
},
|
||||||
|
reverse: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
ref: 'border-box-8',
|
ref: 'border-box-8',
|
||||||
path: `border-box-8-path-${timestamp}`,
|
path: `border-box-8-path-${id}`,
|
||||||
gradient: `border-box-8-gradient-${timestamp}`,
|
gradient: `border-box-8-gradient-${id}`,
|
||||||
mask: `border-box-8-mask-${timestamp}`,
|
mask: `border-box-8-mask-${id}`,
|
||||||
|
|
||||||
defaultColor: ['#235fa7', '#4fd2dd'],
|
defaultColor: ['#235fa7', '#4fd2dd'],
|
||||||
|
|
||||||
@ -105,6 +110,13 @@ export default {
|
|||||||
const { width, height } = this
|
const { width, height } = this
|
||||||
|
|
||||||
return (width + height - 5) * 2
|
return (width + height - 5) * 2
|
||||||
|
},
|
||||||
|
pathD () {
|
||||||
|
const { reverse, width, height } = this
|
||||||
|
|
||||||
|
if (reverse) return `M 2.5, 2.5 L 2.5, ${height - 2.5} L ${width - 2.5}, ${height - 2.5} L ${width - 2.5}, 2.5 L 2.5, 2.5`
|
||||||
|
|
||||||
|
return `M2.5, 2.5 L${width - 2.5}, 2.5 L${width - 2.5}, ${height - 2.5} L2.5, ${height - 2.5} L2.5, 2.5`
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
@ -125,6 +125,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import autoResize from '../../../mixin/autoResize'
|
import autoResize from '../../../mixin/autoResize'
|
||||||
|
import { uuid } from '../../../util/index'
|
||||||
|
|
||||||
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
||||||
|
|
||||||
@ -144,12 +145,12 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
ref: 'border-box-9',
|
ref: 'border-box-9',
|
||||||
|
|
||||||
gradientId: `border-box-9-gradient-${timestamp}`,
|
gradientId: `border-box-9-gradient-${id}`,
|
||||||
maskId: `border-box-9-mask-${timestamp}`,
|
maskId: `border-box-9-mask-${id}`,
|
||||||
|
|
||||||
defaultColor: ['#11eefd', '#0078d2'],
|
defaultColor: ['#11eefd', '#0078d2'],
|
||||||
|
|
||||||
|
@ -31,19 +31,27 @@
|
|||||||
margin: 5px 0px;
|
margin: 5px 0px;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
.dv-capsule-chart .capsule-item div {
|
.dv-capsule-chart .capsule-item .capsule-item-column {
|
||||||
|
position: relative;
|
||||||
height: 8px;
|
height: 8px;
|
||||||
margin-top: 1px;
|
margin-top: 1px;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
transition: all 0.3s;
|
transition: all 0.3s;
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.dv-capsule-chart .capsule-item .capsule-item-column .capsule-item-value {
|
||||||
|
font-size: 12px;
|
||||||
|
transform: translateX(100%);
|
||||||
}
|
}
|
||||||
.dv-capsule-chart .unit-label {
|
.dv-capsule-chart .unit-label {
|
||||||
height: 20px;
|
height: 20px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
.dv-capsule-chart .unit-text {
|
.dv-capsule-chart .unit-text {
|
||||||
text-align: right;
|
text-align: right;
|
||||||
|
@ -7,16 +7,23 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="capsule-container">
|
<div class="capsule-container">
|
||||||
|
<div class="capsule-item" v-for="(capsule, index) in capsuleLength" :key="index">
|
||||||
<div
|
<div
|
||||||
class="capsule-item"
|
class="capsule-item-column"
|
||||||
v-for="(capsule, index) in capsuleLength"
|
:style="`width: ${capsule * 100}%; background-color: ${mergedConfig.colors[index % mergedConfig.colors.length]};`"
|
||||||
:key="index"
|
|
||||||
>
|
>
|
||||||
<div :style="`width: ${capsule * 100}%; background-color: ${mergedConfig.colors[index % mergedConfig.colors.length]};`"></div>
|
<div
|
||||||
|
v-if="mergedConfig.showValue"
|
||||||
|
class="capsule-item-value"
|
||||||
|
>{{ capsuleValue[index] }}</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="unit-label">
|
<div class="unit-label">
|
||||||
<div v-for="(label, index) in labelData" :key="label + index">{{ label }}</div>
|
<div
|
||||||
|
v-for="(label, index) in labelData"
|
||||||
|
:key="label + index"
|
||||||
|
>{{ label }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -54,19 +61,35 @@ export default {
|
|||||||
* @default color = ['#37a2da', '#32c5e9', '#67e0e3', '#9fe6b8', '#ffdb5c', '#ff9f7f', '#fb7293']
|
* @default color = ['#37a2da', '#32c5e9', '#67e0e3', '#9fe6b8', '#ffdb5c', '#ff9f7f', '#fb7293']
|
||||||
* @example color = ['#000', 'rgb(0, 0, 0)', 'rgba(0, 0, 0, 1)', 'red']
|
* @example color = ['#000', 'rgb(0, 0, 0)', 'rgba(0, 0, 0, 1)', 'red']
|
||||||
*/
|
*/
|
||||||
colors: ['#37a2da', '#32c5e9', '#67e0e3', '#9fe6b8', '#ffdb5c', '#ff9f7f', '#fb7293'],
|
colors: [
|
||||||
|
'#37a2da',
|
||||||
|
'#32c5e9',
|
||||||
|
'#67e0e3',
|
||||||
|
'#9fe6b8',
|
||||||
|
'#ffdb5c',
|
||||||
|
'#ff9f7f',
|
||||||
|
'#fb7293'
|
||||||
|
],
|
||||||
/**
|
/**
|
||||||
* @description Chart unit
|
* @description Chart unit
|
||||||
* @type {String}
|
* @type {String}
|
||||||
* @default unit = ''
|
* @default unit = ''
|
||||||
*/
|
*/
|
||||||
unit: ''
|
unit: '',
|
||||||
|
/**
|
||||||
|
* @description Show item value
|
||||||
|
* @type {Boolean}
|
||||||
|
* @default showValue = false
|
||||||
|
*/
|
||||||
|
showValue: false
|
||||||
},
|
},
|
||||||
|
|
||||||
mergedConfig: null,
|
mergedConfig: null,
|
||||||
|
|
||||||
capsuleLength: [],
|
capsuleLength: [],
|
||||||
labelData: []
|
capsuleValue: [],
|
||||||
|
labelData: [],
|
||||||
|
labelDataLength: []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
@ -87,7 +110,10 @@ export default {
|
|||||||
mergeConfig() {
|
mergeConfig() {
|
||||||
let { config, defaultConfig } = this
|
let { config, defaultConfig } = this
|
||||||
|
|
||||||
this.mergedConfig = deepMerge(deepClone(defaultConfig, true), config || {})
|
this.mergedConfig = deepMerge(
|
||||||
|
deepClone(defaultConfig, true),
|
||||||
|
config || {}
|
||||||
|
)
|
||||||
},
|
},
|
||||||
calcCapsuleLengthAndLabelData() {
|
calcCapsuleLengthAndLabelData() {
|
||||||
const { data } = this.mergedConfig
|
const { data } = this.mergedConfig
|
||||||
@ -98,11 +124,21 @@ export default {
|
|||||||
|
|
||||||
const maxValue = Math.max(...capsuleValue)
|
const maxValue = Math.max(...capsuleValue)
|
||||||
|
|
||||||
this.capsuleLength = capsuleValue.map(v => maxValue ? v / maxValue : 0)
|
this.capsuleValue = capsuleValue
|
||||||
|
|
||||||
|
this.capsuleLength = capsuleValue.map(v => (maxValue ? v / maxValue : 0))
|
||||||
|
|
||||||
const oneFifth = maxValue / 5
|
const oneFifth = maxValue / 5
|
||||||
|
|
||||||
this.labelData = Array.from(new Set(new Array(6).fill(0).map((v, i) => Math.ceil(i * oneFifth))))
|
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() {
|
mounted() {
|
||||||
|
@ -5,6 +5,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { uuid } from '../../../util/index'
|
||||||
|
|
||||||
import autoResize from '../../../mixin/autoResize'
|
import autoResize from '../../../mixin/autoResize'
|
||||||
|
|
||||||
import Charts from '@jiaminghi/charts'
|
import Charts from '@jiaminghi/charts'
|
||||||
@ -19,10 +21,10 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
ref: `charts-container-${timestamp}`,
|
ref: `charts-container-${id}`,
|
||||||
chartRef: `chart-${timestamp}`,
|
chartRef: `chart-${id}`,
|
||||||
|
|
||||||
chart: null
|
chart: null
|
||||||
}
|
}
|
||||||
|
@ -147,6 +147,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import autoResize from '../../../mixin/autoResize'
|
import autoResize from '../../../mixin/autoResize'
|
||||||
|
import { uuid } from '../../../util/index'
|
||||||
|
|
||||||
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
||||||
|
|
||||||
@ -162,17 +163,17 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
ref: 'decoration-10',
|
ref: 'decoration-10',
|
||||||
|
|
||||||
animationId1: `d10ani1${timestamp}`,
|
animationId1: `d10ani1${id}`,
|
||||||
animationId2: `d10ani2${timestamp}`,
|
animationId2: `d10ani2${id}`,
|
||||||
animationId3: `d10ani3${timestamp}`,
|
animationId3: `d10ani3${id}`,
|
||||||
animationId4: `d10ani4${timestamp}`,
|
animationId4: `d10ani4${id}`,
|
||||||
animationId5: `d10ani5${timestamp}`,
|
animationId5: `d10ani5${id}`,
|
||||||
animationId6: `d10ani6${timestamp}`,
|
animationId6: `d10ani6${id}`,
|
||||||
animationId7: `d10ani7${timestamp}`,
|
animationId7: `d10ani7${id}`,
|
||||||
|
|
||||||
defaultColor: ['#00c2ff', 'rgba(0, 194, 255, 0.3)'],
|
defaultColor: ['#00c2ff', 'rgba(0, 194, 255, 0.3)'],
|
||||||
|
|
||||||
|
@ -72,7 +72,6 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
|
||||||
return {
|
return {
|
||||||
ref: 'decoration-11',
|
ref: 'decoration-11',
|
||||||
|
|
||||||
|
@ -7,20 +7,22 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
flex: 1;
|
||||||
}
|
}
|
||||||
.dv-decoration-4 .normal {
|
.dv-decoration-4 .normal {
|
||||||
height: 0% !important;
|
|
||||||
animation: ani-height 3s ease-in-out infinite;
|
animation: ani-height 3s ease-in-out infinite;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
margin-left: -2px;
|
margin-left: -2px;
|
||||||
}
|
}
|
||||||
.dv-decoration-4 .reverse {
|
.dv-decoration-4 .reverse {
|
||||||
width: 0% !important;
|
|
||||||
animation: ani-width 3s ease-in-out infinite;
|
animation: ani-width 3s ease-in-out infinite;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
margin-top: -2px;
|
margin-top: -2px;
|
||||||
}
|
}
|
||||||
@keyframes ani-height {
|
@keyframes ani-height {
|
||||||
|
0% {
|
||||||
|
height: 0%;
|
||||||
|
}
|
||||||
70% {
|
70% {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
@ -29,6 +31,9 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
@keyframes ani-width {
|
@keyframes ani-width {
|
||||||
|
0% {
|
||||||
|
width: 0%;
|
||||||
|
}
|
||||||
70% {
|
70% {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
@ -85,6 +85,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import autoResize from '../../../mixin/autoResize'
|
import autoResize from '../../../mixin/autoResize'
|
||||||
|
import { uuid } from '../../../util/index'
|
||||||
|
|
||||||
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
||||||
|
|
||||||
@ -106,11 +107,11 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
ref: 'decoration-9',
|
ref: 'decoration-9',
|
||||||
|
|
||||||
polygonId: `decoration-9-polygon-${timestamp}`,
|
polygonId: `decoration-9-polygon-${id}`,
|
||||||
|
|
||||||
svgWH: [100, 100],
|
svgWH: [100, 100],
|
||||||
|
|
||||||
|
@ -67,6 +67,11 @@ export default {
|
|||||||
fontSize: 30,
|
fontSize: 30,
|
||||||
fill: '#3de7c9'
|
fill: '#3de7c9'
|
||||||
},
|
},
|
||||||
|
/**
|
||||||
|
* @description Number formatter
|
||||||
|
* @type {Null|Function}
|
||||||
|
*/
|
||||||
|
formatter: undefined,
|
||||||
/**
|
/**
|
||||||
* @description CRender animationCurve
|
* @description CRender animationCurve
|
||||||
* @type {String}
|
* @type {String}
|
||||||
@ -130,7 +135,7 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
getShape () {
|
getShape () {
|
||||||
const { number, content, toFixed, textAlign, rowGap } = this.mergedConfig
|
const { number, content, toFixed, textAlign, rowGap, formatter } = this.mergedConfig
|
||||||
|
|
||||||
const [w, h] = this.renderer.area
|
const [w, h] = this.renderer.area
|
||||||
|
|
||||||
@ -144,7 +149,8 @@ export default {
|
|||||||
content,
|
content,
|
||||||
toFixed,
|
toFixed,
|
||||||
position,
|
position,
|
||||||
rowGap
|
rowGap,
|
||||||
|
formatter
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
getStyle () {
|
getStyle () {
|
||||||
|
@ -153,7 +153,7 @@ import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
|||||||
|
|
||||||
import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
|
import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
|
||||||
|
|
||||||
import { randomExtend, getPointDistance } from '../../../util/index'
|
import { randomExtend, getPointDistance, uuid } from '../../../util/index'
|
||||||
|
|
||||||
import autoResize from '../../../mixin/autoResize'
|
import autoResize from '../../../mixin/autoResize'
|
||||||
|
|
||||||
@ -171,14 +171,14 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
ref: 'dv-flyline-chart',
|
ref: 'dv-flyline-chart',
|
||||||
unique: Math.random(),
|
unique: Math.random(),
|
||||||
maskId: `flyline-mask-id-${timestamp}`,
|
maskId: `flyline-mask-id-${id}`,
|
||||||
maskCircleId: `mask-circle-id-${timestamp}`,
|
maskCircleId: `mask-circle-id-${id}`,
|
||||||
gradientId: `gradient-id-${timestamp}`,
|
gradientId: `gradient-id-${id}`,
|
||||||
gradient2Id: `gradient2-id-${timestamp}`,
|
gradient2Id: `gradient2-id-${id}`,
|
||||||
|
|
||||||
defaultConfig: {
|
defaultConfig: {
|
||||||
/**
|
/**
|
||||||
|
@ -155,7 +155,7 @@ import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
|||||||
|
|
||||||
import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
|
import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
|
||||||
|
|
||||||
import { randomExtend, getPointDistance } from '../../../util/index'
|
import { randomExtend, getPointDistance, uuid } from '../../../util/index'
|
||||||
|
|
||||||
import autoResize from '../../../mixin/autoResize'
|
import autoResize from '../../../mixin/autoResize'
|
||||||
|
|
||||||
@ -173,12 +173,12 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
ref: 'dv-flyline-chart-enhanced',
|
ref: 'dv-flyline-chart-enhanced',
|
||||||
unique: Math.random(),
|
unique: Math.random(),
|
||||||
flylineGradientId: `flyline-gradient-id-${timestamp}`,
|
flylineGradientId: `flyline-gradient-id-${id}`,
|
||||||
haloGradientId: `halo-gradient-id-${timestamp}`,
|
haloGradientId: `halo-gradient-id-${id}`,
|
||||||
/**
|
/**
|
||||||
* @description Type Declaration
|
* @description Type Declaration
|
||||||
*
|
*
|
||||||
|
@ -44,6 +44,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { uuid } from '../../../util/index'
|
||||||
|
|
||||||
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
||||||
|
|
||||||
import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
|
import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
|
||||||
@ -57,10 +59,10 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
gradientId1: `percent-pond-gradientId1-${timestamp}`,
|
gradientId1: `percent-pond-gradientId1-${id}`,
|
||||||
gradientId2: `percent-pond-gradientId2-${timestamp}`,
|
gradientId2: `percent-pond-gradientId2-${id}`,
|
||||||
|
|
||||||
width: 0,
|
width: 0,
|
||||||
height: 0,
|
height: 0,
|
||||||
@ -234,10 +236,10 @@ export default {
|
|||||||
|
|
||||||
await $nextTick()
|
await $nextTick()
|
||||||
|
|
||||||
const dom = $refs['percent-pond']
|
const { clientWidth, clientHeight } = $refs['percent-pond']
|
||||||
|
|
||||||
this.width = dom.clientWidth
|
this.width = clientWidth
|
||||||
this.height = dom.clientHeight
|
this.height = clientHeight
|
||||||
},
|
},
|
||||||
mergeConfig () {
|
mergeConfig () {
|
||||||
const { config, defaultConfig } = this
|
const { config, defaultConfig } = this
|
||||||
|
@ -37,7 +37,9 @@
|
|||||||
:style="`width: ${widths[ci]}px;`"
|
:style="`width: ${widths[ci]}px;`"
|
||||||
:align="aligns[ci]"
|
:align="aligns[ci]"
|
||||||
v-html="ceil"
|
v-html="ceil"
|
||||||
@click="emitEvent(ri, ci, row, ceil)"
|
@click="emitEvent('click', ri, ci, row, ceil)"
|
||||||
|
@mouseenter="handleHover(true, ri, ci, row, ceil)"
|
||||||
|
@mouseleave="handleHover(false)"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -146,7 +148,14 @@ export default {
|
|||||||
* @default carousel = 'single'
|
* @default carousel = 'single'
|
||||||
* @example carousel = 'single' | 'page'
|
* @example carousel = 'single' | 'page'
|
||||||
*/
|
*/
|
||||||
carousel: 'single'
|
carousel: 'single',
|
||||||
|
/**
|
||||||
|
* @description Pause scroll when mouse hovered
|
||||||
|
* @type {Boolean}
|
||||||
|
* @default hoverPause = true
|
||||||
|
* @example hoverPause = true | false
|
||||||
|
*/
|
||||||
|
hoverPause: true
|
||||||
},
|
},
|
||||||
|
|
||||||
mergedConfig: null,
|
mergedConfig: null,
|
||||||
@ -178,10 +187,24 @@ export default {
|
|||||||
|
|
||||||
stopAnimation()
|
stopAnimation()
|
||||||
|
|
||||||
|
this.animationIndex = 0
|
||||||
|
|
||||||
calcData()
|
calcData()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
handleHover(enter, ri, ci, row, ceil){
|
||||||
|
const { mergedConfig, emitEvent, stopAnimation, animation } = this
|
||||||
|
|
||||||
|
if (enter) emitEvent('mouseover', ri, ci, row, ceil)
|
||||||
|
if (!mergedConfig.hoverPause) return
|
||||||
|
|
||||||
|
if (enter) {
|
||||||
|
stopAnimation()
|
||||||
|
} else {
|
||||||
|
animation(true)
|
||||||
|
}
|
||||||
|
},
|
||||||
afterAutoResizeMixinInit () {
|
afterAutoResizeMixinInit () {
|
||||||
const { calcData } = this
|
const { calcData } = this
|
||||||
|
|
||||||
@ -355,10 +378,10 @@ export default {
|
|||||||
|
|
||||||
clearTimeout(animationHandler)
|
clearTimeout(animationHandler)
|
||||||
},
|
},
|
||||||
emitEvent (ri, ci, row, ceil) {
|
emitEvent (type, ri, ci, row, ceil) {
|
||||||
const { ceils, rowIndex } = row
|
const { ceils, rowIndex } = row
|
||||||
|
|
||||||
this.$emit('click', {
|
this.$emit(type, {
|
||||||
row: ceils,
|
row: ceils,
|
||||||
ceil,
|
ceil,
|
||||||
rowIndex,
|
rowIndex,
|
||||||
|
@ -153,9 +153,19 @@ export default {
|
|||||||
|
|
||||||
const value = data.map(({ value }) => value)
|
const value = data.map(({ value }) => value)
|
||||||
|
|
||||||
|
const min = Math.min(...value) || 0
|
||||||
|
|
||||||
|
// abs of min
|
||||||
|
const minAbs = Math.abs(min)
|
||||||
|
|
||||||
const max = Math.max(...value) || 0
|
const max = Math.max(...value) || 0
|
||||||
|
|
||||||
data = data.map((row, i) => ({ ...row, ranking: i + 1, percent: row.value / max * 100 }))
|
// abs of max
|
||||||
|
const maxAbs = Math.abs(max)
|
||||||
|
|
||||||
|
const total = max + minAbs
|
||||||
|
|
||||||
|
data = data.map((row, i) => ({ ...row, ranking: i + 1, percent: (row.value + minAbs) / total * 100 }))
|
||||||
|
|
||||||
const rowLength = data.length
|
const rowLength = data.length
|
||||||
|
|
||||||
|
@ -40,6 +40,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { uuid } from '../../../util/index'
|
||||||
|
|
||||||
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
||||||
|
|
||||||
import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
|
import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
|
||||||
@ -53,9 +55,9 @@ export default {
|
|||||||
default: () => ({})
|
default: () => ({})
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
gradientId: `water-level-pond-${timestamp}`,
|
gradientId: `water-level-pond-${id}`,
|
||||||
|
|
||||||
defaultConfig: {
|
defaultConfig: {
|
||||||
/**
|
/**
|
||||||
|
@ -37,3 +37,11 @@ export function getPointDistance (pointOne, pointTwo) {
|
|||||||
|
|
||||||
return Math.sqrt(minusX * minusX + minusY * minusY)
|
return Math.sqrt(minusX * minusX + minusY * minusY)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function uuid (hasHyphen) {
|
||||||
|
return (hasHyphen ? 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx' : 'xxxxxxxxxxxx4xxxyxxxxxxxxxxxxxxx').replace(/[xy]/g, function (c) {
|
||||||
|
const r = Math.random() * 16 | 0
|
||||||
|
const v = c == 'x' ? r : (r & 0x3 | 0x8)
|
||||||
|
return v.toString(16)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@jiaminghi/data-view",
|
"name": "@jiaminghi/data-view",
|
||||||
"version": "2.8.1",
|
"version": "2.9.3",
|
||||||
"author": "JiaMing <743192023@qq.com>",
|
"author": "JiaMing <743192023@qq.com>",
|
||||||
"description": "Vue Large screen data display component library",
|
"description": "Vue Large screen data display component library",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
|
@ -94,7 +94,13 @@ export default {
|
|||||||
* @type {String}
|
* @type {String}
|
||||||
* @default animationFrame = 50
|
* @default animationFrame = 50
|
||||||
*/
|
*/
|
||||||
animationFrame: 50
|
animationFrame: 50,
|
||||||
|
/**
|
||||||
|
* @description showOriginValue
|
||||||
|
* @type {Boolean}
|
||||||
|
* @default showOriginValue = false
|
||||||
|
*/
|
||||||
|
showOriginValue: false
|
||||||
},
|
},
|
||||||
|
|
||||||
mergedConfig: null,
|
mergedConfig: null,
|
||||||
@ -112,17 +118,30 @@ export default {
|
|||||||
|
|
||||||
if (!mergedConfig) return {}
|
if (!mergedConfig) return {}
|
||||||
|
|
||||||
const { digitalFlopStyle, digitalFlopToFixed, data } = mergedConfig
|
const {
|
||||||
|
digitalFlopStyle,
|
||||||
|
digitalFlopToFixed,
|
||||||
|
data,
|
||||||
|
showOriginValue
|
||||||
|
} = mergedConfig
|
||||||
|
|
||||||
const value = data.map(({ value }) => value)
|
const value = data.map(({ value }) => value)
|
||||||
|
|
||||||
|
let displayValue
|
||||||
|
|
||||||
|
if (showOriginValue) {
|
||||||
|
displayValue = value[activeIndex]
|
||||||
|
} else {
|
||||||
const sum = value.reduce((all, v) => all + v, 0)
|
const sum = value.reduce((all, v) => all + v, 0)
|
||||||
|
|
||||||
const percent = parseFloat(value[activeIndex] / sum * 100) || 0
|
const percent = parseFloat((value[activeIndex] / sum) * 100) || 0
|
||||||
|
|
||||||
|
displayValue = percent
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
content: '{nt}%',
|
content: showOriginValue ? '{nt}' : '{nt}%',
|
||||||
number: [percent],
|
number: [displayValue],
|
||||||
style: digitalFlopStyle,
|
style: digitalFlopStyle,
|
||||||
toFixed: digitalFlopToFixed
|
toFixed: digitalFlopToFixed
|
||||||
}
|
}
|
||||||
@ -173,7 +192,10 @@ export default {
|
|||||||
mergeConfig() {
|
mergeConfig() {
|
||||||
const { defaultConfig, config } = this
|
const { defaultConfig, config } = this
|
||||||
|
|
||||||
this.mergedConfig = deepMerge(deepClone(defaultConfig, true), config || {})
|
this.mergedConfig = deepMerge(
|
||||||
|
deepClone(defaultConfig, true),
|
||||||
|
config || {}
|
||||||
|
)
|
||||||
},
|
},
|
||||||
setRingOption() {
|
setRingOption() {
|
||||||
const { getRingOption, chart, ringAnimation } = this
|
const { getRingOption, chart, ringAnimation } = this
|
||||||
@ -217,7 +239,8 @@ export default {
|
|||||||
|
|
||||||
let realRadius = active ? activeRadius : radius
|
let realRadius = active ? activeRadius : radius
|
||||||
|
|
||||||
if (typeof realRadius !== 'number') realRadius = parseInt(realRadius) / 100 * maxRadius
|
if (typeof realRadius !== 'number')
|
||||||
|
realRadius = (parseInt(realRadius) / 100) * maxRadius
|
||||||
|
|
||||||
const insideRadius = realRadius - halfLineWidth
|
const insideRadius = realRadius - halfLineWidth
|
||||||
const outSideRadius = realRadius + halfLineWidth
|
const outSideRadius = realRadius + halfLineWidth
|
||||||
|
@ -216,6 +216,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import autoResize from '../../../mixin/autoResize'
|
import autoResize from '../../../mixin/autoResize'
|
||||||
|
import { uuid } from '../../../util/index'
|
||||||
|
|
||||||
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
||||||
|
|
||||||
@ -245,10 +246,10 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
ref: 'border-box-11',
|
ref: 'border-box-11',
|
||||||
filterId: `border-box-11-filterId-${timestamp}`,
|
filterId: `border-box-11-filterId-${id}`,
|
||||||
|
|
||||||
defaultColor: ['#8aaafb', '#1f33a2'],
|
defaultColor: ['#8aaafb', '#1f33a2'],
|
||||||
|
|
||||||
|
@ -92,6 +92,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import autoResize from '../../../mixin/autoResize'
|
import autoResize from '../../../mixin/autoResize'
|
||||||
|
import { uuid } from '../../../util/index'
|
||||||
|
|
||||||
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
||||||
|
|
||||||
@ -113,10 +114,10 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = +new Date()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
ref: 'border-box-12',
|
ref: 'border-box-12',
|
||||||
filterId: `borderr-box-12-filterId-${timestamp}`,
|
filterId: `borderr-box-12-filterId-${id}`,
|
||||||
|
|
||||||
defaultColor: ['#2e6099', '#7ce7fd'],
|
defaultColor: ['#2e6099', '#7ce7fd'],
|
||||||
|
|
||||||
|
@ -61,7 +61,6 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = +new Date()
|
|
||||||
return {
|
return {
|
||||||
ref: 'border-box-13',
|
ref: 'border-box-13',
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
<defs>
|
<defs>
|
||||||
<path
|
<path
|
||||||
:id="path"
|
:id="path"
|
||||||
:d="`M2.5, 2.5 L${width - 2.5}, 2.5 L${width - 2.5}, ${height - 2.5} L2.5, ${height - 2.5} L2.5, 2.5`"
|
:d="pathD"
|
||||||
fill="transparent"
|
fill="transparent"
|
||||||
/>
|
/>
|
||||||
<radialGradient
|
<radialGradient
|
||||||
@ -25,7 +25,7 @@
|
|||||||
<circle cx="0" cy="0" r="150" :fill="`url(#${gradient})`">
|
<circle cx="0" cy="0" r="150" :fill="`url(#${gradient})`">
|
||||||
<animateMotion
|
<animateMotion
|
||||||
:dur="`${dur}s`"
|
:dur="`${dur}s`"
|
||||||
:path="`M2.5, 2.5 L${width - 2.5}, 2.5 L${width - 2.5}, ${height - 2.5} L2.5, ${height - 2.5} L2.5, 2.5`"
|
:path="pathD"
|
||||||
rotate="auto"
|
rotate="auto"
|
||||||
repeatCount="indefinite"
|
repeatCount="indefinite"
|
||||||
/>
|
/>
|
||||||
@ -65,6 +65,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import autoResize from '../../../mixin/autoResize'
|
import autoResize from '../../../mixin/autoResize'
|
||||||
|
import { uuid } from '../../../util/index'
|
||||||
|
|
||||||
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
||||||
|
|
||||||
@ -85,15 +86,19 @@ export default {
|
|||||||
backgroundColor: {
|
backgroundColor: {
|
||||||
type: String,
|
type: String,
|
||||||
default: 'transparent'
|
default: 'transparent'
|
||||||
|
},
|
||||||
|
reverse: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
ref: 'border-box-8',
|
ref: 'border-box-8',
|
||||||
path: `border-box-8-path-${timestamp}`,
|
path: `border-box-8-path-${id}`,
|
||||||
gradient: `border-box-8-gradient-${timestamp}`,
|
gradient: `border-box-8-gradient-${id}`,
|
||||||
mask: `border-box-8-mask-${timestamp}`,
|
mask: `border-box-8-mask-${id}`,
|
||||||
|
|
||||||
defaultColor: ['#235fa7', '#4fd2dd'],
|
defaultColor: ['#235fa7', '#4fd2dd'],
|
||||||
|
|
||||||
@ -105,6 +110,13 @@ export default {
|
|||||||
const { width, height } = this
|
const { width, height } = this
|
||||||
|
|
||||||
return (width + height - 5) * 2
|
return (width + height - 5) * 2
|
||||||
|
},
|
||||||
|
pathD () {
|
||||||
|
const { reverse, width, height } = this
|
||||||
|
|
||||||
|
if (reverse) return `M 2.5, 2.5 L 2.5, ${height - 2.5} L ${width - 2.5}, ${height - 2.5} L ${width - 2.5}, 2.5 L 2.5, 2.5`
|
||||||
|
|
||||||
|
return `M2.5, 2.5 L${width - 2.5}, 2.5 L${width - 2.5}, ${height - 2.5} L2.5, ${height - 2.5} L2.5, 2.5`
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
@ -125,6 +125,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import autoResize from '../../../mixin/autoResize'
|
import autoResize from '../../../mixin/autoResize'
|
||||||
|
import { uuid } from '../../../util/index'
|
||||||
|
|
||||||
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
||||||
|
|
||||||
@ -144,12 +145,12 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
ref: 'border-box-9',
|
ref: 'border-box-9',
|
||||||
|
|
||||||
gradientId: `border-box-9-gradient-${timestamp}`,
|
gradientId: `border-box-9-gradient-${id}`,
|
||||||
maskId: `border-box-9-mask-${timestamp}`,
|
maskId: `border-box-9-mask-${id}`,
|
||||||
|
|
||||||
defaultColor: ['#11eefd', '#0078d2'],
|
defaultColor: ['#11eefd', '#0078d2'],
|
||||||
|
|
||||||
|
@ -7,16 +7,23 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="capsule-container">
|
<div class="capsule-container">
|
||||||
|
<div class="capsule-item" v-for="(capsule, index) in capsuleLength" :key="index">
|
||||||
<div
|
<div
|
||||||
class="capsule-item"
|
class="capsule-item-column"
|
||||||
v-for="(capsule, index) in capsuleLength"
|
:style="`width: ${capsule * 100}%; background-color: ${mergedConfig.colors[index % mergedConfig.colors.length]};`"
|
||||||
:key="index"
|
|
||||||
>
|
>
|
||||||
<div :style="`width: ${capsule * 100}%; background-color: ${mergedConfig.colors[index % mergedConfig.colors.length]};`"></div>
|
<div
|
||||||
|
v-if="mergedConfig.showValue"
|
||||||
|
class="capsule-item-value"
|
||||||
|
>{{ capsuleValue[index] }}</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="unit-label">
|
<div class="unit-label">
|
||||||
<div v-for="(label, index) in labelData" :key="label + index">{{ label }}</div>
|
<div
|
||||||
|
v-for="(label, index) in labelData"
|
||||||
|
:key="label + index"
|
||||||
|
>{{ label }}</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@ -54,19 +61,35 @@ export default {
|
|||||||
* @default color = ['#37a2da', '#32c5e9', '#67e0e3', '#9fe6b8', '#ffdb5c', '#ff9f7f', '#fb7293']
|
* @default color = ['#37a2da', '#32c5e9', '#67e0e3', '#9fe6b8', '#ffdb5c', '#ff9f7f', '#fb7293']
|
||||||
* @example color = ['#000', 'rgb(0, 0, 0)', 'rgba(0, 0, 0, 1)', 'red']
|
* @example color = ['#000', 'rgb(0, 0, 0)', 'rgba(0, 0, 0, 1)', 'red']
|
||||||
*/
|
*/
|
||||||
colors: ['#37a2da', '#32c5e9', '#67e0e3', '#9fe6b8', '#ffdb5c', '#ff9f7f', '#fb7293'],
|
colors: [
|
||||||
|
'#37a2da',
|
||||||
|
'#32c5e9',
|
||||||
|
'#67e0e3',
|
||||||
|
'#9fe6b8',
|
||||||
|
'#ffdb5c',
|
||||||
|
'#ff9f7f',
|
||||||
|
'#fb7293'
|
||||||
|
],
|
||||||
/**
|
/**
|
||||||
* @description Chart unit
|
* @description Chart unit
|
||||||
* @type {String}
|
* @type {String}
|
||||||
* @default unit = ''
|
* @default unit = ''
|
||||||
*/
|
*/
|
||||||
unit: ''
|
unit: '',
|
||||||
|
/**
|
||||||
|
* @description Show item value
|
||||||
|
* @type {Boolean}
|
||||||
|
* @default showValue = false
|
||||||
|
*/
|
||||||
|
showValue: false
|
||||||
},
|
},
|
||||||
|
|
||||||
mergedConfig: null,
|
mergedConfig: null,
|
||||||
|
|
||||||
capsuleLength: [],
|
capsuleLength: [],
|
||||||
labelData: []
|
capsuleValue: [],
|
||||||
|
labelData: [],
|
||||||
|
labelDataLength: []
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
@ -87,7 +110,10 @@ export default {
|
|||||||
mergeConfig() {
|
mergeConfig() {
|
||||||
let { config, defaultConfig } = this
|
let { config, defaultConfig } = this
|
||||||
|
|
||||||
this.mergedConfig = deepMerge(deepClone(defaultConfig, true), config || {})
|
this.mergedConfig = deepMerge(
|
||||||
|
deepClone(defaultConfig, true),
|
||||||
|
config || {}
|
||||||
|
)
|
||||||
},
|
},
|
||||||
calcCapsuleLengthAndLabelData() {
|
calcCapsuleLengthAndLabelData() {
|
||||||
const { data } = this.mergedConfig
|
const { data } = this.mergedConfig
|
||||||
@ -98,11 +124,21 @@ export default {
|
|||||||
|
|
||||||
const maxValue = Math.max(...capsuleValue)
|
const maxValue = Math.max(...capsuleValue)
|
||||||
|
|
||||||
this.capsuleLength = capsuleValue.map(v => maxValue ? v / maxValue : 0)
|
this.capsuleValue = capsuleValue
|
||||||
|
|
||||||
|
this.capsuleLength = capsuleValue.map(v => (maxValue ? v / maxValue : 0))
|
||||||
|
|
||||||
const oneFifth = maxValue / 5
|
const oneFifth = maxValue / 5
|
||||||
|
|
||||||
this.labelData = Array.from(new Set(new Array(6).fill(0).map((v, i) => Math.ceil(i * oneFifth))))
|
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() {
|
mounted() {
|
||||||
@ -150,21 +186,30 @@ export default {
|
|||||||
margin: 5px 0px;
|
margin: 5px 0px;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
|
||||||
div {
|
.capsule-item-column {
|
||||||
|
position: relative;
|
||||||
height: 8px;
|
height: 8px;
|
||||||
margin-top: 1px;
|
margin-top: 1px;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
transition: all 0.3s;
|
transition: all 0.3s;
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
.capsule-item-value {
|
||||||
|
font-size: 12px;
|
||||||
|
transform: translateX(100%);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.unit-label {
|
.unit-label {
|
||||||
height: 20px;
|
height: 20px;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
position: relative;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.unit-text {
|
.unit-text {
|
||||||
|
@ -5,6 +5,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { uuid } from '../../../util/index'
|
||||||
|
|
||||||
import autoResize from '../../../mixin/autoResize'
|
import autoResize from '../../../mixin/autoResize'
|
||||||
|
|
||||||
import Charts from '@jiaminghi/charts'
|
import Charts from '@jiaminghi/charts'
|
||||||
@ -19,10 +21,10 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
ref: `charts-container-${timestamp}`,
|
ref: `charts-container-${id}`,
|
||||||
chartRef: `chart-${timestamp}`,
|
chartRef: `chart-${id}`,
|
||||||
|
|
||||||
chart: null
|
chart: null
|
||||||
}
|
}
|
||||||
|
@ -147,6 +147,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import autoResize from '../../../mixin/autoResize'
|
import autoResize from '../../../mixin/autoResize'
|
||||||
|
import { uuid } from '../../../util/index'
|
||||||
|
|
||||||
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
||||||
|
|
||||||
@ -162,17 +163,17 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
ref: 'decoration-10',
|
ref: 'decoration-10',
|
||||||
|
|
||||||
animationId1: `d10ani1${timestamp}`,
|
animationId1: `d10ani1${id}`,
|
||||||
animationId2: `d10ani2${timestamp}`,
|
animationId2: `d10ani2${id}`,
|
||||||
animationId3: `d10ani3${timestamp}`,
|
animationId3: `d10ani3${id}`,
|
||||||
animationId4: `d10ani4${timestamp}`,
|
animationId4: `d10ani4${id}`,
|
||||||
animationId5: `d10ani5${timestamp}`,
|
animationId5: `d10ani5${id}`,
|
||||||
animationId6: `d10ani6${timestamp}`,
|
animationId6: `d10ani6${id}`,
|
||||||
animationId7: `d10ani7${timestamp}`,
|
animationId7: `d10ani7${id}`,
|
||||||
|
|
||||||
defaultColor: ['#00c2ff', 'rgba(0, 194, 255, 0.3)'],
|
defaultColor: ['#00c2ff', 'rgba(0, 194, 255, 0.3)'],
|
||||||
|
|
||||||
|
@ -72,7 +72,6 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
|
||||||
return {
|
return {
|
||||||
ref: 'decoration-11',
|
ref: 'decoration-11',
|
||||||
|
|
||||||
|
@ -83,23 +83,26 @@ export default {
|
|||||||
display: flex;
|
display: flex;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.normal {
|
.normal {
|
||||||
height: 0% !important;
|
|
||||||
animation: ani-height 3s ease-in-out infinite;
|
animation: ani-height 3s ease-in-out infinite;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
margin-left: -2px;
|
margin-left: -2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.reverse {
|
.reverse {
|
||||||
width: 0% !important;
|
|
||||||
animation: ani-width 3s ease-in-out infinite;
|
animation: ani-width 3s ease-in-out infinite;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
margin-top: -2px;
|
margin-top: -2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes ani-height {
|
@keyframes ani-height {
|
||||||
|
0% {
|
||||||
|
height: 0%;
|
||||||
|
}
|
||||||
|
|
||||||
70% {
|
70% {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
@ -110,6 +113,10 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@keyframes ani-width {
|
@keyframes ani-width {
|
||||||
|
0% {
|
||||||
|
width: 0%;
|
||||||
|
}
|
||||||
|
|
||||||
70% {
|
70% {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
@ -85,6 +85,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import autoResize from '../../../mixin/autoResize'
|
import autoResize from '../../../mixin/autoResize'
|
||||||
|
import { uuid } from '../../../util/index'
|
||||||
|
|
||||||
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
||||||
|
|
||||||
@ -106,11 +107,11 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
ref: 'decoration-9',
|
ref: 'decoration-9',
|
||||||
|
|
||||||
polygonId: `decoration-9-polygon-${timestamp}`,
|
polygonId: `decoration-9-polygon-${id}`,
|
||||||
|
|
||||||
svgWH: [100, 100],
|
svgWH: [100, 100],
|
||||||
|
|
||||||
|
@ -67,6 +67,11 @@ export default {
|
|||||||
fontSize: 30,
|
fontSize: 30,
|
||||||
fill: '#3de7c9'
|
fill: '#3de7c9'
|
||||||
},
|
},
|
||||||
|
/**
|
||||||
|
* @description Number formatter
|
||||||
|
* @type {Null|Function}
|
||||||
|
*/
|
||||||
|
formatter: undefined,
|
||||||
/**
|
/**
|
||||||
* @description CRender animationCurve
|
* @description CRender animationCurve
|
||||||
* @type {String}
|
* @type {String}
|
||||||
@ -130,7 +135,7 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
getShape () {
|
getShape () {
|
||||||
const { number, content, toFixed, textAlign, rowGap } = this.mergedConfig
|
const { number, content, toFixed, textAlign, rowGap, formatter } = this.mergedConfig
|
||||||
|
|
||||||
const [w, h] = this.renderer.area
|
const [w, h] = this.renderer.area
|
||||||
|
|
||||||
@ -144,7 +149,8 @@ export default {
|
|||||||
content,
|
content,
|
||||||
toFixed,
|
toFixed,
|
||||||
position,
|
position,
|
||||||
rowGap
|
rowGap,
|
||||||
|
formatter
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
getStyle () {
|
getStyle () {
|
||||||
|
@ -153,7 +153,7 @@ import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
|||||||
|
|
||||||
import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
|
import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
|
||||||
|
|
||||||
import { randomExtend, getPointDistance } from '../../../util/index'
|
import { randomExtend, getPointDistance, uuid } from '../../../util/index'
|
||||||
|
|
||||||
import autoResize from '../../../mixin/autoResize'
|
import autoResize from '../../../mixin/autoResize'
|
||||||
|
|
||||||
@ -171,14 +171,14 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
ref: 'dv-flyline-chart',
|
ref: 'dv-flyline-chart',
|
||||||
unique: Math.random(),
|
unique: Math.random(),
|
||||||
maskId: `flyline-mask-id-${timestamp}`,
|
maskId: `flyline-mask-id-${id}`,
|
||||||
maskCircleId: `mask-circle-id-${timestamp}`,
|
maskCircleId: `mask-circle-id-${id}`,
|
||||||
gradientId: `gradient-id-${timestamp}`,
|
gradientId: `gradient-id-${id}`,
|
||||||
gradient2Id: `gradient2-id-${timestamp}`,
|
gradient2Id: `gradient2-id-${id}`,
|
||||||
|
|
||||||
defaultConfig: {
|
defaultConfig: {
|
||||||
/**
|
/**
|
||||||
|
@ -155,7 +155,7 @@ import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
|||||||
|
|
||||||
import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
|
import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
|
||||||
|
|
||||||
import { randomExtend, getPointDistance } from '../../../util/index'
|
import { randomExtend, getPointDistance, uuid } from '../../../util/index'
|
||||||
|
|
||||||
import autoResize from '../../../mixin/autoResize'
|
import autoResize from '../../../mixin/autoResize'
|
||||||
|
|
||||||
@ -173,12 +173,12 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
ref: 'dv-flyline-chart-enhanced',
|
ref: 'dv-flyline-chart-enhanced',
|
||||||
unique: Math.random(),
|
unique: Math.random(),
|
||||||
flylineGradientId: `flyline-gradient-id-${timestamp}`,
|
flylineGradientId: `flyline-gradient-id-${id}`,
|
||||||
haloGradientId: `halo-gradient-id-${timestamp}`,
|
haloGradientId: `halo-gradient-id-${id}`,
|
||||||
/**
|
/**
|
||||||
* @description Type Declaration
|
* @description Type Declaration
|
||||||
*
|
*
|
||||||
|
@ -44,6 +44,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { uuid } from '../../../util/index'
|
||||||
|
|
||||||
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
||||||
|
|
||||||
import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
|
import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
|
||||||
@ -57,10 +59,10 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
gradientId1: `percent-pond-gradientId1-${timestamp}`,
|
gradientId1: `percent-pond-gradientId1-${id}`,
|
||||||
gradientId2: `percent-pond-gradientId2-${timestamp}`,
|
gradientId2: `percent-pond-gradientId2-${id}`,
|
||||||
|
|
||||||
width: 0,
|
width: 0,
|
||||||
height: 0,
|
height: 0,
|
||||||
@ -234,10 +236,10 @@ export default {
|
|||||||
|
|
||||||
await $nextTick()
|
await $nextTick()
|
||||||
|
|
||||||
const dom = $refs['percent-pond']
|
const { clientWidth, clientHeight } = $refs['percent-pond']
|
||||||
|
|
||||||
this.width = dom.clientWidth
|
this.width = clientWidth
|
||||||
this.height = dom.clientHeight
|
this.height = clientHeight
|
||||||
},
|
},
|
||||||
mergeConfig () {
|
mergeConfig () {
|
||||||
const { config, defaultConfig } = this
|
const { config, defaultConfig } = this
|
||||||
|
@ -37,7 +37,9 @@
|
|||||||
:style="`width: ${widths[ci]}px;`"
|
:style="`width: ${widths[ci]}px;`"
|
||||||
:align="aligns[ci]"
|
:align="aligns[ci]"
|
||||||
v-html="ceil"
|
v-html="ceil"
|
||||||
@click="emitEvent(ri, ci, row, ceil)"
|
@click="emitEvent('click', ri, ci, row, ceil)"
|
||||||
|
@mouseenter="handleHover(true, ri, ci, row, ceil)"
|
||||||
|
@mouseleave="handleHover(false)"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@ -146,7 +148,14 @@ export default {
|
|||||||
* @default carousel = 'single'
|
* @default carousel = 'single'
|
||||||
* @example carousel = 'single' | 'page'
|
* @example carousel = 'single' | 'page'
|
||||||
*/
|
*/
|
||||||
carousel: 'single'
|
carousel: 'single',
|
||||||
|
/**
|
||||||
|
* @description Pause scroll when mouse hovered
|
||||||
|
* @type {Boolean}
|
||||||
|
* @default hoverPause = true
|
||||||
|
* @example hoverPause = true | false
|
||||||
|
*/
|
||||||
|
hoverPause: true
|
||||||
},
|
},
|
||||||
|
|
||||||
mergedConfig: null,
|
mergedConfig: null,
|
||||||
@ -178,10 +187,24 @@ export default {
|
|||||||
|
|
||||||
stopAnimation()
|
stopAnimation()
|
||||||
|
|
||||||
|
this.animationIndex = 0
|
||||||
|
|
||||||
calcData()
|
calcData()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
handleHover(enter, ri, ci, row, ceil){
|
||||||
|
const { mergedConfig, emitEvent, stopAnimation, animation } = this
|
||||||
|
|
||||||
|
if (enter) emitEvent('mouseover', ri, ci, row, ceil)
|
||||||
|
if (!mergedConfig.hoverPause) return
|
||||||
|
|
||||||
|
if (enter) {
|
||||||
|
stopAnimation()
|
||||||
|
} else {
|
||||||
|
animation(true)
|
||||||
|
}
|
||||||
|
},
|
||||||
afterAutoResizeMixinInit () {
|
afterAutoResizeMixinInit () {
|
||||||
const { calcData } = this
|
const { calcData } = this
|
||||||
|
|
||||||
@ -355,10 +378,10 @@ export default {
|
|||||||
|
|
||||||
clearTimeout(animationHandler)
|
clearTimeout(animationHandler)
|
||||||
},
|
},
|
||||||
emitEvent (ri, ci, row, ceil) {
|
emitEvent (type, ri, ci, row, ceil) {
|
||||||
const { ceils, rowIndex } = row
|
const { ceils, rowIndex } = row
|
||||||
|
|
||||||
this.$emit('click', {
|
this.$emit(type, {
|
||||||
row: ceils,
|
row: ceils,
|
||||||
ceil,
|
ceil,
|
||||||
rowIndex,
|
rowIndex,
|
||||||
|
@ -153,9 +153,19 @@ export default {
|
|||||||
|
|
||||||
const value = data.map(({ value }) => value)
|
const value = data.map(({ value }) => value)
|
||||||
|
|
||||||
|
const min = Math.min(...value) || 0
|
||||||
|
|
||||||
|
// abs of min
|
||||||
|
const minAbs = Math.abs(min)
|
||||||
|
|
||||||
const max = Math.max(...value) || 0
|
const max = Math.max(...value) || 0
|
||||||
|
|
||||||
data = data.map((row, i) => ({ ...row, ranking: i + 1, percent: row.value / max * 100 }))
|
// abs of max
|
||||||
|
const maxAbs = Math.abs(max)
|
||||||
|
|
||||||
|
const total = max + minAbs
|
||||||
|
|
||||||
|
data = data.map((row, i) => ({ ...row, ranking: i + 1, percent: (row.value + minAbs) / total * 100 }))
|
||||||
|
|
||||||
const rowLength = data.length
|
const rowLength = data.length
|
||||||
|
|
||||||
|
@ -40,6 +40,8 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { uuid } from '../../../util/index'
|
||||||
|
|
||||||
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
import { deepMerge } from '@jiaminghi/charts/lib/util/index'
|
||||||
|
|
||||||
import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
|
import { deepClone } from '@jiaminghi/c-render/lib/plugin/util'
|
||||||
@ -53,9 +55,9 @@ export default {
|
|||||||
default: () => ({})
|
default: () => ({})
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
const timestamp = Date.now()
|
const id = uuid()
|
||||||
return {
|
return {
|
||||||
gradientId: `water-level-pond-${timestamp}`,
|
gradientId: `water-level-pond-${id}`,
|
||||||
|
|
||||||
defaultConfig: {
|
defaultConfig: {
|
||||||
/**
|
/**
|
||||||
|
@ -37,3 +37,11 @@ export function getPointDistance (pointOne, pointTwo) {
|
|||||||
|
|
||||||
return Math.sqrt(minusX * minusX + minusY * minusY)
|
return Math.sqrt(minusX * minusX + minusY * minusY)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function uuid (hasHyphen) {
|
||||||
|
return (hasHyphen ? 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx' : 'xxxxxxxxxxxx4xxxyxxxxxxxxxxxxxxx').replace(/[xy]/g, function (c) {
|
||||||
|
const r = Math.random() * 16 | 0
|
||||||
|
const v = c == 'x' ? r : (r & 0x3 | 0x8)
|
||||||
|
return v.toString(16)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user