2018-12-05 13:49:32 +08:00
|
|
|
const { parse, stringify } = JSON
|
|
|
|
|
|
|
|
export function deepClone (object) {
|
|
|
|
return parse(stringify(object))
|
|
|
|
}
|
|
|
|
|
|
|
|
export function deleteArrayAllItems (arrays) {
|
|
|
|
arrays.forEach(element => element.splice(0, element.length))
|
|
|
|
}
|
|
|
|
|
|
|
|
export function debounce (delay, callback) {
|
|
|
|
let lastTime
|
|
|
|
|
|
|
|
return function () {
|
|
|
|
clearTimeout(lastTime)
|
|
|
|
|
|
|
|
const [that, args] = [this, arguments]
|
|
|
|
|
|
|
|
lastTime = setTimeout(() => {
|
|
|
|
callback.apply(that, args)
|
|
|
|
}, delay)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-09 19:49:04 +08:00
|
|
|
export function randomExtend (minNum, maxNum) {
|
|
|
|
if (arguments.length === 1) {
|
|
|
|
return parseInt(Math.random() * minNum + 1, 10)
|
|
|
|
} else {
|
|
|
|
return parseInt(Math.random() * (maxNum - minNum + 1) + minNum, 10)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-07 15:50:45 +08:00
|
|
|
export function multipleSum (...num) {
|
|
|
|
let sum = 0
|
|
|
|
|
|
|
|
num.forEach(n => (sum += n))
|
|
|
|
|
|
|
|
return sum
|
|
|
|
}
|
|
|
|
|
2018-12-10 18:23:25 +08:00
|
|
|
export function filterNull (arr) {
|
|
|
|
const tmpArr = []
|
|
|
|
|
2018-12-22 20:56:01 +08:00
|
|
|
arr.forEach(v => ((v || v === 0) && tmpArr.push(v)))
|
2018-12-10 18:23:25 +08:00
|
|
|
|
|
|
|
return tmpArr
|
|
|
|
}
|
|
|
|
|
2018-12-15 19:16:53 +08:00
|
|
|
export function getPointDistance (pointOne, pointTwo) {
|
|
|
|
const minusX = Math.abs(pointOne[0] - pointTwo[0])
|
|
|
|
|
|
|
|
const minusY = Math.abs(pointOne[1] - pointTwo[1])
|
|
|
|
|
|
|
|
return Math.sqrt(minusX * minusX + minusY * minusY)
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getPointToLineDistance (point, linePointOne, linePointTwo) {
|
|
|
|
const a = getPointDistance(point, linePointOne)
|
|
|
|
const b = getPointDistance(point, linePointTwo)
|
|
|
|
const c = getPointDistance(linePointOne, linePointTwo)
|
|
|
|
|
|
|
|
return 0.5 * Math.sqrt((a + b + c) * (a + b - c) * (a + c - b) * (b + c - a)) / c
|
|
|
|
}
|
|
|
|
|
2018-12-20 18:25:49 +08:00
|
|
|
export function getArrayMaxMin (array) {
|
|
|
|
if (!array) return false
|
|
|
|
|
|
|
|
return [getArrayMax(array), getArrayMin(array)]
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getArrayMax (array) {
|
|
|
|
if (!array) return false
|
|
|
|
|
|
|
|
return Math.max(...filterNull(array).map(n =>
|
|
|
|
n instanceof Array ? getArrayMax(n) : n))
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getArrayMin (array) {
|
|
|
|
if (!array) return false
|
|
|
|
|
|
|
|
return Math.min(...filterNull(array).map(n =>
|
|
|
|
n instanceof Array ? getArrayMin(n) : n))
|
|
|
|
}
|
|
|
|
|
2018-12-23 19:07:12 +08:00
|
|
|
export function getAxisPointsPos ([max, min], values, axisOriginPos, axisWH, tagPos, horizon) {
|
|
|
|
const minus = max - min
|
|
|
|
|
|
|
|
return values.map((value, i) => {
|
|
|
|
if (!value && value !== 0) return false
|
|
|
|
|
|
|
|
if (value instanceof Array) {
|
|
|
|
return value.map(v =>
|
|
|
|
getAxisPointPos([max, min], v, axisOriginPos, axisWH, tagPos[i], horizon))
|
|
|
|
}
|
|
|
|
|
|
|
|
const percent = (value - min) / minus
|
|
|
|
|
|
|
|
const length = percent * (horizon ? axisWH[0] : axisWH[1])
|
|
|
|
|
|
|
|
return horizon ? [
|
|
|
|
axisOriginPos[0] + length,
|
|
|
|
tagPos[i][1]
|
|
|
|
] : [
|
|
|
|
tagPos[i][0],
|
|
|
|
axisOriginPos[1] - length
|
|
|
|
]
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
export function getAxisPointPos ([max, min], value, axisOriginPos, axisWH, tagPos, horizon) {
|
2018-12-20 22:37:03 +08:00
|
|
|
const minus = max - min
|
|
|
|
|
|
|
|
const percent = (value - min) / minus
|
|
|
|
|
|
|
|
const length = percent * (horizon ? axisWH[0] : axisWH[1])
|
|
|
|
|
|
|
|
return horizon ? [
|
|
|
|
axisOriginPos[0] + length,
|
|
|
|
tagPos[1]
|
|
|
|
] : [
|
|
|
|
tagPos[0],
|
|
|
|
axisOriginPos[1] - length
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2018-12-05 13:49:32 +08:00
|
|
|
export default function (Vue) {
|
|
|
|
Vue.prototype.deepClone = deepClone
|
|
|
|
Vue.prototype.deleteArrayAllItems = deleteArrayAllItems
|
|
|
|
Vue.prototype.debounce = debounce
|
2018-12-07 15:50:45 +08:00
|
|
|
Vue.prototype.multipleSum = multipleSum
|
2018-12-09 19:49:04 +08:00
|
|
|
Vue.prototype.randomExtend = randomExtend
|
2018-12-10 18:23:25 +08:00
|
|
|
Vue.prototype.filterNull = filterNull
|
2018-12-15 19:16:53 +08:00
|
|
|
Vue.prototype.getPointDistance = getPointDistance
|
|
|
|
Vue.prototype.getPointToLineDistance = getPointToLineDistance
|
2018-12-20 18:25:49 +08:00
|
|
|
Vue.prototype.getArrayMaxMin = getArrayMaxMin
|
|
|
|
Vue.prototype.getArrayMax = getArrayMax
|
|
|
|
Vue.prototype.getArrayMin = getArrayMin
|
2018-12-23 19:07:12 +08:00
|
|
|
Vue.prototype.getAxisPointPos = getAxisPointPos
|
2018-12-20 22:37:03 +08:00
|
|
|
Vue.prototype.getAxisPointsPos = getAxisPointsPos
|
2018-12-05 13:49:32 +08:00
|
|
|
}
|