- 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
196 lines
6.0 KiB
JavaScript
196 lines
6.0 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 PropertySymbol = __importStar(require("../../PropertySymbol.cjs"));
|
|
const QuerySelector_js_1 = __importDefault(require("../../query-selector/QuerySelector.cjs"));
|
|
const HTMLElement_js_1 = __importDefault(require("../html-element/HTMLElement.cjs"));
|
|
/**
|
|
* HTML Option Element.
|
|
*
|
|
* Reference:
|
|
* https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptionElement.
|
|
*/
|
|
class HTMLOptionElement extends HTMLElement_js_1.default {
|
|
[PropertySymbol.selectedness] = false;
|
|
[PropertySymbol.dirtyness] = false;
|
|
[PropertySymbol.selectNode] = null;
|
|
/**
|
|
* Returns inner text, which is the rendered appearance of text.
|
|
*
|
|
* @returns Inner text.
|
|
*/
|
|
get text() {
|
|
return this.innerText;
|
|
}
|
|
/**
|
|
* Sets the inner text, which is the rendered appearance of text.
|
|
*
|
|
* @param innerText Inner text.
|
|
*/
|
|
set text(text) {
|
|
this.innerText = text;
|
|
}
|
|
/**
|
|
* Returns index.
|
|
*
|
|
* @returns Index.
|
|
*/
|
|
get index() {
|
|
if (!this[PropertySymbol.selectNode]) {
|
|
return 0;
|
|
}
|
|
const options = QuerySelector_js_1.default.querySelectorAll(this[PropertySymbol.selectNode], 'option')[PropertySymbol.elements];
|
|
return options.indexOf(this);
|
|
}
|
|
/**
|
|
* Returns the parent form element.
|
|
*
|
|
* @returns Form.
|
|
*/
|
|
get form() {
|
|
return this[PropertySymbol.selectNode]?.form || null;
|
|
}
|
|
/**
|
|
* Returns selected.
|
|
*
|
|
* @returns Selected.
|
|
*/
|
|
get selected() {
|
|
return this[PropertySymbol.selectedness];
|
|
}
|
|
/**
|
|
* Sets selected.
|
|
*
|
|
* @param selected Selected.
|
|
*/
|
|
set selected(selected) {
|
|
const selectNode = this[PropertySymbol.selectNode];
|
|
this[PropertySymbol.dirtyness] = true;
|
|
this[PropertySymbol.selectedness] = Boolean(selected);
|
|
if (selectNode) {
|
|
selectNode[PropertySymbol.updateSelectedness](this[PropertySymbol.selectedness] ? this : null);
|
|
}
|
|
}
|
|
/**
|
|
* Returns disabled.
|
|
*
|
|
* @returns Disabled.
|
|
*/
|
|
get disabled() {
|
|
return this.getAttribute('disabled') !== null;
|
|
}
|
|
/**
|
|
* Sets disabled.
|
|
*
|
|
* @param disabled Disabled.
|
|
*/
|
|
set disabled(disabled) {
|
|
if (!disabled) {
|
|
this.removeAttribute('disabled');
|
|
}
|
|
else {
|
|
this.setAttribute('disabled', '');
|
|
}
|
|
}
|
|
/**
|
|
* Returns value.
|
|
*
|
|
* @returns Value.
|
|
*/
|
|
get value() {
|
|
return this.getAttribute('value') ?? this.textContent;
|
|
}
|
|
/**
|
|
* Sets value.
|
|
*
|
|
* @param value Value.
|
|
*/
|
|
set value(value) {
|
|
this.setAttribute('value', value);
|
|
}
|
|
/**
|
|
* @override
|
|
*/
|
|
[PropertySymbol.onSetAttribute](attribute, replacedAttribute) {
|
|
super[PropertySymbol.onSetAttribute](attribute, replacedAttribute);
|
|
if (!this[PropertySymbol.dirtyness] &&
|
|
attribute[PropertySymbol.name] === 'selected' &&
|
|
replacedAttribute?.[PropertySymbol.value] !== attribute[PropertySymbol.value]) {
|
|
const selectNode = this[PropertySymbol.selectNode];
|
|
this[PropertySymbol.selectedness] = true;
|
|
if (selectNode) {
|
|
selectNode[PropertySymbol.updateSelectedness](this);
|
|
}
|
|
}
|
|
}
|
|
/**
|
|
* @override
|
|
*/
|
|
[PropertySymbol.onRemoveAttribute](removedAttribute) {
|
|
super[PropertySymbol.onRemoveAttribute](removedAttribute);
|
|
if (removedAttribute &&
|
|
!this[PropertySymbol.dirtyness] &&
|
|
removedAttribute[PropertySymbol.name] === 'selected') {
|
|
const selectNode = this[PropertySymbol.selectNode];
|
|
this[PropertySymbol.selectedness] = false;
|
|
if (selectNode) {
|
|
selectNode[PropertySymbol.updateSelectedness]();
|
|
}
|
|
}
|
|
}
|
|
/**
|
|
* @override
|
|
*/
|
|
[PropertySymbol.connectedToNode]() {
|
|
super[PropertySymbol.connectedToNode]();
|
|
if (this[PropertySymbol.selectNode]) {
|
|
this[PropertySymbol.selectNode][PropertySymbol.updateSelectedness]();
|
|
}
|
|
}
|
|
/**
|
|
* @override
|
|
*/
|
|
[PropertySymbol.disconnectedFromNode]() {
|
|
if (this[PropertySymbol.selectNode]) {
|
|
this[PropertySymbol.selectNode][PropertySymbol.updateSelectedness]();
|
|
}
|
|
super[PropertySymbol.disconnectedFromNode]();
|
|
}
|
|
}
|
|
exports.default = HTMLOptionElement;
|
|
//# sourceMappingURL=HTMLOptionElement.cjs.map
|