-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature] Match discover look and feel (#1135)
* remove unused files Signed-off-by: Eric Wei <[email protected]> * missing snapshots Signed-off-by: Eric Wei <[email protected]> * remove unused files Signed-off-by: Eric Wei <[email protected]> * move sidebar out of explorer for match look and feel Signed-off-by: Eric <[email protected]> * sidebar panel always with full height Signed-off-by: Eric <[email protected]> * adjust padding Signed-off-by: Eric <[email protected]> * make search components wrappable Signed-off-by: Eric <[email protected]> * adjust noresult/novisualize page Signed-off-by: Eric <[email protected]> * add padding to datagrid Signed-off-by: Eric <[email protected]> * restructured sidebar fields to use exact same spacing/paneling as discover, so that field type icons look the same and field action buttons disappear if not hovered over Signed-off-by: Paul Sebastian <[email protected]> * address datasource persistency issue Signed-off-by: Eric <[email protected]> * code changes preparing for integration with app analytics Signed-off-by: Eric <[email protected]> * resolve page crash and hide datasource for app analytics Signed-off-by: Eric <[email protected]> * saved object supports datasources, query language, and direct query Signed-off-by: Eric <[email protected]> * change saved object icon Signed-off-by: Eric <[email protected]> * bulk delete for saved query Signed-off-by: Eric <[email protected]> * change data grid to separate sort/page query to not interfere with other components Signed-off-by: Paul Sebastian <[email protected]> * basic drag and drop added Signed-off-by: Paul Sebastian <[email protected]> * viz config changes Signed-off-by: Paul Sebastian <[email protected]> * add margin to resizable Signed-off-by: Paul Sebastian <[email protected]> * wrap countdistribution with panel Signed-off-by: Eric <[email protected]> * pr requested changes Signed-off-by: Paul Sebastian <[email protected]> * remove panel wrapper for inner countdistribution Signed-off-by: Eric <[email protected]> * change datasource selector to only showopensearch/ default cluste Signed-off-by: Eric <[email protected]> * remove unused files Signed-off-by: Eric Wei <[email protected]> * missing snapshots Signed-off-by: Eric Wei <[email protected]> * remove unused files Signed-off-by: Eric Wei <[email protected]> * url datasource data prsing and clean up Signed-off-by: Eric <[email protected]> * minor format Signed-off-by: Eric <[email protected]> * query bar issue when loading direct query saved object Signed-off-by: Eric <[email protected]> * minor cleanup Signed-off-by: Eric <[email protected]> * update snapshots Signed-off-by: Eric <[email protected]> * fix minor query bar issue and add types to searchMeta slice Signed-off-by: Eric <[email protected]> * stop polling when load from saved object and few related minor changes Signed-off-by: Eric <[email protected]> * fix polling cleanup issue Signed-off-by: Eric <[email protected]> * save will not trigger reload Signed-off-by: Eric <[email protected]> * add language enum Signed-off-by: Eric <[email protected]> * direct query status indicator Signed-off-by: Paul Sebastian <[email protected]> * turn default timestamp/pattern mark to badge and on hover Signed-off-by: Paul Sebastian <[email protected]> * flyout resize button margin fix Signed-off-by: Paul Sebastian <[email protected]> * direct query data grid fixes Signed-off-by: Paul Sebastian <[email protected]> * pr changes and added test Signed-off-by: Paul Sebastian <[email protected]> * removed console logs Signed-off-by: Paul Sebastian <[email protected]> * searchMetaData type change Signed-off-by: Paul Sebastian <[email protected]> * use datasource variable Signed-off-by: Paul Sebastian <[email protected]> * fixed types and reduced redundancy Signed-off-by: Paul Sebastian <[email protected]> * fixed when data grix shows Signed-off-by: Paul Sebastian <[email protected]> * simplify condition checking for datagrid Signed-off-by: Eric <[email protected]> * update snapshot Signed-off-by: Eric <[email protected]> --------- Signed-off-by: Eric Wei <[email protected]> Signed-off-by: Eric <[email protected]> Signed-off-by: Paul Sebastian <[email protected]> Co-authored-by: Paul Sebastian <[email protected]> (cherry picked from commit ea2fb2c) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
e81cc9c
commit f519720
Showing
56 changed files
with
10,687 additions
and
12,030 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
export const DATA_SOURCE_NAME_URL_PARAM_KEY = 'datasourceName'; | ||
export const DATA_SOURCE_TYPE_URL_PARAM_KEY = 'datasourceType'; | ||
export const DEFAULT_DATA_SOURCE_TYPE = 'DEFAULT_INDEX_PATTERNS'; | ||
export const DEFAULT_DATA_SOURCE_NAME = 'Default cluster'; | ||
export const DEFAULT_DATA_SOURCE_OBSERVABILITY_DISPLAY_NAME = 'OpenSearch'; | ||
export const DEFAULT_DATA_SOURCE_TYPE_NAME = 'Default Group'; | ||
export const enum QUERY_LANGUAGE { | ||
PPL = 'PPL', | ||
SQL = 'SQL', | ||
DQL = 'DQL', | ||
} |
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
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
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
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
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
Oops, something went wrong.