idraw/packages/util/__tests__/lib/move-material.test.ts
2026-03-28 20:51:44 +08:00

196 lines
6 KiB
TypeScript

import { moveMaterialPosition, calcRevertMovePosition } from '@idraw/util';
import type { StrictMaterial } from '@idraw/types';
const getMaterialBase = () => {
return {
x: 0,
y: 0,
width: 1,
height: 1,
};
};
function generateMaterials(list: any[]): StrictMaterial[] {
const elements: StrictMaterial[] = list.map((item) => {
if (Array.isArray(item)) {
return {
...getMaterialBase(),
id: `group`,
type: 'group',
children: generateMaterials(item),
};
} else {
return {
...getMaterialBase(),
id: `rect-${item}`,
type: 'rect',
};
}
}) as StrictMaterial[];
return elements;
}
describe('@idraw/util: handle-element ', () => {
// [2] -> [4]
// [0, 1, 2, 3, 2, 4, 5]
// [0, 1, 3, 2, 4, 5]
test('moveMaterialPosition, move-down [2] -> [4]', () => {
const list: StrictMaterial[] = generateMaterials([0, 1, 2, 3, 4, 5]);
const from = [2];
const to = [4];
moveMaterialPosition(list, {
from,
to,
});
const expectResult = generateMaterials([0, 1, 3, 2, 4, 5]);
expect(list).toStrictEqual(expectResult);
// revert action
// result [2] [3]
const revertInfo = calcRevertMovePosition({ from, to }) as { from: number[]; to: number[] };
// revert [3] -> [2]
moveMaterialPosition(list, {
from: revertInfo.from,
to: revertInfo.to,
});
expect(list).toStrictEqual(generateMaterials([0, 1, 2, 3, 4, 5]));
});
// [4] -> [2] yes
// [0, 1, 4, 2, 3, 4, 5]
// [0, 1, 4, 2, 3, 5]
test('moveMaterialPosition, move-up [4] -> [2]', () => {
const list: StrictMaterial[] = generateMaterials([0, 1, 2, 3, 4, 5]);
const from = [4];
const to = [2];
moveMaterialPosition(list, {
from,
to,
});
const expectResult = generateMaterials([0, 1, 4, 2, 3, 5]);
expect(list).toStrictEqual(expectResult);
// revert action
// result [5] [2]
const revertInfo = calcRevertMovePosition({ from, to }) as { from: number[]; to: number[] };
// revert [2] -> [5]
moveMaterialPosition(list, {
from: revertInfo.from,
to: revertInfo.to,
});
expect(list).toStrictEqual(generateMaterials([0, 1, 2, 3, 4, 5]));
});
// [3, 2, 1] -> [2]
test('moveMaterialPosition, move-up [3, 2, 1] -> [2]', () => {
const list: StrictMaterial[] = generateMaterials([0, 1, 2, [0, 1, [0, 1, 2, 3], 3], 4, 5]);
const from = [3, 2, 1];
const to = [2];
moveMaterialPosition(list, {
from,
to,
});
const expectResult = generateMaterials([0, 1, 1, 2, [0, 1, [0, 2, 3], 3], 4, 5]);
expect(list).toStrictEqual(expectResult);
// revert action
// result from: [ 4, 2, 1 ], to: [ 2 ]
const revertInfo = calcRevertMovePosition({ from, to }) as { from: number[]; to: number[] };
// revert [2] -> [ 4, 2, 1 ]
moveMaterialPosition(list, {
from: revertInfo.from,
to: revertInfo.to,
});
expect(list).toStrictEqual(generateMaterials([0, 1, 2, [0, 1, [0, 1, 2, 3], 3], 4, 5]));
});
// [1] -> [1, 2, 3]
test('moveMaterialPosition, move-up [1] -> [1, 2, 3]', () => {
const list: StrictMaterial[] = generateMaterials([0, [0, 1, [0, 1, 2, 3, 4, 5], 3, 4, 5], 2, 3, 4, 5]);
const from = [1];
const to = [1, 2, 3];
moveMaterialPosition(list, {
from,
to,
});
const expectResult = generateMaterials([0, [0, 1, [0, 1, 2, 3, 4, 5], 3, 4, 5], 2, 3, 4, 5]);
expect(list).toStrictEqual(expectResult);
// revert action null
const revertInfo = calcRevertMovePosition({ from, to });
expect(revertInfo).toBeNull();
});
// [1, 2, 3, 4, 5] -> [1, 2, 2]
test('moveMaterialPosition, move-up [1, 2, 3, 4, 5] -> [1, 2, 2]', () => {
const list: StrictMaterial[] = generateMaterials([
0,
[0, 1, [0, 1, 2, [0, 1, 2, 3, [0, 1, 2, 3, 4, 5], 5], 4, 5], 3, 4, 5],
2,
3,
4,
5,
]);
const from = [1, 2, 3, 4, 5];
const to = [1, 2, 2];
moveMaterialPosition(list, {
from,
to,
});
const expectResult = generateMaterials([
0,
[0, 1, [0, 1, 5, 2, [0, 1, 2, 3, [0, 1, 2, 3, 4], 5], 4, 5], 3, 4, 5],
2,
3,
4,
5,
]);
expect(list).toStrictEqual(expectResult);
// revert action
// result from: [ 1, 2, 4, 4, 5 ], to: [ 1, 2, 2 ]
const revertInfo = calcRevertMovePosition({ from, to }) as { from: number[]; to: number[] };
// revert [ 1, 2, 2 ] -> [ 1, 2, 4, 4, 5 ]
moveMaterialPosition(list, {
from: revertInfo.from,
to: revertInfo.to,
});
expect(list).toStrictEqual(
generateMaterials([0, [0, 1, [0, 1, 2, [0, 1, 2, 3, [0, 1, 2, 3, 4, 5], 5], 4, 5], 3, 4, 5], 2, 3, 4, 5])
);
});
// [1] -> [1]
test('moveMaterialPosition, move-up [1] -> [1]', () => {
const list: StrictMaterial[] = generateMaterials([0, 1, 2, [0, 1, [0, 1, 2, 3], 3], 4, 5]);
const from = [1];
const to = [1];
moveMaterialPosition(list, {
from,
to,
});
const expectResult = generateMaterials([0, 1, 2, [0, 1, [0, 1, 2, 3], 3], 4, 5]);
expect(list).toStrictEqual(expectResult);
// revert action null
const revertInfo = calcRevertMovePosition({ from, to });
expect(revertInfo).toBeNull();
});
// [2, 4] -> [1, 2]
test('moveMaterialPosition, move-up [1, 2] -> [2, 4]', () => {
const list: StrictMaterial[] = generateMaterials([0, [0, 1, 2, 3, 4], [0, 1, 2, 3, 4], 3, 4]);
const from = [2, 4];
const to = [1, 2];
moveMaterialPosition(list, {
from,
to,
});
const expectResult = generateMaterials([0, [0, 1, 4, 2, 3, 4], [0, 1, 2, 3], 3, 4]);
expect(list).toStrictEqual(expectResult);
// revert action
// result from: [ 2, 4 ], to: [ 1, 2 ]
const revertInfo = calcRevertMovePosition({ from, to }) as { from: number[]; to: number[] };
// revert [ 1, 2 ] -> [ 2, 4 ]
moveMaterialPosition(list, {
from: revertInfo.from,
to: revertInfo.to,
});
expect(list).toStrictEqual(generateMaterials([0, [0, 1, 2, 3, 4], [0, 1, 2, 3, 4], 3, 4]));
});
});