Skip to content

Commit 0f1c896

Browse files
committed
Build stacked Toolbox and Project Workspace stabilization PRs - PR_26156_129-135-stacked-toolbox-workspace-cleanup
1 parent 8a68c5d commit 0f1c896

100 files changed

Lines changed: 1288 additions & 1416 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

admin/tools-progress-source.js

Lines changed: 0 additions & 778 deletions
This file was deleted.

admin/tools-progress.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { getActiveToolRegistry, getToolRoute } from "../toolbox/toolRegistry.js";
21
import {
32
getToolProgressReadiness,
4-
getToolsProgressSource,
5-
toolProgressMetadataDiagnostic
6-
} from "./tools-progress-source.js";
3+
getActiveToolRegistry,
4+
getToolRoute,
5+
toolRegistryMetadataDiagnostic
6+
} from "../toolbox/toolRegistry.js";
77

88
const swatchByGroup = Object.freeze({
99
AI: "swatch-purple",
@@ -77,7 +77,7 @@ function createGroupCell(tool) {
7777

7878
function createStatusCell(tool) {
7979
const cell = createCell("td", tool.status);
80-
const statusDiagnostic = toolProgressMetadataDiagnostic(tool);
80+
const statusDiagnostic = toolRegistryMetadataDiagnostic(tool);
8181
if (statusDiagnostic) {
8282
const diagnostic = document.createElement("span");
8383
diagnostic.className = "status";
@@ -102,11 +102,11 @@ function renderToolsProgress() {
102102
return;
103103
}
104104

105-
const tools = getToolsProgressSource(getActiveToolRegistry());
105+
const tools = getActiveToolRegistry();
106106
progressBody.replaceChildren();
107107
tools.forEach((tool) => {
108108
const row = document.createElement("tr");
109-
const statusDiagnostic = toolProgressMetadataDiagnostic(tool);
109+
const statusDiagnostic = toolRegistryMetadataDiagnostic(tool);
110110
row.className = tool.colorGroup;
111111
row.dataset.toolsProgressTool = tool.displayName;
112112
row.dataset.toolsProgressOrder = String(tool.order);
-1.23 MB
Binary file not shown.
-4.5 KB
Binary file not shown.
-78.1 KB
Binary file not shown.
-66.1 KB
Binary file not shown.
-98.6 KB
Binary file not shown.
-488 Bytes
-76.4 KB
Binary file not shown.
-78.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)