From 984a470094399e4bbd74ddb7daa3e6f08a0a4793 Mon Sep 17 00:00:00 2001 From: Nathan-SR <144961007+Nathan-SR@users.noreply.github.com> Date: Sun, 8 Sep 2024 17:44:11 -0400 Subject: image generation working! --- src/client/views/nodes/DataVizBox/DataVizBox.tsx | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'src/client/views/nodes/DataVizBox/DataVizBox.tsx') diff --git a/src/client/views/nodes/DataVizBox/DataVizBox.tsx b/src/client/views/nodes/DataVizBox/DataVizBox.tsx index 0efe8ead0..0e3b602d6 100644 --- a/src/client/views/nodes/DataVizBox/DataVizBox.tsx +++ b/src/client/views/nodes/DataVizBox/DataVizBox.tsx @@ -157,13 +157,11 @@ export class DataVizBox extends ViewBoxAnnotatableComponent() { @action setColumnType = (colTitle: string, type: TemplateFieldType) => { const colInfo = this.colsInfo.get(colTitle); - console.log(colInfo) if (colInfo) { colInfo.type = type; } else { this.colsInfo.set(colTitle, {title: colTitle, desc: '', type: type, sizes: [TemplateFieldSize.MEDIUM]}) } - console.log(colInfo?.title, colInfo?.type) } @action modifyColumnSizes = (colTitle: string, size: TemplateFieldSize, valid: boolean) => { @@ -183,8 +181,9 @@ export class DataVizBox extends ViewBoxAnnotatableComponent() { const colInfo = this.colsInfo.get(colTitle); if (colInfo) { colInfo.title = newTitle; + console.log(colInfo.title) } else { - this.colsInfo.set(colTitle, {title: newTitle, desc: '', type: TemplateFieldType.UNSET, sizes: [TemplateFieldSize.MEDIUM]}) + this.colsInfo.set(colTitle, {title: newTitle, desc: '', type: TemplateFieldType.UNSET, sizes: []}) } } @@ -194,7 +193,7 @@ export class DataVizBox extends ViewBoxAnnotatableComponent() { if (!desc) { colInfo.desc = this.GPTSummary?.get(colTitle)?.desc ?? ''; } else { colInfo.desc = desc; } } else { - this.colsInfo.set(colTitle, {title: colTitle, desc: desc, type: TemplateFieldType.UNSET, sizes: [TemplateFieldSize.MEDIUM]}) + this.colsInfo.set(colTitle, {title: colTitle, desc: desc, type: TemplateFieldType.UNSET, sizes: []}) } } @@ -203,7 +202,7 @@ export class DataVizBox extends ViewBoxAnnotatableComponent() { if (colInfo) { colInfo.defaultContent = cont; } else { - this.colsInfo.set(colTitle, {title: colTitle, desc: '', type: TemplateFieldType.UNSET, sizes: [TemplateFieldSize.MEDIUM], defaultContent: cont}) + this.colsInfo.set(colTitle, {title: colTitle, desc: '', type: TemplateFieldType.UNSET, sizes: [], defaultContent: cont}) } } @@ -593,11 +592,9 @@ export class DataVizBox extends ViewBoxAnnotatableComponent() { const prompt = this.getColSummary(); - console.log(prompt) - const cols = Array.from(Object.keys(this.records[0])).filter(header => header !== '' && header !== undefined); cols.forEach(col => { - if (!this.colsInfo.get(col)) this.colsInfo.set(col, {title: col, desc: '', sizes: [TemplateFieldSize.MEDIUM], type: TemplateFieldType.UNSET}); + if (!this.colsInfo.get(col)) this.colsInfo.set(col, {title: col, desc: '', sizes: [], type: TemplateFieldType.UNSET}); }); try { @@ -607,7 +604,6 @@ export class DataVizBox extends ViewBoxAnnotatableComponent() { ]); if (res1) { - console.log(res1); this.GPTSummary = new ObservableMap(); const descs: { [col: string]: string } = JSON.parse(res1); for (const [key, val] of Object.entries(descs)) { @@ -619,7 +615,6 @@ export class DataVizBox extends ViewBoxAnnotatableComponent() { if (res2) { !this.GPTSummary && (this.GPTSummary = new ObservableMap()); const info: { [col: string]: { type: TemplateFieldType, size: TemplateFieldSize } } = JSON.parse(res2); - console.log(info); for (const [key, val] of Object.entries(info)) { const colSummary = this.GPTSummary.get(key); if (colSummary) { -- cgit v1.2.3-70-g09d2