2016-12-11 15:50:51 -05:00
|
|
|
// Translate for example "-name" to [ 'name', 'DESC' ]
|
2017-06-10 16:15:25 -04:00
|
|
|
function getSort (value: string) {
|
|
|
|
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
|
|
|
|
2016-12-11 15:50:51 -05:00
|
|
|
return [ field, direction ]
|
2016-08-16 16:31:45 -04:00
|
|
|
}
|
|
|
|
|
2017-09-22 03:13:43 -04:00
|
|
|
function getSortOnModel (model: any, value: string) {
|
|
|
|
let sort = getSort(value)
|
|
|
|
|
2017-12-12 11:53:50 -05:00
|
|
|
if (model) return [ model, sort[0], sort[1] ]
|
2017-09-22 03:13:43 -04:00
|
|
|
return sort
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|