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-05-22 14:58:25 -04:00
|
|
|
function addMethodsToModel (model: any, classMethods: Function[], instanceMethods: Function[] = []) {
|
|
|
|
classMethods.forEach(m => model[m.name] = m)
|
|
|
|
instanceMethods.forEach(m => model.prototype[m.name] = m)
|
|
|
|
}
|
|
|
|
|
2017-09-22 03:13:43 -04:00
|
|
|
function getSortOnModel (model: any, value: string) {
|
|
|
|
let sort = getSort(value)
|
|
|
|
|
|
|
|
if (model) return [ { model: model }, sort[0], sort[1] ]
|
|
|
|
return sort
|
|
|
|
}
|
|
|
|
|
2016-08-16 16:31:45 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
export {
|
2017-05-22 14:58:25 -04:00
|
|
|
addMethodsToModel,
|
2017-09-22 03:13:43 -04:00
|
|
|
getSort,
|
|
|
|
getSortOnModel
|
2017-05-15 16:22:03 -04:00
|
|
|
}
|