Responsive search view
This commit is contained in:
parent
13db853dc3
commit
5b784db735
|
@ -3,6 +3,8 @@
|
||||||
## Canary
|
## Canary
|
||||||
* Skip button for auto-post ads
|
* Skip button for auto-post ads
|
||||||
* Image tab on the character profile view now loads up faster
|
* Image tab on the character profile view now loads up faster
|
||||||
|
* Search results view is more responsive while still scoring profiles
|
||||||
|
* Fixed 'unicorn match' badge color
|
||||||
|
|
||||||
|
|
||||||
## 1.8.0
|
## 1.8.0
|
||||||
|
|
|
@ -214,12 +214,12 @@
|
||||||
// tslint:disable-next-line no-unsafe-any no-any
|
// tslint:disable-next-line no-unsafe-any no-any
|
||||||
&& (_.find(this.results, (s: SearchResult) => s.character.name === event.character.character.name))
|
&& (_.find(this.results, (s: SearchResult) => s.character.name === event.character.character.name))
|
||||||
) {
|
) {
|
||||||
|
this.resultsPending = this.countPendingResults(event.character.character.name);
|
||||||
|
|
||||||
this.results = (_.filter(
|
this.results = (_.filter(
|
||||||
this.results,
|
this.results,
|
||||||
(x) => this.isSpeciesMatch(x)
|
(x) => this.isSpeciesMatch(x)
|
||||||
) as SearchResult[]).sort(sort);
|
) as SearchResult[]).sort(sort);
|
||||||
|
|
||||||
this.resultsPending = this.countPendingResults();
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -327,7 +327,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
countPendingResults(): number {
|
countPendingResults(specificName?: string): number {
|
||||||
return _.reduce(
|
return _.reduce(
|
||||||
this.results,
|
this.results,
|
||||||
(accum: number, result: SearchResult) => {
|
(accum: number, result: SearchResult) => {
|
||||||
|
@ -335,7 +335,10 @@
|
||||||
return accum;
|
return accum;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ((!specificName) || (result.character.name === specificName)) {
|
||||||
result.profile = core.cache.profileCache.getSync(result.character.name);
|
result.profile = core.cache.profileCache.getSync(result.character.name);
|
||||||
|
}
|
||||||
|
|
||||||
return !!result.profile ? accum : accum + 1;
|
return !!result.profile ? accum : accum + 1;
|
||||||
},
|
},
|
||||||
0
|
0
|
||||||
|
|
Loading…
Reference in New Issue