-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ui) Fix nesting logic in properties tab (#12151)
- Loading branch information
1 parent
d5ab001
commit ef1c1df
Showing
2 changed files
with
90 additions
and
3 deletions.
There are no files selected for viewing
87 changes: 87 additions & 0 deletions
87
...web-react/src/app/entity/shared/tabs/Properties/__tests__/useStructuredProperties.test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
import { identifyAndAddParentRows } from '../useStructuredProperties'; | ||
|
||
describe('identifyAndAddParentRows', () => { | ||
it('should not return parent rows when there are none', () => { | ||
const propertyRows = [ | ||
{ displayName: 'test1', qualifiedName: 'test1' }, | ||
{ displayName: 'test2', qualifiedName: 'test2' }, | ||
]; | ||
expect(identifyAndAddParentRows(propertyRows)).toMatchObject([]); | ||
}); | ||
|
||
it('should not return parent rows when another row starts with the same letters but is a different token', () => { | ||
const propertyRows = [ | ||
{ displayName: 'test1', qualifiedName: 'testing.one' }, | ||
{ displayName: 'test2', qualifiedName: 'testingAgain.two' }, | ||
]; | ||
expect(identifyAndAddParentRows(propertyRows)).toMatchObject([]); | ||
}); | ||
|
||
it('should return parent rows properly', () => { | ||
const propertyRows = [ | ||
{ displayName: 'test1', qualifiedName: 'testing.one' }, | ||
{ displayName: 'test2', qualifiedName: 'testing.two' }, | ||
{ displayName: 'test3', qualifiedName: 'testing.three' }, | ||
]; | ||
expect(identifyAndAddParentRows(propertyRows)).toMatchObject([ | ||
{ displayName: 'testing', qualifiedName: 'testing', childrenCount: 3 }, | ||
]); | ||
}); | ||
|
||
it('should return parent rows properly with multiple layers of nesting', () => { | ||
const propertyRows = [ | ||
{ displayName: 'test1', qualifiedName: 'testing.one.two.a.1' }, | ||
{ displayName: 'test1', qualifiedName: 'testing.one.two.a.2' }, | ||
{ displayName: 'test1', qualifiedName: 'testing.one.two.b' }, | ||
{ displayName: 'test1', qualifiedName: 'testing.one.three' }, | ||
{ displayName: 'test2', qualifiedName: 'testing.two.c.d' }, | ||
{ displayName: 'test3', qualifiedName: 'testing.three' }, | ||
{ displayName: 'test3', qualifiedName: 'testParent' }, | ||
]; | ||
expect(identifyAndAddParentRows(propertyRows)).toMatchObject([ | ||
{ displayName: 'testing', qualifiedName: 'testing', isParentRow: true, childrenCount: 6 }, | ||
{ displayName: 'testing.one', qualifiedName: 'testing.one', isParentRow: true, childrenCount: 4 }, | ||
{ displayName: 'testing.one.two', qualifiedName: 'testing.one.two', isParentRow: true, childrenCount: 3 }, | ||
{ | ||
displayName: 'testing.one.two.a', | ||
qualifiedName: 'testing.one.two.a', | ||
isParentRow: true, | ||
childrenCount: 2, | ||
}, | ||
]); | ||
}); | ||
|
||
it('should return parent rows properly with multiple layers of nesting regardless of order', () => { | ||
const propertyRows = [ | ||
{ displayName: 'test1', qualifiedName: 'testing.one.two.a.1' }, | ||
{ displayName: 'test3', qualifiedName: 'testParent' }, | ||
{ displayName: 'test1', qualifiedName: 'testing.one.three' }, | ||
{ displayName: 'test2', qualifiedName: 'testing.two.c.d' }, | ||
{ displayName: 'test1', qualifiedName: 'testing.one.two.b' }, | ||
{ displayName: 'test3', qualifiedName: 'testing.three' }, | ||
{ displayName: 'test1', qualifiedName: 'testing.one.two.a.2' }, | ||
]; | ||
expect(identifyAndAddParentRows(propertyRows)).toMatchObject([ | ||
{ displayName: 'testing', qualifiedName: 'testing', isParentRow: true, childrenCount: 6 }, | ||
{ displayName: 'testing.one', qualifiedName: 'testing.one', isParentRow: true, childrenCount: 4 }, | ||
{ displayName: 'testing.one.two', qualifiedName: 'testing.one.two', isParentRow: true, childrenCount: 3 }, | ||
{ | ||
displayName: 'testing.one.two.a', | ||
qualifiedName: 'testing.one.two.a', | ||
isParentRow: true, | ||
childrenCount: 2, | ||
}, | ||
]); | ||
}); | ||
|
||
it('should return parent rows properly with simpler layers of nesting', () => { | ||
const propertyRows = [ | ||
{ displayName: 'test2', qualifiedName: 'testing.two.c.d' }, | ||
{ displayName: 'test3', qualifiedName: 'testing.three' }, | ||
{ displayName: 'test3', qualifiedName: 'testParent' }, | ||
]; | ||
expect(identifyAndAddParentRows(propertyRows)).toMatchObject([ | ||
{ displayName: 'testing', qualifiedName: 'testing', isParentRow: true, childrenCount: 2 }, | ||
]); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters