-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.ts
61 lines (50 loc) · 1.69 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import type { TransformsStyle } from "react-native";
export interface Point {
x: number;
y: number;
}
export interface Size {
width: number;
height: number;
}
const isValidSize = (size: Size): boolean => {
return size && size.width > 0 && size.height > 0;
};
const defaultAnchorPoint = { x: 0.5, y: 0.5 };
export const withAnchorPoint = (transform: TransformsStyle, anchorPoint: Point, size: Size) => {
if(!isValidSize(size)) {
return transform;
}
let injectedTransform = transform.transform;
if (!injectedTransform) {
return transform;
}
if (anchorPoint.x !== defaultAnchorPoint.x && size.width) {
const shiftTranslateX = [];
// shift before rotation
shiftTranslateX.push({
translateX: size.width * (anchorPoint.x - defaultAnchorPoint.x),
});
injectedTransform = [...shiftTranslateX, ...injectedTransform];
// shift after rotation
injectedTransform.push({
translateX: size.width * (defaultAnchorPoint.x - anchorPoint.x),
});
}
if (!Array.isArray(injectedTransform)) {
return { transform: injectedTransform };
}
if (anchorPoint.y !== defaultAnchorPoint.y && size.height) {
let shiftTranslateY = [];
// shift before rotation
shiftTranslateY.push({
translateY: size.height * (anchorPoint.y - defaultAnchorPoint.y),
});
injectedTransform = [...shiftTranslateY, ...injectedTransform];
// shift after rotation
injectedTransform.push({
translateY: size.height * (defaultAnchorPoint.y - anchorPoint.y),
});
}
return { transform: injectedTransform };
};