mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
33 lines
740 B
TypeScript
33 lines
740 B
TypeScript
import { gameRepository } from "@main/repository";
|
|
import { GameStatus } from "@main/constants";
|
|
|
|
import { searchRepacks } from "../helpers/search-games";
|
|
import { registerEvent } from "../register-event";
|
|
import { sortBy } from "lodash-es";
|
|
|
|
const getLibrary = async () =>
|
|
gameRepository
|
|
.find({
|
|
where: {
|
|
isDeleted: false,
|
|
},
|
|
order: {
|
|
createdAt: "desc",
|
|
},
|
|
relations: {
|
|
repack: true,
|
|
},
|
|
})
|
|
.then((games) =>
|
|
sortBy(
|
|
games.map((game) => ({
|
|
...game,
|
|
repacks: searchRepacks(game.title),
|
|
})),
|
|
(game) => (game.status !== GameStatus.Cancelled ? 0 : 1)
|
|
)
|
|
);
|
|
|
|
registerEvent(getLibrary, {
|
|
name: "getLibrary",
|
|
});
|