Shuffle instance recommendations into random order (#101)

This commit is contained in:
Nutomic 2022-04-19 19:11:32 +00:00 committed by GitHub
parent 7c69d90981
commit db0eabda95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 4 deletions

View File

@ -12,6 +12,13 @@ export class Instances extends Component<any, any> {
}
render() {
// shuffle recommended instances list into random order
// https://stackoverflow.com/a/46545530
let recommended = instance_stats.recommended
.map(value => ({ value, sort: Math.random() }))
.sort((a, b) => a.sort - b.sort)
.map(({ value }) => value);
return (
<div class="container">
<Helmet title={title}>
@ -21,10 +28,7 @@ export class Instances extends Component<any, any> {
{this.header()}
<br />
<br />
{this.renderList(
i18n.t("recommended_instances"),
instance_stats.recommended
)}
{this.renderList(i18n.t("recommended_instances"), recommended)}
{this.renderList(i18n.t("popular_instances"), instance_stats.remaining)}
</div>
);