From b3b9d88efdc82650204afff4da3e28f2898c9c20 Mon Sep 17 00:00:00 2001 From: anika-ahluwalia Date: Thu, 4 Jun 2020 12:41:48 -0500 Subject: fixed list overflow and deleting () --- src/client/views/nodes/ScriptingBox.tsx | 25 +++++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 deletions(-) (limited to 'src/client/views/nodes/ScriptingBox.tsx') diff --git a/src/client/views/nodes/ScriptingBox.tsx b/src/client/views/nodes/ScriptingBox.tsx index 3c268b5cd..a3b11c734 100644 --- a/src/client/views/nodes/ScriptingBox.tsx +++ b/src/client/views/nodes/ScriptingBox.tsx @@ -48,6 +48,7 @@ export class ScriptingBox extends ViewBoxAnnotatableComponent this.rawScript.slice(0, this.rawScript.length - 1).split(")").length - 1) { + if (this._scriptSuggestedParams.length > 0) { + console.log("suggestion params"); + this._paramSuggestion = true; + } + } + } } else { - if (e.key === "Backspace") { + if (this.rawScript.split("(").length - 1 <= this.rawScript.split(")").length - 1) { console.log("removed params"); this._paramSuggestion = false; } } + + } + if (e.key === "Backspace") { + this._lastChar = this.rawScript[this.rawScript.length - 2]; + console.log("last char: " + this._lastChar); + } else { + this._lastChar = e.key; } } -- cgit v1.2.3-70-g09d2