X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Fsrc%2Fapp%2Fsearch%2Fadvanced-search.model.ts;h=48616a9ae2161e12d858fc717b7eca7921ebf41c;hb=4a9e71c2b1ef57de01cd04984348b3957ebbc21d;hp=aad4367881f8c0f37771114e270cf666822978a5;hpb=7afea880e561196671f186045c94f09511189405;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/search/advanced-search.model.ts b/client/src/app/search/advanced-search.model.ts index aad436788..48616a9ae 100644 --- a/client/src/app/search/advanced-search.model.ts +++ b/client/src/app/search/advanced-search.model.ts @@ -18,6 +18,8 @@ export class AdvancedSearch { durationMin: number // seconds durationMax: number // seconds + sort: string + constructor (options?: { startDate?: string endDate?: string @@ -29,6 +31,7 @@ export class AdvancedSearch { tagsAllOf?: string durationMin?: string durationMax?: string + sort?: string }) { if (!options) return @@ -45,11 +48,15 @@ export class AdvancedSearch { if (isNaN(this.durationMin)) this.durationMin = undefined if (isNaN(this.durationMax)) this.durationMax = undefined + + this.sort = options.sort || '-match' } containsValues () { const obj = this.toUrlObject() for (const k of Object.keys(obj)) { + if (k === 'sort') continue // Exception + if (obj[k] !== undefined) return true } @@ -67,6 +74,8 @@ export class AdvancedSearch { this.tagsAllOf = undefined this.durationMin = undefined this.durationMax = undefined + + this.sort = '-match' } toUrlObject () { @@ -80,7 +89,8 @@ export class AdvancedSearch { tagsOneOf: this.tagsOneOf, tagsAllOf: this.tagsAllOf, durationMin: this.durationMin, - durationMax: this.durationMax + durationMax: this.durationMax, + sort: this.sort } } @@ -89,13 +99,22 @@ export class AdvancedSearch { startDate: this.startDate, endDate: this.endDate, nsfw: this.nsfw, - categoryOneOf: this.categoryOneOf ? this.categoryOneOf.split(',') : undefined, - licenceOneOf: this.licenceOneOf ? this.licenceOneOf.split(',') : undefined, - languageOneOf: this.languageOneOf ? this.languageOneOf.split(',') : undefined, - tagsOneOf: this.tagsOneOf ? this.tagsOneOf.split(',') : undefined, - tagsAllOf: this.tagsAllOf ? this.tagsAllOf.split(',') : undefined, + categoryOneOf: this.intoArray(this.categoryOneOf), + licenceOneOf: this.intoArray(this.licenceOneOf), + languageOneOf: this.intoArray(this.languageOneOf), + tagsOneOf: this.intoArray(this.tagsOneOf), + tagsAllOf: this.intoArray(this.tagsAllOf), durationMin: this.durationMin, - durationMax: this.durationMax + durationMax: this.durationMax, + sort: this.sort } } + + private intoArray (value: any) { + if (!value) return undefined + + if (typeof value === 'string') return value.split(',') + + return [ value ] + } }