-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UI: helper sort-objects to alphabetize list items (#24103)
* move list to component * use helper instead * add changelog * clarify changelog copy * delete components now that helper is in use * move helper to util, remove template helper invokation * add optional sorting to lazyPaginatedQuery based on sortBy query attribute * Add serialization to entity-alias and entity so that they can be sorted by name on list view * Same logic as base normalizeItems for extractLazyPaginatedData so that metadata shows on list * Add headers --------- Co-authored-by: Chelsea Shaw <[email protected]> Co-authored-by: Chelsea Shaw <[email protected]>
- Loading branch information
Showing
9 changed files
with
136 additions
and
4 deletions.
There are no files selected for viewing
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,3 @@ | ||
```release-note:improvement | ||
ui: Sort list view of entities and aliases alphabetically using the item name | ||
``` |
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
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
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
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
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
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
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,14 @@ | ||
export default function sortObjects(array, key) { | ||
if (Array.isArray(array) && array?.every((e) => e[key] && typeof e[key] === 'string')) { | ||
return array.sort((a, b) => { | ||
// ignore upper vs lowercase | ||
const valueA = a[key].toUpperCase(); | ||
const valueB = b[key].toUpperCase(); | ||
if (valueA < valueB) return -1; | ||
if (valueA > valueB) return 1; | ||
return 0; | ||
}); | ||
} | ||
// if not sortable, return original array | ||
return array; | ||
} |
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,86 @@ | ||
import sortObjects from 'vault/utils/sort-objects'; | ||
import { module, test } from 'qunit'; | ||
|
||
module('Unit | Utility | sort-objects', function () { | ||
test('it sorts array of objects', function (assert) { | ||
const originalArray = [ | ||
{ foo: 'grape', bar: 'third' }, | ||
{ foo: 'banana', bar: 'second' }, | ||
{ foo: 'lemon', bar: 'fourth' }, | ||
{ foo: 'apple', bar: 'first' }, | ||
]; | ||
const expectedArray = [ | ||
{ bar: 'first', foo: 'apple' }, | ||
{ bar: 'second', foo: 'banana' }, | ||
{ bar: 'third', foo: 'grape' }, | ||
{ bar: 'fourth', foo: 'lemon' }, | ||
]; | ||
|
||
assert.propEqual(sortObjects(originalArray, 'foo'), expectedArray, 'it sorts array of objects'); | ||
|
||
const originalWithNumbers = [ | ||
{ foo: 'Z', bar: 'fourth' }, | ||
{ foo: '1', bar: 'first' }, | ||
{ foo: '2', bar: 'second' }, | ||
{ foo: 'A', bar: 'third' }, | ||
]; | ||
const expectedWithNumbers = [ | ||
{ bar: 'first', foo: '1' }, | ||
{ bar: 'second', foo: '2' }, | ||
{ bar: 'third', foo: 'A' }, | ||
{ bar: 'fourth', foo: 'Z' }, | ||
]; | ||
assert.propEqual( | ||
sortObjects(originalWithNumbers, 'foo'), | ||
expectedWithNumbers, | ||
'it sorts strings with numbers and letters' | ||
); | ||
}); | ||
|
||
test('it disregards capitalization', function (assert) { | ||
// sort() arranges capitalized values before lowercase, the helper removes case by making all strings toUppercase() | ||
const originalArray = [ | ||
{ foo: 'something-a', bar: 'third' }, | ||
{ foo: 'D-something', bar: 'second' }, | ||
{ foo: 'SOMETHING-b', bar: 'fourth' }, | ||
{ foo: 'a-something', bar: 'first' }, | ||
]; | ||
const expectedArray = [ | ||
{ bar: 'first', foo: 'a-something' }, | ||
{ bar: 'second', foo: 'D-something' }, | ||
{ bar: 'third', foo: 'something-a' }, | ||
{ bar: 'fourth', foo: 'SOMETHING-b' }, | ||
]; | ||
|
||
assert.propEqual( | ||
sortObjects(originalArray, 'foo'), | ||
expectedArray, | ||
'it sorts array of objects regardless of capitalization' | ||
); | ||
}); | ||
|
||
test('it fails gracefully', function (assert) { | ||
const originalArray = [ | ||
{ foo: 'b', bar: 'two' }, | ||
{ foo: 'a', bar: 'one' }, | ||
]; | ||
assert.propEqual( | ||
sortObjects(originalArray, 'someKey'), | ||
originalArray, | ||
'it returns original array if key does not exist' | ||
); | ||
assert.deepEqual(sortObjects('not an array'), 'not an array', 'it returns original arg if not an array'); | ||
|
||
const notStrings = [ | ||
{ foo: '1', bar: 'third' }, | ||
{ foo: 'Z', bar: 'second' }, | ||
{ foo: 1, bar: 'fourth' }, | ||
{ foo: 2, bar: 'first' }, | ||
]; | ||
assert.propEqual( | ||
sortObjects(notStrings, 'foo'), | ||
notStrings, | ||
'it returns original array if values are not all strings' | ||
); | ||
}); | ||
}); |