Begin advanced search
This commit is contained in:
parent
7279b45581
commit
57c36b277e
38 changed files with 584 additions and 247 deletions
|
@ -1,6 +1,8 @@
|
|||
// Translate for example "-name" to [ [ 'name', 'DESC' ], [ 'id', 'ASC' ] ]
|
||||
import { Sequelize } from 'sequelize-typescript'
|
||||
|
||||
function getSort (value: string, lastSort: string[] = [ 'id', 'ASC' ]) {
|
||||
let field: string
|
||||
let field: any
|
||||
let direction: 'ASC' | 'DESC'
|
||||
|
||||
if (value.substring(0, 1) === '-') {
|
||||
|
@ -11,6 +13,9 @@ function getSort (value: string, lastSort: string[] = [ 'id', 'ASC' ]) {
|
|||
field = value
|
||||
}
|
||||
|
||||
// Alias
|
||||
if (field.toLowerCase() === 'bestmatch') field = Sequelize.col('similarity')
|
||||
|
||||
return [ [ field, direction ], lastSort ]
|
||||
}
|
||||
|
||||
|
@ -27,10 +32,53 @@ function throwIfNotValid (value: any, validator: (value: any) => boolean, fieldN
|
|||
}
|
||||
}
|
||||
|
||||
function buildTrigramSearchIndex (indexName: string, attribute: string) {
|
||||
return {
|
||||
name: indexName,
|
||||
fields: [ Sequelize.literal('lower(immutable_unaccent(' + attribute + '))') as any ],
|
||||
using: 'gin',
|
||||
operator: 'gin_trgm_ops'
|
||||
}
|
||||
}
|
||||
|
||||
function createSimilarityAttribute (col: string, value: string) {
|
||||
return Sequelize.fn(
|
||||
'similarity',
|
||||
|
||||
searchTrigramNormalizeCol(col),
|
||||
|
||||
searchTrigramNormalizeValue(value)
|
||||
)
|
||||
}
|
||||
|
||||
function createSearchTrigramQuery (col: string, value: string) {
|
||||
return {
|
||||
[ Sequelize.Op.or ]: [
|
||||
// FIXME: use word_similarity instead of just similarity?
|
||||
Sequelize.where(searchTrigramNormalizeCol(col), ' % ', searchTrigramNormalizeValue(value)),
|
||||
|
||||
Sequelize.where(searchTrigramNormalizeCol(col), ' LIKE ', searchTrigramNormalizeValue(`%${value}%`))
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
export {
|
||||
getSort,
|
||||
getSortOnModel,
|
||||
throwIfNotValid
|
||||
createSimilarityAttribute,
|
||||
throwIfNotValid,
|
||||
buildTrigramSearchIndex,
|
||||
createSearchTrigramQuery
|
||||
}
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
function searchTrigramNormalizeValue (value: string) {
|
||||
return Sequelize.fn('lower', Sequelize.fn('unaccent', value))
|
||||
}
|
||||
|
||||
function searchTrigramNormalizeCol (col: string) {
|
||||
return Sequelize.fn('lower', Sequelize.fn('immutable_unaccent', Sequelize.col(col)))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue