mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
73 lines
2.3 KiB
TypeScript
73 lines
2.3 KiB
TypeScript
import { createSelector } from '@reduxjs/toolkit';
|
|
import { stateSelector } from 'app/store/store';
|
|
import { useAppSelector } from 'app/store/storeHooks';
|
|
import { defaultSelectorOptions } from 'app/store/util/defaultMemoizeOptions';
|
|
// import { validateSeedWeights } from 'common/util/seedWeightPairs';
|
|
import { activeTabNameSelector } from 'features/ui/store/uiSelectors';
|
|
import { forEach } from 'lodash-es';
|
|
import { modelsApi } from '../../services/api/endpoints/models';
|
|
import { ALL_BASE_MODELS } from 'services/api/constants';
|
|
|
|
const readinessSelector = createSelector(
|
|
[stateSelector, activeTabNameSelector],
|
|
(state, activeTabName) => {
|
|
const { generation, system } = state;
|
|
const { initialImage } = generation;
|
|
|
|
const { isProcessing, isConnected } = system;
|
|
|
|
let isReady = true;
|
|
const reasonsWhyNotReady: string[] = [];
|
|
|
|
if (activeTabName === 'img2img' && !initialImage) {
|
|
isReady = false;
|
|
reasonsWhyNotReady.push('No initial image selected');
|
|
}
|
|
|
|
const { isSuccess: mainModelsSuccessfullyLoaded } =
|
|
modelsApi.endpoints.getMainModels.select(ALL_BASE_MODELS)(state);
|
|
if (!mainModelsSuccessfullyLoaded) {
|
|
isReady = false;
|
|
reasonsWhyNotReady.push('Models are not loaded');
|
|
}
|
|
|
|
// TODO: job queue
|
|
// Cannot generate if already processing an image
|
|
if (isProcessing) {
|
|
isReady = false;
|
|
reasonsWhyNotReady.push('System Busy');
|
|
}
|
|
|
|
// Cannot generate if not connected
|
|
if (!isConnected) {
|
|
isReady = false;
|
|
reasonsWhyNotReady.push('System Disconnected');
|
|
}
|
|
|
|
// // Cannot generate variations without valid seed weights
|
|
// if (
|
|
// shouldGenerateVariations &&
|
|
// (!(validateSeedWeights(seedWeights) || seedWeights === '') || seed === -1)
|
|
// ) {
|
|
// isReady = false;
|
|
// reasonsWhyNotReady.push('Seed-Weights badly formatted.');
|
|
// }
|
|
|
|
forEach(state.controlNet.controlNets, (controlNet, id) => {
|
|
if (!controlNet.model) {
|
|
isReady = false;
|
|
reasonsWhyNotReady.push(`ControlNet ${id} has no model selected.`);
|
|
}
|
|
});
|
|
|
|
// All good
|
|
return { isReady, reasonsWhyNotReady };
|
|
},
|
|
defaultSelectorOptions
|
|
);
|
|
|
|
export const useIsReadyToInvoke = () => {
|
|
const { isReady } = useAppSelector(readinessSelector);
|
|
return isReady;
|
|
};
|