Server/project/src/helpers/RagfairSortHelper.ts
Refringe 4ac12ef70a Formatting/Linting Changes (!168)
These are the formatting & linting configuration changes from the `3.8.0` branch and the changes that they make to the overall project.

The majority of these changes are from running two commands:

`npm run lint:fix`
`npm run style:fix`

This has already been run on the `3.8.0` branch and this PR should make `master` play nicer when it comes to merges going forward.

There are now four VSCode plugins recommended for server development. They've been added to the workspace file and a user should get a UI notification when the workspace is opened if they're not installed.

The four plugins are:
https://marketplace.visualstudio.com/items?itemName=EditorConfig.EditorConfig
https://marketplace.visualstudio.com/items?itemName=dprint.dprint
https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint
https://marketplace.visualstudio.com/items?itemName=biomejs.biome

Once installed they should just work within the workspace.

Also, be sure to `npm i` to get the new dprint application.

Co-authored-by: Refringe <brownelltyler@gmail.com>
Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/168
2023-11-16 21:42:06 +00:00

97 lines
2.7 KiB
TypeScript

import { inject, injectable } from "tsyringe";
import { IRagfairOffer } from "@spt-aki/models/eft/ragfair/IRagfairOffer";
import { RagfairSort } from "@spt-aki/models/enums/RagfairSort";
import { DatabaseServer } from "@spt-aki/servers/DatabaseServer";
import { LocaleService } from "@spt-aki/services/LocaleService";
@injectable()
export class RagfairSortHelper
{
constructor(
@inject("DatabaseServer") protected databaseServer: DatabaseServer,
@inject("LocaleService") protected localeService: LocaleService,
)
{}
/**
* Sort a list of ragfair offers by something (id/rating/offer name/price/expiry time)
* @param offers Offers to sort
* @param type How to sort it
* @param direction Ascending/descending
* @returns Sorted offers
*/
public sortOffers(offers: IRagfairOffer[], type: RagfairSort, direction = 0): IRagfairOffer[]
{
// Sort results
switch (type)
{
case RagfairSort.ID:
offers.sort(this.sortOffersByID);
break;
case RagfairSort.RATING:
offers.sort(this.sortOffersByRating);
break;
case RagfairSort.OFFER_TITLE:
offers.sort((a, b) => this.sortOffersByName(a, b));
break;
case RagfairSort.PRICE:
offers.sort(this.sortOffersByPrice);
break;
case RagfairSort.EXPIRY:
offers.sort(this.sortOffersByExpiry);
break;
}
// 0=ASC 1=DESC
if (direction === 1)
{
offers.reverse();
}
return offers;
}
protected sortOffersByID(a: IRagfairOffer, b: IRagfairOffer): number
{
return a.intId - b.intId;
}
protected sortOffersByRating(a: IRagfairOffer, b: IRagfairOffer): number
{
return a.user.rating - b.user.rating;
}
protected sortOffersByName(a: IRagfairOffer, b: IRagfairOffer): number
{
const locale = this.localeService.getLocaleDb();
const tplA = a.items[0]._tpl;
const tplB = b.items[0]._tpl;
const nameA = locale[`${tplA} Name`] || tplA;
const nameB = locale[`${tplB} Name`] || tplB;
return (nameA < nameB) ? -1 : (nameA > nameB) ? 1 : 0;
}
/**
* Order two offers by rouble price value
* @param a Offer a
* @param b Offer b
* @returns
*/
protected sortOffersByPrice(a: IRagfairOffer, b: IRagfairOffer): number
{
return a.requirementsCost - b.requirementsCost;
}
protected sortOffersByExpiry(a: IRagfairOffer, b: IRagfairOffer): number
{
return a.endTime - b.endTime;
}
}