- 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
326 lines
7.5 KiB
JavaScript
326 lines
7.5 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"));
|
|
/**
|
|
* HTML Image Element.
|
|
*
|
|
* Reference:
|
|
* https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement.
|
|
*/
|
|
class HTMLImageElement extends HTMLElement_js_1.default {
|
|
[PropertySymbol.tagName] = 'IMG';
|
|
[PropertySymbol.complete] = false;
|
|
[PropertySymbol.naturalHeight] = 0;
|
|
[PropertySymbol.naturalWidth] = 0;
|
|
[PropertySymbol.loading] = 'auto';
|
|
[PropertySymbol.x] = 0;
|
|
[PropertySymbol.y] = 0;
|
|
/**
|
|
* Returns complete.
|
|
*
|
|
* @returns Complete.
|
|
*/
|
|
get complete() {
|
|
return this[PropertySymbol.complete];
|
|
}
|
|
/**
|
|
* Returns natural height.
|
|
*
|
|
* @returns Natural height.
|
|
*/
|
|
get naturalHeight() {
|
|
return this[PropertySymbol.naturalHeight];
|
|
}
|
|
/**
|
|
* Returns natural width.
|
|
*
|
|
* @returns Natural width.
|
|
*/
|
|
get naturalWidth() {
|
|
return this[PropertySymbol.naturalWidth];
|
|
}
|
|
/**
|
|
* Returns loading.
|
|
*
|
|
* @returns Loading.
|
|
*/
|
|
get loading() {
|
|
const loading = this.getAttribute('loading');
|
|
return loading === 'eager' || loading === 'lazy' ? loading : 'auto';
|
|
}
|
|
/**
|
|
* Sets loading.
|
|
*
|
|
* @param loading Loading.
|
|
*/
|
|
set loading(loading) {
|
|
this.setAttribute('loading', loading);
|
|
}
|
|
/**
|
|
* Returns x.
|
|
*/
|
|
get x() {
|
|
return this[PropertySymbol.x];
|
|
}
|
|
/**
|
|
* Returns y.
|
|
*/
|
|
get y() {
|
|
return this[PropertySymbol.y];
|
|
}
|
|
/**
|
|
* Returns decoding.
|
|
*
|
|
* @returns Decoding.
|
|
*/
|
|
get decoding() {
|
|
return this.getAttribute('decoding') || 'auto';
|
|
}
|
|
/**
|
|
* Sets decoding.
|
|
*
|
|
* @param decoding Decoding.
|
|
*/
|
|
set decoding(decoding) {
|
|
this.setAttribute('decoding', decoding);
|
|
}
|
|
/**
|
|
* Returns cross origin.
|
|
*
|
|
* @returns Cross origin.
|
|
*/
|
|
get crossOrigin() {
|
|
return this.getAttribute('crossOrigin');
|
|
}
|
|
/**
|
|
* Sets cross origin.
|
|
*
|
|
* @param crossOrigin Cross origin.
|
|
*/
|
|
set crossOrigin(crossOrigin) {
|
|
if (crossOrigin === 'anonymous' || crossOrigin === 'use-credentials') {
|
|
this.setAttribute('crossOrigin', crossOrigin);
|
|
}
|
|
}
|
|
/**
|
|
* Returns alt.
|
|
*
|
|
* @returns Alt.
|
|
*/
|
|
get alt() {
|
|
return this.getAttribute('alt') || '';
|
|
}
|
|
/**
|
|
* Sets alt.
|
|
*
|
|
* @param alt Alt.
|
|
*/
|
|
set alt(alt) {
|
|
this.setAttribute('alt', alt);
|
|
}
|
|
/**
|
|
* Returns current src.
|
|
*
|
|
* @returns Current src.
|
|
*/
|
|
get currentSrc() {
|
|
return this.src;
|
|
}
|
|
/**
|
|
* Returns width.
|
|
*
|
|
* @returns Width.
|
|
*/
|
|
get width() {
|
|
const width = this.getAttribute('width');
|
|
return width !== null ? Number(width) : 0;
|
|
}
|
|
/**
|
|
* Sets width.
|
|
*
|
|
* @param width Width.
|
|
*/
|
|
set width(width) {
|
|
this.setAttribute('width', String(width));
|
|
}
|
|
/**
|
|
* Returns height.
|
|
*
|
|
* @returns Height.
|
|
*/
|
|
get height() {
|
|
const height = this.getAttribute('height');
|
|
return height !== null ? Number(height) : 0;
|
|
}
|
|
/**
|
|
* Sets height.
|
|
*
|
|
* @param height Height.
|
|
*/
|
|
set height(height) {
|
|
this.setAttribute('height', String(height));
|
|
}
|
|
/**
|
|
* Returns is map.
|
|
*
|
|
* @returns Is map.
|
|
*/
|
|
get isMap() {
|
|
return this.getAttribute('ismap') !== null;
|
|
}
|
|
/**
|
|
* Sets is map.
|
|
*
|
|
* @param ismap Is map.
|
|
*/
|
|
set isMap(isMap) {
|
|
if (!isMap) {
|
|
this.removeAttribute('ismap');
|
|
}
|
|
else {
|
|
this.setAttribute('ismap', '');
|
|
}
|
|
}
|
|
/**
|
|
* Returns referrer policy.
|
|
*
|
|
* @returns Referrer policy.
|
|
*/
|
|
get referrerPolicy() {
|
|
return this.getAttribute('referrerpolicy') || '';
|
|
}
|
|
/**
|
|
* Sets referrer policy.
|
|
*
|
|
* @param referrerPolicy Referrer policy.
|
|
*/
|
|
set referrerPolicy(referrerPolicy) {
|
|
this.setAttribute('referrerpolicy', referrerPolicy);
|
|
}
|
|
/**
|
|
* Returns sizes.
|
|
*
|
|
* @returns Sizes.
|
|
*/
|
|
get sizes() {
|
|
return this.getAttribute('sizes') || '';
|
|
}
|
|
/**
|
|
* Sets sizes.
|
|
*
|
|
* @param sizes Sizes.
|
|
*/
|
|
set sizes(sizes) {
|
|
this.setAttribute('sizes', sizes);
|
|
}
|
|
/**
|
|
* Returns source.
|
|
*
|
|
* @returns Source.
|
|
*/
|
|
get src() {
|
|
if (!this.hasAttribute('src')) {
|
|
return '';
|
|
}
|
|
try {
|
|
return new URL(this.getAttribute('src'), this[PropertySymbol.ownerDocument].location.href)
|
|
.href;
|
|
}
|
|
catch (e) {
|
|
return this.getAttribute('src');
|
|
}
|
|
}
|
|
/**
|
|
* Sets source.
|
|
*
|
|
* @param src Source.
|
|
*/
|
|
set src(src) {
|
|
this.setAttribute('src', src);
|
|
}
|
|
/**
|
|
* Returns srcset.
|
|
*
|
|
* @returns Source.
|
|
*/
|
|
get srcset() {
|
|
return this.getAttribute('srcset') || '';
|
|
}
|
|
/**
|
|
* Sets src set.
|
|
*
|
|
* @param srcset Src set.
|
|
*/
|
|
set srcset(srcset) {
|
|
this.setAttribute('srcset', srcset);
|
|
}
|
|
/**
|
|
* Returns use map.
|
|
*
|
|
* @returns Use map.
|
|
*/
|
|
get useMap() {
|
|
return this.getAttribute('usemap') || '';
|
|
}
|
|
/**
|
|
* Sets is map.
|
|
*
|
|
* @param useMap Is map.
|
|
*/
|
|
set useMap(useMap) {
|
|
this.setAttribute('usemap', useMap);
|
|
}
|
|
/**
|
|
* The decode() method of the HTMLImageElement interface returns a Promise that resolves when the image is decoded and it is safe to append the image to the DOM.
|
|
*
|
|
* @returns Promise.
|
|
*/
|
|
decode() {
|
|
return Promise.resolve();
|
|
}
|
|
/**
|
|
* @override
|
|
*/
|
|
[PropertySymbol.cloneNode](deep = false) {
|
|
return super[PropertySymbol.cloneNode](deep);
|
|
}
|
|
}
|
|
exports.default = HTMLImageElement;
|
|
//# sourceMappingURL=HTMLImageElement.cjs.map
|