Fixed: Tag details list series in alphabetical order

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
Qstick 2020-10-02 23:06:06 -04:00
parent 8af09595fb
commit 67822e6214
1 changed files with 21 additions and 1 deletions

View File

@ -9,7 +9,7 @@ function findMatchingItems(ids, items) {
});
}
function createMatchingArtistSelector() {
function createUnorderedMatchingArtistSelector() {
return createSelector(
(state, { artistIds }) => artistIds,
createAllArtistSelector(),
@ -17,6 +17,26 @@ function createMatchingArtistSelector() {
);
}
function createMatchingArtistSelector() {
return createSelector(
createUnorderedMatchingArtistSelector(),
(artists) => {
return artists.sort((artistA, artistB) => {
const sortNameA = artistA.sortName;
const sortNameB = artistB.sortName;
if (sortNameA > sortNameB) {
return 1;
} else if (sortNameA < sortNameB) {
return -1;
}
return 0;
});
}
);
}
function createMatchingDelayProfilesSelector() {
return createSelector(
(state, { delayProfileIds }) => delayProfileIds,