36 lines
1.1 KiB
TypeScript
36 lines
1.1 KiB
TypeScript
import { server } from "../const/config";
|
|
import { Texts, TrTr } from "../const/texts";
|
|
import { RTMT, RTMTWS, ThemeManager } from "@mancala/core";
|
|
import { HttpServiceImpl } from "../service/HttpService";
|
|
import { GameStore, GameStoreImpl } from "../store/GameStore";
|
|
import { UserKeyStore, UserKeyStoreImpl } from "../store/KeyStore";
|
|
import { LocalStorage } from "../storage";
|
|
import { Storage } from '@mancala/core'
|
|
|
|
export type Context = {
|
|
rtmt: RTMT;
|
|
userKeyStore: UserKeyStore;
|
|
texts: Texts;
|
|
themeManager: ThemeManager;
|
|
gameStore: GameStore;
|
|
storage: Storage;
|
|
};
|
|
|
|
export const initContext = (): Context => {
|
|
const rtmt = new RTMTWS();
|
|
const httpService = new HttpServiceImpl(server.serverAdress);
|
|
const userKeyStore = new UserKeyStoreImpl({ httpService });
|
|
const gameStore = new GameStoreImpl({ httpService });
|
|
const texts = TrTr;
|
|
const storage = new LocalStorage();
|
|
const themeManager = new ThemeManager(storage);
|
|
return {
|
|
rtmt: rtmt,
|
|
userKeyStore: userKeyStore,
|
|
texts: texts,
|
|
themeManager,
|
|
gameStore,
|
|
storage
|
|
};
|
|
};
|