[dep] update to eslint 9
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { tauriStore } from '@/utils/persist'
|
||||
import { create } from 'zustand'
|
||||
import { createJSONStorage, persist } from 'zustand/middleware'
|
||||
import { tauriStore } from "@/utils/persist"
|
||||
import { create } from "zustand"
|
||||
import { createJSONStorage, persist } from "zustand/middleware"
|
||||
|
||||
interface ToolState {
|
||||
launchOptions: string[]
|
||||
@@ -20,20 +20,32 @@ const { /* store, */ storage } = tauriStore(STORE_NAME)
|
||||
|
||||
const useToolStore = create<ToolState & ToolAction>()(
|
||||
persist(
|
||||
(set/* , get */) => ({
|
||||
launchOptions: ["-high -refresh 120 -novid -nojoy -tickrate 128 +cl_cmdrate 128 +cl_updaterate 128 +exec auto.cfg +test", "", ""],
|
||||
(set /* , get */) => ({
|
||||
launchOptions: [
|
||||
"-high -refresh 120 -novid -nojoy -tickrate 128 +cl_cmdrate 128 +cl_updaterate 128 +exec auto.cfg +test",
|
||||
"",
|
||||
"",
|
||||
],
|
||||
launchIndex: 0,
|
||||
powerPlan: 0,
|
||||
setLaunchOption: (option: string, index: number) => set((state) => ({ launchOptions: [...state.launchOptions.slice(0, index), option, ...state.launchOptions.slice(index + 1)] })),
|
||||
setLaunchOptions: (options: string[]) => set(() => ({ launchOptions: options })),
|
||||
setLaunchOption: (option: string, index: number) =>
|
||||
set((state) => ({
|
||||
launchOptions: [
|
||||
...state.launchOptions.slice(0, index),
|
||||
option,
|
||||
...state.launchOptions.slice(index + 1),
|
||||
],
|
||||
})),
|
||||
setLaunchOptions: (options: string[]) =>
|
||||
set(() => ({ launchOptions: options })),
|
||||
setLaunchIndex: (index: number) => set(() => ({ launchIndex: index })),
|
||||
setPowerPlan: (index: number) => set(() => ({ powerPlan: index }))
|
||||
setPowerPlan: (index: number) => set(() => ({ powerPlan: index })),
|
||||
}),
|
||||
{
|
||||
name: STORE_NAME, // name of item in the storage (must be unique)
|
||||
storage: createJSONStorage(() => storage), // (optional) by default the 'localStorage' is used
|
||||
}
|
||||
)
|
||||
},
|
||||
),
|
||||
)
|
||||
|
||||
export default useToolStore
|
||||
export default useToolStore
|
||||
|
||||
Reference in New Issue
Block a user