mirror of
https://github.com/immich-app/immich.git
synced 2025-12-19 01:11:07 +03:00
45 lines
790 B
TypeScript
45 lines
790 B
TypeScript
|
|
import { getAssetOcr } from '@immich/sdk';
|
||
|
|
|
||
|
|
export type OcrBoundingBox = {
|
||
|
|
id: string;
|
||
|
|
assetId: string;
|
||
|
|
x1: number;
|
||
|
|
y1: number;
|
||
|
|
x2: number;
|
||
|
|
y2: number;
|
||
|
|
x3: number;
|
||
|
|
y3: number;
|
||
|
|
x4: number;
|
||
|
|
y4: number;
|
||
|
|
boxScore: number;
|
||
|
|
textScore: number;
|
||
|
|
text: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
class OcrManager {
|
||
|
|
#data = $state<OcrBoundingBox[]>([]);
|
||
|
|
showOverlay = $state(false);
|
||
|
|
hasOcrData = $state(false);
|
||
|
|
|
||
|
|
get data() {
|
||
|
|
return this.#data;
|
||
|
|
}
|
||
|
|
|
||
|
|
async getAssetOcr(id: string) {
|
||
|
|
this.#data = await getAssetOcr({ id });
|
||
|
|
this.hasOcrData = this.#data.length > 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
clear() {
|
||
|
|
this.#data = [];
|
||
|
|
this.showOverlay = false;
|
||
|
|
this.hasOcrData = false;
|
||
|
|
}
|
||
|
|
|
||
|
|
toggleOcrBoundingBox() {
|
||
|
|
this.showOverlay = !this.showOverlay;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export const ocrManager = new OcrManager();
|