-
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.
[MD] Add initial credential management CRUD pages (#2040)
* Add credential management CRUD pages 1. List all credentials 2. Create your saved credential 3. Edit your credential 4. Delete credentials Signed-off-by: Louis Chu <[email protected]>
- Loading branch information
Showing
29 changed files
with
1,070 additions
and
251 deletions.
There are no files selected for viewing
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
{ | ||
"id": "credentialManagement", | ||
"version": "1.0.0", | ||
"opensearchDashboardsVersion": "opensearchDashboards", | ||
"version": "opensearchDashboards", | ||
"server": true, | ||
"ui": true, | ||
"requiredPlugins": ["navigation"], | ||
"optionalPlugins": [] | ||
"requiredPlugins": ["management"], | ||
"requiredBundles": ["opensearchDashboardsReact"] | ||
} |
This file was deleted.
Oops, something went wrong.
124 changes: 0 additions & 124 deletions
124
src/plugins/credential_management/public/components/app.tsx
This file was deleted.
Oops, something went wrong.
40 changes: 40 additions & 0 deletions
40
src/plugins/credential_management/public/components/breadcrumbs.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,40 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import { i18n } from '@osd/i18n'; | ||
import { CredentialEditPageItem } from './types'; | ||
|
||
export function getListBreadcrumbs() { | ||
return [ | ||
{ | ||
text: i18n.translate('credentialManagement.credentials.listBreadcrumb', { | ||
defaultMessage: 'Credentials', | ||
}), | ||
href: `/`, | ||
}, | ||
]; | ||
} | ||
|
||
export function getCreateBreadcrumbs() { | ||
return [ | ||
...getListBreadcrumbs(), | ||
{ | ||
text: i18n.translate('credentialManagement.credentials.createBreadcrumb', { | ||
defaultMessage: 'Create credentials', | ||
}), | ||
href: `/create`, | ||
}, | ||
]; | ||
} | ||
|
||
export function getEditBreadcrumbs(credentials: CredentialEditPageItem) { | ||
return [ | ||
...getListBreadcrumbs(), | ||
{ | ||
text: credentials.title, | ||
href: `/${credentials.id}`, | ||
}, | ||
]; | ||
} |
32 changes: 32 additions & 0 deletions
32
src/plugins/credential_management/public/components/create_button/create_button.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,32 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
// @ts-ignore | ||
import { euiColorAccent } from '@elastic/eui/dist/eui_theme_light.json'; | ||
import React from 'react'; | ||
import * as H from 'history'; | ||
|
||
import { EuiButton } from '@elastic/eui'; | ||
import { FormattedMessage } from '@osd/i18n/react'; | ||
|
||
interface Props { | ||
history: H.History; | ||
} | ||
|
||
export const CreateButton = ({ history }: Props) => { | ||
return ( | ||
<EuiButton | ||
data-test-subj="createCredentialButton" | ||
fill={true} | ||
onClick={() => history.push('/create')} | ||
iconType="plusInCircle" | ||
> | ||
<FormattedMessage | ||
id="credentialManagement.credentialsTable.createBtn" | ||
defaultMessage="Save your credential" | ||
/> | ||
</EuiButton> | ||
); | ||
}; |
6 changes: 6 additions & 0 deletions
6
src/plugins/credential_management/public/components/create_button/index.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,6 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
export { CreateButton } from './create_button'; |
72 changes: 72 additions & 0 deletions
72
...ential_management/public/components/create_credential_wizard/components/header/header.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,72 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
import React from 'react'; | ||
|
||
import { EuiBetaBadge, EuiSpacer, EuiTitle, EuiText, EuiCode, EuiLink } from '@elastic/eui'; | ||
|
||
import { i18n } from '@osd/i18n'; | ||
import { FormattedMessage } from '@osd/i18n/react'; | ||
import { DocLinksStart } from 'opensearch-dashboards/public'; | ||
import { useOpenSearchDashboards } from '../../../../../../opensearch_dashboards_react/public'; | ||
import { CredentialManagementContext } from '../../../../types'; | ||
export const Header = ({ docLinks }: { docLinks: DocLinksStart }) => { | ||
const changeTitle = useOpenSearchDashboards<CredentialManagementContext>().services.chrome | ||
.docTitle.change; | ||
const createCredentialHeader = i18n.translate('credentialManagement.createIndexPatternHeader', { | ||
defaultMessage: 'Save Your Credential', | ||
}); | ||
|
||
changeTitle(createCredentialHeader); | ||
|
||
return ( | ||
<div> | ||
<EuiTitle> | ||
<h1> | ||
{createCredentialHeader} | ||
<> | ||
{' '} | ||
<EuiBetaBadge | ||
label={i18n.translate('credentialManagement.createCredential.betaLabel', { | ||
defaultMessage: 'Beta', | ||
})} | ||
/> | ||
</> | ||
</h1> | ||
</EuiTitle> | ||
<EuiSpacer size="s" /> | ||
<EuiText> | ||
<p> | ||
<FormattedMessage | ||
id="credentialManagement.createCredential.description" | ||
defaultMessage="A credential can be attached to multiple sources. For example, {credential} can be attached to two data sources {first} and {second}." | ||
values={{ | ||
credential: <EuiCode>username-password-credential</EuiCode>, | ||
first: <EuiCode>os-service-log</EuiCode>, | ||
second: <EuiCode>os-application-log</EuiCode>, | ||
}} | ||
/> | ||
<br /> | ||
<EuiLink | ||
href={docLinks.links.noDocumentation.indexPatterns.introduction} | ||
target="_blank" | ||
external | ||
> | ||
<FormattedMessage | ||
id="credentialManagement.createCredential.documentation" | ||
defaultMessage="Read documentation" | ||
/> | ||
</EuiLink> | ||
</p> | ||
</EuiText> | ||
{prompt ? ( | ||
<> | ||
<EuiSpacer size="m" /> | ||
{prompt} | ||
</> | ||
) : null} | ||
</div> | ||
); | ||
}; |
6 changes: 6 additions & 0 deletions
6
...dential_management/public/components/create_credential_wizard/components/header/index.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,6 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
export { Header } from './header'; |
Oops, something went wrong.