All files / games/mc/src/services load.ts

85.71% Statements 18/21
100% Branches 0/0
50% Functions 1/2
85.71% Lines 18/21

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31  12x 12x 12x 12x   1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x   12x 12x         12x            
import { Deck, Encounter, Hero, ModularSet, Pack, Scenario } from "../@models";
 
import { DecksService, EncountersService, HeroesService, ModularSetsService, PacksService, ScenariosService } from ".";
 
export const load = async (): Promise<[Encounter[], Hero[], ModularSet[], Scenario[], Deck[]]> => {
    // load json data
    const encountersService = new EncountersService();
    const encounters = await encountersService.load();
 
    const heroesService = new HeroesService();
    const heroes = await heroesService.load();
 
    const modulesService = new ModularSetsService();
    const modules = await modulesService.load();
 
    const scenariosService = new ScenariosService();
    const scenarios = await scenariosService.load();
 
    const decksService = new DecksService();
    const decks = await decksService.load();

    return [encounters, heroes, modules, scenarios, decks];
};
 
export const loadUpcoming = async (): Promise<[Pack[]]> => {
    const packsService = new PacksService();
    const packs = await packsService.load(true);
 
    return [packs];
};