import { Ref, ref } from 'vue' import { callApi, QueryParams } from '@/composables/engine/callApi' import { start, stop } from '@/composables/engine/startStop' import { fetchUpdate } from '@/composables/engine/fetchUpdate' import { loadQuotes, getQuotesRef, deleteQuote, saveQuote } from '@/composables/engine/quotes' import { fetchGameInfo, fetchGameInfos, setGameLang, setGameName, savePlayer, deletePlayer, createGame, cameo, logoutCameo } from '@/composables/engine/gameManagement' import { collectQuotes, startGame, continueGame, resetGame, finishGame, disableGame, removeGame } from '@/composables/engine/gameState' import { saveSelection } from '@/composables/engine/play' import type { Quotes, GameInfo, GameInfos, PlayerEdit, Lang, CreateGameStatus } from '@/composables/engine.d' export interface EngineContext { isActive: boolean shouldStop: boolean version: number lastFetched: Array isConnected: Ref retry: Ref callApi: (path: string, queryParams?: QueryParams) => Promise fetchUpdate: () => Promise loadQuotes: () => Promise } export interface useEngine { isConnected: Ref retry: Ref start(): void stop(): void fetchUpdate(): void loadQuotes(): Promise getQuotesRef(): Ref createQuote(quote: string): Promise saveQuote(id: string, quote: string): Promise deleteQuote(id: string): Promise collectQuotes: () => Promise startGame: () => Promise continueGame: () => Promise resetGame: () => Promise finishGame: () => Promise disableGame: () => Promise removeGame: () => Promise saveSelection: (selection: string) => Promise fetchGameInfo: () => Promise fetchGameInfos: () => Promise setGameLang: (lang: string) => Promise setGameName: (name: string) => Promise savePlayer: (player: PlayerEdit) => Promise deletePlayer: (id: string) => Promise createGame: (name: string, teamname: string, lang: Lang) => Promise cameo: (authcode: string) => Promise logoutCameo: () => Promise } export default (): useEngine => { const now = new Date(0) const context: EngineContext = { lastFetched: [now, now, now, now, now], isActive: false, shouldStop: false, version: -1, isConnected: ref(false), retry: ref(0), callApi, fetchUpdate, loadQuotes, } return { isConnected: context.isConnected, retry: context.retry, start: () => start.apply(context), stop: () => stop.apply(context), fetchUpdate: () => fetchUpdate.apply(context), loadQuotes: () => loadQuotes.apply(context), getQuotesRef: () => getQuotesRef.apply(context), createQuote: (quote: string) => saveQuote.apply(context, [':new:', quote]), saveQuote: (id: string, quote: string) => saveQuote.apply(context, [id, quote]), deleteQuote: (id) => deleteQuote.apply(context, [id]), collectQuotes: () => collectQuotes.apply(context), startGame: () => startGame.apply(context), continueGame: () => continueGame.apply(context), resetGame: () => resetGame.apply(context), finishGame: () => finishGame.apply(context), disableGame: () => disableGame.apply(context), removeGame: () => removeGame.apply(context), saveSelection: (selection: string) => saveSelection.apply(context, [selection]), fetchGameInfo: () => fetchGameInfo.apply(context), fetchGameInfos: () => fetchGameInfos.apply(context), setGameLang: (lang: string) => setGameLang.apply(context, [lang]), setGameName: (name: string) => setGameName.apply(context, [name]), savePlayer: (player: PlayerEdit) => savePlayer.apply(context, [player]), deletePlayer: (id: string) => deletePlayer.apply(context, [id]), createGame: (name: string, teamname: string, lang: Lang) => createGame.apply(context, [name, teamname, lang]), cameo: (authcode: string) => cameo.apply(context,[authcode]), logoutCameo: () => logoutCameo.apply(context), } }