- 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
412 lines
9.6 KiB
JavaScript
412 lines
9.6 KiB
JavaScript
"use strict";
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
}
|
|
Object.defineProperty(o, k2, desc);
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || (function () {
|
|
var ownKeys = function(o) {
|
|
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
var ar = [];
|
|
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
return ar;
|
|
};
|
|
return ownKeys(o);
|
|
};
|
|
return function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
})();
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const HTMLElement_js_1 = __importDefault(require("../html-element/HTMLElement.cjs"));
|
|
const PropertySymbol = __importStar(require("../../PropertySymbol.cjs"));
|
|
const DOMTokenList_js_1 = __importDefault(require("../../dom/DOMTokenList.cjs"));
|
|
const HTMLHyperlinkElementUtility_js_1 = __importDefault(require("../html-hyperlink-element/HTMLHyperlinkElementUtility.cjs"));
|
|
const EventPhaseEnum_js_1 = __importDefault(require("../../event/EventPhaseEnum.cjs"));
|
|
const MouseEvent_js_1 = __importDefault(require("../../event/events/MouseEvent.cjs"));
|
|
/**
|
|
* HTMLAreaElement
|
|
*
|
|
* @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLAreaElement
|
|
*/
|
|
class HTMLAreaElement extends HTMLElement_js_1.default {
|
|
[PropertySymbol.relList] = null;
|
|
#htmlHyperlinkElementUtility = new HTMLHyperlinkElementUtility_js_1.default(this);
|
|
/**
|
|
* Returns alt.
|
|
*
|
|
* @returns Alt.
|
|
*/
|
|
get alt() {
|
|
return this.getAttribute('alt') || '';
|
|
}
|
|
/**
|
|
* Sets alt.
|
|
*
|
|
* @param alt Alt.
|
|
*/
|
|
set alt(alt) {
|
|
this.setAttribute('alt', alt);
|
|
}
|
|
/**
|
|
* Returns coords.
|
|
*
|
|
* @returns Coords.
|
|
*/
|
|
get coords() {
|
|
return this.getAttribute('coords') || '';
|
|
}
|
|
/**
|
|
* Sets coords.
|
|
*
|
|
* @param coords Coords.
|
|
*/
|
|
set coords(coords) {
|
|
this.setAttribute('coords', coords);
|
|
}
|
|
/**
|
|
* Returns shape.
|
|
*
|
|
* @returns Shape.
|
|
*/
|
|
get shape() {
|
|
return this.getAttribute('shape') || '';
|
|
}
|
|
/**
|
|
* Sets shape.
|
|
*
|
|
* @param shape Shape.
|
|
*/
|
|
set shape(shape) {
|
|
this.setAttribute('shape', shape);
|
|
}
|
|
/**
|
|
* Returns download.
|
|
*
|
|
* @returns download.
|
|
*/
|
|
get download() {
|
|
return this.getAttribute('download') || '';
|
|
}
|
|
/**
|
|
* Sets download.
|
|
*
|
|
* @param download Download.
|
|
*/
|
|
set download(download) {
|
|
this.setAttribute('download', download);
|
|
}
|
|
/**
|
|
* Returns referrerPolicy.
|
|
*
|
|
* @returns Referrer Policy.
|
|
*/
|
|
get referrerPolicy() {
|
|
return this.getAttribute('referrerPolicy') || '';
|
|
}
|
|
/**
|
|
* Sets referrerPolicy.
|
|
*
|
|
* @param referrerPolicy Referrer Policy.
|
|
*/
|
|
set referrerPolicy(referrerPolicy) {
|
|
this.setAttribute('referrerPolicy', referrerPolicy);
|
|
}
|
|
/**
|
|
* Returns ping.
|
|
*
|
|
* @returns Ping.
|
|
*/
|
|
get ping() {
|
|
return this.getAttribute('ping') || '';
|
|
}
|
|
/**
|
|
* Sets ping.
|
|
*
|
|
* @param ping Ping.
|
|
*/
|
|
set ping(ping) {
|
|
this.setAttribute('ping', ping);
|
|
}
|
|
/**
|
|
* Returns rel.
|
|
*
|
|
* @returns Rel.
|
|
*/
|
|
get rel() {
|
|
return this.getAttribute('rel') || '';
|
|
}
|
|
/**
|
|
* Sets rel.
|
|
*
|
|
* @param rel Rel.
|
|
*/
|
|
set rel(rel) {
|
|
this.setAttribute('rel', rel);
|
|
}
|
|
/**
|
|
* Returns rel list.
|
|
*
|
|
* @returns Rel list.
|
|
*/
|
|
get relList() {
|
|
if (!this[PropertySymbol.relList]) {
|
|
this[PropertySymbol.relList] = new DOMTokenList_js_1.default(PropertySymbol.illegalConstructor, this, 'rel');
|
|
}
|
|
return this[PropertySymbol.relList];
|
|
}
|
|
/**
|
|
* Sets rel list.
|
|
*
|
|
* @param value Value.
|
|
*/
|
|
set relList(value) {
|
|
this.setAttribute('rel', value);
|
|
}
|
|
/**
|
|
* Returns target.
|
|
*
|
|
* @returns target.
|
|
*/
|
|
get target() {
|
|
return this.getAttribute('target') || '';
|
|
}
|
|
/**
|
|
* Sets target.
|
|
*
|
|
* @param target Target.
|
|
*/
|
|
set target(target) {
|
|
this.setAttribute('target', target);
|
|
}
|
|
/**
|
|
* Returns the hyperlink's URL's origin.
|
|
*
|
|
* @returns Origin.
|
|
*/
|
|
get origin() {
|
|
return this.#htmlHyperlinkElementUtility.getOrigin();
|
|
}
|
|
/**
|
|
* Returns href.
|
|
*
|
|
* @returns Href.
|
|
*/
|
|
get href() {
|
|
return this.#htmlHyperlinkElementUtility.getHref();
|
|
}
|
|
/**
|
|
* Sets href.
|
|
*
|
|
* @param href Href.
|
|
*/
|
|
set href(href) {
|
|
this.#htmlHyperlinkElementUtility.setHref(href);
|
|
}
|
|
/**
|
|
* Returns protocol.
|
|
*
|
|
* @returns Protocol.
|
|
*/
|
|
get protocol() {
|
|
return this.#htmlHyperlinkElementUtility.getProtocol();
|
|
}
|
|
/**
|
|
* Sets protocol.
|
|
*
|
|
* @param protocol Protocol.
|
|
*/
|
|
set protocol(protocol) {
|
|
this.#htmlHyperlinkElementUtility.setProtocol(protocol);
|
|
}
|
|
/**
|
|
* Returns username.
|
|
*
|
|
* @returns Username.
|
|
*/
|
|
get username() {
|
|
return this.#htmlHyperlinkElementUtility.getUsername();
|
|
}
|
|
/**
|
|
* Sets username.
|
|
*
|
|
* @param username Username.
|
|
*/
|
|
set username(username) {
|
|
this.#htmlHyperlinkElementUtility.setUsername(username);
|
|
}
|
|
/**
|
|
* Returns password.
|
|
*
|
|
* @returns Password.
|
|
*/
|
|
get password() {
|
|
return this.#htmlHyperlinkElementUtility.getPassword();
|
|
}
|
|
/**
|
|
* Sets password.
|
|
*
|
|
* @param password Password.
|
|
*/
|
|
set password(password) {
|
|
this.#htmlHyperlinkElementUtility.setPassword(password);
|
|
}
|
|
/**
|
|
* Returns host.
|
|
*
|
|
* @returns Host.
|
|
*/
|
|
get host() {
|
|
return this.#htmlHyperlinkElementUtility.getHost();
|
|
}
|
|
/**
|
|
* Sets host.
|
|
*
|
|
* @param host Host.
|
|
*/
|
|
set host(host) {
|
|
this.#htmlHyperlinkElementUtility.setHost(host);
|
|
}
|
|
/**
|
|
* Returns hostname.
|
|
*
|
|
* @returns Hostname.
|
|
*/
|
|
get hostname() {
|
|
return this.#htmlHyperlinkElementUtility.getHostname();
|
|
}
|
|
/**
|
|
* Sets hostname.
|
|
*
|
|
* @param hostname Hostname.
|
|
*/
|
|
set hostname(hostname) {
|
|
this.#htmlHyperlinkElementUtility.setHostname(hostname);
|
|
}
|
|
/**
|
|
* Returns port.
|
|
*
|
|
* @returns Port.
|
|
*/
|
|
get port() {
|
|
return this.#htmlHyperlinkElementUtility.getPort();
|
|
}
|
|
/**
|
|
* Sets port.
|
|
*
|
|
* @param port Port.
|
|
*/
|
|
set port(port) {
|
|
this.#htmlHyperlinkElementUtility.setPort(port);
|
|
}
|
|
/**
|
|
* Returns pathname.
|
|
*
|
|
* @returns Pathname.
|
|
*/
|
|
get pathname() {
|
|
return this.#htmlHyperlinkElementUtility.getPathname();
|
|
}
|
|
/**
|
|
* Sets pathname.
|
|
*
|
|
* @param pathname Pathname.
|
|
*/
|
|
set pathname(pathname) {
|
|
this.#htmlHyperlinkElementUtility.setPathname(pathname);
|
|
}
|
|
/**
|
|
* Returns search.
|
|
*
|
|
* @returns Search.
|
|
*/
|
|
get search() {
|
|
return this.#htmlHyperlinkElementUtility.getSearch();
|
|
}
|
|
/**
|
|
* Sets search.
|
|
*
|
|
* @param search Search.
|
|
*/
|
|
set search(search) {
|
|
this.#htmlHyperlinkElementUtility.setSearch(search);
|
|
}
|
|
/**
|
|
* Returns hash.
|
|
*
|
|
* @returns Hash.
|
|
*/
|
|
get hash() {
|
|
return this.#htmlHyperlinkElementUtility.getHash();
|
|
}
|
|
/**
|
|
* Sets hash.
|
|
*
|
|
* @param hash Hash.
|
|
*/
|
|
set hash(hash) {
|
|
this.#htmlHyperlinkElementUtility.setHash(hash);
|
|
}
|
|
/**
|
|
* @override
|
|
*/
|
|
get tabIndex() {
|
|
const tabIndex = this.getAttribute('tabindex');
|
|
if (tabIndex !== null) {
|
|
const parsed = Number(tabIndex);
|
|
return isNaN(parsed) ? 0 : parsed;
|
|
}
|
|
return 0;
|
|
}
|
|
/**
|
|
* @override
|
|
*/
|
|
set tabIndex(tabIndex) {
|
|
super.tabIndex = tabIndex;
|
|
}
|
|
/**
|
|
* @override
|
|
*/
|
|
toString() {
|
|
return this.href;
|
|
}
|
|
/**
|
|
* @override
|
|
*/
|
|
dispatchEvent(event) {
|
|
const returnValue = super.dispatchEvent(event);
|
|
if (!event[PropertySymbol.defaultPrevented] &&
|
|
event[PropertySymbol.type] === 'click' &&
|
|
event[PropertySymbol.eventPhase] === EventPhaseEnum_js_1.default.none &&
|
|
event instanceof MouseEvent_js_1.default) {
|
|
const href = this.href;
|
|
if (href) {
|
|
this[PropertySymbol.window].open(href, this.target || '_self');
|
|
if (this[PropertySymbol.window].closed) {
|
|
event.stopImmediatePropagation();
|
|
}
|
|
}
|
|
}
|
|
return returnValue;
|
|
}
|
|
}
|
|
exports.default = HTMLAreaElement;
|
|
//# sourceMappingURL=HTMLAreaElement.cjs.map
|