aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/models/utils.ts
blob: 1bf61d2a693021aff86a88732587dfabe3ccd87b (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                                                      


                                  
 






                                      
 
                             

 




                                                                                                     






                                                          

                                                                              
        
                    

                
 
// Translate for example "-name" to [ 'name', 'DESC' ]
function getSort (value: string) {
  let field: string
  let direction: 'ASC' | 'DESC'

  if (value.substring(0, 1) === '-') {
    direction = 'DESC'
    field = value.substring(1)
  } else {
    direction = 'ASC'
    field = value
  }

  return [ field, direction ]
}

function addMethodsToModel (model: any, classMethods: Function[], instanceMethods: Function[] = []) {
  classMethods.forEach(m => model[m.name] = m)
  instanceMethods.forEach(m => model.prototype[m.name] = m)
}

function getSortOnModel (model: any, value: string) {
  let sort = getSort(value)

  if (model) return [ { model: model }, sort[0], sort[1] ]
  return sort
}

// ---------------------------------------------------------------------------

export {
  addMethodsToModel,
  getSort,
  getSortOnModel
}