PeerTube/server/models/utils.ts

28 lines
659 B
TypeScript
Raw Normal View History

2016-12-11 21:50:51 +01:00
// Translate for example "-name" to [ 'name', 'DESC' ]
2017-06-10 22:15:25 +02:00
function getSort (value: string) {
let field: string
let direction: 'ASC' | 'DESC'
2016-08-16 22:31:45 +02:00
2016-12-11 21:50:51 +01:00
if (value.substring(0, 1) === '-') {
direction = 'DESC'
field = value.substring(1)
} else {
direction = 'ASC'
field = value
}
2016-08-16 22:31:45 +02:00
2016-12-11 21:50:51 +01:00
return [ field, direction ]
2016-08-16 22:31:45 +02:00
}
2017-05-22 20:58:25 +02:00
function addMethodsToModel (model: any, classMethods: Function[], instanceMethods: Function[] = []) {
classMethods.forEach(m => model[m.name] = m)
instanceMethods.forEach(m => model.prototype[m.name] = m)
}
2016-08-16 22:31:45 +02:00
// ---------------------------------------------------------------------------
2017-05-15 22:22:03 +02:00
export {
2017-05-22 20:58:25 +02:00
addMethodsToModel,
2017-05-15 22:22:03 +02:00
getSort
}