Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use localeCompare to sort files #977

Merged
merged 5 commits into from
Feb 28, 2019
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 3 additions & 14 deletions src/bundles/files.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { join, dirname } from 'path'
import { createSelector } from 'redux-bundler'
import { getDownloadLink, getShareableLink, filesToStreams } from '../lib/files'
import countDirs from '../lib/count-dirs'
import { sortByName, sortBySize } from '../lib/sort'

const isMac = navigator.userAgent.indexOf('Mac') !== -1

Expand All @@ -21,18 +22,6 @@ export const sorts = {
BY_SIZE: 'size'
}

function compare (a, b, asc) {
const strings = typeof a === 'string' && typeof b === 'string'

if (strings ? a.toLowerCase() > b.toLowerCase() : a > b) {
return asc ? 1 : -1
} else if (strings ? a.toLowerCase() < b.toLowerCase() : a < b) {
return asc ? -1 : 1
} else {
return 0
}
}

const make = (basename, action) => (...args) => async (args2) => {
const id = Symbol(basename)
const { dispatch, getIpfs, store } = args2
Expand Down Expand Up @@ -361,9 +350,9 @@ export default (opts = {}) => {
content: pageContent.content.sort((a, b) => {
if (a.type === b.type || isMac) {
if (sorting.by === sorts.BY_NAME) {
return compare(a.name, b.name, sorting.asc)
return sortByName(sorting.asc ? 1 : -1)(a.name, b.name)
fsdiogo marked this conversation as resolved.
Show resolved Hide resolved
} else {
return compare(a.cumulativeSize || a.size, b.cumulativeSize || b.size, sorting.asc)
return sortBySize(sorting.asc ? 1 : -1)(a.cumulativeSize || a.size, b.cumulativeSize || b.size)
}
}

Expand Down
18 changes: 18 additions & 0 deletions src/lib/sort.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/**
* Natural sort comparator for strings.
*
* @param {Number} dir - sorting direction, 1 for ascending or -1 for descending
* @param {Object} opts - localeCompare options (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/localeCompare)
*/
export function sortByName (dir = 1, opts = { numeric: true, sensitivity: 'base' }) {
return (a, b) => a.localeCompare(b, undefined, opts) * dir
}

/**
* Numerical sort comparator.
*
* @param {Number} dir - sorting direction, 1 for ascending or -1 for descending
*/
export function sortBySize (dir = 1) {
return (a, b) => (a - b) * dir
}