Enhance refactor commands with controller-aware Route() updates and fix code quality violations

Add semantic token highlighting for 'that' variable and comment file references in VS Code extension
Add Phone_Text_Input and Currency_Input components with formatting utilities
Implement client widgets, form standardization, and soft delete functionality
Add modal scroll lock and update documentation
Implement comprehensive modal system with form integration and validation
Fix modal component instantiation using jQuery plugin API
Implement modal system with responsive sizing, queuing, and validation support
Implement form submission with validation, error handling, and loading states
Implement country/state selectors with dynamic data loading and Bootstrap styling
Revert Rsx::Route() highlighting in Blade/PHP files
Target specific PHP scopes for Rsx::Route() highlighting in Blade
Expand injection selector for Rsx::Route() highlighting
Add custom syntax highlighting for Rsx::Route() and Rsx.Route() calls
Update jqhtml packages to v2.2.165
Add bundle path validation for common mistakes (development mode only)
Create Ajax_Select_Input widget and Rsx_Reference_Data controller
Create Country_Select_Input widget with default country support
Initialize Tom Select on Select_Input widgets
Add Tom Select bundle for enhanced select dropdowns
Implement ISO 3166 geographic data system for country/region selection
Implement widget-based form system with disabled state support

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-10-30 06:21:56 +00:00
parent e678b987c2
commit f6ac36c632
5683 changed files with 5854736 additions and 22329 deletions

20
node_modules/playwright/lib/worker/workerMain.js generated vendored Executable file → Normal file
View File

@@ -43,6 +43,9 @@ class WorkerMain extends import_process.ProcessRunner {
this._fatalErrors = [];
// The stage of the full cleanup. Once "finished", we can safely stop running anything.
this._didRunFullCleanup = false;
// Whether the worker was stopped due to an unhandled error in a test marked with test.fail().
// This should force dispatcher to use a new worker instead.
this._stoppedDueToUnhandledErrorInTestFail = false;
// Whether the worker was requested to stop.
this._isStopped = false;
// This promise resolves once the single "run test group" call finishes.
@@ -95,7 +98,6 @@ class WorkerMain extends import_process.ProcessRunner {
const fakeTestInfo = new import_testInfo.TestInfoImpl(this._config, this._project, this._params, void 0, 0, () => {
}, () => {
}, () => {
}, () => {
});
const runnable = { type: "teardown" };
await fakeTestInfo._runWithTimeout(runnable, () => this._loadIfNeeded()).catch(() => {
@@ -155,8 +157,10 @@ class WorkerMain extends import_process.ProcessRunner {
}
const isExpectError = error instanceof Error && !!error.matcherResult;
const shouldContinueInThisWorker = this._currentTest.expectedStatus === "failed" && isExpectError;
if (!shouldContinueInThisWorker)
if (!shouldContinueInThisWorker) {
this._stoppedDueToUnhandledErrorInTestFail = true;
void this._stop();
}
}
async _loadIfNeeded() {
if (this._config)
@@ -205,7 +209,8 @@ class WorkerMain extends import_process.ProcessRunner {
const donePayload = {
fatalErrors: this._fatalErrors,
skipTestsDueToSetupFailure: [],
fatalUnknownTestIds
fatalUnknownTestIds,
stoppedDueToUnhandledErrorInTestFail: this._stoppedDueToUnhandledErrorInTestFail
};
for (const test of this._skipRemainingTestsInSuite?.allTests() || []) {
if (entries.has(test.id))
@@ -217,9 +222,6 @@ class WorkerMain extends import_process.ProcessRunner {
this._runFinished.resolve();
}
}
resumeAfterStepError(params) {
this._currentTest?.resumeAfterStepError(params);
}
async _runTest(test, retry, nextTest) {
const testInfo = new import_testInfo.TestInfoImpl(
this._config,
@@ -228,7 +230,6 @@ class WorkerMain extends import_process.ProcessRunner {
test,
retry,
(stepBeginPayload) => this.dispatchEvent("stepBegin", stepBeginPayload),
(stepRecoverFromErrorPayload) => this.dispatchEvent("stepRecoverFromError", stepRecoverFromErrorPayload),
(stepEndPayload) => this.dispatchEvent("stepEnd", stepEndPayload),
(attachment) => this.dispatchEvent("attach", attachment)
);
@@ -317,7 +318,10 @@ class WorkerMain extends import_process.ProcessRunner {
await testInfo._runAsStep({ title: "After Hooks", category: "hook" }, async () => {
let firstAfterHooksError;
try {
await testInfo._runWithTimeout({ type: "test", slot: afterHooksSlot }, async () => testInfo._onDidFinishTestFunction?.());
await testInfo._runWithTimeout({ type: "test", slot: afterHooksSlot }, async () => {
for (const fn of testInfo._onDidFinishTestFunctions)
await fn();
});
} catch (error) {
firstAfterHooksError = firstAfterHooksError ?? error;
}