Some checks failed
Main Confidence / confidence (push) Failing after 45s
## Summary - introduce surface-aware compressed governance outcomes and reuse the shared truth/explanation seams for operator-first summaries - apply the compressed outcome hierarchy across baseline, evidence, review, review-pack, canonical review/evidence, and artifact-oriented operation-run surfaces - expand spec 214 fixtures and Pest coverage, and fix tenant-panel route assertions by generating explicit tenant-panel URLs in the affected Filament tests ## Validation - `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` - focused governance compression suite from `specs/214-governance-outcome-compression/quickstart.md` passed (`68` tests, `445` assertions) - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/Filament/InventoryItemResourceTest.php tests/Feature/Filament/BackupSetUiEnforcementTest.php tests/Feature/Filament/RestoreRunUiEnforcementTest.php` passed (`18` tests, `81` assertions) Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #253
176 lines
5.1 KiB
Plaintext
176 lines
5.1 KiB
Plaintext
"use strict";
|
|
var __defProp = Object.defineProperty;
|
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
var __export = (target, all) => {
|
|
for (var name in all)
|
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
};
|
|
var __copyProps = (to, from, except, desc) => {
|
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
for (let key of __getOwnPropNames(from))
|
|
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
}
|
|
return to;
|
|
};
|
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
var ffInput_exports = {};
|
|
__export(ffInput_exports, {
|
|
RawKeyboardImpl: () => RawKeyboardImpl,
|
|
RawMouseImpl: () => RawMouseImpl,
|
|
RawTouchscreenImpl: () => RawTouchscreenImpl
|
|
});
|
|
module.exports = __toCommonJS(ffInput_exports);
|
|
const kFirefoxKeyOverrides = /* @__PURE__ */ new Map([
|
|
["AudioVolumeMute", { code: "VolumeMute", keyCodeWithoutLocation: 181 }],
|
|
["AudioVolumeDown", { code: "VolumeDown", keyCodeWithoutLocation: 182 }],
|
|
["AudioVolumeUp", { code: "VolumeUp", keyCodeWithoutLocation: 183 }]
|
|
]);
|
|
function toFirefoxKeyDescription(description) {
|
|
const override = kFirefoxKeyOverrides.get(description.key);
|
|
if (!override)
|
|
return description;
|
|
return {
|
|
...description,
|
|
...override
|
|
};
|
|
}
|
|
function toModifiersMask(modifiers) {
|
|
let mask = 0;
|
|
if (modifiers.has("Alt"))
|
|
mask |= 1;
|
|
if (modifiers.has("Control"))
|
|
mask |= 2;
|
|
if (modifiers.has("Shift"))
|
|
mask |= 4;
|
|
if (modifiers.has("Meta"))
|
|
mask |= 8;
|
|
return mask;
|
|
}
|
|
function toButtonNumber(button) {
|
|
if (button === "left")
|
|
return 0;
|
|
if (button === "middle")
|
|
return 1;
|
|
if (button === "right")
|
|
return 2;
|
|
return 0;
|
|
}
|
|
function toButtonsMask(buttons) {
|
|
let mask = 0;
|
|
if (buttons.has("left"))
|
|
mask |= 1;
|
|
if (buttons.has("right"))
|
|
mask |= 2;
|
|
if (buttons.has("middle"))
|
|
mask |= 4;
|
|
return mask;
|
|
}
|
|
class RawKeyboardImpl {
|
|
constructor(client) {
|
|
this._client = client;
|
|
}
|
|
async keydown(progress, modifiers, keyName, description, autoRepeat) {
|
|
const keyDescription = toFirefoxKeyDescription(description);
|
|
let text = keyDescription.text;
|
|
if (text === "\r")
|
|
text = "";
|
|
const { code, key, location } = keyDescription;
|
|
await progress.race(this._client.send("Page.dispatchKeyEvent", {
|
|
type: "keydown",
|
|
keyCode: keyDescription.keyCodeWithoutLocation,
|
|
code,
|
|
key,
|
|
repeat: autoRepeat,
|
|
location,
|
|
text
|
|
}));
|
|
}
|
|
async keyup(progress, modifiers, keyName, description) {
|
|
const keyDescription = toFirefoxKeyDescription(description);
|
|
const { code, key, location } = keyDescription;
|
|
await progress.race(this._client.send("Page.dispatchKeyEvent", {
|
|
type: "keyup",
|
|
key,
|
|
keyCode: keyDescription.keyCodeWithoutLocation,
|
|
code,
|
|
location,
|
|
repeat: false
|
|
}));
|
|
}
|
|
async sendText(progress, text) {
|
|
await progress.race(this._client.send("Page.insertText", { text }));
|
|
}
|
|
}
|
|
class RawMouseImpl {
|
|
constructor(client) {
|
|
this._client = client;
|
|
}
|
|
async move(progress, x, y, button, buttons, modifiers, forClick) {
|
|
await progress.race(this._client.send("Page.dispatchMouseEvent", {
|
|
type: "mousemove",
|
|
button: 0,
|
|
buttons: toButtonsMask(buttons),
|
|
x: Math.floor(x),
|
|
y: Math.floor(y),
|
|
modifiers: toModifiersMask(modifiers)
|
|
}));
|
|
}
|
|
async down(progress, x, y, button, buttons, modifiers, clickCount) {
|
|
await progress.race(this._client.send("Page.dispatchMouseEvent", {
|
|
type: "mousedown",
|
|
button: toButtonNumber(button),
|
|
buttons: toButtonsMask(buttons),
|
|
x: Math.floor(x),
|
|
y: Math.floor(y),
|
|
modifiers: toModifiersMask(modifiers),
|
|
clickCount
|
|
}));
|
|
}
|
|
async up(progress, x, y, button, buttons, modifiers, clickCount) {
|
|
await progress.race(this._client.send("Page.dispatchMouseEvent", {
|
|
type: "mouseup",
|
|
button: toButtonNumber(button),
|
|
buttons: toButtonsMask(buttons),
|
|
x: Math.floor(x),
|
|
y: Math.floor(y),
|
|
modifiers: toModifiersMask(modifiers),
|
|
clickCount
|
|
}));
|
|
}
|
|
async wheel(progress, x, y, buttons, modifiers, deltaX, deltaY) {
|
|
await this._page.mainFrame().evaluateExpression(`new Promise(requestAnimationFrame)`, { world: "utility" });
|
|
await progress.race(this._client.send("Page.dispatchWheelEvent", {
|
|
deltaX,
|
|
deltaY,
|
|
x: Math.floor(x),
|
|
y: Math.floor(y),
|
|
deltaZ: 0,
|
|
modifiers: toModifiersMask(modifiers)
|
|
}));
|
|
}
|
|
setPage(page) {
|
|
this._page = page;
|
|
}
|
|
}
|
|
class RawTouchscreenImpl {
|
|
constructor(client) {
|
|
this._client = client;
|
|
}
|
|
async tap(progress, x, y, modifiers) {
|
|
await progress.race(this._client.send("Page.dispatchTapEvent", {
|
|
x,
|
|
y,
|
|
modifiers: toModifiersMask(modifiers)
|
|
}));
|
|
}
|
|
}
|
|
// Annotate the CommonJS export names for ESM import in node:
|
|
0 && (module.exports = {
|
|
RawKeyboardImpl,
|
|
RawMouseImpl,
|
|
RawTouchscreenImpl
|
|
});
|