aboutsummaryrefslogtreecommitdiff
path: root/src-ui
diff options
context:
space:
mode:
Diffstat (limited to 'src-ui')
-rw-r--r--src-ui/src/main.ts33
1 files changed, 32 insertions, 1 deletions
diff --git a/src-ui/src/main.ts b/src-ui/src/main.ts
index aa31bb93..6492a32a 100644
--- a/src-ui/src/main.ts
+++ b/src-ui/src/main.ts
@@ -1,4 +1,35 @@
+import { invoke } from '@tauri-apps/api';
+import { Event as TauriEvent, listen } from '@tauri-apps/api/event';
+const $ = document.querySelector.bind(document);
document.addEventListener("DOMContentLoaded", async function () {
- document.body.textContent = "Hello from main.ts";
+ // get the elements
+ const helloEl = $("div.hello") as HTMLElement;
+ const counterButtonEl = $("counter-button") as HTMLElement;
+ const counterResultEl = $("counter-result") as HTMLElement;
+ const pingEl = $("backend-ping") as HTMLElement;
+
+ // listen backend-ping event
+ listen("backend-ping", function (evt: TauriEvent<any>) {
+ pingEl.classList.add("on");
+ setTimeout(function () {
+ pingEl.classList.remove("on")
+ }, 500);
+ })
+
+ // counter button click
+ counterButtonEl.addEventListener("pointerup", async function () {
+ const result = await invoke("add_count", { num: 3 }) as string;
+ counterResultEl.textContent = result;
+ });
+
+ // hello click
+ helloEl.addEventListener("pointerup", async function () {
+ const result = await invoke("hello_world") as string;
+ helloEl.textContent = result;
+ setTimeout(function () {
+ helloEl.textContent = "Click again";
+ }, 1000);
+ });
+
}); \ No newline at end of file