mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-31 05:19:53 +00:00
* knip: Don't ignore exports that are only used within a given file * knip: More pruning after rebase * knip: Vite plugin config fix * knip: vitest plugin config * knip: Playwright config, remove unnecessary ignores. * knip: Simplify project file enumeration. * knip: simplify the config file patterns ?(.optional_segment) * knip: tailwind v4 fix * knip: A little more, explain some of the deps. Should be good for this PR. * knip: remove unused disabling of classMembers. It's opt-in, which we should probably do. * knip: floating comments We should probably delete _one_ of these parallell trees, right? * knip: Add additional entrypoints * knip: Restore UserData that's exposed via the types for now. * knip: Add as an entry file even though knip says it's not necessary. * knip: re-export functions used by nodes (h/t @christian-byrne)
99 lines
2.4 KiB
TypeScript
99 lines
2.4 KiB
TypeScript
import type { ISerialisedGraph } from '@/lib/litegraph/src/types/serialisation'
|
|
import type { ComfyWorkflowJSON } from '@/schemas/comfyWorkflowSchema'
|
|
import { validateComfyWorkflow } from '@/schemas/comfyWorkflowSchema'
|
|
import { useToastStore } from '@/stores/toastStore'
|
|
import { fixBadLinks } from '@/utils/linkFixer'
|
|
|
|
interface ValidationResult {
|
|
graphData: ComfyWorkflowJSON | null
|
|
}
|
|
|
|
export function useWorkflowValidation() {
|
|
const toastStore = useToastStore()
|
|
|
|
function tryFixLinks(
|
|
graphData: ComfyWorkflowJSON,
|
|
options: { silent?: boolean } = {}
|
|
) {
|
|
const { silent = false } = options
|
|
|
|
// Collect all logs in an array
|
|
const logs: string[] = []
|
|
// Then validate and fix links if schema validation passed
|
|
const linkValidation = fixBadLinks(
|
|
graphData as unknown as ISerialisedGraph,
|
|
{
|
|
fix: true,
|
|
silent,
|
|
logger: {
|
|
log: (message: string) => {
|
|
logs.push(message)
|
|
}
|
|
}
|
|
}
|
|
)
|
|
|
|
if (!silent && logs.length > 0) {
|
|
toastStore.add({
|
|
severity: 'warn',
|
|
summary: 'Workflow Validation',
|
|
detail: logs.join('\n')
|
|
})
|
|
}
|
|
|
|
// If links were fixed, notify the user
|
|
if (linkValidation.fixed) {
|
|
if (!silent) {
|
|
toastStore.add({
|
|
severity: 'success',
|
|
summary: 'Workflow Links Fixed',
|
|
detail: `Fixed ${linkValidation.patched} node connections and removed ${linkValidation.deleted} invalid links.`
|
|
})
|
|
}
|
|
}
|
|
|
|
return linkValidation.graph as unknown as ComfyWorkflowJSON
|
|
}
|
|
|
|
/**
|
|
* Validates a workflow, including link validation and schema validation
|
|
*/
|
|
async function validateWorkflow(
|
|
graphData: ComfyWorkflowJSON,
|
|
options: {
|
|
silent?: boolean
|
|
} = {}
|
|
): Promise<ValidationResult> {
|
|
const { silent = false } = options
|
|
|
|
let validatedData: ComfyWorkflowJSON | null = null
|
|
|
|
// First do schema validation
|
|
const validatedGraphData = await validateComfyWorkflow(
|
|
graphData,
|
|
/* onError=*/ (err) => {
|
|
if (!silent) {
|
|
toastStore.addAlert(err)
|
|
}
|
|
}
|
|
)
|
|
|
|
if (validatedGraphData) {
|
|
try {
|
|
validatedData = tryFixLinks(validatedGraphData, { silent })
|
|
} catch (err) {
|
|
// Link fixer itself is throwing an error
|
|
console.error(err)
|
|
}
|
|
}
|
|
|
|
return {
|
|
graphData: validatedData
|
|
}
|
|
}
|
|
|
|
return {
|
|
validateWorkflow
|
|
}
|
|
}
|