2018-02-19 03:41:03 -05:00
|
|
|
// Translate for example "-name" to [ [ 'name', 'DESC' ], [ 'id', 'ASC' ] ]
|
|
|
|
function getSort (value: string, lastSort: string[] = [ 'id', 'ASC' ]) {
|
2017-06-10 16:15:25 -04:00
|
|
|
let field: string
|
|
|
|
let direction: 'ASC' | 'DESC'
|
2016-08-16 16:31:45 -04:00
|
|
|
|
2016-12-11 15:50:51 -05:00
|
|
|
if (value.substring(0, 1) === '-') {
|
|
|
|
direction = 'DESC'
|
|
|
|
field = value.substring(1)
|
|
|
|
} else {
|
|
|
|
direction = 'ASC'
|
|
|
|
field = value
|
|
|
|
}
|
2016-08-16 16:31:45 -04:00
|
|
|
|
2018-02-19 03:41:03 -05:00
|
|
|
return [ [ field, direction ], lastSort ]
|
2016-08-16 16:31:45 -04:00
|
|
|
}
|
|
|
|
|
2018-02-19 03:41:03 -05:00
|
|
|
function getSortOnModel (model: any, value: string, lastSort: string[] = [ 'id', 'ASC' ]) {
|
|
|
|
let [ firstSort ] = getSort(value)
|
2017-09-22 03:13:43 -04:00
|
|
|
|
2018-02-19 03:41:03 -05:00
|
|
|
if (model) return [ [ model, firstSort[0], firstSort[1] ], lastSort ]
|
|
|
|
return [ firstSort, lastSort ]
|
2017-09-22 03:13:43 -04:00
|
|
|
}
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
function throwIfNotValid (value: any, validator: (value: any) => boolean, fieldName = 'value') {
|
|
|
|
if (validator(value) === false) {
|
|
|
|
throw new Error(`"${value}" is not a valid ${fieldName}.`)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-16 16:31:45 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
2017-09-22 03:13:43 -04:00
|
|
|
getSort,
|
2017-12-12 11:53:50 -05:00
|
|
|
getSortOnModel,
|
|
|
|
throwIfNotValid
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|