-
Notifications
You must be signed in to change notification settings - Fork 915
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into manasvinibs/single-client-4041
Signed-off-by: Josh Romero <[email protected]>
- Loading branch information
Showing
116 changed files
with
7,410 additions
and
7,890 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 |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
/.chromium | ||
/build | ||
/built_assets | ||
/bwc_tmp | ||
/config/apm.dev.js | ||
/data | ||
/html_docs | ||
|
Validating CODEOWNERS rules …
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 |
---|---|---|
@@ -1 +1 @@ | ||
* @ananzh @kavilla @seanneumann @AMoo-Miki @ashwin-pc @joshuarrrr @abbyhu2000 @zengyan-amazon @kristenTian @zhongnansu @manasvinibs | ||
* @ananzh @kavilla @seanneumann @AMoo-Miki @ashwin-pc @joshuarrrr @abbyhu2000 @zengyan-amazon @kristenTian @zhongnansu @manasvinibs @ZilongX @Flyingliuhub |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Binary file not shown.
Binary file not shown.
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
83 changes: 83 additions & 0 deletions
83
...actions_explorer/public/context_menu_examples/panel_group_options_and_context_actions.tsx
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,83 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import * as React from 'react'; | ||
import { EuiButton, EuiContextMenu, EuiPopover } from '@elastic/eui'; | ||
import useAsync from 'react-use/lib/useAsync'; | ||
import { buildContextMenuForActions, Action } from '../../../../src/plugins/ui_actions/public'; | ||
import { sampleAction } from './util'; | ||
|
||
export const PanelGroupOptionsAndContextActions: React.FC = () => { | ||
const [open, setOpen] = React.useState(false); | ||
|
||
const context = {}; | ||
const trigger: any = 'TEST_TRIGGER'; | ||
const drilldownGrouping: Action['grouping'] = [ | ||
{ | ||
id: 'drilldowns', | ||
getDisplayName: () => 'Uncategorized group', | ||
getIconType: () => 'popout', | ||
order: 20, | ||
}, | ||
]; | ||
const exampleGroup: Action['grouping'] = [ | ||
{ | ||
id: 'example', | ||
getDisplayName: () => 'Example group', | ||
getIconType: () => 'cloudStormy', | ||
order: 20, | ||
category: 'visAug', | ||
}, | ||
]; | ||
const alertingGroup: Action['grouping'] = [ | ||
{ | ||
id: 'alerting', | ||
getDisplayName: () => 'Alerting', | ||
getIconType: () => 'cloudStormy', | ||
order: 20, | ||
category: 'visAug', | ||
}, | ||
]; | ||
const anomaliesGroup: Action['grouping'] = [ | ||
{ | ||
id: 'anomalies', | ||
getDisplayName: () => 'Anomalies', | ||
getIconType: () => 'cloudStormy', | ||
order: 30, | ||
category: 'visAug', | ||
}, | ||
]; | ||
const actions = [ | ||
sampleAction('test-1', 100, 'Edit visualization', 'pencil'), | ||
sampleAction('test-2', 99, 'Clone panel', 'partial'), | ||
|
||
sampleAction('test-9', 10, 'Create drilldown', 'plusInCircle', drilldownGrouping), | ||
sampleAction('test-10', 9, 'Manage drilldowns', 'list', drilldownGrouping), | ||
|
||
sampleAction('test-11', 10, 'Example action', 'dashboardApp', exampleGroup), | ||
sampleAction('test-11', 10, 'Alertin action 1', 'dashboardApp', alertingGroup), | ||
sampleAction('test-12', 9, 'Alertin action 2', 'dashboardApp', alertingGroup), | ||
sampleAction('test-13', 8, 'Anomalies 1', 'cloudStormy', anomaliesGroup), | ||
sampleAction('test-14', 7, 'Anomalies 2', 'link', anomaliesGroup), | ||
]; | ||
|
||
const panels = useAsync(() => | ||
buildContextMenuForActions({ | ||
actions: actions.map((action) => ({ action, context, trigger })), | ||
}) | ||
); | ||
|
||
return ( | ||
<EuiPopover | ||
button={<EuiButton onClick={() => setOpen((x) => !x)}>Grouping with categories</EuiButton>} | ||
isOpen={open} | ||
panelPaddingSize="none" | ||
anchorPosition="downLeft" | ||
closePopover={() => setOpen(false)} | ||
> | ||
<EuiContextMenu initialPanelId={'mainMenu'} panels={panels.value} /> | ||
</EuiPopover> | ||
); | ||
}; |
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.