mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
18 lines
608 B
TypeScript
18 lines
608 B
TypeScript
// Converts world coordinate to screen coordinates by applying the current
|
|
// zoom. `windowContentZoomFactor` is the setting value.
|
|
export default function convertToScreenCoordinates(windowContentZoomFactor: number, o: any): any {
|
|
const percent = windowContentZoomFactor / 100;
|
|
|
|
if (typeof o === 'number') return o * percent;
|
|
|
|
if (typeof o === 'object' && o !== null) {
|
|
o = JSON.parse(JSON.stringify(o));
|
|
for (const k of Object.keys(o)) {
|
|
o[k] = convertToScreenCoordinates(windowContentZoomFactor, o[k]);
|
|
}
|
|
return o;
|
|
}
|
|
|
|
throw new Error(`Cannot convert to screen coordinates: ${typeof o}`);
|
|
}
|