chore: fix linter warnings
This commit is contained in:
parent
113a5fb16e
commit
6f69ca91af
@ -3,9 +3,9 @@ import { useUserinfoStore } from "@/stores/UserinfoStore"
|
|||||||
import { useGameinfoStore } from "@/stores/GameinfoStore"
|
import { useGameinfoStore } from "@/stores/GameinfoStore"
|
||||||
import { useRoundStore } from "@/stores/RoundStore"
|
import { useRoundStore } from "@/stores/RoundStore"
|
||||||
import { usePlayersStore } from "@/stores/PlayersStore"
|
import { usePlayersStore } from "@/stores/PlayersStore"
|
||||||
import { EngineContext } from '@/composables/useEngine'
|
|
||||||
import useAlert from '@/composables/useAlert'
|
import useAlert from '@/composables/useAlert'
|
||||||
import useI18n from '@/composables/useI18n'
|
import useI18n from '@/composables/useI18n'
|
||||||
|
import type { EngineContext } from '@/composables/useEngine'
|
||||||
|
|
||||||
type EngineResponse = {
|
type EngineResponse = {
|
||||||
version: string,
|
version: string,
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { EngineContext } from '@/composables/useEngine'
|
|
||||||
import { useUserinfoStore } from "@/stores/UserinfoStore"
|
import { useUserinfoStore } from "@/stores/UserinfoStore"
|
||||||
|
import type { EngineContext } from '@/composables/useEngine'
|
||||||
import type { GameInfo, GameInfos, PlayerEdit, Lang, CreateGameStatus } from '@/composables/engine.d'
|
import type { GameInfo, GameInfos, PlayerEdit, Lang, CreateGameStatus } from '@/composables/engine.d'
|
||||||
|
|
||||||
export async function fetchGameInfo(this: EngineContext): Promise<GameInfo> {
|
export async function fetchGameInfo(this: EngineContext): Promise<GameInfo> {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { EngineContext } from '@/composables/useEngine'
|
|
||||||
import { useUserinfoStore } from "@/stores/UserinfoStore"
|
import { useUserinfoStore } from "@/stores/UserinfoStore"
|
||||||
|
import type { EngineContext } from '@/composables/useEngine'
|
||||||
|
|
||||||
export async function collectQuotes(this: EngineContext): Promise<void> {
|
export async function collectQuotes(this: EngineContext): Promise<void> {
|
||||||
const userInfoStore = useUserinfoStore()
|
const userInfoStore = useUserinfoStore()
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { useUserinfoStore } from "@/stores/UserinfoStore"
|
import { useUserinfoStore } from "@/stores/UserinfoStore"
|
||||||
import { EngineContext } from '@/composables/useEngine'
|
import type { EngineContext } from '@/composables/useEngine'
|
||||||
|
|
||||||
export async function saveSelection(this: EngineContext, selection: string): Promise<void> {
|
export async function saveSelection(this: EngineContext, selection: string): Promise<void> {
|
||||||
const userInfoStore = useUserinfoStore()
|
const userInfoStore = useUserinfoStore()
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
import { Ref, ref } from 'vue'
|
import { ref } from 'vue'
|
||||||
import type { Quotes } from '@/composables/engine.d'
|
import type { Quotes } from '@/composables/engine.d'
|
||||||
import { useUserinfoStore } from "@/stores/UserinfoStore"
|
import { useUserinfoStore } from "@/stores/UserinfoStore"
|
||||||
import { EngineContext } from '@/composables/useEngine'
|
import type { Ref } from 'vue'
|
||||||
|
import type { EngineContext } from '@/composables/useEngine'
|
||||||
|
|
||||||
type QuotesResponse = {
|
type QuotesResponse = {
|
||||||
quotes: Quotes
|
quotes: Quotes
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
import { useUserinfoStore } from "@/stores/UserinfoStore"
|
import type { EngineContext } from '@/composables/useEngine'
|
||||||
import { EngineContext } from '@/composables/useEngine'
|
|
||||||
|
|
||||||
export async function setupApp(this: EngineContext, authcode: string): Promise<void> {
|
export async function setupApp(this: EngineContext, authcode: string): Promise<void> {
|
||||||
await this.callApi('/api/setupApp', {
|
await this.callApi('/api/setupApp', {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
import { useUserinfoStore } from "@/stores/UserinfoStore"
|
import { useUserinfoStore } from "@/stores/UserinfoStore"
|
||||||
import { EngineContext } from '@/composables/useEngine'
|
|
||||||
import useAlert from '@/composables/useAlert'
|
import useAlert from '@/composables/useAlert'
|
||||||
|
import type { EngineContext } from '@/composables/useEngine'
|
||||||
|
|
||||||
export function start(this: EngineContext): void {
|
export function start(this: EngineContext): void {
|
||||||
if (this.isActive && !this.shouldStop) {
|
if (this.isActive && !this.shouldStop) {
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import { Ref, ref } from 'vue'
|
import { ref } from 'vue'
|
||||||
|
import type { Ref } from 'vue'
|
||||||
|
|
||||||
export type AlertMessages = Array<string>
|
export type AlertMessages = Array<string>
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { Ref, ref } from 'vue'
|
import { ref } from 'vue'
|
||||||
import { callApi, QueryParams } from '@/composables/engine/callApi'
|
import { callApi } from '@/composables/engine/callApi'
|
||||||
import { start, stop } from '@/composables/engine/startStop'
|
import { start, stop } from '@/composables/engine/startStop'
|
||||||
import { setupApp } from '@/composables/engine/setupApp'
|
import { setupApp } from '@/composables/engine/setupApp'
|
||||||
import { fetchUpdate } from '@/composables/engine/fetchUpdate'
|
import { fetchUpdate } from '@/composables/engine/fetchUpdate'
|
||||||
@ -7,6 +7,8 @@ import { loadQuotes, getQuotesRef, deleteQuote, saveQuote } from '@/composables/
|
|||||||
import { fetchGameInfo, fetchGameInfos, setGameLang, setGameName, savePlayer, removePlayer, createGame, cameo, logoutCameo } from '@/composables/engine/gameManagement'
|
import { fetchGameInfo, fetchGameInfos, setGameLang, setGameName, savePlayer, removePlayer, createGame, cameo, logoutCameo } from '@/composables/engine/gameManagement'
|
||||||
import { collectQuotes, startGame, continueGame, resetGame, finishGame, disableGame, removeGame } from '@/composables/engine/gameState'
|
import { collectQuotes, startGame, continueGame, resetGame, finishGame, disableGame, removeGame } from '@/composables/engine/gameState'
|
||||||
import { saveSelection } from '@/composables/engine/play'
|
import { saveSelection } from '@/composables/engine/play'
|
||||||
|
import type { Ref } from 'vue'
|
||||||
|
import type { QueryParams } from '@/composables/engine/callApi'
|
||||||
import type { Quotes, GameInfo, GameInfos, PlayerEdit, Lang, CreateGameStatus } from '@/composables/engine.d'
|
import type { Quotes, GameInfo, GameInfos, PlayerEdit, Lang, CreateGameStatus } from '@/composables/engine.d'
|
||||||
|
|
||||||
export interface EngineContext {
|
export interface EngineContext {
|
||||||
|
Loading…
Reference in New Issue
Block a user