From e35321b11aacc79c797b375ae4fcb8d5d88e138d Mon Sep 17 00:00:00 2001 From: Alison Date: Thu, 31 Aug 2017 12:45:03 -0500 Subject: [PATCH] Tokens to 5000 and cut dups --- client/app/pages/queries/query-editor.js | 114 +++++++++-------------- 1 file changed, 45 insertions(+), 69 deletions(-) diff --git a/client/app/pages/queries/query-editor.js b/client/app/pages/queries/query-editor.js index de94e85f48..5bbb88ac64 100644 --- a/client/app/pages/queries/query-editor.js +++ b/client/app/pages/queries/query-editor.js @@ -31,6 +31,50 @@ function queryEditor(QuerySnippet) { pre($scope) { $scope.syntax = $scope.syntax || 'sql'; + const schemaCompleter = { + getCompletions(state, session, pos, prefix, callback) { + // make a variable for the auto completion in the query editor + $scope.autoCompleteSchema = $scope.schema; // removeExtraSchemaInfo( + + if (prefix.length === 0 || !$scope.autoCompleteSchema) { + callback(null, []); + return; + } + + if (!$scope.autoCompleteSchema.keywords) { + const keywords = {}; + + $scope.autoCompleteSchema.forEach((table) => { + keywords[table.name] = 'Table'; + + table.columns.forEach((c) => { // autoCompleteColumns + if (c.charAt(c.length - 1) === ')') { + let parensStartAt = c.indexOf('(') - 1; + c = c.substring(0, parensStartAt); + parensStartAt = 1; // linter complains without this line + } + // remove '[P] ' for partition keys + if (c.charAt(0) === '[') { + c = c.substring(4, c.length); + } + // keywords[c] = 'Column'; // dups columns + keywords[`${table.name}.${c}`] = 'Column'; + }); + }); + + $scope.autoCompleteSchema.keywords = map(keywords, (v, k) => + ({ + name: k, + value: k, + score: 0, + meta: v, + }) + ); + } + callback(null, $scope.autoCompleteSchema.keywords); + }, + }; + $scope.editorOptions = { mode: 'json', // require: ['ace/ext/language_tools'], @@ -76,12 +120,10 @@ function queryEditor(QuerySnippet) { newSchema.reduce((totalLength, table) => totalLength + table.columns.length, 0); // If there are too many tokens we disable live autocomplete, // as it makes typing slower. - if (tokensCount > 3000) { + if (tokensCount > 5000) { editor.setOption('enableLiveAutocompletion', false); - editor.setOption('enableBasicAutocompletion', false); } else { editor.setOption('enableLiveAutocompletion', true); - editor.setOption('enableBasicAutocompletion', true); } } }); @@ -93,72 +135,6 @@ function queryEditor(QuerySnippet) { editor.focus(); }, }; -/* - function removeExtraSchemaInfo(data) { - let newColumns = []; - data.forEach((table) => { - table.columns.forEach((column) => { - if (column.charAt(column.length - 1) === ')') { - let parensStartAt = column.indexOf('(') - 1; - column = column.substring(0, parensStartAt); - parensStartAt = 1; // linter complains without this line - } - // remove '[P] ' for partition keys - if (column.charAt(0) === '[') { - column = column.substring(4, column.length); - } - newColumns.push(column); - }); - table.autoCompleteColumns = newColumns; - }); - newColumns = []; // linter complains without this line - return data; - } -*/ - const schemaCompleter = { - getCompletions(state, session, pos, prefix, callback) { - // make a variable for the auto completion in the query editor - $scope.autoCompleteSchema = $scope.schema; // removeExtraSchemaInfo( - - if (prefix.length === 0 || !$scope.autoCompleteSchema) { - callback(null, []); - return; - } - - if (!$scope.autoCompleteSchema.keywords) { - const keywords = {}; - - $scope.autoCompleteSchema.forEach((table) => { - keywords[table.name] = 'Table'; - - table.columns.forEach((c) => { // autoCompleteColumns - if (c.charAt(c.length - 1) === ')') { - let parensStartAt = c.indexOf('(') - 1; - c = c.substring(0, parensStartAt); - parensStartAt = 1; // linter complains without this line - } - // remove '[P] ' for partition keys - if (c.charAt(0) === '[') { - c = c.substring(4, c.length); - } - keywords[c] = 'Column'; - keywords[`${table.name}.${c}`] = 'Column'; - }); - }); - - $scope.autoCompleteSchema.keywords = map(keywords, (v, k) => - ({ - name: k, - value: k, - score: 0, - meta: v, - }) - ); - } - callback(null, $scope.autoCompleteSchema.keywords); - }, - }; - window.ace.acequire(['ace/ext/language_tools'], (langTools) => { langTools.addCompleter(schemaCompleter);