@deephaven/jsapi-utils 0.38.1-beta.7 → 0.38.1-chart-refactor.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/dist/ConnectionUtils.d.ts +1 -1
  2. package/dist/ConnectionUtils.d.ts.map +1 -1
  3. package/dist/ConnectionUtils.js.map +1 -1
  4. package/dist/Formatter.d.ts +3 -1
  5. package/dist/Formatter.d.ts.map +1 -1
  6. package/dist/Formatter.js +8 -7
  7. package/dist/Formatter.js.map +1 -1
  8. package/dist/FormatterUtils.d.ts +1 -1
  9. package/dist/FormatterUtils.js.map +1 -1
  10. package/dist/SessionUtils.d.ts +3 -3
  11. package/dist/SessionUtils.d.ts.map +1 -1
  12. package/dist/SessionUtils.js +2 -2
  13. package/dist/SessionUtils.js.map +1 -1
  14. package/dist/TableUtils.d.ts +40 -40
  15. package/dist/TableUtils.d.ts.map +1 -1
  16. package/dist/TableUtils.js +94 -74
  17. package/dist/TableUtils.js.map +1 -1
  18. package/dist/ViewportDataUtils.d.ts +1 -1
  19. package/dist/ViewportDataUtils.d.ts.map +1 -1
  20. package/dist/ViewportDataUtils.js.map +1 -1
  21. package/dist/formatters/DateTimeColumnFormatter.d.ts +5 -3
  22. package/dist/formatters/DateTimeColumnFormatter.d.ts.map +1 -1
  23. package/dist/formatters/DateTimeColumnFormatter.js +8 -5
  24. package/dist/formatters/DateTimeColumnFormatter.js.map +1 -1
  25. package/dist/formatters/DecimalColumnFormatter.d.ts +5 -2
  26. package/dist/formatters/DecimalColumnFormatter.d.ts.map +1 -1
  27. package/dist/formatters/DecimalColumnFormatter.js +8 -5
  28. package/dist/formatters/DecimalColumnFormatter.js.map +1 -1
  29. package/dist/formatters/IntegerColumnFormatter.d.ts +5 -2
  30. package/dist/formatters/IntegerColumnFormatter.d.ts.map +1 -1
  31. package/dist/formatters/IntegerColumnFormatter.js +8 -5
  32. package/dist/formatters/IntegerColumnFormatter.js.map +1 -1
  33. package/dist/formatters/TableColumnFormatter.d.ts +3 -1
  34. package/dist/formatters/TableColumnFormatter.d.ts.map +1 -1
  35. package/dist/formatters/TableColumnFormatter.js +2 -1
  36. package/dist/formatters/TableColumnFormatter.js.map +1 -1
  37. package/package.json +8 -8
@@ -1,4 +1,4 @@
1
- import { IdeConnection, VariableDefinition } from '@deephaven/jsapi-types';
1
+ import type { IdeConnection, VariableDefinition } from '@deephaven/jsapi-types';
2
2
  /** Default timeout for fetching a variable definition */
3
3
  export declare const FETCH_TIMEOUT = 10000;
4
4
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"ConnectionUtils.d.ts","sourceRoot":"","sources":["../src/ConnectionUtils.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,aAAa,EAEb,kBAAkB,EACnB,MAAM,wBAAwB,CAAC;AAGhC,yDAAyD;AACzD,eAAO,MAAM,aAAa,QAAS,CAAC;AAEpC;;;;;;GAMG;AACH,wBAAgB,uBAAuB,CACrC,UAAU,EAAE,aAAa,EACzB,IAAI,EAAE,MAAM,EACZ,OAAO,SAAgB,GACtB,OAAO,CAAC,kBAAkB,CAAC,CAwB7B"}
1
+ {"version":3,"file":"ConnectionUtils.d.ts","sourceRoot":"","sources":["../src/ConnectionUtils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,aAAa,EAEb,kBAAkB,EACnB,MAAM,wBAAwB,CAAC;AAGhC,yDAAyD;AACzD,eAAO,MAAM,aAAa,QAAS,CAAC;AAEpC;;;;;;GAMG;AACH,wBAAgB,uBAAuB,CACrC,UAAU,EAAE,aAAa,EACzB,IAAI,EAAE,MAAM,EACZ,OAAO,SAAgB,GACtB,OAAO,CAAC,kBAAkB,CAAC,CAwB7B"}
@@ -1 +1 @@
1
- {"version":3,"file":"ConnectionUtils.js","names":["TimeoutError","FETCH_TIMEOUT","fetchVariableDefinition","connection","name","timeout","Promise","resolve","reject","removeListener","timeoutId","setTimeout","handleFieldUpdates","changes","definition","created","find","def","title","clearTimeout","subscribeToFieldUpdates"],"sources":["../src/ConnectionUtils.ts"],"sourcesContent":["import {\n IdeConnection,\n VariableChanges,\n VariableDefinition,\n} from '@deephaven/jsapi-types';\nimport { TimeoutError } from '@deephaven/utils';\n\n/** Default timeout for fetching a variable definition */\nexport const FETCH_TIMEOUT = 10_000;\n\n/**\n * Fetch the definition for a variable given a connection. Subscribes to field updates and triggers when the variable is found.\n * @param connection Connection to get the variable from\n * @param name Name of the definition to fetch\n * @param timeout Timeout for the fetch\n * @returns Promise the resolves to the variable definition if found, or rejects if there's an error or the timeout has exceeded\n */\nexport function fetchVariableDefinition(\n connection: IdeConnection,\n name: string,\n timeout = FETCH_TIMEOUT\n): Promise<VariableDefinition> {\n return new Promise<VariableDefinition>((resolve, reject) => {\n let removeListener: () => void;\n\n const timeoutId = setTimeout(() => {\n removeListener?.();\n reject(new TimeoutError(`Variable ${name} not found`));\n }, timeout);\n\n /**\n * Checks if the variable we're looking for is in the changes, and resolves the promise if it does\n * @param changes Variables changes that have occurred\n */\n function handleFieldUpdates(changes: VariableChanges): void {\n const definition = changes.created.find(def => def.title === name);\n if (definition != null) {\n clearTimeout(timeoutId);\n removeListener?.();\n resolve(definition);\n }\n }\n\n removeListener = connection.subscribeToFieldUpdates(handleFieldUpdates);\n });\n}\n"],"mappings":"AAKA,SAASA,YAAY,QAAQ,kBAAkB;;AAE/C;AACA,OAAO,IAAMC,aAAa,GAAG,KAAM;;AAEnC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,uBAAuB,CACrCC,UAAyB,EACzBC,IAAY,EAEiB;EAAA,IAD7BC,OAAO,uEAAGJ,aAAa;EAEvB,OAAO,IAAIK,OAAO,CAAqB,CAACC,OAAO,EAAEC,MAAM,KAAK;IAC1D,IAAIC,cAA0B;IAE9B,IAAMC,SAAS,GAAGC,UAAU,CAAC,MAAM;MAAA;MACjC,mBAAAF,cAAc,oDAAd,iBAAkB;MAClBD,MAAM,CAAC,IAAIR,YAAY,oBAAaI,IAAI,gBAAa,CAAC;IACxD,CAAC,EAAEC,OAAO,CAAC;;IAEX;AACJ;AACA;AACA;IACI,SAASO,kBAAkB,CAACC,OAAwB,EAAQ;MAC1D,IAAMC,UAAU,GAAGD,OAAO,CAACE,OAAO,CAACC,IAAI,CAACC,GAAG,IAAIA,GAAG,CAACC,KAAK,KAAKd,IAAI,CAAC;MAClE,IAAIU,UAAU,IAAI,IAAI,EAAE;QAAA;QACtBK,YAAY,CAACT,SAAS,CAAC;QACvB,oBAAAD,cAAc,qDAAd,kBAAkB;QAClBF,OAAO,CAACO,UAAU,CAAC;MACrB;IACF;IAEAL,cAAc,GAAGN,UAAU,CAACiB,uBAAuB,CAACR,kBAAkB,CAAC;EACzE,CAAC,CAAC;AACJ"}
1
+ {"version":3,"file":"ConnectionUtils.js","names":["TimeoutError","FETCH_TIMEOUT","fetchVariableDefinition","connection","name","timeout","Promise","resolve","reject","removeListener","timeoutId","setTimeout","handleFieldUpdates","changes","definition","created","find","def","title","clearTimeout","subscribeToFieldUpdates"],"sources":["../src/ConnectionUtils.ts"],"sourcesContent":["import type {\n IdeConnection,\n VariableChanges,\n VariableDefinition,\n} from '@deephaven/jsapi-types';\nimport { TimeoutError } from '@deephaven/utils';\n\n/** Default timeout for fetching a variable definition */\nexport const FETCH_TIMEOUT = 10_000;\n\n/**\n * Fetch the definition for a variable given a connection. Subscribes to field updates and triggers when the variable is found.\n * @param connection Connection to get the variable from\n * @param name Name of the definition to fetch\n * @param timeout Timeout for the fetch\n * @returns Promise the resolves to the variable definition if found, or rejects if there's an error or the timeout has exceeded\n */\nexport function fetchVariableDefinition(\n connection: IdeConnection,\n name: string,\n timeout = FETCH_TIMEOUT\n): Promise<VariableDefinition> {\n return new Promise<VariableDefinition>((resolve, reject) => {\n let removeListener: () => void;\n\n const timeoutId = setTimeout(() => {\n removeListener?.();\n reject(new TimeoutError(`Variable ${name} not found`));\n }, timeout);\n\n /**\n * Checks if the variable we're looking for is in the changes, and resolves the promise if it does\n * @param changes Variables changes that have occurred\n */\n function handleFieldUpdates(changes: VariableChanges): void {\n const definition = changes.created.find(def => def.title === name);\n if (definition != null) {\n clearTimeout(timeoutId);\n removeListener?.();\n resolve(definition);\n }\n }\n\n removeListener = connection.subscribeToFieldUpdates(handleFieldUpdates);\n });\n}\n"],"mappings":"AAKA,SAASA,YAAY,QAAQ,kBAAkB;;AAE/C;AACA,OAAO,IAAMC,aAAa,GAAG,KAAM;;AAEnC;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,uBAAuB,CACrCC,UAAyB,EACzBC,IAAY,EAEiB;EAAA,IAD7BC,OAAO,uEAAGJ,aAAa;EAEvB,OAAO,IAAIK,OAAO,CAAqB,CAACC,OAAO,EAAEC,MAAM,KAAK;IAC1D,IAAIC,cAA0B;IAE9B,IAAMC,SAAS,GAAGC,UAAU,CAAC,MAAM;MAAA;MACjC,mBAAAF,cAAc,oDAAd,iBAAkB;MAClBD,MAAM,CAAC,IAAIR,YAAY,oBAAaI,IAAI,gBAAa,CAAC;IACxD,CAAC,EAAEC,OAAO,CAAC;;IAEX;AACJ;AACA;AACA;IACI,SAASO,kBAAkB,CAACC,OAAwB,EAAQ;MAC1D,IAAMC,UAAU,GAAGD,OAAO,CAACE,OAAO,CAACC,IAAI,CAACC,GAAG,IAAIA,GAAG,CAACC,KAAK,KAAKd,IAAI,CAAC;MAClE,IAAIU,UAAU,IAAI,IAAI,EAAE;QAAA;QACtBK,YAAY,CAACT,SAAS,CAAC;QACvB,oBAAAD,cAAc,qDAAd,kBAAkB;QAClBF,OAAO,CAACO,UAAU,CAAC;MACrB;IACF;IAEAL,cAAc,GAAGN,UAAU,CAACiB,uBAAuB,CAACR,kBAAkB,CAAC;EACzE,CAAC,CAAC;AACJ"}
@@ -1,3 +1,4 @@
1
+ import type { dh as DhType } from '@deephaven/jsapi-types';
1
2
  import { DataType } from './TableUtils';
2
3
  import { DateTimeColumnFormatter, DecimalColumnFormatter, IntegerColumnFormatter, TableColumnFormat, TableColumnFormatter } from './formatters';
3
4
  export type ColumnName = string;
@@ -21,13 +22,14 @@ export declare class Formatter {
21
22
  */
22
23
  static makeColumnFormattingRule(columnType: DataType, columnName: ColumnName, format: TableColumnFormat): FormattingRule;
23
24
  /**
25
+ * @param dh JSAPI instance
24
26
  * @param columnFormattingRules Optional array of column formatting rules
25
27
  * @param dateTimeOptions Optional object with DateTime configuration
26
28
  * @param decimalFormatOptions Optional object with Decimal configuration
27
29
  * @param integerFormatOptions Optional object with Integer configuration
28
30
  * @param truncateNumbersWithPound Determine if numbers should be truncated w/ repeating # instead of ellipsis at the end
29
31
  */
30
- constructor(columnFormattingRules?: FormattingRule[], dateTimeOptions?: ConstructorParameters<typeof DateTimeColumnFormatter>[0], decimalFormatOptions?: ConstructorParameters<typeof DecimalColumnFormatter>[0], integerFormatOptions?: ConstructorParameters<typeof IntegerColumnFormatter>[0], truncateNumbersWithPound?: boolean);
32
+ constructor(dh: DhType, columnFormattingRules?: FormattingRule[], dateTimeOptions?: ConstructorParameters<typeof DateTimeColumnFormatter>[1], decimalFormatOptions?: ConstructorParameters<typeof DecimalColumnFormatter>[1], integerFormatOptions?: ConstructorParameters<typeof IntegerColumnFormatter>[1], truncateNumbersWithPound?: boolean);
31
33
  defaultColumnFormatter: TableColumnFormatter;
32
34
  typeFormatterMap: Map<DataType, TableColumnFormatter>;
33
35
  columnFormatMap: Map<DataType, Map<string, TableColumnFormat>>;
@@ -1 +1 @@
1
- {"version":3,"file":"Formatter.d.ts","sourceRoot":"","sources":["../src/Formatter.ts"],"names":[],"mappings":"AAAA,OAAmB,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACpD,OAAO,EAGL,uBAAuB,EACvB,sBAAsB,EAEtB,sBAAsB,EAEtB,iBAAiB,EACjB,oBAAoB,EACrB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC;AAEhC,MAAM,WAAW,cAAc;IAC7B,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,UAAU,CAAC;IACvB,MAAM,EAAE,iBAAiB,CAAC;CAC3B;AAED,qBAAa,SAAS;IACpB;;;;OAIG;IACH,MAAM,CAAC,mBAAmB,CACxB,qBAAqB,EAAE,cAAc,EAAE,GACtC,GAAG,CAAC,QAAQ,EAAE,GAAG,CAAC,UAAU,EAAE,iBAAiB,CAAC,CAAC;IAmBpD;;;;;OAKG;IACH,MAAM,CAAC,wBAAwB,CAC7B,UAAU,EAAE,QAAQ,EACpB,UAAU,EAAE,UAAU,EACtB,MAAM,EAAE,iBAAiB,GACxB,cAAc;IAQjB;;;;;;OAMG;gBAED,qBAAqB,GAAE,cAAc,EAAO,EAC5C,eAAe,CAAC,EAAE,qBAAqB,CAAC,OAAO,uBAAuB,CAAC,CAAC,CAAC,CAAC,EAC1E,oBAAoB,CAAC,EAAE,qBAAqB,CAC1C,OAAO,sBAAsB,CAC9B,CAAC,CAAC,CAAC,EACJ,oBAAoB,CAAC,EAAE,qBAAqB,CAC1C,OAAO,sBAAsB,CAC9B,CAAC,CAAC,CAAC,EACJ,wBAAwB,UAAQ;IAiClC,sBAAsB,EAAE,oBAAoB,CAAC;IAE7C,gBAAgB,EAAE,GAAG,CAAC,QAAQ,EAAE,oBAAoB,CAAC,CAAC;IAEtD,eAAe,EAAE,GAAG,CAAC,QAAQ,EAAE,GAAG,CAAC,MAAM,EAAE,iBAAiB,CAAC,CAAC,CAAC;IAE/D,wBAAwB,EAAE,OAAO,CAAC;IAElC;;;;;OAKG;IACH,yBAAyB,CACvB,UAAU,EAAE,MAAM,EAClB,iBAAiB,UAAQ,GACxB,GAAG,CAAC,MAAM,EAAE,iBAAiB,CAAC,GAAG,SAAS;IAY7C;;;;;OAKG;IACH,eAAe,CACb,UAAU,EAAE,MAAM,EAClB,UAAU,EAAE,UAAU,GACrB,iBAAiB,GAAG,IAAI;IAK3B,sBAAsB,CAAC,UAAU,EAAE,MAAM,GAAG,oBAAoB;IAUhE;;;;;;OAMG;IACH,kBAAkB,CAChB,KAAK,EAAE,OAAO,EACd,UAAU,EAAE,MAAM,EAClB,UAAU,SAAK,EACf,cAAc,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAC1C,MAAM;IAYT;;;OAGG;IACH,IAAI,QAAQ,IAAI,MAAM,CAKrB;CACF;AAED,eAAe,SAAS,CAAC"}
1
+ {"version":3,"file":"Formatter.d.ts","sourceRoot":"","sources":["../src/Formatter.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,IAAI,MAAM,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAmB,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AACpD,OAAO,EAGL,uBAAuB,EACvB,sBAAsB,EAEtB,sBAAsB,EAEtB,iBAAiB,EACjB,oBAAoB,EACrB,MAAM,cAAc,CAAC;AAEtB,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC;AAEhC,MAAM,WAAW,cAAc;IAC7B,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,UAAU,CAAC;IACvB,MAAM,EAAE,iBAAiB,CAAC;CAC3B;AAED,qBAAa,SAAS;IACpB;;;;OAIG;IACH,MAAM,CAAC,mBAAmB,CACxB,qBAAqB,EAAE,cAAc,EAAE,GACtC,GAAG,CAAC,QAAQ,EAAE,GAAG,CAAC,UAAU,EAAE,iBAAiB,CAAC,CAAC;IAmBpD;;;;;OAKG;IACH,MAAM,CAAC,wBAAwB,CAC7B,UAAU,EAAE,QAAQ,EACpB,UAAU,EAAE,UAAU,EACtB,MAAM,EAAE,iBAAiB,GACxB,cAAc;IAQjB;;;;;;;OAOG;gBAED,EAAE,EAAE,MAAM,EACV,qBAAqB,GAAE,cAAc,EAAO,EAC5C,eAAe,CAAC,EAAE,qBAAqB,CAAC,OAAO,uBAAuB,CAAC,CAAC,CAAC,CAAC,EAC1E,oBAAoB,CAAC,EAAE,qBAAqB,CAC1C,OAAO,sBAAsB,CAC9B,CAAC,CAAC,CAAC,EACJ,oBAAoB,CAAC,EAAE,qBAAqB,CAC1C,OAAO,sBAAsB,CAC9B,CAAC,CAAC,CAAC,EACJ,wBAAwB,UAAQ;IAiClC,sBAAsB,EAAE,oBAAoB,CAAC;IAE7C,gBAAgB,EAAE,GAAG,CAAC,QAAQ,EAAE,oBAAoB,CAAC,CAAC;IAEtD,eAAe,EAAE,GAAG,CAAC,QAAQ,EAAE,GAAG,CAAC,MAAM,EAAE,iBAAiB,CAAC,CAAC,CAAC;IAE/D,wBAAwB,EAAE,OAAO,CAAC;IAElC;;;;;OAKG;IACH,yBAAyB,CACvB,UAAU,EAAE,MAAM,EAClB,iBAAiB,UAAQ,GACxB,GAAG,CAAC,MAAM,EAAE,iBAAiB,CAAC,GAAG,SAAS;IAY7C;;;;;OAKG;IACH,eAAe,CACb,UAAU,EAAE,MAAM,EAClB,UAAU,EAAE,UAAU,GACrB,iBAAiB,GAAG,IAAI;IAK3B,sBAAsB,CAAC,UAAU,EAAE,MAAM,GAAG,oBAAoB;IAUhE;;;;;;OAMG;IACH,kBAAkB,CAChB,KAAK,EAAE,OAAO,EACd,UAAU,EAAE,MAAM,EAClB,UAAU,SAAK,EACf,cAAc,CAAC,EAAE,OAAO,CAAC,iBAAiB,CAAC,GAC1C,MAAM;IAYT;;;OAGG;IACH,IAAI,QAAQ,IAAI,MAAM,CAKrB;CACF;AAED,eAAe,SAAS,CAAC"}
package/dist/Formatter.js CHANGED
@@ -42,18 +42,19 @@ export class Formatter {
42
42
  }
43
43
 
44
44
  /**
45
+ * @param dh JSAPI instance
45
46
  * @param columnFormattingRules Optional array of column formatting rules
46
47
  * @param dateTimeOptions Optional object with DateTime configuration
47
48
  * @param decimalFormatOptions Optional object with Decimal configuration
48
49
  * @param integerFormatOptions Optional object with Integer configuration
49
50
  * @param truncateNumbersWithPound Determine if numbers should be truncated w/ repeating # instead of ellipsis at the end
50
51
  */
51
- constructor() {
52
- var columnFormattingRules = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
53
- var dateTimeOptions = arguments.length > 1 ? arguments[1] : undefined;
54
- var decimalFormatOptions = arguments.length > 2 ? arguments[2] : undefined;
55
- var integerFormatOptions = arguments.length > 3 ? arguments[3] : undefined;
56
- var truncateNumbersWithPound = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;
52
+ constructor(dh) {
53
+ var columnFormattingRules = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
54
+ var dateTimeOptions = arguments.length > 2 ? arguments[2] : undefined;
55
+ var decimalFormatOptions = arguments.length > 3 ? arguments[3] : undefined;
56
+ var integerFormatOptions = arguments.length > 4 ? arguments[4] : undefined;
57
+ var truncateNumbersWithPound = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : false;
57
58
  _defineProperty(this, "defaultColumnFormatter", void 0);
58
59
  _defineProperty(this, "typeFormatterMap", void 0);
59
60
  _defineProperty(this, "columnFormatMap", void 0);
@@ -66,7 +67,7 @@ export class Formatter {
66
67
  this.defaultColumnFormatter = new DefaultColumnFormatter();
67
68
 
68
69
  // Default formatters by data type
69
- this.typeFormatterMap = new Map([[TableUtils.dataType.BOOLEAN, new BooleanColumnFormatter()], [TableUtils.dataType.CHAR, new CharColumnFormatter()], [TableUtils.dataType.DATETIME, new DateTimeColumnFormatter(dateTimeOptions)], [TableUtils.dataType.DECIMAL, new DecimalColumnFormatter(decimalFormatOptions)], [TableUtils.dataType.INT, new IntegerColumnFormatter(integerFormatOptions)], [TableUtils.dataType.STRING, new StringColumnFormatter()]]);
70
+ this.typeFormatterMap = new Map([[TableUtils.dataType.BOOLEAN, new BooleanColumnFormatter()], [TableUtils.dataType.CHAR, new CharColumnFormatter()], [TableUtils.dataType.DATETIME, new DateTimeColumnFormatter(dh, dateTimeOptions)], [TableUtils.dataType.DECIMAL, new DecimalColumnFormatter(dh, decimalFormatOptions)], [TableUtils.dataType.INT, new IntegerColumnFormatter(dh, integerFormatOptions)], [TableUtils.dataType.STRING, new StringColumnFormatter()]]);
70
71
 
71
72
  // Formats indexed by data type and column name
72
73
  this.columnFormatMap = Formatter.makeColumnFormatMap(columnFormattingRules);
@@ -1 +1 @@
1
- {"version":3,"file":"Formatter.js","names":["TableUtils","BooleanColumnFormatter","CharColumnFormatter","DateTimeColumnFormatter","DecimalColumnFormatter","DefaultColumnFormatter","IntegerColumnFormatter","StringColumnFormatter","Formatter","makeColumnFormatMap","columnFormattingRules","Map","reduce","map","next","dataType","getNormalizedType","columnType","has","set","formatMap","get","columnName","format","makeColumnFormattingRule","constructor","dateTimeOptions","decimalFormatOptions","integerFormatOptions","truncateNumbersWithPound","defaultColumnFormatter","typeFormatterMap","BOOLEAN","CHAR","DATETIME","DECIMAL","INT","STRING","columnFormatMap","getColumnFormatMapForType","createIfNecessary","undefined","getColumnFormat","getColumnTypeFormatter","columnTypeFormatter","getFormattedString","value","formatOverride","formatter","timeZone","dhTimeZone","id"],"sources":["../src/Formatter.ts"],"sourcesContent":["import TableUtils, { DataType } from './TableUtils';\nimport {\n BooleanColumnFormatter,\n CharColumnFormatter,\n DateTimeColumnFormatter,\n DecimalColumnFormatter,\n DefaultColumnFormatter,\n IntegerColumnFormatter,\n StringColumnFormatter,\n TableColumnFormat,\n TableColumnFormatter,\n} from './formatters';\n\nexport type ColumnName = string;\n\nexport interface FormattingRule {\n columnType: string;\n columnName: ColumnName;\n format: TableColumnFormat;\n}\n\nexport class Formatter {\n /**\n * Converts FormattingRule[] to Map\n * @param columnFormattingRules Array or column formatting rules\n * @returns Map of columnName-to-format Maps indexed by normalized dataType\n */\n static makeColumnFormatMap(\n columnFormattingRules: FormattingRule[]\n ): Map<DataType, Map<ColumnName, TableColumnFormat>> {\n if (columnFormattingRules == null) {\n return new Map();\n }\n return columnFormattingRules.reduce((map, next) => {\n const dataType = TableUtils.getNormalizedType(next.columnType);\n if (dataType === null) {\n return map;\n }\n\n if (!map.has(dataType)) {\n map.set(dataType, new Map());\n }\n const formatMap = map.get(dataType);\n formatMap?.set(next.columnName, next.format);\n return map;\n }, new Map<DataType, Map<ColumnName, TableColumnFormat>>());\n }\n\n /**\n * Creates a column formatting rule\n * @param columnType Normalized data type\n * @param columnName Column name\n * @param format Format object\n */\n static makeColumnFormattingRule(\n columnType: DataType,\n columnName: ColumnName,\n format: TableColumnFormat\n ): FormattingRule {\n return {\n columnType,\n columnName,\n format,\n };\n }\n\n /**\n * @param columnFormattingRules Optional array of column formatting rules\n * @param dateTimeOptions Optional object with DateTime configuration\n * @param decimalFormatOptions Optional object with Decimal configuration\n * @param integerFormatOptions Optional object with Integer configuration\n * @param truncateNumbersWithPound Determine if numbers should be truncated w/ repeating # instead of ellipsis at the end\n */\n constructor(\n columnFormattingRules: FormattingRule[] = [],\n dateTimeOptions?: ConstructorParameters<typeof DateTimeColumnFormatter>[0],\n decimalFormatOptions?: ConstructorParameters<\n typeof DecimalColumnFormatter\n >[0],\n integerFormatOptions?: ConstructorParameters<\n typeof IntegerColumnFormatter\n >[0],\n truncateNumbersWithPound = false\n ) {\n // Formatting order:\n // - columnFormatMap[type][name]\n // - typeFormatterMap[type]\n // - defaultColumnFormatter\n\n this.defaultColumnFormatter = new DefaultColumnFormatter();\n\n // Default formatters by data type\n this.typeFormatterMap = new Map<DataType, TableColumnFormatter>([\n [TableUtils.dataType.BOOLEAN, new BooleanColumnFormatter()],\n [TableUtils.dataType.CHAR, new CharColumnFormatter()],\n [\n TableUtils.dataType.DATETIME,\n new DateTimeColumnFormatter(dateTimeOptions),\n ],\n [\n TableUtils.dataType.DECIMAL,\n new DecimalColumnFormatter(decimalFormatOptions),\n ],\n [\n TableUtils.dataType.INT,\n new IntegerColumnFormatter(integerFormatOptions),\n ],\n [TableUtils.dataType.STRING, new StringColumnFormatter()],\n ]);\n\n // Formats indexed by data type and column name\n this.columnFormatMap = Formatter.makeColumnFormatMap(columnFormattingRules);\n this.truncateNumbersWithPound = truncateNumbersWithPound;\n }\n\n defaultColumnFormatter: TableColumnFormatter;\n\n typeFormatterMap: Map<DataType, TableColumnFormatter>;\n\n columnFormatMap: Map<DataType, Map<string, TableColumnFormat>>;\n\n truncateNumbersWithPound: boolean;\n\n /**\n * Gets columnFormatMap indexed by name for a given column type, creates new Map entry if necessary\n * @param columnType column type\n * @param createIfNecessary create new entry if true\n * @returns Map of format strings indexed by column name or undefined if it doesn't exist\n */\n getColumnFormatMapForType(\n columnType: string,\n createIfNecessary = false\n ): Map<string, TableColumnFormat> | undefined {\n const dataType = TableUtils.getNormalizedType(columnType);\n if (dataType === null) {\n return undefined;\n }\n\n if (createIfNecessary && !this.columnFormatMap.has(dataType)) {\n this.columnFormatMap.set(dataType, new Map());\n }\n return this.columnFormatMap.get(dataType);\n }\n\n /**\n * Gets a column format object for a given column type and name\n * @param columnType column type\n * @param columnName column name\n * @returns format object or null for Default\n */\n getColumnFormat(\n columnType: string,\n columnName: ColumnName\n ): TableColumnFormat | null {\n const columnFormatMap = this.getColumnFormatMapForType(columnType);\n return columnFormatMap?.get(columnName) ?? null;\n }\n\n getColumnTypeFormatter(columnType: string): TableColumnFormatter {\n const dataType = TableUtils.getNormalizedType(columnType);\n let columnTypeFormatter = this.defaultColumnFormatter;\n if (dataType) {\n columnTypeFormatter =\n this.typeFormatterMap.get(dataType) ?? columnTypeFormatter;\n }\n return columnTypeFormatter;\n }\n\n /**\n * Gets formatted string for a given value, column type and name\n * @param value Value to format\n * @param columnType Column type used to determine the formatting settings\n * @param columnName Column name used to determine the formatting settings\n * @param formatOverride Format object passed to the formatter in place of the format defined in columnFormatMap\n */\n getFormattedString(\n value: unknown,\n columnType: string,\n columnName = '',\n formatOverride?: Partial<TableColumnFormat>\n ): string {\n if (value == null) {\n return '';\n }\n\n const formatter = this.getColumnTypeFormatter(columnType);\n const format =\n formatOverride || this.getColumnFormat(columnType, columnName);\n\n return formatter.format(value, format ?? undefined);\n }\n\n /**\n * Gets the timeZone name\n * @returns The time zone name E.g. America/New_York\n */\n get timeZone(): string {\n const formatter = this.typeFormatterMap.get(\n TableUtils.dataType.DATETIME\n ) as DateTimeColumnFormatter;\n return formatter?.dhTimeZone?.id;\n }\n}\n\nexport default Formatter;\n"],"mappings":"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"}
1
+ {"version":3,"file":"Formatter.js","names":["TableUtils","BooleanColumnFormatter","CharColumnFormatter","DateTimeColumnFormatter","DecimalColumnFormatter","DefaultColumnFormatter","IntegerColumnFormatter","StringColumnFormatter","Formatter","makeColumnFormatMap","columnFormattingRules","Map","reduce","map","next","dataType","getNormalizedType","columnType","has","set","formatMap","get","columnName","format","makeColumnFormattingRule","constructor","dh","dateTimeOptions","decimalFormatOptions","integerFormatOptions","truncateNumbersWithPound","defaultColumnFormatter","typeFormatterMap","BOOLEAN","CHAR","DATETIME","DECIMAL","INT","STRING","columnFormatMap","getColumnFormatMapForType","createIfNecessary","undefined","getColumnFormat","getColumnTypeFormatter","columnTypeFormatter","getFormattedString","value","formatOverride","formatter","timeZone","dhTimeZone","id"],"sources":["../src/Formatter.ts"],"sourcesContent":["import type { dh as DhType } from '@deephaven/jsapi-types';\nimport TableUtils, { DataType } from './TableUtils';\nimport {\n BooleanColumnFormatter,\n CharColumnFormatter,\n DateTimeColumnFormatter,\n DecimalColumnFormatter,\n DefaultColumnFormatter,\n IntegerColumnFormatter,\n StringColumnFormatter,\n TableColumnFormat,\n TableColumnFormatter,\n} from './formatters';\n\nexport type ColumnName = string;\n\nexport interface FormattingRule {\n columnType: string;\n columnName: ColumnName;\n format: TableColumnFormat;\n}\n\nexport class Formatter {\n /**\n * Converts FormattingRule[] to Map\n * @param columnFormattingRules Array or column formatting rules\n * @returns Map of columnName-to-format Maps indexed by normalized dataType\n */\n static makeColumnFormatMap(\n columnFormattingRules: FormattingRule[]\n ): Map<DataType, Map<ColumnName, TableColumnFormat>> {\n if (columnFormattingRules == null) {\n return new Map();\n }\n return columnFormattingRules.reduce((map, next) => {\n const dataType = TableUtils.getNormalizedType(next.columnType);\n if (dataType === null) {\n return map;\n }\n\n if (!map.has(dataType)) {\n map.set(dataType, new Map());\n }\n const formatMap = map.get(dataType);\n formatMap?.set(next.columnName, next.format);\n return map;\n }, new Map<DataType, Map<ColumnName, TableColumnFormat>>());\n }\n\n /**\n * Creates a column formatting rule\n * @param columnType Normalized data type\n * @param columnName Column name\n * @param format Format object\n */\n static makeColumnFormattingRule(\n columnType: DataType,\n columnName: ColumnName,\n format: TableColumnFormat\n ): FormattingRule {\n return {\n columnType,\n columnName,\n format,\n };\n }\n\n /**\n * @param dh JSAPI instance\n * @param columnFormattingRules Optional array of column formatting rules\n * @param dateTimeOptions Optional object with DateTime configuration\n * @param decimalFormatOptions Optional object with Decimal configuration\n * @param integerFormatOptions Optional object with Integer configuration\n * @param truncateNumbersWithPound Determine if numbers should be truncated w/ repeating # instead of ellipsis at the end\n */\n constructor(\n dh: DhType,\n columnFormattingRules: FormattingRule[] = [],\n dateTimeOptions?: ConstructorParameters<typeof DateTimeColumnFormatter>[1],\n decimalFormatOptions?: ConstructorParameters<\n typeof DecimalColumnFormatter\n >[1],\n integerFormatOptions?: ConstructorParameters<\n typeof IntegerColumnFormatter\n >[1],\n truncateNumbersWithPound = false\n ) {\n // Formatting order:\n // - columnFormatMap[type][name]\n // - typeFormatterMap[type]\n // - defaultColumnFormatter\n\n this.defaultColumnFormatter = new DefaultColumnFormatter();\n\n // Default formatters by data type\n this.typeFormatterMap = new Map<DataType, TableColumnFormatter>([\n [TableUtils.dataType.BOOLEAN, new BooleanColumnFormatter()],\n [TableUtils.dataType.CHAR, new CharColumnFormatter()],\n [\n TableUtils.dataType.DATETIME,\n new DateTimeColumnFormatter(dh, dateTimeOptions),\n ],\n [\n TableUtils.dataType.DECIMAL,\n new DecimalColumnFormatter(dh, decimalFormatOptions),\n ],\n [\n TableUtils.dataType.INT,\n new IntegerColumnFormatter(dh, integerFormatOptions),\n ],\n [TableUtils.dataType.STRING, new StringColumnFormatter()],\n ]);\n\n // Formats indexed by data type and column name\n this.columnFormatMap = Formatter.makeColumnFormatMap(columnFormattingRules);\n this.truncateNumbersWithPound = truncateNumbersWithPound;\n }\n\n defaultColumnFormatter: TableColumnFormatter;\n\n typeFormatterMap: Map<DataType, TableColumnFormatter>;\n\n columnFormatMap: Map<DataType, Map<string, TableColumnFormat>>;\n\n truncateNumbersWithPound: boolean;\n\n /**\n * Gets columnFormatMap indexed by name for a given column type, creates new Map entry if necessary\n * @param columnType column type\n * @param createIfNecessary create new entry if true\n * @returns Map of format strings indexed by column name or undefined if it doesn't exist\n */\n getColumnFormatMapForType(\n columnType: string,\n createIfNecessary = false\n ): Map<string, TableColumnFormat> | undefined {\n const dataType = TableUtils.getNormalizedType(columnType);\n if (dataType === null) {\n return undefined;\n }\n\n if (createIfNecessary && !this.columnFormatMap.has(dataType)) {\n this.columnFormatMap.set(dataType, new Map());\n }\n return this.columnFormatMap.get(dataType);\n }\n\n /**\n * Gets a column format object for a given column type and name\n * @param columnType column type\n * @param columnName column name\n * @returns format object or null for Default\n */\n getColumnFormat(\n columnType: string,\n columnName: ColumnName\n ): TableColumnFormat | null {\n const columnFormatMap = this.getColumnFormatMapForType(columnType);\n return columnFormatMap?.get(columnName) ?? null;\n }\n\n getColumnTypeFormatter(columnType: string): TableColumnFormatter {\n const dataType = TableUtils.getNormalizedType(columnType);\n let columnTypeFormatter = this.defaultColumnFormatter;\n if (dataType) {\n columnTypeFormatter =\n this.typeFormatterMap.get(dataType) ?? columnTypeFormatter;\n }\n return columnTypeFormatter;\n }\n\n /**\n * Gets formatted string for a given value, column type and name\n * @param value Value to format\n * @param columnType Column type used to determine the formatting settings\n * @param columnName Column name used to determine the formatting settings\n * @param formatOverride Format object passed to the formatter in place of the format defined in columnFormatMap\n */\n getFormattedString(\n value: unknown,\n columnType: string,\n columnName = '',\n formatOverride?: Partial<TableColumnFormat>\n ): string {\n if (value == null) {\n return '';\n }\n\n const formatter = this.getColumnTypeFormatter(columnType);\n const format =\n formatOverride || this.getColumnFormat(columnType, columnName);\n\n return formatter.format(value, format ?? undefined);\n }\n\n /**\n * Gets the timeZone name\n * @returns The time zone name E.g. America/New_York\n */\n get timeZone(): string {\n const formatter = this.typeFormatterMap.get(\n TableUtils.dataType.DATETIME\n ) as DateTimeColumnFormatter;\n return formatter?.dhTimeZone?.id;\n }\n}\n\nexport default Formatter;\n"],"mappings":"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"}
@@ -3,7 +3,7 @@ import Formatter from './Formatter';
3
3
  import { DateTimeColumnFormatter } from './formatters';
4
4
  import { ColumnFormatSettings, DateTimeFormatSettings } from './Settings';
5
5
  export declare function getColumnFormats(settings?: ColumnFormatSettings): FormattingRule[] | undefined;
6
- export declare function getDateTimeFormatterOptions(settings?: DateTimeFormatSettings | null): ConstructorParameters<typeof DateTimeColumnFormatter>[0];
6
+ export declare function getDateTimeFormatterOptions(settings?: DateTimeFormatSettings | null): ConstructorParameters<typeof DateTimeColumnFormatter>[1];
7
7
  /**
8
8
  * Check if the formatter has a custom format defined for the column name and type
9
9
  * @param formatter Formatter to check
@@ -1 +1 @@
1
- {"version":3,"file":"FormatterUtils.js","names":["TableColumnFormatter","getColumnFormats","settings","formatter","undefined","getDateTimeFormatterOptions","timeZone","defaultDateTimeFormatString","defaultDateTimeFormat","showTimeZone","showTSeparator","isCustomColumnFormatDefined","columnName","columnType","columnFormat","getColumnFormat","type","TYPE_CONTEXT_PRESET","TYPE_CONTEXT_CUSTOM"],"sources":["../src/FormatterUtils.ts"],"sourcesContent":["import type { FormattingRule } from './Formatter';\nimport Formatter from './Formatter';\nimport { DateTimeColumnFormatter, TableColumnFormatter } from './formatters';\nimport { ColumnFormatSettings, DateTimeFormatSettings } from './Settings';\n\nexport function getColumnFormats(\n settings?: ColumnFormatSettings\n): FormattingRule[] | undefined {\n if (settings && settings.formatter) {\n const { formatter } = settings;\n return formatter;\n }\n return undefined;\n}\n\nexport function getDateTimeFormatterOptions(\n settings?: DateTimeFormatSettings | null\n): ConstructorParameters<typeof DateTimeColumnFormatter>[0] {\n return {\n timeZone: settings?.timeZone,\n defaultDateTimeFormatString: settings?.defaultDateTimeFormat,\n showTimeZone: settings?.showTimeZone,\n showTSeparator: settings?.showTSeparator,\n };\n}\n\n/**\n * Check if the formatter has a custom format defined for the column name and type\n * @param formatter Formatter to check\n * @param columnName Column name\n * @param columnType Column type\n * @returns True, if a custom format is defined\n */\nexport function isCustomColumnFormatDefined(\n formatter: Formatter,\n columnName: string,\n columnType: string\n): boolean {\n const columnFormat = formatter.getColumnFormat(columnType, columnName);\n return (\n columnFormat != null &&\n (columnFormat.type === TableColumnFormatter.TYPE_CONTEXT_PRESET ||\n columnFormat.type === TableColumnFormatter.TYPE_CONTEXT_CUSTOM)\n );\n}\n\nexport default {\n getColumnFormats,\n getDateTimeFormatterOptions,\n isCustomColumnFormatDefined,\n};\n"],"mappings":"SAEkCA,oBAAoB;AAGtD,OAAO,SAASC,gBAAgB,CAC9BC,QAA+B,EACD;EAC9B,IAAIA,QAAQ,IAAIA,QAAQ,CAACC,SAAS,EAAE;IAClC,IAAM;MAAEA;IAAU,CAAC,GAAGD,QAAQ;IAC9B,OAAOC,SAAS;EAClB;EACA,OAAOC,SAAS;AAClB;AAEA,OAAO,SAASC,2BAA2B,CACzCH,QAAwC,EACkB;EAC1D,OAAO;IACLI,QAAQ,EAAEJ,QAAQ,aAARA,QAAQ,uBAARA,QAAQ,CAAEI,QAAQ;IAC5BC,2BAA2B,EAAEL,QAAQ,aAARA,QAAQ,uBAARA,QAAQ,CAAEM,qBAAqB;IAC5DC,YAAY,EAAEP,QAAQ,aAARA,QAAQ,uBAARA,QAAQ,CAAEO,YAAY;IACpCC,cAAc,EAAER,QAAQ,aAARA,QAAQ,uBAARA,QAAQ,CAAEQ;EAC5B,CAAC;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,2BAA2B,CACzCR,SAAoB,EACpBS,UAAkB,EAClBC,UAAkB,EACT;EACT,IAAMC,YAAY,GAAGX,SAAS,CAACY,eAAe,CAACF,UAAU,EAAED,UAAU,CAAC;EACtE,OACEE,YAAY,IAAI,IAAI,KACnBA,YAAY,CAACE,IAAI,KAAKhB,oBAAoB,CAACiB,mBAAmB,IAC7DH,YAAY,CAACE,IAAI,KAAKhB,oBAAoB,CAACkB,mBAAmB,CAAC;AAErE;AAEA,eAAe;EACbjB,gBAAgB;EAChBI,2BAA2B;EAC3BM;AACF,CAAC"}
1
+ {"version":3,"file":"FormatterUtils.js","names":["TableColumnFormatter","getColumnFormats","settings","formatter","undefined","getDateTimeFormatterOptions","timeZone","defaultDateTimeFormatString","defaultDateTimeFormat","showTimeZone","showTSeparator","isCustomColumnFormatDefined","columnName","columnType","columnFormat","getColumnFormat","type","TYPE_CONTEXT_PRESET","TYPE_CONTEXT_CUSTOM"],"sources":["../src/FormatterUtils.ts"],"sourcesContent":["import type { FormattingRule } from './Formatter';\nimport Formatter from './Formatter';\nimport { DateTimeColumnFormatter, TableColumnFormatter } from './formatters';\nimport { ColumnFormatSettings, DateTimeFormatSettings } from './Settings';\n\nexport function getColumnFormats(\n settings?: ColumnFormatSettings\n): FormattingRule[] | undefined {\n if (settings && settings.formatter) {\n const { formatter } = settings;\n return formatter;\n }\n return undefined;\n}\n\nexport function getDateTimeFormatterOptions(\n settings?: DateTimeFormatSettings | null\n): ConstructorParameters<typeof DateTimeColumnFormatter>[1] {\n return {\n timeZone: settings?.timeZone,\n defaultDateTimeFormatString: settings?.defaultDateTimeFormat,\n showTimeZone: settings?.showTimeZone,\n showTSeparator: settings?.showTSeparator,\n };\n}\n\n/**\n * Check if the formatter has a custom format defined for the column name and type\n * @param formatter Formatter to check\n * @param columnName Column name\n * @param columnType Column type\n * @returns True, if a custom format is defined\n */\nexport function isCustomColumnFormatDefined(\n formatter: Formatter,\n columnName: string,\n columnType: string\n): boolean {\n const columnFormat = formatter.getColumnFormat(columnType, columnName);\n return (\n columnFormat != null &&\n (columnFormat.type === TableColumnFormatter.TYPE_CONTEXT_PRESET ||\n columnFormat.type === TableColumnFormatter.TYPE_CONTEXT_CUSTOM)\n );\n}\n\nexport default {\n getColumnFormats,\n getDateTimeFormatterOptions,\n isCustomColumnFormatDefined,\n};\n"],"mappings":"SAEkCA,oBAAoB;AAGtD,OAAO,SAASC,gBAAgB,CAC9BC,QAA+B,EACD;EAC9B,IAAIA,QAAQ,IAAIA,QAAQ,CAACC,SAAS,EAAE;IAClC,IAAM;MAAEA;IAAU,CAAC,GAAGD,QAAQ;IAC9B,OAAOC,SAAS;EAClB;EACA,OAAOC,SAAS;AAClB;AAEA,OAAO,SAASC,2BAA2B,CACzCH,QAAwC,EACkB;EAC1D,OAAO;IACLI,QAAQ,EAAEJ,QAAQ,aAARA,QAAQ,uBAARA,QAAQ,CAAEI,QAAQ;IAC5BC,2BAA2B,EAAEL,QAAQ,aAARA,QAAQ,uBAARA,QAAQ,CAAEM,qBAAqB;IAC5DC,YAAY,EAAEP,QAAQ,aAARA,QAAQ,uBAARA,QAAQ,CAAEO,YAAY;IACpCC,cAAc,EAAER,QAAQ,aAARA,QAAQ,uBAARA,QAAQ,CAAEQ;EAC5B,CAAC;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,2BAA2B,CACzCR,SAAoB,EACpBS,UAAkB,EAClBC,UAAkB,EACT;EACT,IAAMC,YAAY,GAAGX,SAAS,CAACY,eAAe,CAACF,UAAU,EAAED,UAAU,CAAC;EACtE,OACEE,YAAY,IAAI,IAAI,KACnBA,YAAY,CAACE,IAAI,KAAKhB,oBAAoB,CAACiB,mBAAmB,IAC7DH,YAAY,CAACE,IAAI,KAAKhB,oBAAoB,CAACkB,mBAAmB,CAAC;AAErE;AAEA,eAAe;EACbjB,gBAAgB;EAChBI,2BAA2B;EAC3BM;AACF,CAAC"}
@@ -1,4 +1,4 @@
1
- import type { ConnectOptions, CoreClient, IdeConnection, IdeSession } from '@deephaven/jsapi-types';
1
+ import type { ConnectOptions, CoreClient, dh as DhType, IdeConnection, IdeSession } from '@deephaven/jsapi-types';
2
2
  export interface SessionConfig {
3
3
  type: string;
4
4
  id: string;
@@ -16,13 +16,13 @@ export interface SessionWrapper {
16
16
  /**
17
17
  * @returns New connection to the server
18
18
  */
19
- export declare function createConnection(websocketUrl: string): IdeConnection;
19
+ export declare function createConnection(dh: DhType, websocketUrl: string): IdeConnection;
20
20
  /**
21
21
  * Create a new session using the default URL
22
22
  * @returns A session and config that is ready to use
23
23
  */
24
24
  export declare function createSessionWrapper(connection: IdeConnection, details: SessionDetails): Promise<SessionWrapper>;
25
- export declare function createCoreClient(websocketUrl: string, options?: ConnectOptions): CoreClient;
25
+ export declare function createCoreClient(dh: DhType, websocketUrl: string, options?: ConnectOptions): CoreClient;
26
26
  export declare function getSessionDetails(): Promise<SessionDetails>;
27
27
  export declare function loadSessionWrapper(connection: IdeConnection, sessionDetails: SessionDetails): Promise<SessionWrapper | undefined>;
28
28
  //# sourceMappingURL=SessionUtils.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"SessionUtils.d.ts","sourceRoot":"","sources":["../src/SessionUtils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,cAAc,EACd,UAAU,EACV,aAAa,EACb,UAAU,EACX,MAAM,wBAAwB,CAAC;AAWhC,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,MAAM,WAAW,cAAc;IAC7B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,cAAc;IAC7B,OAAO,EAAE,UAAU,CAAC;IACpB,UAAU,EAAE,aAAa,CAAC;IAC1B,MAAM,EAAE,aAAa,CAAC;IACtB,OAAO,CAAC,EAAE,cAAc,CAAC;CAC1B;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,YAAY,EAAE,MAAM,GAAG,aAAa,CAIpE;AAED;;;GAGG;AACH,wBAAsB,oBAAoB,CACxC,UAAU,EAAE,aAAa,EACzB,OAAO,EAAE,cAAc,GACtB,OAAO,CAAC,cAAc,CAAC,CA2BzB;AAED,wBAAgB,gBAAgB,CAC9B,YAAY,EAAE,MAAM,EACpB,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAIZ;AAcD,wBAAsB,iBAAiB,IAAI,OAAO,CAAC,cAAc,CAAC,CAOjE;AAED,wBAAsB,kBAAkB,CACtC,UAAU,EAAE,aAAa,EACzB,cAAc,EAAE,cAAc,GAC7B,OAAO,CAAC,cAAc,GAAG,SAAS,CAAC,CAWrC"}
1
+ {"version":3,"file":"SessionUtils.d.ts","sourceRoot":"","sources":["../src/SessionUtils.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,cAAc,EACd,UAAU,EACV,EAAE,IAAI,MAAM,EACZ,aAAa,EACb,UAAU,EACX,MAAM,wBAAwB,CAAC;AAWhC,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,MAAM,WAAW,cAAc;IAC7B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,cAAc;IAC7B,OAAO,EAAE,UAAU,CAAC;IACpB,UAAU,EAAE,aAAa,CAAC;IAC1B,MAAM,EAAE,aAAa,CAAC;IACtB,OAAO,CAAC,EAAE,cAAc,CAAC;CAC1B;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAC9B,EAAE,EAAE,MAAM,EACV,YAAY,EAAE,MAAM,GACnB,aAAa,CAIf;AAED;;;GAGG;AACH,wBAAsB,oBAAoB,CACxC,UAAU,EAAE,aAAa,EACzB,OAAO,EAAE,cAAc,GACtB,OAAO,CAAC,cAAc,CAAC,CA2BzB;AAED,wBAAgB,gBAAgB,CAC9B,EAAE,EAAE,MAAM,EACV,YAAY,EAAE,MAAM,EACpB,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAIZ;AAcD,wBAAsB,iBAAiB,IAAI,OAAO,CAAC,cAAc,CAAC,CAOjE;AAED,wBAAsB,kBAAkB,CACtC,UAAU,EAAE,aAAa,EACzB,cAAc,EAAE,cAAc,GAC7B,OAAO,CAAC,cAAc,GAAG,SAAS,CAAC,CAWrC"}
@@ -8,7 +8,7 @@ var log = Log.module('SessionUtils');
8
8
  /**
9
9
  * @returns New connection to the server
10
10
  */
11
- export function createConnection(websocketUrl) {
11
+ export function createConnection(dh, websocketUrl) {
12
12
  log.info("Starting connection to '".concat(websocketUrl, "'..."));
13
13
  return new dh.IdeConnection(websocketUrl);
14
14
  }
@@ -45,7 +45,7 @@ function _createSessionWrapper() {
45
45
  });
46
46
  return _createSessionWrapper.apply(this, arguments);
47
47
  }
48
- export function createCoreClient(websocketUrl, options) {
48
+ export function createCoreClient(dh, websocketUrl, options) {
49
49
  log.info('createCoreClient', websocketUrl);
50
50
  return new dh.CoreClient(websocketUrl, options);
51
51
  }
@@ -1 +1 @@
1
- {"version":3,"file":"SessionUtils.js","names":["requestParentResponse","SESSION_DETAILS_REQUEST","Log","shortid","NoConsolesError","isNoConsolesError","log","module","createConnection","websocketUrl","info","dh","IdeConnection","createSessionWrapper","connection","details","types","getConsoleTypes","length","type","session","startSession","config","id","generate","createCoreClient","options","CoreClient","isSessionDetails","obj","requestParentSessionDetails","response","Error","getSessionDetails","searchParams","URLSearchParams","window","location","search","get","loadSessionWrapper","sessionDetails","sessionWrapper","e"],"sources":["../src/SessionUtils.ts"],"sourcesContent":["import type {\n ConnectOptions,\n CoreClient,\n IdeConnection,\n IdeSession,\n} from '@deephaven/jsapi-types';\nimport {\n requestParentResponse,\n SESSION_DETAILS_REQUEST,\n} from '@deephaven/jsapi-utils';\nimport Log from '@deephaven/log';\nimport shortid from 'shortid';\nimport NoConsolesError, { isNoConsolesError } from './NoConsolesError';\n\nconst log = Log.module('SessionUtils');\n\nexport interface SessionConfig {\n type: string;\n id: string;\n}\n\nexport interface SessionDetails {\n workerName?: string;\n processInfoId?: string;\n}\n\nexport interface SessionWrapper {\n session: IdeSession;\n connection: IdeConnection;\n config: SessionConfig;\n details?: SessionDetails;\n}\n\n/**\n * @returns New connection to the server\n */\nexport function createConnection(websocketUrl: string): IdeConnection {\n log.info(`Starting connection to '${websocketUrl}'...`);\n\n return new dh.IdeConnection(websocketUrl);\n}\n\n/**\n * Create a new session using the default URL\n * @returns A session and config that is ready to use\n */\nexport async function createSessionWrapper(\n connection: IdeConnection,\n details: SessionDetails\n): Promise<SessionWrapper> {\n log.info('Getting console types...');\n\n const types = await connection.getConsoleTypes();\n\n if (types.length === 0) {\n throw new NoConsolesError('No console types available');\n }\n\n log.info('Available types:', types);\n\n const type = types[0];\n\n log.info('Starting session with type', type);\n\n const session = await connection.startSession(type);\n\n const config = { type, id: shortid.generate() };\n\n log.info('Console session established', config);\n\n return {\n session,\n config,\n connection,\n details,\n };\n}\n\nexport function createCoreClient(\n websocketUrl: string,\n options?: ConnectOptions\n): CoreClient {\n log.info('createCoreClient', websocketUrl);\n\n return new dh.CoreClient(websocketUrl, options);\n}\n\nfunction isSessionDetails(obj: unknown): obj is SessionDetails {\n return obj != null && typeof obj === 'object';\n}\n\nasync function requestParentSessionDetails(): Promise<SessionDetails> {\n const response = await requestParentResponse(SESSION_DETAILS_REQUEST);\n if (!isSessionDetails(response)) {\n throw new Error(`Unexpected session details response: ${response}`);\n }\n return response;\n}\n\nexport async function getSessionDetails(): Promise<SessionDetails> {\n const searchParams = new URLSearchParams(window.location.search);\n switch (searchParams.get('authProvider')) {\n case 'parent':\n return requestParentSessionDetails();\n }\n return {};\n}\n\nexport async function loadSessionWrapper(\n connection: IdeConnection,\n sessionDetails: SessionDetails\n): Promise<SessionWrapper | undefined> {\n let sessionWrapper: SessionWrapper | undefined;\n try {\n sessionWrapper = await createSessionWrapper(connection, sessionDetails);\n } catch (e) {\n // Consoles may be disabled on the server, but we should still be able to start up and open existing objects\n if (!isNoConsolesError(e)) {\n throw e;\n }\n }\n return sessionWrapper;\n}\n"],"mappings":"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"}
1
+ {"version":3,"file":"SessionUtils.js","names":["requestParentResponse","SESSION_DETAILS_REQUEST","Log","shortid","NoConsolesError","isNoConsolesError","log","module","createConnection","dh","websocketUrl","info","IdeConnection","createSessionWrapper","connection","details","types","getConsoleTypes","length","type","session","startSession","config","id","generate","createCoreClient","options","CoreClient","isSessionDetails","obj","requestParentSessionDetails","response","Error","getSessionDetails","searchParams","URLSearchParams","window","location","search","get","loadSessionWrapper","sessionDetails","sessionWrapper","e"],"sources":["../src/SessionUtils.ts"],"sourcesContent":["import type {\n ConnectOptions,\n CoreClient,\n dh as DhType,\n IdeConnection,\n IdeSession,\n} from '@deephaven/jsapi-types';\nimport {\n requestParentResponse,\n SESSION_DETAILS_REQUEST,\n} from '@deephaven/jsapi-utils';\nimport Log from '@deephaven/log';\nimport shortid from 'shortid';\nimport NoConsolesError, { isNoConsolesError } from './NoConsolesError';\n\nconst log = Log.module('SessionUtils');\n\nexport interface SessionConfig {\n type: string;\n id: string;\n}\n\nexport interface SessionDetails {\n workerName?: string;\n processInfoId?: string;\n}\n\nexport interface SessionWrapper {\n session: IdeSession;\n connection: IdeConnection;\n config: SessionConfig;\n details?: SessionDetails;\n}\n\n/**\n * @returns New connection to the server\n */\nexport function createConnection(\n dh: DhType,\n websocketUrl: string\n): IdeConnection {\n log.info(`Starting connection to '${websocketUrl}'...`);\n\n return new dh.IdeConnection(websocketUrl);\n}\n\n/**\n * Create a new session using the default URL\n * @returns A session and config that is ready to use\n */\nexport async function createSessionWrapper(\n connection: IdeConnection,\n details: SessionDetails\n): Promise<SessionWrapper> {\n log.info('Getting console types...');\n\n const types = await connection.getConsoleTypes();\n\n if (types.length === 0) {\n throw new NoConsolesError('No console types available');\n }\n\n log.info('Available types:', types);\n\n const type = types[0];\n\n log.info('Starting session with type', type);\n\n const session = await connection.startSession(type);\n\n const config = { type, id: shortid.generate() };\n\n log.info('Console session established', config);\n\n return {\n session,\n config,\n connection,\n details,\n };\n}\n\nexport function createCoreClient(\n dh: DhType,\n websocketUrl: string,\n options?: ConnectOptions\n): CoreClient {\n log.info('createCoreClient', websocketUrl);\n\n return new dh.CoreClient(websocketUrl, options);\n}\n\nfunction isSessionDetails(obj: unknown): obj is SessionDetails {\n return obj != null && typeof obj === 'object';\n}\n\nasync function requestParentSessionDetails(): Promise<SessionDetails> {\n const response = await requestParentResponse(SESSION_DETAILS_REQUEST);\n if (!isSessionDetails(response)) {\n throw new Error(`Unexpected session details response: ${response}`);\n }\n return response;\n}\n\nexport async function getSessionDetails(): Promise<SessionDetails> {\n const searchParams = new URLSearchParams(window.location.search);\n switch (searchParams.get('authProvider')) {\n case 'parent':\n return requestParentSessionDetails();\n }\n return {};\n}\n\nexport async function loadSessionWrapper(\n connection: IdeConnection,\n sessionDetails: SessionDetails\n): Promise<SessionWrapper | undefined> {\n let sessionWrapper: SessionWrapper | undefined;\n try {\n sessionWrapper = await createSessionWrapper(connection, sessionDetails);\n } catch (e) {\n // Consoles may be disabled on the server, but we should still be able to start up and open existing objects\n if (!isNoConsolesError(e)) {\n throw e;\n }\n }\n return sessionWrapper;\n}\n"],"mappings":";;AAOA,SACEA,qBAAqB,EACrBC,uBAAuB,QAClB,wBAAwB;AAC/B,OAAOC,GAAG,MAAM,gBAAgB;AAChC,OAAOC,OAAO,MAAM,SAAS;AAAC,OACvBC,eAAe,IAAIC,iBAAiB;AAE3C,IAAMC,GAAG,GAAGJ,GAAG,CAACK,MAAM,CAAC,cAAc,CAAC;AAmBtC;AACA;AACA;AACA,OAAO,SAASC,gBAAgB,CAC9BC,EAAU,EACVC,YAAoB,EACL;EACfJ,GAAG,CAACK,IAAI,mCAA4BD,YAAY,UAAO;EAEvD,OAAO,IAAID,EAAE,CAACG,aAAa,CAACF,YAAY,CAAC;AAC3C;;AAEA;AACA;AACA;AACA;AACA,gBAAsBG,oBAAoB;EAAA;AAAA;AA8BzC;EAAA,0CA9BM,WACLC,UAAyB,EACzBC,OAAuB,EACE;IACzBT,GAAG,CAACK,IAAI,CAAC,0BAA0B,CAAC;IAEpC,IAAMK,KAAK,SAASF,UAAU,CAACG,eAAe,EAAE;IAEhD,IAAID,KAAK,CAACE,MAAM,KAAK,CAAC,EAAE;MACtB,MAAM,IAAId,eAAe,CAAC,4BAA4B,CAAC;IACzD;IAEAE,GAAG,CAACK,IAAI,CAAC,kBAAkB,EAAEK,KAAK,CAAC;IAEnC,IAAMG,IAAI,GAAGH,KAAK,CAAC,CAAC,CAAC;IAErBV,GAAG,CAACK,IAAI,CAAC,4BAA4B,EAAEQ,IAAI,CAAC;IAE5C,IAAMC,OAAO,SAASN,UAAU,CAACO,YAAY,CAACF,IAAI,CAAC;IAEnD,IAAMG,MAAM,GAAG;MAAEH,IAAI;MAAEI,EAAE,EAAEpB,OAAO,CAACqB,QAAQ;IAAG,CAAC;IAE/ClB,GAAG,CAACK,IAAI,CAAC,6BAA6B,EAAEW,MAAM,CAAC;IAE/C,OAAO;MACLF,OAAO;MACPE,MAAM;MACNR,UAAU;MACVC;IACF,CAAC;EACH,CAAC;EAAA;AAAA;AAED,OAAO,SAASU,gBAAgB,CAC9BhB,EAAU,EACVC,YAAoB,EACpBgB,OAAwB,EACZ;EACZpB,GAAG,CAACK,IAAI,CAAC,kBAAkB,EAAED,YAAY,CAAC;EAE1C,OAAO,IAAID,EAAE,CAACkB,UAAU,CAACjB,YAAY,EAAEgB,OAAO,CAAC;AACjD;AAEA,SAASE,gBAAgB,CAACC,GAAY,EAAyB;EAC7D,OAAOA,GAAG,IAAI,IAAI,IAAI,OAAOA,GAAG,KAAK,QAAQ;AAC/C;AAAC,SAEcC,2BAA2B;EAAA;AAAA;AAAA;EAAA,iDAA1C,aAAsE;IACpE,IAAMC,QAAQ,SAAS/B,qBAAqB,CAACC,uBAAuB,CAAC;IACrE,IAAI,CAAC2B,gBAAgB,CAACG,QAAQ,CAAC,EAAE;MAC/B,MAAM,IAAIC,KAAK,gDAAyCD,QAAQ,EAAG;IACrE;IACA,OAAOA,QAAQ;EACjB,CAAC;EAAA;AAAA;AAED,gBAAsBE,iBAAiB;EAAA;AAAA;AAOtC;EAAA,uCAPM,aAA4D;IACjE,IAAMC,YAAY,GAAG,IAAIC,eAAe,CAACC,MAAM,CAACC,QAAQ,CAACC,MAAM,CAAC;IAChE,QAAQJ,YAAY,CAACK,GAAG,CAAC,cAAc,CAAC;MACtC,KAAK,QAAQ;QACX,OAAOT,2BAA2B,EAAE;IAAC;IAEzC,OAAO,CAAC,CAAC;EACX,CAAC;EAAA;AAAA;AAED,gBAAsBU,kBAAkB;EAAA;AAAA;AAcvC;EAAA,wCAdM,WACL1B,UAAyB,EACzB2B,cAA8B,EACO;IACrC,IAAIC,cAA0C;IAC9C,IAAI;MACFA,cAAc,SAAS7B,oBAAoB,CAACC,UAAU,EAAE2B,cAAc,CAAC;IACzE,CAAC,CAAC,OAAOE,CAAC,EAAE;MACV;MACA,IAAI,CAACtC,iBAAiB,CAACsC,CAAC,CAAC,EAAE;QACzB,MAAMA,CAAC;MACT;IACF;IACA,OAAOD,cAAc;EACvB,CAAC;EAAA;AAAA"}
@@ -66,45 +66,6 @@ export declare class TableUtils {
66
66
  * event
67
67
  */
68
68
  static executeAndWaitForEvent: <T extends Table | TreeTable>(exec: (maybeTable: T | null | undefined) => void, table: T | null | undefined, eventType: string, timeout?: number) => Promise<T | null>;
69
- /**
70
- * Apply custom columns to a given table. Return a Promise that resolves with
71
- * the table once the dh.Table.EVENT_CUSTOMCOLUMNSCHANGED event has fired.
72
- * @param table The table to apply custom columns to.
73
- * @param columns The list of column expressions or definitions to apply.
74
- * @returns A Promise that will be resolved with the given table after the
75
- * columns are applied.
76
- */
77
- static applyCustomColumns(table: Table | null | undefined, columns: (string | CustomColumn)[], timeout?: number): Promise<Table | null>;
78
- /**
79
- * Apply filters to a given table.
80
- * @param table Table to apply filters to
81
- * @param filters Filters to apply
82
- * @param timeout Timeout before cancelling the promise that waits for the next
83
- * dh.Table.EVENT_FILTERCHANGED event
84
- * @returns a Promise to the Table that resolves after the next
85
- * dh.Table.EVENT_FILTERCHANGED event
86
- */
87
- static applyFilter<T extends Table | TreeTable>(table: T | null | undefined, filters: FilterCondition[], timeout?: number): Promise<T | null>;
88
- /**
89
- * Apply a filter to a table that won't match anything.
90
- * @table The table to apply the filter to
91
- * @columnName The name of the column to apploy the filter to
92
- * @param timeout Timeout before cancelling the promise that waits for the next
93
- * dh.Table.EVENT_FILTERCHANGED event
94
- * @returns a Promise to the Table that resolves after the next
95
- * dh.Table.EVENT_FILTERCHANGED event
96
- */
97
- static applyNeverFilter<T extends Table | TreeTable>(table: T | null | undefined, columnName: string, timeout?: number): Promise<T | null>;
98
- /**
99
- * Apply sorts to a given Table.
100
- * @param table The table to apply sorts to
101
- * @param sorts The sorts to apply
102
- * @param timeout Timeout before cancelling the promise that waits for the next
103
- * dh.Table.EVENT_SORTCHANGED event
104
- * @returns a Promise to the Table that resolves after the next
105
- * dh.Table.EVENT_SORTCHANGED event
106
- */
107
- static applySort<T extends Table | TreeTable>(table: T | null | undefined, sorts: Sort[], timeout?: number): Promise<T | null>;
108
69
  static getSortIndex(sort: readonly Sort[], columnName: ColumnName): number | null;
109
70
  /**
110
71
  * @param tableSort The sorts from the table to get the sort from
@@ -238,11 +199,50 @@ export declare class TableUtils {
238
199
  makeQuickCharFilter(column: Column, text: string): FilterCondition | null;
239
200
  makeAdvancedFilter(column: Column, options: AdvancedFilterOptions, timeZone: string): FilterCondition | null;
240
201
  makeAdvancedValueFilter(column: Column, operation: FilterTypeValue, value: string, timeZone: string): FilterCondition | null;
202
+ /**
203
+ * Apply a filter to a table that won't match anything.
204
+ * @table The table to apply the filter to
205
+ * @columnName The name of the column to apploy the filter to
206
+ * @param timeout Timeout before cancelling the promise that waits for the next
207
+ * dh.Table.EVENT_FILTERCHANGED event
208
+ * @returns a Promise to the Table that resolves after the next
209
+ * dh.Table.EVENT_FILTERCHANGED event
210
+ */
211
+ applyNeverFilter<T extends Table | TreeTable>(table: T | null | undefined, columnName: string, timeout?: number): Promise<T | null>;
212
+ /**
213
+ * Apply custom columns to a given table. Return a Promise that resolves with
214
+ * the table once the dh.Table.EVENT_CUSTOMCOLUMNSCHANGED event has fired.
215
+ * @param table The table to apply custom columns to.
216
+ * @param columns The list of column expressions or definitions to apply.
217
+ * @returns A Promise that will be resolved with the given table after the
218
+ * columns are applied.
219
+ */
220
+ applyCustomColumns(table: Table | null | undefined, columns: (string | CustomColumn)[], timeout?: number): Promise<Table | null>;
221
+ /**
222
+ * Apply filters to a given table.
223
+ * @param table Table to apply filters to
224
+ * @param filters Filters to apply
225
+ * @param timeout Timeout before cancelling the promise that waits for the next
226
+ * dh.Table.EVENT_FILTERCHANGED event
227
+ * @returns a Promise to the Table that resolves after the next
228
+ * dh.Table.EVENT_FILTERCHANGED event
229
+ */
230
+ applyFilter<T extends Table | TreeTable>(table: T | null | undefined, filters: FilterCondition[], timeout?: number): Promise<T | null>;
231
+ /**
232
+ * Apply sorts to a given Table.
233
+ * @param table The table to apply sorts to
234
+ * @param sorts The sorts to apply
235
+ * @param timeout Timeout before cancelling the promise that waits for the next
236
+ * dh.Table.EVENT_SORTCHANGED event
237
+ * @returns a Promise to the Table that resolves after the next
238
+ * dh.Table.EVENT_SORTCHANGED event
239
+ */
240
+ applySort<T extends Table | TreeTable>(table: T | null | undefined, sorts: Sort[], timeout?: number): Promise<T | null>;
241
241
  /**
242
242
  * Create a filter condition that results in zero results for a given column
243
243
  * @param column
244
244
  */
245
- static makeNeverFilter(column: Column): FilterCondition;
245
+ makeNeverFilter(column: Column): FilterCondition;
246
246
  /**
247
247
  * @param columnType The column type to make the filter value from.
248
248
  * @param value The value to make the filter value from.
@@ -1 +1 @@
1
- {"version":3,"file":"TableUtils.d.ts","sourceRoot":"","sources":["../src/TableUtils.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"TableUtils.d.ts","sourceRoot":"","sources":["../src/TableUtils.ts"],"names":[],"mappings":"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"}
@@ -25,78 +25,6 @@ export class TableUtils {
25
25
  * event
26
26
  */
27
27
 
28
- /**
29
- * Apply custom columns to a given table. Return a Promise that resolves with
30
- * the table once the dh.Table.EVENT_CUSTOMCOLUMNSCHANGED event has fired.
31
- * @param table The table to apply custom columns to.
32
- * @param columns The list of column expressions or definitions to apply.
33
- * @returns A Promise that will be resolved with the given table after the
34
- * columns are applied.
35
- */
36
- static applyCustomColumns(table, columns) {
37
- var _arguments = arguments;
38
- return _asyncToGenerator(function* () {
39
- var timeout = _arguments.length > 2 && _arguments[2] !== undefined ? _arguments[2] : TableUtils.APPLY_TABLE_CHANGE_TIMEOUT_MS;
40
- return TableUtils.executeAndWaitForEvent(t => t === null || t === void 0 ? void 0 : t.applyCustomColumns(columns), table, dh.Table.EVENT_CUSTOMCOLUMNSCHANGED, timeout);
41
- })();
42
- }
43
-
44
- /**
45
- * Apply filters to a given table.
46
- * @param table Table to apply filters to
47
- * @param filters Filters to apply
48
- * @param timeout Timeout before cancelling the promise that waits for the next
49
- * dh.Table.EVENT_FILTERCHANGED event
50
- * @returns a Promise to the Table that resolves after the next
51
- * dh.Table.EVENT_FILTERCHANGED event
52
- */
53
- static applyFilter(table, filters) {
54
- var _arguments2 = arguments;
55
- return _asyncToGenerator(function* () {
56
- var timeout = _arguments2.length > 2 && _arguments2[2] !== undefined ? _arguments2[2] : TableUtils.APPLY_TABLE_CHANGE_TIMEOUT_MS;
57
- return TableUtils.executeAndWaitForEvent(t => t === null || t === void 0 ? void 0 : t.applyFilter(filters), table, dh.Table.EVENT_FILTERCHANGED, timeout);
58
- })();
59
- }
60
-
61
- /**
62
- * Apply a filter to a table that won't match anything.
63
- * @table The table to apply the filter to
64
- * @columnName The name of the column to apploy the filter to
65
- * @param timeout Timeout before cancelling the promise that waits for the next
66
- * dh.Table.EVENT_FILTERCHANGED event
67
- * @returns a Promise to the Table that resolves after the next
68
- * dh.Table.EVENT_FILTERCHANGED event
69
- */
70
- static applyNeverFilter(table, columnName) {
71
- var _arguments3 = arguments;
72
- return _asyncToGenerator(function* () {
73
- var timeout = _arguments3.length > 2 && _arguments3[2] !== undefined ? _arguments3[2] : TableUtils.APPLY_TABLE_CHANGE_TIMEOUT_MS;
74
- if (table == null) {
75
- return null;
76
- }
77
- var column = table.findColumn(columnName);
78
- var filters = [TableUtils.makeNeverFilter(column)];
79
- yield TableUtils.applyFilter(table, filters, timeout);
80
- return table;
81
- })();
82
- }
83
-
84
- /**
85
- * Apply sorts to a given Table.
86
- * @param table The table to apply sorts to
87
- * @param sorts The sorts to apply
88
- * @param timeout Timeout before cancelling the promise that waits for the next
89
- * dh.Table.EVENT_SORTCHANGED event
90
- * @returns a Promise to the Table that resolves after the next
91
- * dh.Table.EVENT_SORTCHANGED event
92
- */
93
- static applySort(table, sorts) {
94
- var _arguments4 = arguments;
95
- return _asyncToGenerator(function* () {
96
- var timeout = _arguments4.length > 2 && _arguments4[2] !== undefined ? _arguments4[2] : TableUtils.APPLY_TABLE_CHANGE_TIMEOUT_MS;
97
- return TableUtils.executeAndWaitForEvent(t => t === null || t === void 0 ? void 0 : t.applySort(sorts), table, dh.Table.EVENT_SORTCHANGED, timeout);
98
- })();
99
- }
100
28
  static getSortIndex(sort, columnName) {
101
29
  for (var i = 0; i < sort.length; i += 1) {
102
30
  var _s$column;
@@ -1029,6 +957,9 @@ export class TableUtils {
1029
957
  return filter;
1030
958
  }
1031
959
  makeAdvancedValueFilter(column, operation, value, timeZone) {
960
+ var {
961
+ dh
962
+ } = this;
1032
963
  if (TableUtils.isDateType(column.type)) {
1033
964
  return this.makeQuickDateFilterWithOperation(column, value, operation, timeZone);
1034
965
  }
@@ -1078,11 +1009,100 @@ export class TableUtils {
1078
1009
  }
1079
1010
  }
1080
1011
 
1012
+ /**
1013
+ * Apply a filter to a table that won't match anything.
1014
+ * @table The table to apply the filter to
1015
+ * @columnName The name of the column to apploy the filter to
1016
+ * @param timeout Timeout before cancelling the promise that waits for the next
1017
+ * dh.Table.EVENT_FILTERCHANGED event
1018
+ * @returns a Promise to the Table that resolves after the next
1019
+ * dh.Table.EVENT_FILTERCHANGED event
1020
+ */
1021
+ applyNeverFilter(table, columnName) {
1022
+ var _arguments = arguments,
1023
+ _this = this;
1024
+ return _asyncToGenerator(function* () {
1025
+ var timeout = _arguments.length > 2 && _arguments[2] !== undefined ? _arguments[2] : TableUtils.APPLY_TABLE_CHANGE_TIMEOUT_MS;
1026
+ if (table == null) {
1027
+ return null;
1028
+ }
1029
+ var column = table.findColumn(columnName);
1030
+ var filters = [_this.makeNeverFilter(column)];
1031
+ yield _this.applyFilter(table, filters, timeout);
1032
+ return table;
1033
+ })();
1034
+ }
1035
+
1036
+ /**
1037
+ * Apply custom columns to a given table. Return a Promise that resolves with
1038
+ * the table once the dh.Table.EVENT_CUSTOMCOLUMNSCHANGED event has fired.
1039
+ * @param table The table to apply custom columns to.
1040
+ * @param columns The list of column expressions or definitions to apply.
1041
+ * @returns A Promise that will be resolved with the given table after the
1042
+ * columns are applied.
1043
+ */
1044
+ applyCustomColumns(table, columns) {
1045
+ var _arguments2 = arguments,
1046
+ _this2 = this;
1047
+ return _asyncToGenerator(function* () {
1048
+ var timeout = _arguments2.length > 2 && _arguments2[2] !== undefined ? _arguments2[2] : TableUtils.APPLY_TABLE_CHANGE_TIMEOUT_MS;
1049
+ var {
1050
+ dh
1051
+ } = _this2;
1052
+ return TableUtils.executeAndWaitForEvent(t => t === null || t === void 0 ? void 0 : t.applyCustomColumns(columns), table, dh.Table.EVENT_CUSTOMCOLUMNSCHANGED, timeout);
1053
+ })();
1054
+ }
1055
+
1056
+ /**
1057
+ * Apply filters to a given table.
1058
+ * @param table Table to apply filters to
1059
+ * @param filters Filters to apply
1060
+ * @param timeout Timeout before cancelling the promise that waits for the next
1061
+ * dh.Table.EVENT_FILTERCHANGED event
1062
+ * @returns a Promise to the Table that resolves after the next
1063
+ * dh.Table.EVENT_FILTERCHANGED event
1064
+ */
1065
+ applyFilter(table, filters) {
1066
+ var _arguments3 = arguments,
1067
+ _this3 = this;
1068
+ return _asyncToGenerator(function* () {
1069
+ var timeout = _arguments3.length > 2 && _arguments3[2] !== undefined ? _arguments3[2] : TableUtils.APPLY_TABLE_CHANGE_TIMEOUT_MS;
1070
+ var {
1071
+ dh
1072
+ } = _this3;
1073
+ return TableUtils.executeAndWaitForEvent(t => t === null || t === void 0 ? void 0 : t.applyFilter(filters), table, dh.Table.EVENT_FILTERCHANGED, timeout);
1074
+ })();
1075
+ }
1076
+
1077
+ /**
1078
+ * Apply sorts to a given Table.
1079
+ * @param table The table to apply sorts to
1080
+ * @param sorts The sorts to apply
1081
+ * @param timeout Timeout before cancelling the promise that waits for the next
1082
+ * dh.Table.EVENT_SORTCHANGED event
1083
+ * @returns a Promise to the Table that resolves after the next
1084
+ * dh.Table.EVENT_SORTCHANGED event
1085
+ */
1086
+ applySort(table, sorts) {
1087
+ var _arguments4 = arguments,
1088
+ _this4 = this;
1089
+ return _asyncToGenerator(function* () {
1090
+ var timeout = _arguments4.length > 2 && _arguments4[2] !== undefined ? _arguments4[2] : TableUtils.APPLY_TABLE_CHANGE_TIMEOUT_MS;
1091
+ var {
1092
+ dh
1093
+ } = _this4;
1094
+ return TableUtils.executeAndWaitForEvent(t => t === null || t === void 0 ? void 0 : t.applySort(sorts), table, dh.Table.EVENT_SORTCHANGED, timeout);
1095
+ })();
1096
+ }
1097
+
1081
1098
  /**
1082
1099
  * Create a filter condition that results in zero results for a given column
1083
1100
  * @param column
1084
1101
  */
1085
- static makeNeverFilter(column) {
1102
+ makeNeverFilter(column) {
1103
+ var {
1104
+ dh
1105
+ } = this;
1086
1106
  var value = null;
1087
1107
  if (TableUtils.isTextType(column.type)) {
1088
1108
  // Use 'a' so that it can work for String or Character types
@@ -1193,7 +1213,7 @@ export class TableUtils {
1193
1213
  // KLUDGE: Return a conflicting filter to show no results.
1194
1214
  // Could recognize this situation at a higher or lower level and pause updates on the
1195
1215
  // table, but this situation should be rare and that wouldn't be much gains for some added complexity
1196
- return TableUtils.makeNeverFilter(column);
1216
+ return this.makeNeverFilter(column);
1197
1217
  }
1198
1218
  var values = [];
1199
1219
  var isNullSelected = false;