tftsr-devops_investigation/node_modules/webdriverio/build/scripts/isElementClickable.js

109 lines
4.2 KiB
JavaScript
Raw Normal View History

feat: initial implementation of TFTSR IT Triage & RCA application Implements Phases 1-8 of the TFTSR implementation plan. Rust backend (Tauri 2.x, src-tauri/): - Multi-provider AI: OpenAI-compatible, Anthropic, Gemini, Mistral, Ollama - PII detection engine: 11 regex patterns with overlap resolution - SQLCipher AES-256 encrypted database with 10 versioned migrations - 28 Tauri IPC commands for triage, analysis, document, and system ops - Ollama: hardware probe, model recommendations, pull/delete with events - RCA and blameless post-mortem Markdown document generators - PDF export via printpdf - Audit log: SHA-256 hash of every external data send - Integration stubs for Confluence, ServiceNow, Azure DevOps (v0.2) Frontend (React 18 + TypeScript + Vite, src/): - 9 pages: full triage workflow NewIssue→LogUpload→Triage→Resolution→RCA→Postmortem→History+Settings - 7 components: ChatWindow, TriageProgress, PiiDiffViewer, DocEditor, HardwareReport, ModelSelector, UI primitives - 3 Zustand stores: session, settings (persisted), history - Type-safe tauriCommands.ts matching Rust backend types exactly - 8 IT domain system prompts (Linux, Windows, Network, K8s, DB, Virt, HW, Obs) DevOps: - .woodpecker/test.yml: rustfmt, clippy, cargo test, tsc, vitest on every push - .woodpecker/release.yml: linux/amd64 + linux/arm64 builds, Gogs release upload Verified: - cargo check: zero errors - tsc --noEmit: zero errors - vitest run: 13/13 unit tests passing Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
2026-03-15 03:36:25 +00:00
// src/scripts/isElementClickable.ts
function isElementClickable(elem) {
if (!elem.getBoundingClientRect || !elem.scrollIntoView || !elem.contains || !elem.getClientRects || !document.elementFromPoint) {
return false;
}
const isOldEdge = !!window.StyleMedia;
const scrollIntoViewFullSupport = !(window.safari || isOldEdge);
function getOverlappingElement(elem2, context) {
context = context || document;
const elemDimension = elem2.getBoundingClientRect();
const x = elemDimension.left + elem2.clientWidth / 2;
const y = elemDimension.top + elem2.clientHeight / 2;
return context.elementFromPoint(x, y);
}
function getOverlappingRects(elem2, context) {
context = context || document;
const rects = elem2.getClientRects();
const rect = rects[0];
const x = rect.left + rect.width / 2;
const y = rect.top + rect.height / 2;
return [context.elementFromPoint(x, y)];
}
function getOverlappingElements(elem2, context) {
return [getOverlappingElement(elem2, context)].concat(getOverlappingRects(elem2, context));
}
function nodeContains(elem2, otherNode) {
if (isOldEdge) {
let tmpElement = otherNode;
while (tmpElement) {
if (tmpElement === elem2) {
return true;
}
tmpElement = tmpElement.parentNode;
if (tmpElement && tmpElement.nodeType === 11 && tmpElement.host) {
tmpElement = tmpElement.host;
}
}
return false;
}
return elem2.contains(otherNode);
}
function isOverlappingElementMatch(elementsFromPoint, elem2) {
if (elementsFromPoint.some(function(elementFromPoint) {
return elementFromPoint === elem2 || nodeContains(elem2, elementFromPoint);
})) {
return true;
}
let elemsWithShadowRoot = [].concat(elementsFromPoint);
elemsWithShadowRoot = elemsWithShadowRoot.filter(function(x) {
return x && x.shadowRoot && x.shadowRoot.elementFromPoint;
});
let shadowElementsFromPoint = [];
for (let i = 0; i < elemsWithShadowRoot.length; ++i) {
const shadowElement = elemsWithShadowRoot[i];
shadowElementsFromPoint = shadowElementsFromPoint.concat(
getOverlappingElements(elem2, shadowElement.shadowRoot)
);
}
shadowElementsFromPoint = [].concat(shadowElementsFromPoint);
shadowElementsFromPoint = shadowElementsFromPoint.filter(function(x) {
return !elementsFromPoint.includes(x);
});
if (shadowElementsFromPoint.length === 0) {
return false;
}
return isOverlappingElementMatch(shadowElementsFromPoint, elem2);
}
function isElementInViewport(elem2) {
if (!elem2.getBoundingClientRect) {
return false;
}
const rect = elem2.getBoundingClientRect();
const windowHeight = window.innerHeight || document.documentElement.clientHeight;
const windowWidth = window.innerWidth || document.documentElement.clientWidth;
const vertInView = rect.top < windowHeight && rect.top + rect.height > 0;
const horInView = rect.left < windowWidth && rect.left + rect.width > 0;
return vertInView && horInView;
}
function isEnabled(elem2) {
return elem2.disabled !== true;
}
function hasOverlaps(elem2) {
return !isOverlappingElementMatch(getOverlappingElements(elem2), elem2);
}
function isFullyDisplayedInViewport(elem2) {
return isElementInViewport(elem2) && !hasOverlaps(elem2);
}
function getViewportScrollPositions() {
return {
x: window.scrollX !== null && window.scrollX !== void 0 ? window.scrollX : window.pageXOffset,
y: window.scrollY !== null && window.scrollY !== void 0 ? window.scrollY : window.pageYOffset
};
}
let _isFullyDisplayedInViewport = isFullyDisplayedInViewport(elem);
if (!_isFullyDisplayedInViewport) {
const { x: originalX, y: originalY } = getViewportScrollPositions();
elem.scrollIntoView(scrollIntoViewFullSupport ? { block: "center", inline: "center" } : false);
_isFullyDisplayedInViewport = isFullyDisplayedInViewport(elem);
const { x: currentX, y: currentY } = getViewportScrollPositions();
if (currentX !== originalX || currentY !== originalY) {
window.scroll(originalX, originalY);
}
}
return _isFullyDisplayedInViewport && isEnabled(elem);
}
export {
isElementClickable as default
};