jaxmetaverse's picture
Upload folder using huggingface_hub
82ea528 verified
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 MonitorPoistion {
'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 monitorPosition: MonitorPoistion = MonitorPoistion.Top;
private readonly monitorWidthId = 'Crystools.MonitorWidth';
private readonly monitorWidth = 60;
private readonly monitorHeightId = 'Crystools.MonitorHeight';
private readonly monitorHeight = 30;
createSettingsMonitorPosition = (): void => {
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: (value: string): any => {
const position = app.ui.settings.getSettingValue(this.monitorPositionId, this.monitorPosition);
return [{
value: MonitorPoistion.Top,
text: MonitorPoistion.Top,
selected: value === position,
}, {
value: MonitorPoistion.Sidebar,
text: MonitorPoistion.Sidebar,
selected: value === position,
}, {
value: MonitorPoistion.Floating,
text: MonitorPoistion.Floating,
selected: value === position,
}];
},
defaultValue: this.monitorPosition,
// @ts-ignore
onChange: (_value: string): void => {
if (this.monitorUI) {
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.ui.settings.getSettingValue(this.monitorHeightId, this.monitorHeight);
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.ui.settings.getSettingValue(this.monitorWidthId, this.monitorWidth);
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> => {
this.updateWidget(this.monitorCPUElement);
await this.updateServer({switchCPU: value});
},
};
};
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> => {
this.updateWidget(this.monitorRAMElement);
await this.updateServer({switchRAM: value});
},
};
};
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> => {
this.updateWidget(monitorGPUNElement);
void await this.updateServerGPU(index, {utilization: value});
},
};
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> => {
this.updateWidget(monitorVRAMNElement);
void await this.updateServerGPU(index, {vram: value});
},
};
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> => {
this.updateWidget(monitorTemperatureNElement);
void await this.updateServerGPU(index, {temperature: value});
},
};
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> => {
this.updateWidget(this.monitorHDDElement);
await this.updateServer({switchHDD: value});
},
};
this.settingsHDD = {
id: 'Crystools.WhichHdd',
name: 'Partition to show',
category: ['Crystools', this.menuPrefix + ' Show Hard Disk', 'Which'],
type: 'combo',
defaultValue: '/',
data: [],
// @ts-ignore bad definition from comfyUI: `options?: undefined;`??
options: (value: string): any => {
const which = app.ui.settings.getSettingValue(this.settingsHDD.id, this.settingsHDD.defaultValue);
return this.settingsHDD.data.map((m: any) => ({
value: m,
text: m,
selected: !value ? m === which : m === value,
}));
},
// @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 => {
this.settingsHDD.data = 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.ui.settings.getSettingValue(this.monitorWidthId, this.monitorWidth);
const h = app.ui.settings.getSettingValue(this.monitorHeightId, this.monitorHeight);
this.monitorUI.updateMonitorSize(w, h);
};
updateDisplay = (value: MenuDisplayOptions): void => {
if (value !== this.menuDisplayOption) {
this.menuDisplayOption = value;
this.moveMonitor(this.menuDisplayOption);
}
};
moveMonitor = (menuPosition: MenuDisplayOptions): void => {
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.ui.settings.getSettingValue(this.monitorPositionId, this.monitorPosition);
if(position === MonitorPoistion.Top) {
app.menu?.settingsGroup.element.before(this.crystoolsButtonGroup.element);
} else {
parentElement = document.getElementsByClassName('side-bar-panel')[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);
}
}
}
};
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.ui.settings.getSettingValue(monitorSettings.id, monitorSettings.defaultValue);
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.ui.settings.getSettingValue(this.settingsRate.id, this.settingsRate.defaultValue));
this.menuDisplayOption = app.ui.settings.getSettingValue(ComfyKeyMenuDisplayOption, MenuDisplayOptions.Disabled);
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,
});