Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add access control tab content #992

Merged
merged 11 commits into from
Sep 18, 2023

Conversation

derek-ho
Copy link
Collaborator

@derek-ho derek-ho commented Sep 12, 2023

Description

Add access control tab content to datasource page

Issues Resolved

[List any issues this PR will resolve]

Check List

  • New functionality includes testing.
    • All tests pass, including unit test, integration test and doctest
  • New functionality has been documented.
    • New functionality has javadoc added
    • New functionality has user manual doc added
  • Commits are signed per the DCO using --signoff

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.

Signed-off-by: Derek Ho <[email protected]>
Comment on lines 52 to 58
coreRefs.http!.get('/api/v1/configuration/roles').then((data) =>
setRoles(
Object.keys(data.data).map((key) => {
return { label: key };
})
)
);
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Assumes security plugin is installed and user has permission to access it (will be addressed with the permission PR)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What happens if security plugin is not installed. Are we not showing the whole data connections plugin? or Do we have a fallback view?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think current plan is to show as much as possible:

  • if users have access to datasources APIs, we show them the page, and if they do not then we will show Fallback UI
  • if users have access to datasource APIs, but do not have access to security plugin or security plugin is not installed, we will not be able to show the dropdown with pre-defined roles, but we will still allow them to manually type in the roles. Created a follow up issue to avoid scope-creep: [FEATURE] Access Control flow if Security Plugin is not installed #1022. Will not implement manually type to create roles in this PR, but in follow up PR.

Comment on lines 43 to 49
const [finalQueryPermissionsPlaceHolder, setFinalQueryPermissionsPlaceHolder] = useState<
Array<{ label: string }>
>([]);
const [
finalAccelerationPermissionsPlaceHolder,
setFinalAccelerationPermissionsPlaceHolder,
] = useState<Array<{ label: string }>>([]);
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Placeholder to update the state (this will be replaced with API call to POST, and then showing the list will be the result of the API call to GET)

Signed-off-by: Derek Ho <[email protected]>
Signed-off-by: Derek Ho <[email protected]>
@codecov
Copy link

codecov bot commented Sep 12, 2023

Codecov Report

Merging #992 (8fd7211) into feature/flint-UI (24cdd19) will decrease coverage by 0.04%.
Report is 1 commits behind head on feature/flint-UI.
The diff coverage is n/a.

@@                 Coverage Diff                  @@
##           feature/flint-UI     #992      +/-   ##
====================================================
- Coverage             43.90%   43.87%   -0.04%     
====================================================
  Files                   319      323       +4     
  Lines                 18796    18862      +66     
  Branches               4581     4591      +10     
====================================================
+ Hits                   8253     8275      +22     
- Misses                 9987    10030      +43     
- Partials                556      557       +1     
Flag Coverage Δ
dashboards-observability 43.87% <ø> (-0.04%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

see 8 files with indirect coverage changes

Comment on lines 161 to 168
onClick={
mode === 'view'
? () => {
setMode('edit');
}
: () => {
setMode('view');
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we can make it more readable or change it to a function.

const changeMode = () => { 
     mode === 'view' ? setMode('edit') : setMode('view');
}
onClick = {changeMode}

OR 

onClick = { () => setMode(mode === 'view' ? 'edit' : 'view')}

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in: fc96304, thanks!

Comment on lines 12 to 13
setSelectedRoles: (selectedRoles: Array<{ label: string }>) => void;
setSelectedRadio: (selectedRadio: string) => void;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor, but Ideally types here should be something like: React.Dispatch<React.SetStateAction<Array<{ label: string }>>

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in: fc96304, thanks! I didn't know this

Comment on lines 180 to 202
{mode === 'edit' ? (
<EuiBottomBar affordForDisplacement={false}>
<EuiFlexGroup justifyContent="flexEnd">
<EuiFlexItem grow={false}>
<EuiButtonEmpty
onClick={() => {
setMode('view');
}}
color="ghost"
size="s"
iconType="cross"
>
Discard change(s)
</EuiButtonEmpty>
</EuiFlexItem>
<EuiFlexItem grow={false}>
<EuiButton onClick={saveChanges} size="s" iconType="check" fill>
Save
</EuiButton>
</EuiFlexItem>
</EuiFlexGroup>
</EuiBottomBar>
) : null}
Copy link
Member

@ps48 ps48 Sep 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor, this can be changed to mode === 'edit' && <view/> no need to use null.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done in: fc96304, thanks!

);
};

const renderEditAccessControlDetails = () => {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please turn this into a formal React FC.
This is a quality issue for us throughout our plugin.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tried to address this in: fc96304, please let me know if I understood what you meant correctly.

const renderEditAccessControlDetails = () => {
return (
<EuiFlexGroup direction="column">
<QueryPermissionsFlexItem
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please do not call these components "...FlexItem". The component's purpose is not a consequence of it's inclusion in a flex-group.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agree. Done in: fc96304, thanks for the suggestion.

</EuiFlexItem>
</EuiFlexGroup>
<EuiHorizontalRule />
{mode === 'view' ? renderViewAccessControlDetails() : renderEditAccessControlDetails()}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider setting this value to a component-constant (AccessControlDetails). You have several of these conditions - they can all be collected into one place... thereby reducing cyclomatic complexity.

Containing these conditions into one location will also raise the visibility of refactoring / simplification opportunities.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not quite sure I understand what you are suggesting/how it would be cleaner than having a state variable. Can you point me to some examples I can look at?

children: <span>Access level</span>,
}}
/>
{selectedRadio === QUERY_RESTRICT ? (
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider moving this condition to a component-constant. Name it something that tells the story about what it is / why it's there.

We are left to imagine the meaning of selectedRadio === QUERY_RESTRICT... often the wrong meaning.

Copy link
Collaborator Author

@derek-ho derek-ho Sep 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not quite sure I am following what you are suggesting here. The issue is that right now, the radio groups and modifying the radio groups need to be passed down from the parent to this specific component, but this component also needs to know some specifics about the radio groups in order to render correctly. The reason I need to do this is because the parent component needs to know the state of this child component to fire off the API call to update the data connection (it renders the component that is connected to the firing of this call). What are your thoughts around how we should approach this given these limitations?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the story here is "Access Levels".

In the "parent" radio-gruop :

<EuiRadioGroup
  options={acessLevelOptions}
  idSelected={selectedAccessLevel}
  onChange={setSelectedAccessLevel}
...

Then the condition of the next component is way more instructive :

{ selectedAccessLevel === QUERY_RESTRICT && (< the content>) }

(no need to use a tertiary here... render() fn knows how to deal with embedded nulls.

…boards-observability into access-control

Signed-off-by: Derek Ho <[email protected]>
@derek-ho derek-ho merged commit 28201e9 into opensearch-project:feature/flint-UI Sep 18, 2023
@derek-ho derek-ho deleted the access-control branch September 18, 2023 20:42
children: <span>Access level</span>,
}}
/>
{selectedRadio === QUERY_RESTRICT ? (
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the story here is "Access Levels".

In the "parent" radio-gruop :

<EuiRadioGroup
  options={acessLevelOptions}
  idSelected={selectedAccessLevel}
  onChange={setSelectedAccessLevel}
...

Then the condition of the next component is way more instructive :

{ selectedAccessLevel === QUERY_RESTRICT && (< the content>) }

(no need to use a tertiary here... render() fn knows how to deal with embedded nulls.

.get(`${DATACONNECTIONS_BASE}/${dataSource}`)
.then((data) =>
setDatasourceDetails({
allowedRoles: data.allowedRoles,
name: data.name,
cluster: data.properties['emr.cluster'],
connector: data.connector,
properties: data.properties,
})
)
.catch((err) => {
if (err.body.statusCode === 403) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Without re-throwing, you're effectively swallowing all other errors except 403. Is that really what we want?
If any/ever error should be met with setHasAccess(false), then just set it without condition.
This might be a case to wrap this in a function so you can tell a story checkStatusForbiddenOrThrow(err).

</EuiFlexItem>
<EuiFlexItem>
<EuiRadioGroup
options={radios}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I still very much recommend renaming to availableRoles, selectedRoles, setSelectedRoles
Future implemention might be checkbox list.

children: <span>Access level</span>,
}}
/>
{selectedRadio === QUERY_RESTRICTED && <ConfigureRoles />}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

selectedAccessLevel

derek-ho added a commit that referenced this pull request Sep 25, 2023
* Manage datasources (#967)

* fix name change bug and modify test to test behavior

Signed-off-by: Derek Ho <[email protected]>

* get rid of lint

Signed-off-by: Derek Ho <[email protected]>

* test for flyout

Signed-off-by: Derek Ho <[email protected]>

* flyout to medium size

Signed-off-by: Derek Ho <[email protected]>

* make accelerate extensible

Signed-off-by: Derek Ho <[email protected]>

* get datasources and hook up to pplservice

Signed-off-by: Derek Ho <[email protected]>

* get flint working

Signed-off-by: Derek Ho <[email protected]>

* add datasource page with steps and buttons on bottom bar

Signed-off-by: Derek Ho <[email protected]>

* datasources as a new plugin and mostly working

Signed-off-by: Derek Ho <[email protected]>

* hook up manage to show datasources call

Signed-off-by: Derek Ho <[email protected]>

* update two tables with descriptions

Signed-off-by: Derek Ho <[email protected]>

* make some updates to the page

Signed-off-by: Derek Ho <[email protected]>

* cleanup unused files for data connections

Signed-off-by: Derek Ho <[email protected]>

* cleanup and add overview panel columns

Signed-off-by: Derek Ho <[email protected]>

* render tabs

Signed-off-by: Derek Ho <[email protected]>

* add unit tests

Signed-off-by: Derek Ho <[email protected]>

* update data test subj and snapshot

Signed-off-by: Derek Ho <[email protected]>

* Add datasources to management overview

Signed-off-by: Derek Ho <[email protected]>

* remove spark logo and update snapshot

Signed-off-by: Derek Ho <[email protected]>

* refactor routes out

Signed-off-by: Derek Ho <[email protected]>

* separate out the roles

Signed-off-by: Derek Ho <[email protected]>

* bump version back to 3.0

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add acceleration management UI  (#989)

* add acceleration management UI skeleton

Signed-off-by: Shenoy Pratik <[email protected]>

* Create new documentation link for acc

Signed-off-by: Shenoy Pratik <[email protected]>

* fix typos and minor bugs

Signed-off-by: Shenoy Pratik <[email protected]>

* update snapshot

Signed-off-by: Shenoy Pratik <[email protected]>

* update window location to hash

Signed-off-by: Shenoy Pratik <[email protected]>

* remove unused headers

Signed-off-by: Shenoy Pratik <[email protected]>

---------

Signed-off-by: Shenoy Pratik <[email protected]>

* Rename data sources to data connections (#1004)

* rename data sources to data connections

Signed-off-by: Derek Ho <[email protected]>

* final cleanup

Signed-off-by: Derek Ho <[email protected]>

* update acceleration breadcrumb

Signed-off-by: Derek Ho <[email protected]>

* fix API call for data connection page

Signed-off-by: Derek Ho <[email protected]>

* fix integ test and data test subj and snapshot

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add fallback to show if user does not have datasource API permissions (#1008)

* add fallback ui for manage and view datasources

Signed-off-by: Derek Ho <[email protected]>

* always show datasources via pplservice

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add access control tab content (#992)

* basic rendering for the access control tab

Signed-off-by: Derek Ho <[email protected]>

* hook up basic radio groups and euicombo boxes for query and acceleration permissions

Signed-off-by: Derek Ho <[email protected]>

* refactor and clean up unuseed inports

Signed-off-by: Derek Ho <[email protected]>

* remove unused import

Signed-off-by: Derek Ho <[email protected]>

* fix import and snapshot

Signed-off-by: Derek Ho <[email protected]>

* fix test

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

* Remove unused files and variables

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Delete datasource and Connection Configuration Tab (#1024)

* Address previous PR comments and implement rudimentary delete

Signed-off-by: Derek Ho <[email protected]>

* Implement modal and instant delete showing up in list

Signed-off-by: Derek Ho <[email protected]>

* Refactor save or cancel to a shared component, implement hard coded datasource configurations tab

Signed-off-by: Derek Ho <[email protected]>

* Update test with mock role data

Signed-off-by: Derek Ho <[email protected]>

* Add most functionality of edit connectiondetails

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* remove acceleration components

Signed-off-by: Shenoy Pratik <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>
Signed-off-by: Shenoy Pratik <[email protected]>
Co-authored-by: Shenoy Pratik <[email protected]>
pjfitzgibbons pushed a commit that referenced this pull request Sep 26, 2023
* Manage datasources (#967)

* fix name change bug and modify test to test behavior

Signed-off-by: Derek Ho <[email protected]>

* get rid of lint

Signed-off-by: Derek Ho <[email protected]>

* test for flyout

Signed-off-by: Derek Ho <[email protected]>

* flyout to medium size

Signed-off-by: Derek Ho <[email protected]>

* make accelerate extensible

Signed-off-by: Derek Ho <[email protected]>

* get datasources and hook up to pplservice

Signed-off-by: Derek Ho <[email protected]>

* get flint working

Signed-off-by: Derek Ho <[email protected]>

* add datasource page with steps and buttons on bottom bar

Signed-off-by: Derek Ho <[email protected]>

* datasources as a new plugin and mostly working

Signed-off-by: Derek Ho <[email protected]>

* hook up manage to show datasources call

Signed-off-by: Derek Ho <[email protected]>

* update two tables with descriptions

Signed-off-by: Derek Ho <[email protected]>

* make some updates to the page

Signed-off-by: Derek Ho <[email protected]>

* cleanup unused files for data connections

Signed-off-by: Derek Ho <[email protected]>

* cleanup and add overview panel columns

Signed-off-by: Derek Ho <[email protected]>

* render tabs

Signed-off-by: Derek Ho <[email protected]>

* add unit tests

Signed-off-by: Derek Ho <[email protected]>

* update data test subj and snapshot

Signed-off-by: Derek Ho <[email protected]>

* Add datasources to management overview

Signed-off-by: Derek Ho <[email protected]>

* remove spark logo and update snapshot

Signed-off-by: Derek Ho <[email protected]>

* refactor routes out

Signed-off-by: Derek Ho <[email protected]>

* separate out the roles

Signed-off-by: Derek Ho <[email protected]>

* bump version back to 3.0

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add acceleration management UI  (#989)

* add acceleration management UI skeleton

Signed-off-by: Shenoy Pratik <[email protected]>

* Create new documentation link for acc

Signed-off-by: Shenoy Pratik <[email protected]>

* fix typos and minor bugs

Signed-off-by: Shenoy Pratik <[email protected]>

* update snapshot

Signed-off-by: Shenoy Pratik <[email protected]>

* update window location to hash

Signed-off-by: Shenoy Pratik <[email protected]>

* remove unused headers

Signed-off-by: Shenoy Pratik <[email protected]>

---------

Signed-off-by: Shenoy Pratik <[email protected]>

* Rename data sources to data connections (#1004)

* rename data sources to data connections

Signed-off-by: Derek Ho <[email protected]>

* final cleanup

Signed-off-by: Derek Ho <[email protected]>

* update acceleration breadcrumb

Signed-off-by: Derek Ho <[email protected]>

* fix API call for data connection page

Signed-off-by: Derek Ho <[email protected]>

* fix integ test and data test subj and snapshot

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add fallback to show if user does not have datasource API permissions (#1008)

* add fallback ui for manage and view datasources

Signed-off-by: Derek Ho <[email protected]>

* always show datasources via pplservice

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add access control tab content (#992)

* basic rendering for the access control tab

Signed-off-by: Derek Ho <[email protected]>

* hook up basic radio groups and euicombo boxes for query and acceleration permissions

Signed-off-by: Derek Ho <[email protected]>

* refactor and clean up unuseed inports

Signed-off-by: Derek Ho <[email protected]>

* remove unused import

Signed-off-by: Derek Ho <[email protected]>

* fix import and snapshot

Signed-off-by: Derek Ho <[email protected]>

* fix test

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

* Remove unused files and variables

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Delete datasource and Connection Configuration Tab (#1024)

* Address previous PR comments and implement rudimentary delete

Signed-off-by: Derek Ho <[email protected]>

* Implement modal and instant delete showing up in list

Signed-off-by: Derek Ho <[email protected]>

* Refactor save or cancel to a shared component, implement hard coded datasource configurations tab

Signed-off-by: Derek Ho <[email protected]>

* Update test with mock role data

Signed-off-by: Derek Ho <[email protected]>

* Add most functionality of edit connectiondetails

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* remove acceleration components

Signed-off-by: Shenoy Pratik <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>
Signed-off-by: Shenoy Pratik <[email protected]>
Co-authored-by: Shenoy Pratik <[email protected]>
derek-ho added a commit that referenced this pull request Sep 27, 2023
* Manage datasources (#967)

* fix name change bug and modify test to test behavior

Signed-off-by: Derek Ho <[email protected]>

* get rid of lint

Signed-off-by: Derek Ho <[email protected]>

* test for flyout

Signed-off-by: Derek Ho <[email protected]>

* flyout to medium size

Signed-off-by: Derek Ho <[email protected]>

* make accelerate extensible

Signed-off-by: Derek Ho <[email protected]>

* get datasources and hook up to pplservice

Signed-off-by: Derek Ho <[email protected]>

* get flint working

Signed-off-by: Derek Ho <[email protected]>

* add datasource page with steps and buttons on bottom bar

Signed-off-by: Derek Ho <[email protected]>

* datasources as a new plugin and mostly working

Signed-off-by: Derek Ho <[email protected]>

* hook up manage to show datasources call

Signed-off-by: Derek Ho <[email protected]>

* update two tables with descriptions

Signed-off-by: Derek Ho <[email protected]>

* make some updates to the page

Signed-off-by: Derek Ho <[email protected]>

* cleanup unused files for data connections

Signed-off-by: Derek Ho <[email protected]>

* cleanup and add overview panel columns

Signed-off-by: Derek Ho <[email protected]>

* render tabs

Signed-off-by: Derek Ho <[email protected]>

* add unit tests

Signed-off-by: Derek Ho <[email protected]>

* update data test subj and snapshot

Signed-off-by: Derek Ho <[email protected]>

* Add datasources to management overview

Signed-off-by: Derek Ho <[email protected]>

* remove spark logo and update snapshot

Signed-off-by: Derek Ho <[email protected]>

* refactor routes out

Signed-off-by: Derek Ho <[email protected]>

* separate out the roles

Signed-off-by: Derek Ho <[email protected]>

* bump version back to 3.0

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add acceleration management UI  (#989)

* add acceleration management UI skeleton

Signed-off-by: Shenoy Pratik <[email protected]>

* Create new documentation link for acc

Signed-off-by: Shenoy Pratik <[email protected]>

* fix typos and minor bugs

Signed-off-by: Shenoy Pratik <[email protected]>

* update snapshot

Signed-off-by: Shenoy Pratik <[email protected]>

* update window location to hash

Signed-off-by: Shenoy Pratik <[email protected]>

* remove unused headers

Signed-off-by: Shenoy Pratik <[email protected]>

---------

Signed-off-by: Shenoy Pratik <[email protected]>

* Rename data sources to data connections (#1004)

* rename data sources to data connections

Signed-off-by: Derek Ho <[email protected]>

* final cleanup

Signed-off-by: Derek Ho <[email protected]>

* update acceleration breadcrumb

Signed-off-by: Derek Ho <[email protected]>

* fix API call for data connection page

Signed-off-by: Derek Ho <[email protected]>

* fix integ test and data test subj and snapshot

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add fallback to show if user does not have datasource API permissions (#1008)

* add fallback ui for manage and view datasources

Signed-off-by: Derek Ho <[email protected]>

* always show datasources via pplservice

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add access control tab content (#992)

* basic rendering for the access control tab

Signed-off-by: Derek Ho <[email protected]>

* hook up basic radio groups and euicombo boxes for query and acceleration permissions

Signed-off-by: Derek Ho <[email protected]>

* refactor and clean up unuseed inports

Signed-off-by: Derek Ho <[email protected]>

* remove unused import

Signed-off-by: Derek Ho <[email protected]>

* fix import and snapshot

Signed-off-by: Derek Ho <[email protected]>

* fix test

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

* Remove unused files and variables

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Delete datasource and Connection Configuration Tab (#1024)

* Address previous PR comments and implement rudimentary delete

Signed-off-by: Derek Ho <[email protected]>

* Implement modal and instant delete showing up in list

Signed-off-by: Derek Ho <[email protected]>

* Refactor save or cancel to a shared component, implement hard coded datasource configurations tab

Signed-off-by: Derek Ho <[email protected]>

* Update test with mock role data

Signed-off-by: Derek Ho <[email protected]>

* Add most functionality of edit connectiondetails

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Get most of the workflow working for configure datasource

Signed-off-by: Derek Ho <[email protected]>

* remove acceleration components

Signed-off-by: Shenoy Pratik <[email protected]>

* Update data connection to datasources in a few more places and update tests

Signed-off-by: Derek Ho <[email protected]>

* Rename and re-organize in folders

Signed-off-by: Derek Ho <[email protected]>

* Fix import path in testing file

Signed-off-by: Derek Ho <[email protected]>

* Get Initial S3 configuration working

Signed-off-by: Derek Ho <[email protected]>

* Configure S3 Data Source Working

Signed-off-by: Derek Ho <[email protected]>

* Fix query permissions display

Signed-off-by: Derek Ho <[email protected]>

* Fix merge conflict

Signed-off-by: Derek Ho <[email protected]>

* Clean up PR

Signed-off-by: Derek Ho <[email protected]>

* Add s3 logo in manage table

Signed-off-by: Derek Ho <[email protected]>

* Fix up PR according to UX feedback

Signed-off-by: Derek Ho <[email protected]>

* Remove successfully

Signed-off-by: Derek Ho <[email protected]>

* Update test

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

* Update test in accordance to useLocation

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>
Signed-off-by: Shenoy Pratik <[email protected]>
Co-authored-by: Shenoy Pratik <[email protected]>
derek-ho added a commit that referenced this pull request Sep 29, 2023
* Manage datasources (#967)

* fix name change bug and modify test to test behavior

Signed-off-by: Derek Ho <[email protected]>

* get rid of lint

Signed-off-by: Derek Ho <[email protected]>

* test for flyout

Signed-off-by: Derek Ho <[email protected]>

* flyout to medium size

Signed-off-by: Derek Ho <[email protected]>

* make accelerate extensible

Signed-off-by: Derek Ho <[email protected]>

* get datasources and hook up to pplservice

Signed-off-by: Derek Ho <[email protected]>

* get flint working

Signed-off-by: Derek Ho <[email protected]>

* add datasource page with steps and buttons on bottom bar

Signed-off-by: Derek Ho <[email protected]>

* datasources as a new plugin and mostly working

Signed-off-by: Derek Ho <[email protected]>

* hook up manage to show datasources call

Signed-off-by: Derek Ho <[email protected]>

* update two tables with descriptions

Signed-off-by: Derek Ho <[email protected]>

* make some updates to the page

Signed-off-by: Derek Ho <[email protected]>

* cleanup unused files for data connections

Signed-off-by: Derek Ho <[email protected]>

* cleanup and add overview panel columns

Signed-off-by: Derek Ho <[email protected]>

* render tabs

Signed-off-by: Derek Ho <[email protected]>

* add unit tests

Signed-off-by: Derek Ho <[email protected]>

* update data test subj and snapshot

Signed-off-by: Derek Ho <[email protected]>

* Add datasources to management overview

Signed-off-by: Derek Ho <[email protected]>

* remove spark logo and update snapshot

Signed-off-by: Derek Ho <[email protected]>

* refactor routes out

Signed-off-by: Derek Ho <[email protected]>

* separate out the roles

Signed-off-by: Derek Ho <[email protected]>

* bump version back to 3.0

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add acceleration management UI  (#989)

* add acceleration management UI skeleton

Signed-off-by: Shenoy Pratik <[email protected]>

* Create new documentation link for acc

Signed-off-by: Shenoy Pratik <[email protected]>

* fix typos and minor bugs

Signed-off-by: Shenoy Pratik <[email protected]>

* update snapshot

Signed-off-by: Shenoy Pratik <[email protected]>

* update window location to hash

Signed-off-by: Shenoy Pratik <[email protected]>

* remove unused headers

Signed-off-by: Shenoy Pratik <[email protected]>

---------

Signed-off-by: Shenoy Pratik <[email protected]>

* Rename data sources to data connections (#1004)

* rename data sources to data connections

Signed-off-by: Derek Ho <[email protected]>

* final cleanup

Signed-off-by: Derek Ho <[email protected]>

* update acceleration breadcrumb

Signed-off-by: Derek Ho <[email protected]>

* fix API call for data connection page

Signed-off-by: Derek Ho <[email protected]>

* fix integ test and data test subj and snapshot

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add fallback to show if user does not have datasource API permissions (#1008)

* add fallback ui for manage and view datasources

Signed-off-by: Derek Ho <[email protected]>

* always show datasources via pplservice

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add access control tab content (#992)

* basic rendering for the access control tab

Signed-off-by: Derek Ho <[email protected]>

* hook up basic radio groups and euicombo boxes for query and acceleration permissions

Signed-off-by: Derek Ho <[email protected]>

* refactor and clean up unuseed inports

Signed-off-by: Derek Ho <[email protected]>

* remove unused import

Signed-off-by: Derek Ho <[email protected]>

* fix import and snapshot

Signed-off-by: Derek Ho <[email protected]>

* fix test

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

* Remove unused files and variables

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Delete datasource and Connection Configuration Tab (#1024)

* Address previous PR comments and implement rudimentary delete

Signed-off-by: Derek Ho <[email protected]>

* Implement modal and instant delete showing up in list

Signed-off-by: Derek Ho <[email protected]>

* Refactor save or cancel to a shared component, implement hard coded datasource configurations tab

Signed-off-by: Derek Ho <[email protected]>

* Update test with mock role data

Signed-off-by: Derek Ho <[email protected]>

* Add most functionality of edit connectiondetails

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Get most of the workflow working for configure datasource

Signed-off-by: Derek Ho <[email protected]>

* remove acceleration components

Signed-off-by: Shenoy Pratik <[email protected]>

* Update data connection to datasources in a few more places and update tests

Signed-off-by: Derek Ho <[email protected]>

* Rename and re-organize in folders

Signed-off-by: Derek Ho <[email protected]>

* Fix import path in testing file

Signed-off-by: Derek Ho <[email protected]>

* Get Initial S3 configuration working

Signed-off-by: Derek Ho <[email protected]>

* Configure S3 Data Source Working

Signed-off-by: Derek Ho <[email protected]>

* Fix query permissions display

Signed-off-by: Derek Ho <[email protected]>

* Fix merge conflict

Signed-off-by: Derek Ho <[email protected]>

* Clean up PR

Signed-off-by: Derek Ho <[email protected]>

* Add s3 logo in manage table

Signed-off-by: Derek Ho <[email protected]>

* Fix up PR according to UX feedback

Signed-off-by: Derek Ho <[email protected]>

* Remove successfully

Signed-off-by: Derek Ho <[email protected]>

* Update test

Signed-off-by: Derek Ho <[email protected]>

* Initial commit adding prometheus logo and icon

Signed-off-by: Derek Ho <[email protected]>

* Get the major flow working

Signed-off-by: Derek Ho <[email protected]>

* Fix app navigation

Signed-off-by: Derek Ho <[email protected]>

* Fix up PR

Signed-off-by: Derek Ho <[email protected]>

* Remove management redirection for now and fix test and add cards

Signed-off-by: Derek Ho <[email protected]>

* Remove type filter and update test according to UX feedback

Signed-off-by: Derek Ho <[email protected]>

* Add link and update test

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

* Include useful info in the error toast

Signed-off-by: Derek Ho <[email protected]>

* Update actions in manage table according to UX feedback

Signed-off-by: Derek Ho <[email protected]>

* Add update button and update tests

Signed-off-by: Derek Ho <[email protected]>

* Remove unused code until further implementation

Signed-off-by: Derek Ho <[email protected]>

* Fix router files

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>
Signed-off-by: Shenoy Pratik <[email protected]>
Co-authored-by: Shenoy Pratik <[email protected]>
derek-ho added a commit to derek-ho/dashboards-observability that referenced this pull request Oct 4, 2023
…roject#1035)

* Manage datasources (opensearch-project#967)

* fix name change bug and modify test to test behavior

Signed-off-by: Derek Ho <[email protected]>

* get rid of lint

Signed-off-by: Derek Ho <[email protected]>

* test for flyout

Signed-off-by: Derek Ho <[email protected]>

* flyout to medium size

Signed-off-by: Derek Ho <[email protected]>

* make accelerate extensible

Signed-off-by: Derek Ho <[email protected]>

* get datasources and hook up to pplservice

Signed-off-by: Derek Ho <[email protected]>

* get flint working

Signed-off-by: Derek Ho <[email protected]>

* add datasource page with steps and buttons on bottom bar

Signed-off-by: Derek Ho <[email protected]>

* datasources as a new plugin and mostly working

Signed-off-by: Derek Ho <[email protected]>

* hook up manage to show datasources call

Signed-off-by: Derek Ho <[email protected]>

* update two tables with descriptions

Signed-off-by: Derek Ho <[email protected]>

* make some updates to the page

Signed-off-by: Derek Ho <[email protected]>

* cleanup unused files for data connections

Signed-off-by: Derek Ho <[email protected]>

* cleanup and add overview panel columns

Signed-off-by: Derek Ho <[email protected]>

* render tabs

Signed-off-by: Derek Ho <[email protected]>

* add unit tests

Signed-off-by: Derek Ho <[email protected]>

* update data test subj and snapshot

Signed-off-by: Derek Ho <[email protected]>

* Add datasources to management overview

Signed-off-by: Derek Ho <[email protected]>

* remove spark logo and update snapshot

Signed-off-by: Derek Ho <[email protected]>

* refactor routes out

Signed-off-by: Derek Ho <[email protected]>

* separate out the roles

Signed-off-by: Derek Ho <[email protected]>

* bump version back to 3.0

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add acceleration management UI  (opensearch-project#989)

* add acceleration management UI skeleton

Signed-off-by: Shenoy Pratik <[email protected]>

* Create new documentation link for acc

Signed-off-by: Shenoy Pratik <[email protected]>

* fix typos and minor bugs

Signed-off-by: Shenoy Pratik <[email protected]>

* update snapshot

Signed-off-by: Shenoy Pratik <[email protected]>

* update window location to hash

Signed-off-by: Shenoy Pratik <[email protected]>

* remove unused headers

Signed-off-by: Shenoy Pratik <[email protected]>

---------

Signed-off-by: Shenoy Pratik <[email protected]>

* Rename data sources to data connections (opensearch-project#1004)

* rename data sources to data connections

Signed-off-by: Derek Ho <[email protected]>

* final cleanup

Signed-off-by: Derek Ho <[email protected]>

* update acceleration breadcrumb

Signed-off-by: Derek Ho <[email protected]>

* fix API call for data connection page

Signed-off-by: Derek Ho <[email protected]>

* fix integ test and data test subj and snapshot

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add fallback to show if user does not have datasource API permissions (opensearch-project#1008)

* add fallback ui for manage and view datasources

Signed-off-by: Derek Ho <[email protected]>

* always show datasources via pplservice

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add access control tab content (opensearch-project#992)

* basic rendering for the access control tab

Signed-off-by: Derek Ho <[email protected]>

* hook up basic radio groups and euicombo boxes for query and acceleration permissions

Signed-off-by: Derek Ho <[email protected]>

* refactor and clean up unuseed inports

Signed-off-by: Derek Ho <[email protected]>

* remove unused import

Signed-off-by: Derek Ho <[email protected]>

* fix import and snapshot

Signed-off-by: Derek Ho <[email protected]>

* fix test

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

* Remove unused files and variables

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Delete datasource and Connection Configuration Tab (opensearch-project#1024)

* Address previous PR comments and implement rudimentary delete

Signed-off-by: Derek Ho <[email protected]>

* Implement modal and instant delete showing up in list

Signed-off-by: Derek Ho <[email protected]>

* Refactor save or cancel to a shared component, implement hard coded datasource configurations tab

Signed-off-by: Derek Ho <[email protected]>

* Update test with mock role data

Signed-off-by: Derek Ho <[email protected]>

* Add most functionality of edit connectiondetails

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* remove acceleration components

Signed-off-by: Shenoy Pratik <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>
Signed-off-by: Shenoy Pratik <[email protected]>
Co-authored-by: Shenoy Pratik <[email protected]>
derek-ho added a commit to derek-ho/dashboards-observability that referenced this pull request Oct 4, 2023
* Manage datasources (opensearch-project#967)

* fix name change bug and modify test to test behavior

Signed-off-by: Derek Ho <[email protected]>

* get rid of lint

Signed-off-by: Derek Ho <[email protected]>

* test for flyout

Signed-off-by: Derek Ho <[email protected]>

* flyout to medium size

Signed-off-by: Derek Ho <[email protected]>

* make accelerate extensible

Signed-off-by: Derek Ho <[email protected]>

* get datasources and hook up to pplservice

Signed-off-by: Derek Ho <[email protected]>

* get flint working

Signed-off-by: Derek Ho <[email protected]>

* add datasource page with steps and buttons on bottom bar

Signed-off-by: Derek Ho <[email protected]>

* datasources as a new plugin and mostly working

Signed-off-by: Derek Ho <[email protected]>

* hook up manage to show datasources call

Signed-off-by: Derek Ho <[email protected]>

* update two tables with descriptions

Signed-off-by: Derek Ho <[email protected]>

* make some updates to the page

Signed-off-by: Derek Ho <[email protected]>

* cleanup unused files for data connections

Signed-off-by: Derek Ho <[email protected]>

* cleanup and add overview panel columns

Signed-off-by: Derek Ho <[email protected]>

* render tabs

Signed-off-by: Derek Ho <[email protected]>

* add unit tests

Signed-off-by: Derek Ho <[email protected]>

* update data test subj and snapshot

Signed-off-by: Derek Ho <[email protected]>

* Add datasources to management overview

Signed-off-by: Derek Ho <[email protected]>

* remove spark logo and update snapshot

Signed-off-by: Derek Ho <[email protected]>

* refactor routes out

Signed-off-by: Derek Ho <[email protected]>

* separate out the roles

Signed-off-by: Derek Ho <[email protected]>

* bump version back to 3.0

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add acceleration management UI  (opensearch-project#989)

* add acceleration management UI skeleton

Signed-off-by: Shenoy Pratik <[email protected]>

* Create new documentation link for acc

Signed-off-by: Shenoy Pratik <[email protected]>

* fix typos and minor bugs

Signed-off-by: Shenoy Pratik <[email protected]>

* update snapshot

Signed-off-by: Shenoy Pratik <[email protected]>

* update window location to hash

Signed-off-by: Shenoy Pratik <[email protected]>

* remove unused headers

Signed-off-by: Shenoy Pratik <[email protected]>

---------

Signed-off-by: Shenoy Pratik <[email protected]>

* Rename data sources to data connections (opensearch-project#1004)

* rename data sources to data connections

Signed-off-by: Derek Ho <[email protected]>

* final cleanup

Signed-off-by: Derek Ho <[email protected]>

* update acceleration breadcrumb

Signed-off-by: Derek Ho <[email protected]>

* fix API call for data connection page

Signed-off-by: Derek Ho <[email protected]>

* fix integ test and data test subj and snapshot

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add fallback to show if user does not have datasource API permissions (opensearch-project#1008)

* add fallback ui for manage and view datasources

Signed-off-by: Derek Ho <[email protected]>

* always show datasources via pplservice

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add access control tab content (opensearch-project#992)

* basic rendering for the access control tab

Signed-off-by: Derek Ho <[email protected]>

* hook up basic radio groups and euicombo boxes for query and acceleration permissions

Signed-off-by: Derek Ho <[email protected]>

* refactor and clean up unuseed inports

Signed-off-by: Derek Ho <[email protected]>

* remove unused import

Signed-off-by: Derek Ho <[email protected]>

* fix import and snapshot

Signed-off-by: Derek Ho <[email protected]>

* fix test

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

* Remove unused files and variables

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Delete datasource and Connection Configuration Tab (opensearch-project#1024)

* Address previous PR comments and implement rudimentary delete

Signed-off-by: Derek Ho <[email protected]>

* Implement modal and instant delete showing up in list

Signed-off-by: Derek Ho <[email protected]>

* Refactor save or cancel to a shared component, implement hard coded datasource configurations tab

Signed-off-by: Derek Ho <[email protected]>

* Update test with mock role data

Signed-off-by: Derek Ho <[email protected]>

* Add most functionality of edit connectiondetails

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Get most of the workflow working for configure datasource

Signed-off-by: Derek Ho <[email protected]>

* remove acceleration components

Signed-off-by: Shenoy Pratik <[email protected]>

* Update data connection to datasources in a few more places and update tests

Signed-off-by: Derek Ho <[email protected]>

* Rename and re-organize in folders

Signed-off-by: Derek Ho <[email protected]>

* Fix import path in testing file

Signed-off-by: Derek Ho <[email protected]>

* Get Initial S3 configuration working

Signed-off-by: Derek Ho <[email protected]>

* Configure S3 Data Source Working

Signed-off-by: Derek Ho <[email protected]>

* Fix query permissions display

Signed-off-by: Derek Ho <[email protected]>

* Fix merge conflict

Signed-off-by: Derek Ho <[email protected]>

* Clean up PR

Signed-off-by: Derek Ho <[email protected]>

* Add s3 logo in manage table

Signed-off-by: Derek Ho <[email protected]>

* Fix up PR according to UX feedback

Signed-off-by: Derek Ho <[email protected]>

* Remove successfully

Signed-off-by: Derek Ho <[email protected]>

* Update test

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

* Update test in accordance to useLocation

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>
Signed-off-by: Shenoy Pratik <[email protected]>
Co-authored-by: Shenoy Pratik <[email protected]>
derek-ho added a commit to derek-ho/dashboards-observability that referenced this pull request Oct 4, 2023
* Manage datasources (opensearch-project#967)

* fix name change bug and modify test to test behavior

Signed-off-by: Derek Ho <[email protected]>

* get rid of lint

Signed-off-by: Derek Ho <[email protected]>

* test for flyout

Signed-off-by: Derek Ho <[email protected]>

* flyout to medium size

Signed-off-by: Derek Ho <[email protected]>

* make accelerate extensible

Signed-off-by: Derek Ho <[email protected]>

* get datasources and hook up to pplservice

Signed-off-by: Derek Ho <[email protected]>

* get flint working

Signed-off-by: Derek Ho <[email protected]>

* add datasource page with steps and buttons on bottom bar

Signed-off-by: Derek Ho <[email protected]>

* datasources as a new plugin and mostly working

Signed-off-by: Derek Ho <[email protected]>

* hook up manage to show datasources call

Signed-off-by: Derek Ho <[email protected]>

* update two tables with descriptions

Signed-off-by: Derek Ho <[email protected]>

* make some updates to the page

Signed-off-by: Derek Ho <[email protected]>

* cleanup unused files for data connections

Signed-off-by: Derek Ho <[email protected]>

* cleanup and add overview panel columns

Signed-off-by: Derek Ho <[email protected]>

* render tabs

Signed-off-by: Derek Ho <[email protected]>

* add unit tests

Signed-off-by: Derek Ho <[email protected]>

* update data test subj and snapshot

Signed-off-by: Derek Ho <[email protected]>

* Add datasources to management overview

Signed-off-by: Derek Ho <[email protected]>

* remove spark logo and update snapshot

Signed-off-by: Derek Ho <[email protected]>

* refactor routes out

Signed-off-by: Derek Ho <[email protected]>

* separate out the roles

Signed-off-by: Derek Ho <[email protected]>

* bump version back to 3.0

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add acceleration management UI  (opensearch-project#989)

* add acceleration management UI skeleton

Signed-off-by: Shenoy Pratik <[email protected]>

* Create new documentation link for acc

Signed-off-by: Shenoy Pratik <[email protected]>

* fix typos and minor bugs

Signed-off-by: Shenoy Pratik <[email protected]>

* update snapshot

Signed-off-by: Shenoy Pratik <[email protected]>

* update window location to hash

Signed-off-by: Shenoy Pratik <[email protected]>

* remove unused headers

Signed-off-by: Shenoy Pratik <[email protected]>

---------

Signed-off-by: Shenoy Pratik <[email protected]>

* Rename data sources to data connections (opensearch-project#1004)

* rename data sources to data connections

Signed-off-by: Derek Ho <[email protected]>

* final cleanup

Signed-off-by: Derek Ho <[email protected]>

* update acceleration breadcrumb

Signed-off-by: Derek Ho <[email protected]>

* fix API call for data connection page

Signed-off-by: Derek Ho <[email protected]>

* fix integ test and data test subj and snapshot

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add fallback to show if user does not have datasource API permissions (opensearch-project#1008)

* add fallback ui for manage and view datasources

Signed-off-by: Derek Ho <[email protected]>

* always show datasources via pplservice

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Add access control tab content (opensearch-project#992)

* basic rendering for the access control tab

Signed-off-by: Derek Ho <[email protected]>

* hook up basic radio groups and euicombo boxes for query and acceleration permissions

Signed-off-by: Derek Ho <[email protected]>

* refactor and clean up unuseed inports

Signed-off-by: Derek Ho <[email protected]>

* remove unused import

Signed-off-by: Derek Ho <[email protected]>

* fix import and snapshot

Signed-off-by: Derek Ho <[email protected]>

* fix test

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

* Remove unused files and variables

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Delete datasource and Connection Configuration Tab (opensearch-project#1024)

* Address previous PR comments and implement rudimentary delete

Signed-off-by: Derek Ho <[email protected]>

* Implement modal and instant delete showing up in list

Signed-off-by: Derek Ho <[email protected]>

* Refactor save or cancel to a shared component, implement hard coded datasource configurations tab

Signed-off-by: Derek Ho <[email protected]>

* Update test with mock role data

Signed-off-by: Derek Ho <[email protected]>

* Add most functionality of edit connectiondetails

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>

* Get most of the workflow working for configure datasource

Signed-off-by: Derek Ho <[email protected]>

* remove acceleration components

Signed-off-by: Shenoy Pratik <[email protected]>

* Update data connection to datasources in a few more places and update tests

Signed-off-by: Derek Ho <[email protected]>

* Rename and re-organize in folders

Signed-off-by: Derek Ho <[email protected]>

* Fix import path in testing file

Signed-off-by: Derek Ho <[email protected]>

* Get Initial S3 configuration working

Signed-off-by: Derek Ho <[email protected]>

* Configure S3 Data Source Working

Signed-off-by: Derek Ho <[email protected]>

* Fix query permissions display

Signed-off-by: Derek Ho <[email protected]>

* Fix merge conflict

Signed-off-by: Derek Ho <[email protected]>

* Clean up PR

Signed-off-by: Derek Ho <[email protected]>

* Add s3 logo in manage table

Signed-off-by: Derek Ho <[email protected]>

* Fix up PR according to UX feedback

Signed-off-by: Derek Ho <[email protected]>

* Remove successfully

Signed-off-by: Derek Ho <[email protected]>

* Update test

Signed-off-by: Derek Ho <[email protected]>

* Initial commit adding prometheus logo and icon

Signed-off-by: Derek Ho <[email protected]>

* Get the major flow working

Signed-off-by: Derek Ho <[email protected]>

* Fix app navigation

Signed-off-by: Derek Ho <[email protected]>

* Fix up PR

Signed-off-by: Derek Ho <[email protected]>

* Remove management redirection for now and fix test and add cards

Signed-off-by: Derek Ho <[email protected]>

* Remove type filter and update test according to UX feedback

Signed-off-by: Derek Ho <[email protected]>

* Add link and update test

Signed-off-by: Derek Ho <[email protected]>

* Address PR comments

Signed-off-by: Derek Ho <[email protected]>

* Include useful info in the error toast

Signed-off-by: Derek Ho <[email protected]>

* Update actions in manage table according to UX feedback

Signed-off-by: Derek Ho <[email protected]>

* Add update button and update tests

Signed-off-by: Derek Ho <[email protected]>

* Remove unused code until further implementation

Signed-off-by: Derek Ho <[email protected]>

* Fix router files

Signed-off-by: Derek Ho <[email protected]>

---------

Signed-off-by: Derek Ho <[email protected]>
Signed-off-by: Shenoy Pratik <[email protected]>
Co-authored-by: Shenoy Pratik <[email protected]>
pjfitzgibbons added a commit that referenced this pull request Oct 5, 2023
* Update mocha (#960)
* added code for the change of design of the sidebar, fixed overriding … (#928)
* Refactor add_integration_flyout to break out nested methods (#956)
* [Log Explorer] Remove top level tabs (#970)
* Explorer's timeheader & color change (#959)
* Update caching (#965)
* Move query_utils to /public (#983)
* Remove Zeppelin Parser from Notebook (#985)
* Explorer empty bucket (#990)
* refactored classnames for sidebar (#933)
* Refactor Integrations Backend to abstract IO (#947)
* Create React component for Integrations Setup UI (#1009)
* Create Data sources plugin with Manage Datasources Flow  (#1035)
* Manage datasources (#967)
* Add acceleration management UI  (#989)
* Rename data sources to data connections (#1004)
* Add fallback to show if user does not have datasource API permissions (#1008)
* Add access control tab content (#992)
* Delete datasource and Connection Configuration Tab (#1024)
* adjust explorer chart color and spacing (#1051)
* Configure S3 datasource flow (#1049)
* Manage datasources (#967)
* Add acceleration management UI  (#989)
* Rename data sources to data connections (#1004)
* Add fallback to show if user does not have datasource API permissions (#1008)
* Add access control tab content (#992)
* Delete datasource and Connection Configuration Tab (#1024)
* modified explorer data grid to follow discover look and feel (#1041)
* Create prometheus datasource flow (#1054)
* Manage datasources (#967)
* Add acceleration management UI  (#989)
* Rename data sources to data connections (#1004)
* Add fallback to show if user does not have datasource API permissions (#1008)
* Add access control tab content (#992)
* Delete datasource and Connection Configuration Tab (#1024)
* added design changes for sidebar (#1061)
* updated snapshots (#1062)
* Update UI for integrations setup (#1052)
* Data sources UI improvements (#1059)
* adding redirection to datasources (#1063)
* Move convertDateTime, refactor query_utils (#1064)
* Setup S3 connection with integrations (#1057)
* Use approved svg from UX (#1066)
* Fix missing import 'moment' on query_utils. (#1067)

---------

Signed-off-by: Derek Ho <[email protected]>
Signed-off-by: sumukhswamy <[email protected]>
Signed-off-by: Eric Wei <[email protected]>
Signed-off-by: Paul Sebastian <[email protected]>
Signed-off-by: Peter Fitzgibbons <[email protected]>
Signed-off-by: Shenoy Pratik <[email protected]>
Signed-off-by: Simeon Widdis <[email protected]>
Co-authored-by: sumukhswamy <[email protected]>
Co-authored-by: Eric Wei <[email protected]>
Co-authored-by: Paul Sebastian <[email protected]>
Co-authored-by: Peter Fitzgibbons <[email protected]>
Co-authored-by: Paul Sebastian <[email protected]>
Co-authored-by: Shenoy Pratik <[email protected]>
Co-authored-by: Simeon Widdis <[email protected]>
amsiglan pushed a commit to amsiglan/dashboards-observability that referenced this pull request Jun 7, 2024
* Update mocha (opensearch-project#960)
* added code for the change of design of the sidebar, fixed overriding … (opensearch-project#928)
* Refactor add_integration_flyout to break out nested methods (opensearch-project#956)
* [Log Explorer] Remove top level tabs (opensearch-project#970)
* Explorer's timeheader & color change (opensearch-project#959)
* Update caching (opensearch-project#965)
* Move query_utils to /public (opensearch-project#983)
* Remove Zeppelin Parser from Notebook (opensearch-project#985)
* Explorer empty bucket (opensearch-project#990)
* refactored classnames for sidebar (opensearch-project#933)
* Refactor Integrations Backend to abstract IO (opensearch-project#947)
* Create React component for Integrations Setup UI (opensearch-project#1009)
* Create Data sources plugin with Manage Datasources Flow  (opensearch-project#1035)
* Manage datasources (opensearch-project#967)
* Add acceleration management UI  (opensearch-project#989)
* Rename data sources to data connections (opensearch-project#1004)
* Add fallback to show if user does not have datasource API permissions (opensearch-project#1008)
* Add access control tab content (opensearch-project#992)
* Delete datasource and Connection Configuration Tab (opensearch-project#1024)
* adjust explorer chart color and spacing (opensearch-project#1051)
* Configure S3 datasource flow (opensearch-project#1049)
* Manage datasources (opensearch-project#967)
* Add acceleration management UI  (opensearch-project#989)
* Rename data sources to data connections (opensearch-project#1004)
* Add fallback to show if user does not have datasource API permissions (opensearch-project#1008)
* Add access control tab content (opensearch-project#992)
* Delete datasource and Connection Configuration Tab (opensearch-project#1024)
* modified explorer data grid to follow discover look and feel (opensearch-project#1041)
* Create prometheus datasource flow (opensearch-project#1054)
* Manage datasources (opensearch-project#967)
* Add acceleration management UI  (opensearch-project#989)
* Rename data sources to data connections (opensearch-project#1004)
* Add fallback to show if user does not have datasource API permissions (opensearch-project#1008)
* Add access control tab content (opensearch-project#992)
* Delete datasource and Connection Configuration Tab (opensearch-project#1024)
* added design changes for sidebar (opensearch-project#1061)
* updated snapshots (opensearch-project#1062)
* Update UI for integrations setup (opensearch-project#1052)
* Data sources UI improvements (opensearch-project#1059)
* adding redirection to datasources (opensearch-project#1063)
* Move convertDateTime, refactor query_utils (opensearch-project#1064)
* Setup S3 connection with integrations (opensearch-project#1057)
* Use approved svg from UX (opensearch-project#1066)
* Fix missing import 'moment' on query_utils. (opensearch-project#1067)

---------

Signed-off-by: Derek Ho <[email protected]>
Signed-off-by: sumukhswamy <[email protected]>
Signed-off-by: Eric Wei <[email protected]>
Signed-off-by: Paul Sebastian <[email protected]>
Signed-off-by: Peter Fitzgibbons <[email protected]>
Signed-off-by: Shenoy Pratik <[email protected]>
Signed-off-by: Simeon Widdis <[email protected]>
Co-authored-by: sumukhswamy <[email protected]>
Co-authored-by: Eric Wei <[email protected]>
Co-authored-by: Paul Sebastian <[email protected]>
Co-authored-by: Peter Fitzgibbons <[email protected]>
Co-authored-by: Paul Sebastian <[email protected]>
Co-authored-by: Shenoy Pratik <[email protected]>
Co-authored-by: Simeon Widdis <[email protected]>
(cherry picked from commit 171acde)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants