Skip to content

Commit bd84c2a

Browse files
authoredAug 13, 2024··
fix(cdk/tree): fix issue where isExpanded wouldn't be set if placed before isExpandable (#29565)
* fix(cdk/tree): fix issue where `isExpanded` wouldn't be set if placed before `isExpandable` * fix(cdk/tree): actually fix the issue * fix(cdk/tree): actually actually fix tests
1 parent ec35e99 commit bd84c2a

File tree

2 files changed

+52
-1
lines changed

2 files changed

+52
-1
lines changed
 

‎src/cdk/tree/tree.spec.ts

+40-1
Original file line numberDiff line numberDiff line change
@@ -1448,6 +1448,17 @@ describe('CdkTree', () => {
14481448
});
14491449
});
14501450
});
1451+
1452+
it('sets a node as expanded if attribute is ordered before `isExpandable`', () => {
1453+
configureCdkTreeTestingModule([IsExpandableOrderingTest]);
1454+
const fixture = TestBed.createComponent(IsExpandableOrderingTest);
1455+
fixture.detectChanges();
1456+
1457+
const component = fixture.componentInstance;
1458+
expect(getExpandedNodes(component.dataSource, component.tree).length)
1459+
.withContext(`expect an expanded node`)
1460+
.toBe(1);
1461+
});
14511462
});
14521463

14531464
export class TestData {
@@ -1554,7 +1565,7 @@ function getNodes(treeElement: Element): HTMLElement[] {
15541565
return Array.from(treeElement.querySelectorAll('.cdk-tree-node'));
15551566
}
15561567

1557-
function getExpandedNodes(nodes: TestData[] | undefined, tree: CdkTree<TestData>): TestData[] {
1568+
function getExpandedNodes<T>(nodes: T[] | undefined, tree: CdkTree<T>): T[] {
15581569
return nodes?.filter(node => tree.isExpanded(node)) ?? [];
15591570
}
15601571

@@ -2100,3 +2111,31 @@ class FlatTreeWithThreeNodes {
21002111
@ViewChild('tree', {read: ElementRef}) tree: ElementRef<HTMLElement>;
21012112
@ViewChildren('node') treeNodes: QueryList<ElementRef<HTMLElement>>;
21022113
}
2114+
2115+
@Component({
2116+
template: `
2117+
<cdk-tree [dataSource]="dataSource" [childrenAccessor]="getChildren">
2118+
<cdk-tree-node
2119+
*cdkTreeNodeDef="let node"
2120+
[isExpanded]="true"
2121+
[isExpandable]="true">
2122+
{{node.name}}
2123+
</cdk-tree-node>
2124+
</cdk-tree>
2125+
`,
2126+
})
2127+
class IsExpandableOrderingTest {
2128+
getChildren = (node: MinimalTestData) => node.children;
2129+
2130+
@ViewChild(CdkTree) tree: CdkTree<MinimalTestData>;
2131+
2132+
dataSource: MinimalTestData[];
2133+
2134+
constructor() {
2135+
const children = [new MinimalTestData('child')];
2136+
const data = [new MinimalTestData('parent')];
2137+
data[0].children = children;
2138+
2139+
this.dataSource = data;
2140+
}
2141+
}

‎src/cdk/tree/tree.ts

+12
Original file line numberDiff line numberDiff line change
@@ -1176,13 +1176,24 @@ export class CdkTreeNode<T, K = T> implements OnDestroy, OnInit, TreeKeyManagerI
11761176
}
11771177
set isExpandable(isExpandable: boolean) {
11781178
this._inputIsExpandable = isExpandable;
1179+
if ((this.data && !this._isExpandable) || !this._inputIsExpandable) {
1180+
return;
1181+
}
1182+
// If the node is being set to expandable, ensure that the status of the
1183+
// node is propagated
1184+
if (this._inputIsExpanded) {
1185+
this.expand();
1186+
} else if (this._inputIsExpanded === false) {
1187+
this.collapse();
1188+
}
11791189
}
11801190

11811191
@Input()
11821192
get isExpanded(): boolean {
11831193
return this._tree.isExpanded(this._data);
11841194
}
11851195
set isExpanded(isExpanded: boolean) {
1196+
this._inputIsExpanded = isExpanded;
11861197
if (isExpanded) {
11871198
this.expand();
11881199
} else {
@@ -1227,6 +1238,7 @@ export class CdkTreeNode<T, K = T> implements OnDestroy, OnInit, TreeKeyManagerI
12271238
readonly _dataChanges = new Subject<void>();
12281239

12291240
private _inputIsExpandable: boolean = false;
1241+
private _inputIsExpanded: boolean | undefined = undefined;
12301242
/**
12311243
* Flag used to determine whether or not we should be focusing the actual element based on
12321244
* some user interaction (click or focus). On click, we don't forcibly focus the element

0 commit comments

Comments
 (0)
Please sign in to comment.