Some checks failed
Python Linting / Run Ruff (push) Has been cancelled
Python Linting / Run Pylint (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.10, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.11, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-stable (12.1, , linux, 3.12, [self-hosted Linux], stable) (push) Has been cancelled
Full Comfy CI Workflow Runs / test-unix-nightly (12.1, , linux, 3.11, [self-hosted Linux], nightly) (push) Has been cancelled
Execution Tests / test (macos-latest) (push) Has been cancelled
Execution Tests / test (ubuntu-latest) (push) Has been cancelled
Execution Tests / test (windows-latest) (push) Has been cancelled
Test server launches without errors / test (push) Has been cancelled
Unit Tests / test (macos-latest) (push) Has been cancelled
Unit Tests / test (ubuntu-latest) (push) Has been cancelled
Unit Tests / test (windows-2022) (push) Has been cancelled
Includes 30 custom nodes committed directly, 7 Civitai-exclusive loras stored via Git LFS, and a setup script that installs all dependencies and downloads HuggingFace-hosted models on vast.ai. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
589 lines
18 KiB
TypeScript
589 lines
18 KiB
TypeScript
import { app, api, ComfyButtonGroup } from './comfy/index.js';
|
|
import { commonPrefix } from './common.js';
|
|
import { MonitorUI } from './monitorUI.js';
|
|
import { Colors } from './styles.js';
|
|
import { convertNumberToPascalCase } from './utils.js';
|
|
import { ComfyKeyMenuDisplayOption, MenuDisplayOptions } from './progressBarUIBase.js';
|
|
|
|
// enum MonitorPosition {
|
|
// 'Top' = 'Top',
|
|
// 'Sidebar' = 'Sidebar',
|
|
// 'Floating' = 'Floating',
|
|
// }
|
|
|
|
class CrystoolsMonitor {
|
|
readonly idExtensionName = 'Crystools.monitor';
|
|
private readonly menuPrefix = commonPrefix;
|
|
private menuDisplayOption: MenuDisplayOptions = MenuDisplayOptions.Disabled;
|
|
private crystoolsButtonGroup: ComfyButtonGroup = null;
|
|
|
|
// private settingsMonitorPosition: TMonitorSettings;
|
|
private settingsRate: TMonitorSettings;
|
|
private settingsMonitorHeight: TMonitorSettings;
|
|
private settingsMonitorWidth: TMonitorSettings;
|
|
private monitorCPUElement: TMonitorSettings;
|
|
private monitorRAMElement: TMonitorSettings;
|
|
private monitorHDDElement: TMonitorSettings;
|
|
private settingsHDD: TMonitorSettings;
|
|
private monitorGPUSettings: TMonitorSettings[] = [];
|
|
private monitorVRAMSettings: TMonitorSettings[] = [];
|
|
private monitorTemperatureSettings: TMonitorSettings[] = [];
|
|
|
|
private monitorUI: MonitorUI;
|
|
|
|
// private readonly monitorPositionId = 'Crystools.MonitorPosition';
|
|
private readonly monitorWidthId = 'Crystools.MonitorWidth';
|
|
private readonly monitorWidth = 60;
|
|
private readonly monitorHeightId = 'Crystools.MonitorHeight';
|
|
private readonly monitorHeight = 30;
|
|
|
|
// NO POSIBLE TO IMPLEMENT INSIDE THE PANEL
|
|
// createSettingsMonitorPosition = (): void => {
|
|
// const position = app.extensionManager.setting.get(this.monitorPositionId);
|
|
// console.log('position', position);
|
|
// this.settingsMonitorPosition = {
|
|
// id: this.monitorPositionId,
|
|
// name: 'Position (floating not implemented yet)',
|
|
// category: ['Crystools', this.menuPrefix + ' Configuration', 'position'],
|
|
// tooltip: 'Only for new UI',
|
|
// experimental: true,
|
|
// // data: [],
|
|
// type: 'combo',
|
|
// options: [
|
|
// MonitorPoistion.Top,
|
|
// MonitorPoistion.Sidebar,
|
|
// MonitorPoistion.Floating
|
|
// ],
|
|
//
|
|
// defaultValue: MonitorPoistion.Sidebar,
|
|
// // @ts-ignore
|
|
// onChange: (_value: string): void => {
|
|
// // if (this.monitorUI) {
|
|
// // console.log('onChange', _value);
|
|
// // this.moveMonitor(this.menuDisplayOption);
|
|
// // }
|
|
// },
|
|
// };
|
|
// };
|
|
|
|
createSettingsRate = (): void => {
|
|
this.settingsRate = {
|
|
id: 'Crystools.RefreshRate',
|
|
name: 'Refresh per second',
|
|
category: ['Crystools', this.menuPrefix + ' Configuration', 'refresh'],
|
|
tooltip: 'This is the time (in seconds) between each update of the monitors, 0 means no refresh',
|
|
type: 'slider',
|
|
attrs: {
|
|
min: 0,
|
|
max: 2,
|
|
step: .25,
|
|
},
|
|
defaultValue: .5,
|
|
|
|
// @ts-ignore
|
|
onChange: async(value: string): Promise<void> => {
|
|
let valueNumber: number;
|
|
|
|
try {
|
|
valueNumber = parseFloat(value);
|
|
if (isNaN(valueNumber)) {
|
|
throw new Error('invalid value');
|
|
}
|
|
} catch (error) {
|
|
console.error(error);
|
|
return;
|
|
}
|
|
try {
|
|
await this.updateServer({rate: valueNumber});
|
|
} catch (error) {
|
|
console.error(error);
|
|
return;
|
|
}
|
|
|
|
const data = {
|
|
cpu_utilization: 0,
|
|
device: 'cpu',
|
|
|
|
gpus: [
|
|
{
|
|
gpu_utilization: 0,
|
|
gpu_temperature: 0,
|
|
vram_total: 0,
|
|
vram_used: 0,
|
|
vram_used_percent: 0,
|
|
},
|
|
],
|
|
hdd_total: 0,
|
|
hdd_used: 0,
|
|
hdd_used_percent: 0,
|
|
ram_total: 0,
|
|
ram_used: 0,
|
|
ram_used_percent: 0,
|
|
};
|
|
if (valueNumber === 0) {
|
|
this.monitorUI.updateDisplay(data);
|
|
}
|
|
|
|
this.monitorUI?.updateAllAnimationDuration(valueNumber);
|
|
},
|
|
};
|
|
};
|
|
|
|
createSettingsMonitorWidth = (): void => {
|
|
this.settingsMonitorWidth = {
|
|
id: this.monitorWidthId,
|
|
name: 'Pixel Width',
|
|
category: ['Crystools', this.menuPrefix + ' Configuration', 'width'],
|
|
tooltip: 'The width of the monitor in pixels on the UI (only on top/bottom UI)',
|
|
type: 'slider',
|
|
attrs: {
|
|
min: 60,
|
|
max: 100,
|
|
step: 1,
|
|
},
|
|
defaultValue: this.monitorWidth,
|
|
// @ts-ignore
|
|
onChange: (value: string): void => {
|
|
let valueNumber: number;
|
|
|
|
try {
|
|
valueNumber = parseInt(value);
|
|
if (isNaN(valueNumber)) {
|
|
throw new Error('invalid value');
|
|
}
|
|
} catch (error) {
|
|
console.error(error);
|
|
return;
|
|
}
|
|
|
|
const h = app.extensionManager.setting.get(this.monitorHeightId);
|
|
this.monitorUI?.updateMonitorSize(valueNumber, h);
|
|
},
|
|
};
|
|
};
|
|
|
|
createSettingsMonitorHeight = (): void => {
|
|
this.settingsMonitorHeight = {
|
|
id: this.monitorHeightId,
|
|
name: 'Pixel Height',
|
|
category: ['Crystools', this.menuPrefix + ' Configuration', 'height'],
|
|
tooltip: 'The height of the monitor in pixels on the UI (only on top/bottom UI)',
|
|
type: 'slider',
|
|
attrs: {
|
|
min: 16,
|
|
max: 50,
|
|
step: 1,
|
|
},
|
|
defaultValue: this.monitorHeight,
|
|
// @ts-ignore
|
|
onChange: async(value: string): void => {
|
|
let valueNumber: number;
|
|
|
|
try {
|
|
valueNumber = parseInt(value);
|
|
if (isNaN(valueNumber)) {
|
|
throw new Error('invalid value');
|
|
}
|
|
} catch (error) {
|
|
console.error(error);
|
|
return;
|
|
}
|
|
|
|
const w = await app.extensionManager.setting.get(this.monitorWidthId);
|
|
this.monitorUI?.updateMonitorSize(w, valueNumber);
|
|
},
|
|
};
|
|
};
|
|
|
|
createSettingsCPU = (): void => {
|
|
// CPU Variables
|
|
this.monitorCPUElement = {
|
|
id: 'Crystools.ShowCpu',
|
|
name: 'CPU Usage',
|
|
category: ['Crystools', this.menuPrefix + ' Hardware', 'Cpu'],
|
|
type: 'boolean',
|
|
label: 'CPU',
|
|
symbol: '%',
|
|
defaultValue: true,
|
|
htmlMonitorRef: undefined,
|
|
htmlMonitorSliderRef: undefined,
|
|
htmlMonitorLabelRef: undefined,
|
|
cssColor: Colors.CPU,
|
|
// @ts-ignore
|
|
onChange: async(value: boolean): Promise<void> => {
|
|
await this.updateServer({switchCPU: value});
|
|
this.updateWidget(this.monitorCPUElement);
|
|
},
|
|
};
|
|
};
|
|
|
|
createSettingsRAM = (): void => {
|
|
// RAM Variables
|
|
this.monitorRAMElement = {
|
|
id: 'Crystools.ShowRam',
|
|
name: 'RAM Used',
|
|
category: ['Crystools', this.menuPrefix + ' Hardware', 'Ram'],
|
|
type: 'boolean',
|
|
label: 'RAM',
|
|
symbol: '%',
|
|
defaultValue: true,
|
|
htmlMonitorRef: undefined,
|
|
htmlMonitorSliderRef: undefined,
|
|
htmlMonitorLabelRef: undefined,
|
|
cssColor: Colors.RAM,
|
|
// @ts-ignore
|
|
onChange: async(value: boolean): Promise<void> => {
|
|
await this.updateServer({switchRAM: value});
|
|
this.updateWidget(this.monitorRAMElement);
|
|
},
|
|
};
|
|
};
|
|
|
|
createSettingsGPUUsage = (name: string, index: number, moreThanOneGPU: boolean): void => {
|
|
if (name === undefined || index === undefined) {
|
|
console.warn('getGPUsFromServer: name or index undefined', name, index);
|
|
return;
|
|
}
|
|
|
|
let label = 'GPU ';
|
|
label += moreThanOneGPU ? index : '';
|
|
|
|
const monitorGPUNElement: TMonitorSettings = {
|
|
id: 'Crystools.ShowGpuUsage' + convertNumberToPascalCase(index),
|
|
name: ' Usage',
|
|
category: ['Crystools', `${this.menuPrefix} Show GPU [${index}] ${name}`, 'Usage'],
|
|
type: 'boolean',
|
|
label,
|
|
symbol: '%',
|
|
monitorTitle: `${index}: ${name}`,
|
|
defaultValue: true,
|
|
htmlMonitorRef: undefined,
|
|
htmlMonitorSliderRef: undefined,
|
|
htmlMonitorLabelRef: undefined,
|
|
cssColor: Colors.GPU,
|
|
// @ts-ignore
|
|
onChange: async(value: boolean): Promise<void> => {
|
|
await this.updateServerGPU(index, {utilization: value});
|
|
this.updateWidget(monitorGPUNElement);
|
|
},
|
|
};
|
|
|
|
this.monitorGPUSettings[index] = monitorGPUNElement;
|
|
app.ui.settings.addSetting(this.monitorGPUSettings[index]);
|
|
this.monitorUI.createDOMGPUMonitor(this.monitorGPUSettings[index]);
|
|
};
|
|
|
|
createSettingsGPUVRAM = (name: string, index: number, moreThanOneGPU: boolean): void => {
|
|
if (name === undefined || index === undefined) {
|
|
console.warn('getGPUsFromServer: name or index undefined', name, index);
|
|
return;
|
|
}
|
|
|
|
let label = 'VRAM ';
|
|
label += moreThanOneGPU ? index : '';
|
|
|
|
// GPU VRAM Variables
|
|
const monitorVRAMNElement: TMonitorSettings = {
|
|
id: 'Crystools.ShowGpuVram' + convertNumberToPascalCase(index),
|
|
name: 'VRAM',
|
|
category: ['Crystools', `${this.menuPrefix} Show GPU [${index}] ${name}`, 'VRAM'],
|
|
type: 'boolean',
|
|
label: label,
|
|
symbol: '%',
|
|
monitorTitle: `${index}: ${name}`,
|
|
defaultValue: true,
|
|
htmlMonitorRef: undefined,
|
|
htmlMonitorSliderRef: undefined,
|
|
htmlMonitorLabelRef: undefined,
|
|
cssColor: Colors.VRAM,
|
|
// @ts-ignore
|
|
onChange: async(value: boolean): Promise<void> => {
|
|
await this.updateServerGPU(index, {vram: value});
|
|
this.updateWidget(monitorVRAMNElement);
|
|
},
|
|
};
|
|
|
|
this.monitorVRAMSettings[index] = monitorVRAMNElement;
|
|
app.ui.settings.addSetting(this.monitorVRAMSettings[index]);
|
|
this.monitorUI.createDOMGPUMonitor(this.monitorVRAMSettings[index]);
|
|
};
|
|
|
|
createSettingsGPUTemp = (name: string, index: number, moreThanOneGPU: boolean): void => {
|
|
if (name === undefined || index === undefined) {
|
|
console.warn('getGPUsFromServer: name or index undefined', name, index);
|
|
return;
|
|
}
|
|
|
|
let label = 'Temp ';
|
|
label += moreThanOneGPU ? index : '';
|
|
|
|
// GPU Temperature Variables
|
|
const monitorTemperatureNElement: TMonitorSettings = {
|
|
id: 'Crystools.ShowGpuTemperature' + convertNumberToPascalCase(index),
|
|
name: 'Temperature',
|
|
category: ['Crystools', `${this.menuPrefix} Show GPU [${index}] ${name}`, 'Temperature'],
|
|
type: 'boolean',
|
|
label: label,
|
|
symbol: '°',
|
|
monitorTitle: `${index}: ${name}`,
|
|
defaultValue: true,
|
|
htmlMonitorRef: undefined,
|
|
htmlMonitorSliderRef: undefined,
|
|
htmlMonitorLabelRef: undefined,
|
|
cssColor: Colors.TEMP_START,
|
|
cssColorFinal: Colors.TEMP_END,
|
|
// @ts-ignore
|
|
onChange: async(value: boolean): Promise<void> => {
|
|
await this.updateServerGPU(index, {temperature: value});
|
|
this.updateWidget(monitorTemperatureNElement);
|
|
},
|
|
};
|
|
|
|
this.monitorTemperatureSettings[index] = monitorTemperatureNElement;
|
|
app.ui.settings.addSetting(this.monitorTemperatureSettings[index]);
|
|
this.monitorUI.createDOMGPUMonitor(this.monitorTemperatureSettings[index]);
|
|
};
|
|
|
|
createSettingsHDD = (): void => {
|
|
// HDD Variables
|
|
this.monitorHDDElement = {
|
|
id: 'Crystools.ShowHdd',
|
|
name: 'Show HDD Used',
|
|
category: ['Crystools', this.menuPrefix + ' Show Hard Disk', 'Show'],
|
|
type: 'boolean',
|
|
label: 'HDD',
|
|
symbol: '%',
|
|
// tooltip: 'See Partition to show (HDD)',
|
|
defaultValue: false,
|
|
htmlMonitorRef: undefined,
|
|
htmlMonitorSliderRef: undefined,
|
|
htmlMonitorLabelRef: undefined,
|
|
cssColor: Colors.DISK,
|
|
// @ts-ignore
|
|
onChange: async(value: boolean): Promise<void> => {
|
|
await this.updateServer({switchHDD: value});
|
|
this.updateWidget(this.monitorHDDElement);
|
|
},
|
|
};
|
|
|
|
this.settingsHDD = {
|
|
id: 'Crystools.WhichHdd',
|
|
name: 'Partition to show',
|
|
category: ['Crystools', this.menuPrefix + ' Show Hard Disk', 'Which'],
|
|
type: 'combo',
|
|
defaultValue: '/',
|
|
options: [],
|
|
// @ts-ignore
|
|
onChange: async(value: string): Promise<void> => {
|
|
await this.updateServer({whichHDD: value});
|
|
},
|
|
};
|
|
};
|
|
|
|
createSettings = (): void => {
|
|
app.ui.settings.addSetting(this.settingsRate);
|
|
app.ui.settings.addSetting(this.settingsMonitorHeight);
|
|
app.ui.settings.addSetting(this.settingsMonitorWidth);
|
|
// app.ui.settings.addSetting(this.settingsMonitorPosition);
|
|
app.ui.settings.addSetting(this.monitorRAMElement);
|
|
app.ui.settings.addSetting(this.monitorCPUElement);
|
|
|
|
void this.getHDDsFromServer().then((data: string[]): void => {
|
|
// @ts-ignore
|
|
this.settingsHDD.options = data;
|
|
app.ui.settings.addSetting(this.settingsHDD);
|
|
});
|
|
app.ui.settings.addSetting(this.monitorHDDElement);
|
|
|
|
void this.getGPUsFromServer().then((gpus: TGpuName[]): void => {
|
|
let moreThanOneGPU = false;
|
|
if (gpus.length > 1) {
|
|
moreThanOneGPU = true;
|
|
}
|
|
|
|
gpus?.forEach(({name, index}) => {
|
|
this.createSettingsGPUTemp(name, index, moreThanOneGPU);
|
|
this.createSettingsGPUVRAM(name, index, moreThanOneGPU);
|
|
this.createSettingsGPUUsage(name, index, moreThanOneGPU);
|
|
});
|
|
|
|
this.finishedLoad();
|
|
});
|
|
};
|
|
|
|
finishedLoad = (): void => {
|
|
this.monitorUI.orderMonitors();
|
|
this.updateAllWidget();
|
|
this.moveMonitor(this.menuDisplayOption);
|
|
|
|
const w = app.extensionManager.setting.get(this.monitorWidthId);
|
|
const h = app.extensionManager.setting.get(this.monitorHeightId);
|
|
this.monitorUI.updateMonitorSize(w, h);
|
|
};
|
|
|
|
updateDisplay = (value: MenuDisplayOptions): void => {
|
|
if (value !== this.menuDisplayOption) {
|
|
this.menuDisplayOption = value;
|
|
this.moveMonitor(this.menuDisplayOption);
|
|
}
|
|
};
|
|
|
|
moveMonitor = (menuPosition: MenuDisplayOptions): void => {
|
|
// console.log('moveMonitor', menuPosition);
|
|
// setTimeout(() => {
|
|
let parentElement: Element | null | undefined;
|
|
|
|
switch (menuPosition) {
|
|
case MenuDisplayOptions.Disabled:
|
|
parentElement = document.getElementById('queue-button');
|
|
if (parentElement && this.monitorUI.rootElement) {
|
|
parentElement.insertAdjacentElement('afterend', this.crystoolsButtonGroup.element);
|
|
} else {
|
|
console.error('Crystools: parentElement to move monitors not found!', parentElement);
|
|
}
|
|
break;
|
|
|
|
case MenuDisplayOptions.Top:
|
|
case MenuDisplayOptions.Bottom:
|
|
// const position = app.extensionManager.setting.get(this.monitorPositionId);
|
|
// if(position === MonitorPosition.Top) {
|
|
app.menu?.settingsGroup.element.before(this.crystoolsButtonGroup.element);
|
|
// } else {
|
|
// parentElement = document.getElementsByClassName('comfy-vue-side-bar-header')[0];
|
|
// if(parentElement){
|
|
// parentElement.insertBefore(this.crystoolsButtonGroup.element, parentElement.firstChild);
|
|
// } else {
|
|
// console.error('Crystools: parentElement to move monitors not found! back to top');
|
|
// app.ui.settings.setSettingValue(this.monitorPositionId, MonitorPoistion.Top);
|
|
// }
|
|
// }
|
|
}
|
|
// }, 100);
|
|
};
|
|
|
|
updateAllWidget = (): void => {
|
|
this.updateWidget(this.monitorCPUElement);
|
|
this.updateWidget(this.monitorRAMElement);
|
|
this.updateWidget(this.monitorHDDElement);
|
|
|
|
this.monitorGPUSettings.forEach((monitorSettings) => {
|
|
monitorSettings && this.updateWidget(monitorSettings);
|
|
});
|
|
this.monitorVRAMSettings.forEach((monitorSettings) => {
|
|
monitorSettings && this.updateWidget(monitorSettings);
|
|
});
|
|
this.monitorTemperatureSettings.forEach((monitorSettings) => {
|
|
monitorSettings && this.updateWidget(monitorSettings);
|
|
});
|
|
};
|
|
|
|
/**
|
|
* for the settings menu
|
|
* @param monitorSettings
|
|
*/
|
|
updateWidget = (monitorSettings: TMonitorSettings): void => {
|
|
if (this.monitorUI) {
|
|
const value = app.extensionManager.setting.get(monitorSettings.id);
|
|
this.monitorUI.showMonitor(monitorSettings, value);
|
|
}
|
|
};
|
|
|
|
updateServer = async(data: TStatsSettings): Promise<string> => {
|
|
const resp = await api.fetchApi('/crystools/monitor', {
|
|
method: 'PATCH',
|
|
body: JSON.stringify(data),
|
|
cache: 'no-store',
|
|
});
|
|
if (resp.status === 200) {
|
|
return await resp.text();
|
|
}
|
|
throw new Error(resp.statusText);
|
|
};
|
|
|
|
updateServerGPU = async(index: number, data: TGpuSettings): Promise<string> => {
|
|
const resp = await api.fetchApi(`/crystools/monitor/GPU/${index}`, {
|
|
method: 'PATCH',
|
|
body: JSON.stringify(data),
|
|
cache: 'no-store',
|
|
});
|
|
if (resp.status === 200) {
|
|
return await resp.text();
|
|
}
|
|
throw new Error(resp.statusText);
|
|
};
|
|
|
|
getHDDsFromServer = async(): Promise<string[]> => {
|
|
return this.getDataFromServer('HDD');
|
|
};
|
|
|
|
getGPUsFromServer = async(): Promise<TGpuName[]> => {
|
|
return this.getDataFromServer<TGpuName>('GPU');
|
|
};
|
|
|
|
getDataFromServer = async <T>(what: string): Promise<T[]> => {
|
|
const resp = await api.fetchApi(`/crystools/monitor/${what}`, {
|
|
method: 'GET',
|
|
cache: 'no-store',
|
|
});
|
|
if (resp.status === 200) {
|
|
return await resp.json();
|
|
}
|
|
throw new Error(resp.statusText);
|
|
};
|
|
|
|
setup = (): void => {
|
|
if (this.monitorUI) {
|
|
return;
|
|
}
|
|
// this.createSettingsMonitorPosition();
|
|
this.createSettingsRate();
|
|
this.createSettingsMonitorHeight();
|
|
this.createSettingsMonitorWidth();
|
|
this.createSettingsCPU();
|
|
this.createSettingsRAM();
|
|
this.createSettingsHDD();
|
|
this.createSettings();
|
|
|
|
const currentRate =
|
|
parseFloat(app.extensionManager.setting.get(this.settingsRate.id));
|
|
|
|
this.menuDisplayOption = app.extensionManager.setting.get(ComfyKeyMenuDisplayOption);
|
|
app.ui.settings.addEventListener(`${ComfyKeyMenuDisplayOption}.change`, (e: any) => {
|
|
this.updateDisplay(e.detail.value);
|
|
},
|
|
);
|
|
|
|
this.crystoolsButtonGroup = new ComfyButtonGroup();
|
|
app.menu?.settingsGroup.element.before(this.crystoolsButtonGroup.element);
|
|
|
|
this.monitorUI = new MonitorUI(
|
|
this.crystoolsButtonGroup.element,
|
|
this.monitorCPUElement,
|
|
this.monitorRAMElement,
|
|
this.monitorHDDElement,
|
|
this.monitorGPUSettings,
|
|
this.monitorVRAMSettings,
|
|
this.monitorTemperatureSettings,
|
|
currentRate,
|
|
);
|
|
|
|
this.updateDisplay(this.menuDisplayOption);
|
|
this.registerListeners();
|
|
};
|
|
|
|
registerListeners = (): void => {
|
|
api.addEventListener('crystools.monitor', (event: CustomEvent) => {
|
|
if (event?.detail === undefined) {
|
|
return;
|
|
}
|
|
this.monitorUI.updateDisplay(event.detail);
|
|
}, false);
|
|
};
|
|
}
|
|
|
|
const crystoolsMonitor = new CrystoolsMonitor();
|
|
app.registerExtension({
|
|
name: crystoolsMonitor.idExtensionName,
|
|
setup: crystoolsMonitor.setup,
|
|
});
|