给数组的某两项交换位置
// 如果不需要深度克隆也可不引入loadsh
import { cloneDeep } from 'lodash'
/**
* 交换数组中的两个元素位置
* @param beforeIdx 之前位置
* @param newIdx 新的位置
* @param array 源
* @param isDeep 是否深度克隆
*/
export const exchangeArray = <T extends Array<any>> (beforeIdx: number, newIdx: number, array: T, isDeep = false): T => {
const newArray = isDeep ? clone(array) : array
if (beforeIdx > -1 && newIdx > -1) {
// 先替换后面的,然后拿到替换的结果替换前面的
newArray.splice(beforeIdx, 1, newArray.splice(newIdx, 1, newArray[beforeIdx]).pop())
}
return newArray
}