umami event tracking #29

Merged
CrispyBaguette merged 1 commits from event-tracking into master 2023-06-07 10:21:18 +00:00
2 changed files with 3 additions and 0 deletions

View File

@ -26,9 +26,11 @@ function App() {
const ditheredImage = await new Ditherer().dither(imageArray, palette);
setDitheredImage(new Blob([ditheredImage], { type: "image/png" }));
setAppState(AppState.IMAGE_PROCESSED);
(window as any).umami.track("image processed");
} catch (e) {
console.error(e);
window.alert("Something went wrong. Please try again.");
(window as any).umami.track("processing error");
}
};

View File

@ -69,6 +69,7 @@ function ImageInput({ onImageSubmit }: Props) {
<button
type="submit"
value="Go"
data-umami-event="image submit"
className={
"block " +
"w-32 " +