@principal-ade/dynamic-file-tree 0.2.39 → 0.2.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs
CHANGED
|
@@ -565,8 +565,8 @@ var DynamicFileTree = ({
|
|
|
565
565
|
initialData: treeData,
|
|
566
566
|
onSelect: handleSelect,
|
|
567
567
|
openByDefault: defaultOpen,
|
|
568
|
-
|
|
569
|
-
|
|
568
|
+
initialOpenState,
|
|
569
|
+
selection: selectedFile,
|
|
570
570
|
width: "100%",
|
|
571
571
|
height: containerHeight,
|
|
572
572
|
rowHeight: 28,
|
|
@@ -1424,8 +1424,8 @@ var GitStatusFileTree = ({
|
|
|
1424
1424
|
}, isContainerReady && /* @__PURE__ */ React7.createElement(Tree2, {
|
|
1425
1425
|
data: treeData,
|
|
1426
1426
|
onSelect: handleSelect,
|
|
1427
|
-
|
|
1428
|
-
|
|
1427
|
+
selection: selectedFile,
|
|
1428
|
+
openByDefault,
|
|
1429
1429
|
width: "100%",
|
|
1430
1430
|
height: containerHeight,
|
|
1431
1431
|
rowHeight,
|
|
@@ -2213,7 +2213,7 @@ var blendColors = (colors) => {
|
|
|
2213
2213
|
}
|
|
2214
2214
|
return toHex(Math.round(r), Math.round(g), Math.round(b));
|
|
2215
2215
|
};
|
|
2216
|
-
var buildTreeDataFromStoryboards = (storyboards, workflowCoverageMap, traceWorkflowsSet, filterMode, versionPrefix, gitStatusMap, scenarioStatusMap, canvasNodeStatusMap, scenarioTraceCounts, showScenarios) => {
|
|
2216
|
+
var buildTreeDataFromStoryboards = (storyboards, workflowCoverageMap, traceWorkflowsSet, filterMode, versionPrefix, gitStatusMap, scenarioStatusMap, canvasNodeStatusMap, scenarioTraceCounts, showScenarios, preserveOrder) => {
|
|
2217
2217
|
const packagesMap = new Map;
|
|
2218
2218
|
const rootStoryboards = [];
|
|
2219
2219
|
for (const storyboard of storyboards) {
|
|
@@ -2385,7 +2385,10 @@ var buildTreeDataFromStoryboards = (storyboards, workflowCoverageMap, traceWorkf
|
|
|
2385
2385
|
if (shouldShowPackageLevel) {
|
|
2386
2386
|
const result = [];
|
|
2387
2387
|
for (const [packageName, packageStoryboards] of packagesMap) {
|
|
2388
|
-
|
|
2388
|
+
let storyboardNodes = packageStoryboards.map(buildStoryboardNode).filter((node) => node !== null);
|
|
2389
|
+
if (!preserveOrder) {
|
|
2390
|
+
storyboardNodes = storyboardNodes.sort((a, b) => a.name.localeCompare(b.name));
|
|
2391
|
+
}
|
|
2389
2392
|
if (storyboardNodes.length > 0) {
|
|
2390
2393
|
const packageId = versionPrefix ? `package:${versionPrefix}:${packageName}` : `package:${packageName}`;
|
|
2391
2394
|
result.push({
|
|
@@ -2399,7 +2402,10 @@ var buildTreeDataFromStoryboards = (storyboards, workflowCoverageMap, traceWorkf
|
|
|
2399
2402
|
}
|
|
2400
2403
|
}
|
|
2401
2404
|
if (rootStoryboards.length > 0) {
|
|
2402
|
-
|
|
2405
|
+
let rootStoryboardNodes = rootStoryboards.map(buildStoryboardNode).filter((node) => node !== null);
|
|
2406
|
+
if (!preserveOrder) {
|
|
2407
|
+
rootStoryboardNodes = rootStoryboardNodes.sort((a, b) => a.name.localeCompare(b.name));
|
|
2408
|
+
}
|
|
2403
2409
|
if (rootStoryboardNodes.length > 0) {
|
|
2404
2410
|
const rootPackageId = versionPrefix ? `package:${versionPrefix}:root` : "package:root";
|
|
2405
2411
|
result.push({
|
|
@@ -2424,10 +2430,14 @@ var buildTreeDataFromStoryboards = (storyboards, workflowCoverageMap, traceWorkf
|
|
|
2424
2430
|
for (const packageStoryboards of packagesMap.values()) {
|
|
2425
2431
|
allStoryboards.push(...packageStoryboards);
|
|
2426
2432
|
}
|
|
2427
|
-
|
|
2433
|
+
let nodes = allStoryboards.map(buildStoryboardNode).filter((node) => node !== null);
|
|
2434
|
+
if (!preserveOrder) {
|
|
2435
|
+
nodes = nodes.sort((a, b) => a.name.localeCompare(b.name));
|
|
2436
|
+
}
|
|
2437
|
+
return nodes;
|
|
2428
2438
|
}
|
|
2429
2439
|
};
|
|
2430
|
-
var buildTreeDataFromVersions = (versionSnapshots, workflowCoverageMap, filterMode, traceWorkflowsSet, gitStatusMap, scenarioStatusMap, canvasNodeStatusMap, scenarioTraceCounts, showScenarios) => {
|
|
2440
|
+
var buildTreeDataFromVersions = (versionSnapshots, workflowCoverageMap, filterMode, traceWorkflowsSet, gitStatusMap, scenarioStatusMap, canvasNodeStatusMap, scenarioTraceCounts, showScenarios, preserveOrder) => {
|
|
2431
2441
|
const result = [];
|
|
2432
2442
|
const repoCountMap = new Map;
|
|
2433
2443
|
for (const snapshot of versionSnapshots) {
|
|
@@ -2444,7 +2454,7 @@ var buildTreeDataFromVersions = (versionSnapshots, workflowCoverageMap, filterMo
|
|
|
2444
2454
|
if (filterMode === "without-traces" && !versionHasUntracedWorkflows) {
|
|
2445
2455
|
continue;
|
|
2446
2456
|
}
|
|
2447
|
-
const storyboardChildren = buildTreeDataFromStoryboards(snapshot.storyboards, workflowCoverageMap, traceWorkflowsSet, filterMode, versionKey, gitStatusMap, scenarioStatusMap, canvasNodeStatusMap, scenarioTraceCounts, showScenarios);
|
|
2457
|
+
const storyboardChildren = buildTreeDataFromStoryboards(snapshot.storyboards, workflowCoverageMap, traceWorkflowsSet, filterMode, versionKey, gitStatusMap, scenarioStatusMap, canvasNodeStatusMap, scenarioTraceCounts, showScenarios, preserveOrder);
|
|
2448
2458
|
if (storyboardChildren.length === 0) {
|
|
2449
2459
|
continue;
|
|
2450
2460
|
}
|
|
@@ -2604,7 +2614,8 @@ var StoryboardWorkflowsTreeCoreInner = ({
|
|
|
2604
2614
|
scenarioTraceCounts,
|
|
2605
2615
|
scenarioVisibilityMap,
|
|
2606
2616
|
onScenarioVisibilityToggle,
|
|
2607
|
-
showScenarios = false
|
|
2617
|
+
showScenarios = false,
|
|
2618
|
+
preserveOrder = false
|
|
2608
2619
|
}) => {
|
|
2609
2620
|
const dndProps = getDndProps(enableDragAndDrop);
|
|
2610
2621
|
const parentDndManager = useParentDndManager();
|
|
@@ -2619,9 +2630,9 @@ var StoryboardWorkflowsTreeCoreInner = ({
|
|
|
2619
2630
|
}, [verticalNodePadding]);
|
|
2620
2631
|
const treeData = useMemo9(() => {
|
|
2621
2632
|
if (versionSnapshots && versionSnapshots.length > 0) {
|
|
2622
|
-
return buildTreeDataFromVersions(versionSnapshots, workflowCoverageMap, workflowFilterMode, traceWorkflowsSet, gitStatusMap, scenarioStatusMap, canvasNodeStatusMap, scenarioTraceCounts, showScenarios);
|
|
2633
|
+
return buildTreeDataFromVersions(versionSnapshots, workflowCoverageMap, workflowFilterMode, traceWorkflowsSet, gitStatusMap, scenarioStatusMap, canvasNodeStatusMap, scenarioTraceCounts, showScenarios, preserveOrder);
|
|
2623
2634
|
} else {
|
|
2624
|
-
return buildTreeDataFromStoryboards(storyboards, workflowCoverageMap, traceWorkflowsSet, workflowFilterMode, undefined, gitStatusMap, scenarioStatusMap, canvasNodeStatusMap, scenarioTraceCounts, showScenarios);
|
|
2635
|
+
return buildTreeDataFromStoryboards(storyboards, workflowCoverageMap, traceWorkflowsSet, workflowFilterMode, undefined, gitStatusMap, scenarioStatusMap, canvasNodeStatusMap, scenarioTraceCounts, showScenarios, preserveOrder);
|
|
2625
2636
|
}
|
|
2626
2637
|
}, [storyboards, versionSnapshots, workflowCoverageMap, traceWorkflowsSet, workflowFilterMode, gitStatusMap, scenarioStatusMap, canvasNodeStatusMap, scenarioTraceCounts, showScenarios]);
|
|
2627
2638
|
const NodeRenderer = (props) => {
|
|
@@ -3131,8 +3142,8 @@ var WorkflowScenarioTreeCore = ({
|
|
|
3131
3142
|
data: treeData,
|
|
3132
3143
|
onSelect: handleSelect,
|
|
3133
3144
|
openByDefault: defaultOpen,
|
|
3134
|
-
|
|
3135
|
-
|
|
3145
|
+
initialOpenState,
|
|
3146
|
+
selection: selectedNodeId,
|
|
3136
3147
|
width: "100%",
|
|
3137
3148
|
height: containerHeight,
|
|
3138
3149
|
rowHeight,
|
|
@@ -3531,9 +3542,9 @@ var CanvasListTreeCore = ({
|
|
|
3531
3542
|
initialData: treeData,
|
|
3532
3543
|
onSelect: handleSelect,
|
|
3533
3544
|
openByDefault: defaultOpen,
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
|
|
3545
|
+
initialOpenState: effectiveInitialOpenState,
|
|
3546
|
+
selection: selectedNodeId,
|
|
3547
|
+
onToggle: onToggle ? handleToggle : undefined,
|
|
3537
3548
|
width: "100%",
|
|
3538
3549
|
height: containerHeight,
|
|
3539
3550
|
rowHeight,
|
|
@@ -3726,8 +3737,8 @@ var RepositoryTreeCore = ({
|
|
|
3726
3737
|
data: treeData,
|
|
3727
3738
|
onSelect: handleSelect,
|
|
3728
3739
|
openByDefault: defaultOpen,
|
|
3729
|
-
|
|
3730
|
-
|
|
3740
|
+
initialOpenState,
|
|
3741
|
+
selection,
|
|
3731
3742
|
width: "100%",
|
|
3732
3743
|
height: containerHeight,
|
|
3733
3744
|
rowHeight,
|
|
@@ -4021,7 +4032,7 @@ var TelemetryCoverageFileTree = ({
|
|
|
4021
4032
|
}, isContainerReady && /* @__PURE__ */ React17.createElement(Tree7, {
|
|
4022
4033
|
data: treeData,
|
|
4023
4034
|
onSelect: handleSelect,
|
|
4024
|
-
|
|
4035
|
+
selection: selectedFile,
|
|
4025
4036
|
openByDefault,
|
|
4026
4037
|
width: "100%",
|
|
4027
4038
|
height: containerHeight,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StoryboardWorkflowsTreeCore.d.ts","sourceRoot":"","sources":["../../../../src/components/StoryboardWorkflowsTree/StoryboardWorkflowsTreeCore.tsx"],"names":[],"mappings":"AACA,OAAO,KAA0B,MAAM,OAAO,CAAC;AAU/C,OAAO,KAAK,EAEV,4BAA4B,EAQ7B,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"StoryboardWorkflowsTreeCore.d.ts","sourceRoot":"","sources":["../../../../src/components/StoryboardWorkflowsTree/StoryboardWorkflowsTreeCore.tsx"],"names":[],"mappings":"AACA,OAAO,KAA0B,MAAM,OAAO,CAAC;AAU/C,OAAO,KAAK,EAEV,4BAA4B,EAQ7B,MAAM,SAAS,CAAC;AAqgCjB,eAAO,MAAM,2BAA2B,0DAA+C,CAAC"}
|
|
@@ -115,6 +115,12 @@ export interface StoryboardWorkflowsTreeProps {
|
|
|
115
115
|
* When enabled, nodes will transfer their path/data using the panel-framework-core format.
|
|
116
116
|
*/
|
|
117
117
|
enablePanelDrag?: boolean;
|
|
118
|
+
/**
|
|
119
|
+
* Preserve the order of storyboards as passed in, without internal alphabetical sorting.
|
|
120
|
+
* When true, the tree will respect the order of the storyboards array.
|
|
121
|
+
* Default: false (alphabetical sorting enabled)
|
|
122
|
+
*/
|
|
123
|
+
preserveOrder?: boolean;
|
|
118
124
|
/**
|
|
119
125
|
* Optional callback to customize the drag config for each node.
|
|
120
126
|
* If not provided, default configs are generated based on node type.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/StoryboardWorkflowsTree/types.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/components/StoryboardWorkflowsTree/types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED