|
import { app } from '../../scripts/app.js' |
|
|
|
|
|
import * as shared from './comfy_shared.js' |
|
import { createOutliner } from './dist/mtb_inspector.js' |
|
|
|
if (window?.__COMFYUI_FRONTEND_VERSION__) { |
|
const version = window?.__COMFYUI_FRONTEND_VERSION__ |
|
console.log(`%c ${version}`, 'background: orange; color: white;') |
|
|
|
const panel = app.extensionManager.registerSidebarTab({ |
|
id: 'mtb-nodes', |
|
icon: 'pi pi-bolt', |
|
title: 'MTB', |
|
tooltip: 'MTB: API outliner', |
|
type: 'custom', |
|
|
|
render: (el) => { |
|
const outliner = createOutliner(el) |
|
const inputs = shared.getAPIInputs() |
|
console.log('INPUTS', inputs) |
|
outliner.$$set({ inputs }) |
|
}, |
|
}) |
|
} |
|
|