- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
37 lines
907 B
JavaScript
37 lines
907 B
JavaScript
/**
|
|
*
|
|
*/
|
|
export default class Touch {
|
|
identifier;
|
|
target;
|
|
clientX;
|
|
clientY;
|
|
screenX;
|
|
screenY;
|
|
pageX;
|
|
pageY;
|
|
radiusX;
|
|
radiusY;
|
|
rotationAngle;
|
|
force;
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param [touchInit] Touch init.
|
|
*/
|
|
constructor(touchInit) {
|
|
this.identifier = touchInit.identifier;
|
|
this.target = touchInit.target;
|
|
this.clientX = touchInit.clientX ?? 0;
|
|
this.clientY = touchInit.clientY ?? 0;
|
|
this.screenX = touchInit.screenX ?? 0;
|
|
this.screenY = touchInit.screenY ?? 0;
|
|
this.pageX = touchInit.pageX ?? 0;
|
|
this.pageY = touchInit.pageY ?? 0;
|
|
this.radiusX = touchInit.radiusX ?? 0;
|
|
this.radiusY = touchInit.radiusY ?? 0;
|
|
this.rotationAngle = touchInit.rotationAngle ?? 0;
|
|
this.force = touchInit.force ?? 0;
|
|
}
|
|
}
|
|
//# sourceMappingURL=Touch.js.map
|