knowyt/client/src/composables/useEngine.ts
2022-08-09 22:36:39 +02:00

55 lines
1.8 KiB
TypeScript

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<Date>
isConnected: Ref<boolean>
retry: Ref<number>
fetchUpdate: () => void
callApi: (url: string, queryParams?: QueryParams) => Promise<unknown>
}
export interface useEngine {
isConnected: Ref<boolean>
retry: Ref<number>
start(): void
stop(): void
fetchUpdate(): void
getQuotes(): Promise<Quotes>
createQuote(quote: string): Promise<void>
saveQuote(id: string, quote: string): Promise<void>
deleteQuote(id: string): Promise<void>
}
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]),
}
}