mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
chore(ui): clean up systemSlice
This commit is contained in:
parent
d68c14516c
commit
9a3727d3ad
@ -143,73 +143,15 @@ export const systemSlice = createSlice({
|
|||||||
setCurrentStatus: (state, action: PayloadAction<TFuncKey>) => {
|
setCurrentStatus: (state, action: PayloadAction<TFuncKey>) => {
|
||||||
state.statusTranslationKey = action.payload;
|
state.statusTranslationKey = action.payload;
|
||||||
},
|
},
|
||||||
errorOccurred: (state) => {
|
|
||||||
state.isProcessing = false;
|
|
||||||
state.isCancelable = true;
|
|
||||||
state.currentStep = 0;
|
|
||||||
state.totalSteps = 0;
|
|
||||||
state.currentIteration = 0;
|
|
||||||
state.totalIterations = 0;
|
|
||||||
state.currentStatusHasSteps = false;
|
|
||||||
state.statusTranslationKey = 'common.statusError';
|
|
||||||
},
|
|
||||||
setIsConnected: (state, action: PayloadAction<boolean>) => {
|
|
||||||
state.isConnected = action.payload;
|
|
||||||
state.isProcessing = false;
|
|
||||||
state.isCancelable = true;
|
|
||||||
state.currentStep = 0;
|
|
||||||
state.totalSteps = 0;
|
|
||||||
state.currentIteration = 0;
|
|
||||||
state.totalIterations = 0;
|
|
||||||
state.currentStatusHasSteps = false;
|
|
||||||
},
|
|
||||||
setShouldConfirmOnDelete: (state, action: PayloadAction<boolean>) => {
|
setShouldConfirmOnDelete: (state, action: PayloadAction<boolean>) => {
|
||||||
state.shouldConfirmOnDelete = action.payload;
|
state.shouldConfirmOnDelete = action.payload;
|
||||||
},
|
},
|
||||||
setShouldDisplayGuides: (state, action: PayloadAction<boolean>) => {
|
setShouldDisplayGuides: (state, action: PayloadAction<boolean>) => {
|
||||||
state.shouldDisplayGuides = action.payload;
|
state.shouldDisplayGuides = action.payload;
|
||||||
},
|
},
|
||||||
processingCanceled: (state) => {
|
|
||||||
state.isProcessing = false;
|
|
||||||
state.isCancelable = true;
|
|
||||||
state.currentStep = 0;
|
|
||||||
state.totalSteps = 0;
|
|
||||||
state.currentIteration = 0;
|
|
||||||
state.totalIterations = 0;
|
|
||||||
state.currentStatusHasSteps = false;
|
|
||||||
state.statusTranslationKey = 'common.statusProcessingCanceled';
|
|
||||||
},
|
|
||||||
generationRequested: (state) => {
|
|
||||||
state.isProcessing = true;
|
|
||||||
state.isCancelable = true;
|
|
||||||
state.currentStep = 0;
|
|
||||||
state.totalSteps = 0;
|
|
||||||
state.currentIteration = 0;
|
|
||||||
state.totalIterations = 0;
|
|
||||||
state.currentStatusHasSteps = false;
|
|
||||||
state.statusTranslationKey = 'common.statusPreparing';
|
|
||||||
},
|
|
||||||
setIsCancelable: (state, action: PayloadAction<boolean>) => {
|
setIsCancelable: (state, action: PayloadAction<boolean>) => {
|
||||||
state.isCancelable = action.payload;
|
state.isCancelable = action.payload;
|
||||||
},
|
},
|
||||||
modelChangeRequested: (state) => {
|
|
||||||
state.statusTranslationKey = 'common.statusLoadingModel';
|
|
||||||
state.isCancelable = false;
|
|
||||||
state.isProcessing = true;
|
|
||||||
state.currentStatusHasSteps = false;
|
|
||||||
},
|
|
||||||
modelConvertRequested: (state) => {
|
|
||||||
state.statusTranslationKey = 'common.statusConvertingModel';
|
|
||||||
state.isCancelable = false;
|
|
||||||
state.isProcessing = true;
|
|
||||||
state.currentStatusHasSteps = false;
|
|
||||||
},
|
|
||||||
modelMergingRequested: (state) => {
|
|
||||||
state.statusTranslationKey = 'common.statusMergingModels';
|
|
||||||
state.isCancelable = false;
|
|
||||||
state.isProcessing = true;
|
|
||||||
state.currentStatusHasSteps = false;
|
|
||||||
},
|
|
||||||
setEnableImageDebugging: (state, action: PayloadAction<boolean>) => {
|
setEnableImageDebugging: (state, action: PayloadAction<boolean>) => {
|
||||||
state.enableImageDebugging = action.payload;
|
state.enableImageDebugging = action.payload;
|
||||||
},
|
},
|
||||||
@ -219,14 +161,6 @@ export const systemSlice = createSlice({
|
|||||||
clearToastQueue: (state) => {
|
clearToastQueue: (state) => {
|
||||||
state.toastQueue = [];
|
state.toastQueue = [];
|
||||||
},
|
},
|
||||||
setProcessingIndeterminateTask: (
|
|
||||||
state,
|
|
||||||
action: PayloadAction<TFuncKey>
|
|
||||||
) => {
|
|
||||||
state.isProcessing = true;
|
|
||||||
state.statusTranslationKey = action.payload;
|
|
||||||
state.currentStatusHasSteps = false;
|
|
||||||
},
|
|
||||||
setSearchFolder: (state, action: PayloadAction<string | null>) => {
|
setSearchFolder: (state, action: PayloadAction<string | null>) => {
|
||||||
state.searchFolder = action.payload;
|
state.searchFolder = action.payload;
|
||||||
},
|
},
|
||||||
@ -485,21 +419,13 @@ export const systemSlice = createSlice({
|
|||||||
|
|
||||||
export const {
|
export const {
|
||||||
setIsProcessing,
|
setIsProcessing,
|
||||||
setIsConnected,
|
|
||||||
setShouldConfirmOnDelete,
|
setShouldConfirmOnDelete,
|
||||||
setCurrentStatus,
|
setCurrentStatus,
|
||||||
setShouldDisplayGuides,
|
setShouldDisplayGuides,
|
||||||
processingCanceled,
|
|
||||||
errorOccurred,
|
|
||||||
setIsCancelable,
|
setIsCancelable,
|
||||||
modelChangeRequested,
|
|
||||||
modelConvertRequested,
|
|
||||||
modelMergingRequested,
|
|
||||||
setEnableImageDebugging,
|
setEnableImageDebugging,
|
||||||
generationRequested,
|
|
||||||
addToast,
|
addToast,
|
||||||
clearToastQueue,
|
clearToastQueue,
|
||||||
setProcessingIndeterminateTask,
|
|
||||||
setSearchFolder,
|
setSearchFolder,
|
||||||
setFoundModels,
|
setFoundModels,
|
||||||
setOpenModel,
|
setOpenModel,
|
||||||
|
Loading…
Reference in New Issue
Block a user