Skip to content

Commit

Permalink
added unit tests for string sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
BabyElias committed Dec 10, 2024
1 parent 7af967e commit 37e89b1
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 22 deletions.
20 changes: 10 additions & 10 deletions lib/KTable/useSorting/__tests__/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ describe('useSorting', () => {

rows = ref([
['John', 30, new Date(1990, 5, 15)],
['Jane', 25, new Date(1995, 10, 20)],
['jane', 25, new Date(1995, 10, 20)],
['Alice', 28, new Date(1992, 8, 10)],
]);

Expand Down Expand Up @@ -52,7 +52,7 @@ describe('useSorting', () => {
const { sortedRows } = useSorting(headers, rows, defaultSort, disableBuiltinSorting);
expect(sortedRows.value).toEqual([
['Alice', 28, new Date(1992, 8, 10)],
['Jane', 25, new Date(1995, 10, 20)],
['jane', 25, new Date(1995, 10, 20)],
['John', 30, new Date(1990, 5, 15)],
]);
});
Expand All @@ -66,7 +66,7 @@ describe('useSorting', () => {
const { sortedRows } = useSorting(headers, rows, defaultSort, disableBuiltinSorting);
expect(sortedRows.value).toEqual([
['John', 30, new Date(1990, 5, 15)],
['Jane', 25, new Date(1995, 10, 20)],
['jane', 25, new Date(1995, 10, 20)],
['Alice', 28, new Date(1992, 8, 10)],
]);
});
Expand All @@ -79,7 +79,7 @@ describe('useSorting', () => {

const { sortedRows } = useSorting(headers, rows, defaultSort, disableBuiltinSorting);
expect(sortedRows.value).toEqual([
['Jane', 25, new Date(1995, 10, 20)],
['jane', 25, new Date(1995, 10, 20)],
['Alice', 28, new Date(1992, 8, 10)],
['John', 30, new Date(1990, 5, 15)],
]);
Expand All @@ -95,7 +95,7 @@ describe('useSorting', () => {
expect(sortedRows.value).toEqual([
['John', 30, new Date(1990, 5, 15)],
['Alice', 28, new Date(1992, 8, 10)],
['Jane', 25, new Date(1995, 10, 20)],
['jane', 25, new Date(1995, 10, 20)],
]);
});
});
Expand Down Expand Up @@ -144,7 +144,7 @@ describe('useSorting', () => {
handleSort(0); // Sort by 'Name'
expect(sortedRows.value).toEqual([
['Alice', 28, new Date(1992, 8, 10)],
['Jane', 25, new Date(1995, 10, 20)],
['jane', 25, new Date(1995, 10, 20)],
['John', 30, new Date(1990, 5, 15)],
]);
});
Expand All @@ -159,7 +159,7 @@ describe('useSorting', () => {

handleSort(1); // Sort by 'Age'
expect(sortedRows.value).toEqual([
['Jane', 25, new Date(1995, 10, 20)],
['jane', 25, new Date(1995, 10, 20)],
['Alice', 28, new Date(1992, 8, 10)],
['John', 30, new Date(1990, 5, 15)],
]);
Expand All @@ -169,14 +169,14 @@ describe('useSorting', () => {
expect(sortedRows.value).toEqual([
['John', 30, new Date(1990, 5, 15)],
['Alice', 28, new Date(1992, 8, 10)],
['Jane', 25, new Date(1995, 10, 20)],
['jane', 25, new Date(1995, 10, 20)],
]);
expect(sortOrder.value).toBe(SORT_ORDER_DESC);

handleSort(1); // Sort by 'Age' again to default order
expect(sortedRows.value).toEqual([
['John', 30, new Date(1990, 5, 15)],
['Jane', 25, new Date(1995, 10, 20)],
['jane', 25, new Date(1995, 10, 20)],
['Alice', 28, new Date(1992, 8, 10)],
]);
expect(sortOrder.value).toBe(null);
Expand All @@ -194,7 +194,7 @@ describe('useSorting', () => {
expect(sortedRows.value).toEqual([
['John', 30, new Date(1990, 5, 15)],
['Alice', 28, new Date(1992, 8, 10)],
['Jane', 25, new Date(1995, 10, 20)],
['jane', 25, new Date(1995, 10, 20)],
]);
});

Expand Down
30 changes: 18 additions & 12 deletions lib/KTable/useSorting/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,20 @@ export default function useSorting(headers, rows, defaultSort, disableBuiltinSor
const sortKey = ref(null);
const sortOrder = ref(null);

/**
* Helper function to get the value for sorting.
* @param {Object} row - The row object.
* @param {Number} index - The index of the column to sort by.
* @returns {any} - The value to be used for sorting.
*/
const getSortValue = (row, index) => {
const value = row[index];
if (typeof value === 'string') {
return value.toString().toLocaleLowerCase();
}
return value;
};

/**
* Computed property that returns the sorted rows based on the current sort key and order.
* If local sorting is disabled or no sort key is set, it returns the original rows.
Expand All @@ -37,22 +51,14 @@ export default function useSorting(headers, rows, defaultSort, disableBuiltinSor

return _.orderBy(
rows.value,
[row => row[defaultSort.value.index]],
[defaultSort.value.direction],
[row => getSortValue(row, defaultSort.value.index)],
[defaultSort.value.direction]
);
}

return _.orderBy(
rows.value,
[
row => {
const value = row[sortKey.value];
if (typeof value === 'string') {
return value.toString().toLocaleLowerCase();
}
return value;
},
],
[row => getSortValue(row, sortKey.value)],
[sortOrder.value]
);
});
Expand Down Expand Up @@ -99,4 +105,4 @@ export default function useSorting(headers, rows, defaultSort, disableBuiltinSor
handleSort,
getAriaSort,
};
}
}

0 comments on commit 37e89b1

Please sign in to comment.