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 { getQuotes, deleteQuote, createQuote, saveQuote } from '@/composables/engine/quotes' import type { Quotes } from '@/composables/engine.d' interface EngineContext { isActive: boolean shouldStop: boolean version: number lastFetched: Array isConnected: Ref retry: Ref fetchUpdate: () => void callApi: (url: string, queryParams?: QueryParams) => Promise } export interface useEngine { isConnected: Ref retry: Ref start(): void stop(): void fetchUpdate(): void getQuotes(): Promise createQuote(quote: string): Promise saveQuote(id: string, quote: string): Promise deleteQuote(id: string): 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, } return { isConnected: context.isConnected, retry: context.retry, start: () => start.apply(context), stop: () => stop.apply(context), fetchUpdate: () => fetchUpdate.apply(context), getQuotes: () => getQuotes.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]), } }