-
Notifications
You must be signed in to change notification settings - Fork 972
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tyler Ohlsen <ohltyler@amazon.com>
- Loading branch information
Showing
6 changed files
with
132 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
src/plugins/expressions/common/expression_types/specs/vis_layers.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import { ExpressionTypeDefinition } from '../types'; | ||
import { VisLayers } from '../../../../vis_augmenter/common'; | ||
|
||
const name = 'vis_layers'; | ||
|
||
export interface ExprVisLayers { | ||
type: typeof name; | ||
layers: VisLayers; | ||
} | ||
|
||
// Setting default empty arrays for null & undefined edge cases | ||
export const visLayers: ExpressionTypeDefinition<typeof name, ExprVisLayers> = { | ||
name, | ||
from: { | ||
null: () => { | ||
return { | ||
type: name, | ||
layers: [] as VisLayers, | ||
} as ExprVisLayers; | ||
}, | ||
undefined: () => { | ||
return { | ||
type: name, | ||
layers: [] as VisLayers, | ||
} as ExprVisLayers; | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
export { | ||
VisLayer, | ||
VisLayers, | ||
PointInTimeEventsVisLayer, | ||
PointInTimeEvent, | ||
PointInTimeEventMetadata, | ||
isPointInTimeEventsVisLayer, | ||
VisLayerResponseValue, | ||
VisLayerFunctionDefinition, | ||
} from './types'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import { VisLayer, isPointInTimeEventsVisLayer } from './types'; | ||
|
||
describe('isPointInTimeEventsVisLayer()', function () { | ||
it('should return false if no events field', function () { | ||
const visLayer = { | ||
id: 'visLayerId', | ||
name: 'visLayerName', | ||
field1: 'value1', | ||
field2: 'value2', | ||
} as VisLayer; | ||
expect(isPointInTimeEventsVisLayer(visLayer)).toBe(false); | ||
}); | ||
|
||
it('should return true if events field exists', function () { | ||
const visLayer = { | ||
id: 'testId', | ||
name: 'testName', | ||
events: [ | ||
{ | ||
timestamp: 123, | ||
resourceId: 'testId', | ||
resourceName: 'testName', | ||
}, | ||
], | ||
} as VisLayer; | ||
expect(isPointInTimeEventsVisLayer(visLayer)).toBe(true); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import { ExpressionFunctionDefinition } from '../../expressions'; | ||
|
||
export interface VisLayer { | ||
// will be used as the column ID | ||
id: string; | ||
// will be used as the name when hovering over the tooltip | ||
name: string; | ||
} | ||
|
||
export type VisLayers = VisLayer[]; | ||
|
||
export interface PointInTimeEventMetadata { | ||
resourceId: string; | ||
resourceName: string; | ||
tooltip?: string; | ||
} | ||
|
||
export interface PointInTimeEvent { | ||
timestamp: number; | ||
metadata: PointInTimeEventMetadata; | ||
} | ||
|
||
export interface PointInTimeEventsVisLayer extends VisLayer { | ||
events: PointInTimeEvent[]; | ||
} | ||
|
||
// used to determine what vis layer's interface is being implemented. | ||
// currently PointInTimeEventsLayer is the only interface extending VisLayer | ||
export const isPointInTimeEventsVisLayer = (obj: any) => { | ||
return 'events' in obj; | ||
}; | ||
|
||
export interface VisLayerResponseValue { | ||
visLayers: object; | ||
} | ||
|
||
export type VisLayerFunctionDefinition = ExpressionFunctionDefinition< | ||
string, | ||
VisLayerResponseValue, | ||
any, | ||
Promise<VisLayerResponseValue> | ||
>; |