File size: 786 Bytes
4450790
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { app } from '../../scripts/app.js'
// import { api } from '../../scripts/api.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',
    // this is run everytime the tab's diplay is toggled on.
    render: (el) => {
      const outliner = createOutliner(el)
      const inputs = shared.getAPIInputs()
      console.log('INPUTS', inputs)
      outliner.$$set({ inputs })
    },
  })
}