chore: remove demo

This commit is contained in:
eneller
2026-01-25 20:00:23 +01:00
parent 076816bd12
commit 02e6b033c2
3 changed files with 2 additions and 21 deletions

View File

@@ -1,7 +1,7 @@
use enigo::{Direction, Enigo, Key, Keyboard, Settings};
use tauri::Manager;
#[cfg(target_os = "linux")]
use std::ptr;
use tauri::Manager;
// Learn more about Tauri commands at https://tauri.app/develop/calling-rust/
#[tauri::command]

View File

@@ -1,11 +1,4 @@
<main class="container">
<form class="row" (submit)="greet($event, greetInput.value)">
<input #greetInput id="greet-input" placeholder="Enter a name..." />
<button type="submit">Greet</button>
</form>
<p>{{ greetingMessage }}</p>
<!-- Layout Switcher -->
<div class="layout-controls">
<button (click)="switchLayout()" class="layout-button">

View File

@@ -19,24 +19,13 @@ import { CircleKeyboardComponent } from './keyboards/circle-keyboard.component';
templateUrl: './app.component.html',
styleUrl: './app.component.css'
})
export class AppComponent implements AfterViewInit {
export class AppComponent {
greetingMessage = "";
currentLayout: 'qwerty' | 'dvorak' | 'circle' = 'qwerty';
shiftActive = false;
@ViewChild('greetInput') inputElement!: ElementRef;
ngAfterViewInit() {
this.inputElement.nativeElement.focus();
}
greet(event: SubmitEvent, name: string): void {
event.preventDefault();
invoke<string>("greet", { name }).then((text) => {
this.greetingMessage = text;
});
}
toggleShift(): void {
this.shiftActive = !this.shiftActive;
}
@@ -52,7 +41,6 @@ export class AppComponent implements AfterViewInit {
}
async handleKeyPress(key: string): Promise<void> {
this.inputElement.nativeElement.focus();
let finalKey = key;
if (key.length === 1) {