-
Notifications
You must be signed in to change notification settings - Fork 195
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
These changes introduce a new UI feature that allows users to create resources from the associated list view. Clicking the 'Create' button opens up the EditorDialog used in the generic 'Create / Apply' button, now accepting generic YAML/JSON text rather than explicitly expecting an item that looks like a Kubernetes resource. The dialog box also includes a generic template for each resource. Fixes: #1820 Signed-off-by: Evangelos Skopelitis <eskopelitis@microsoft.com>
- Loading branch information
Showing
17 changed files
with
332 additions
and
44 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
frontend/src/components/common/CreateResourceButton.stories.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,39 @@ | ||
import { Meta, StoryFn } from '@storybook/react'; | ||
import React from 'react'; | ||
import { Provider } from 'react-redux'; | ||
import store from '../../redux/stores/store'; | ||
import { CreateResourceButton, CreateResourceButtonProps } from './CreateResourceButton'; | ||
|
||
export default { | ||
title: 'CreateResourceButton', | ||
component: CreateResourceButton, | ||
decorators: [ | ||
Story => ( | ||
<Provider store={store}> | ||
<Story /> | ||
</Provider> | ||
), | ||
], | ||
} as Meta; | ||
|
||
const Template: StoryFn<CreateResourceButtonProps> = args => <CreateResourceButton {...args} />; | ||
|
||
export const ConfigMap = Template.bind({}); | ||
ConfigMap.args = { | ||
resource: 'Config Map', | ||
}; | ||
|
||
export const Lease = Template.bind({}); | ||
Lease.args = { | ||
resource: 'Lease', | ||
}; | ||
|
||
export const RuntimeClass = Template.bind({}); | ||
RuntimeClass.args = { | ||
resource: 'RuntimeClass', | ||
}; | ||
|
||
export const Secret = Template.bind({}); | ||
Secret.args = { | ||
resource: 'Secret', | ||
}; |
142 changes: 142 additions & 0 deletions
142
frontend/src/components/common/CreateResourceButton.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,142 @@ | ||
import React from 'react'; | ||
import { useTranslation } from 'react-i18next'; | ||
import { useDispatch } from 'react-redux'; | ||
import { getCluster } from '../../lib/cluster'; | ||
import { apply } from '../../lib/k8s/apiProxy'; | ||
import { KubeObject, KubeObjectInterface } from '../../lib/k8s/cluster'; | ||
import ConfigMap from '../../lib/k8s/configMap'; | ||
import { Lease } from '../../lib/k8s/lease'; | ||
import { RuntimeClass } from '../../lib/k8s/runtime'; | ||
import Secret from '../../lib/k8s/secret'; | ||
import { clusterAction } from '../../redux/clusterActionSlice'; | ||
import { EventStatus, HeadlampEventType, useEventCallback } from '../../redux/headlampEventSlice'; | ||
import { ActionButton, AuthVisible, EditorDialog } from '../common'; | ||
|
||
export interface CreateResourceButtonProps { | ||
resource: KubeObject; | ||
resourceName: string; | ||
} | ||
|
||
export function CreateResourceButton(props: CreateResourceButtonProps) { | ||
const { resource, resourceName } = props; | ||
const { t } = useTranslation(['glossary', 'translation']); | ||
const [openDialog, setOpenDialog] = React.useState(false); | ||
const [errorMessage, setErrorMessage] = React.useState(''); | ||
const dispatchCreateEvent = useEventCallback(HeadlampEventType.CREATE_RESOURCE); | ||
const dispatch = useDispatch(); | ||
|
||
const applyFunc = async (newItems: KubeObjectInterface[], clusterName: string) => { | ||
await Promise.allSettled(newItems.map(newItem => apply(newItem, clusterName))).then( | ||
(values: any) => { | ||
values.forEach((value: any, index: number) => { | ||
if (value.status === 'rejected') { | ||
let msg; | ||
const kind = newItems[index].kind; | ||
const name = newItems[index].metadata.name; | ||
const apiVersion = newItems[index].apiVersion; | ||
if (newItems.length === 1) { | ||
msg = t('translation|Failed to create {{ kind }} {{ name }}.', { kind, name }); | ||
} else { | ||
msg = t('translation|Failed to create {{ kind }} {{ name }} in {{ apiVersion }}.', { | ||
kind, | ||
name, | ||
apiVersion, | ||
}); | ||
} | ||
setErrorMessage(msg); | ||
setOpenDialog(true); | ||
throw msg; | ||
} | ||
}); | ||
} | ||
); | ||
}; | ||
|
||
function handleSave(newItemDefs: KubeObjectInterface[]) { | ||
let massagedNewItemDefs = newItemDefs; | ||
const cancelUrl = location.pathname; | ||
|
||
// check if all yaml objects are valid | ||
for (let i = 0; i < massagedNewItemDefs.length; i++) { | ||
if (massagedNewItemDefs[i].kind === 'List') { | ||
// flatten this List kind with the items that it has which is a list of valid k8s resources | ||
const deletedItem = massagedNewItemDefs.splice(i, 1); | ||
massagedNewItemDefs = massagedNewItemDefs.concat(deletedItem[0].items); | ||
} | ||
if (!massagedNewItemDefs[i].metadata?.name) { | ||
setErrorMessage( | ||
t(`translation|Invalid: One or more of resources doesn't have a name property`) | ||
); | ||
return; | ||
} | ||
if (!massagedNewItemDefs[i].kind) { | ||
setErrorMessage(t('translation|Invalid: Please set a kind to the resource')); | ||
return; | ||
} | ||
} | ||
// all resources name | ||
const resourceNames = massagedNewItemDefs.map(newItemDef => newItemDef.metadata.name); | ||
setOpenDialog(false); | ||
|
||
const clusterName = getCluster() || ''; | ||
|
||
dispatch( | ||
clusterAction(() => applyFunc(massagedNewItemDefs, clusterName), { | ||
startMessage: t('translation|Applying {{ newItemName }}…', { | ||
newItemName: resourceNames.join(','), | ||
}), | ||
cancelledMessage: t('translation|Cancelled applying {{ newItemName }}.', { | ||
newItemName: resourceNames.join(','), | ||
}), | ||
successMessage: t('translation|Applied {{ newItemName }}.', { | ||
newItemName: resourceNames.join(','), | ||
}), | ||
errorMessage: t('translation|Failed to apply {{ newItemName }}.', { | ||
newItemName: resourceNames.join(','), | ||
}), | ||
cancelUrl, | ||
}) | ||
); | ||
|
||
dispatchCreateEvent({ | ||
status: EventStatus.CONFIRMED, | ||
}); | ||
} | ||
|
||
function getCurrentResource(resourceName: string) { | ||
switch (resourceName) { | ||
case 'ConfigMap': | ||
return ConfigMap; | ||
case 'Lease': | ||
return Lease; | ||
case 'RuntimeClass': | ||
return RuntimeClass; | ||
case 'Secret': | ||
return Secret; | ||
} | ||
} | ||
|
||
return ( | ||
<AuthVisible item={getCurrentResource(resourceName)} authVerb="create"> | ||
<ActionButton | ||
color="primary" | ||
description={t('translation|Create {{ resourceName }}', { resourceName })} | ||
icon={'mdi:plus-circle'} | ||
onClick={() => { | ||
setOpenDialog(true); | ||
}} | ||
/> | ||
|
||
<EditorDialog | ||
item={resource} | ||
open={openDialog} | ||
onClose={() => setOpenDialog(false)} | ||
onSave={handleSave} | ||
saveLabel={t('translation|Apply')} | ||
errorMessage={errorMessage} | ||
onEditorChanged={() => setErrorMessage('')} | ||
title={t('translation|Create {{ resourceName }}', { resourceName })} | ||
/> | ||
</AuthVisible> | ||
); | ||
} |
1 change: 1 addition & 0 deletions
1
...tend/src/components/common/__snapshots__/CreateResourceButton.ConfigMap.stories.storyshot
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 @@ | ||
<DocumentFragment /> |
1 change: 1 addition & 0 deletions
1
frontend/src/components/common/__snapshots__/CreateResourceButton.Lease.stories.storyshot
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 @@ | ||
<DocumentFragment /> |
1 change: 1 addition & 0 deletions
1
...d/src/components/common/__snapshots__/CreateResourceButton.RuntimeClass.stories.storyshot
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 @@ | ||
<DocumentFragment /> |
1 change: 1 addition & 0 deletions
1
frontend/src/components/common/__snapshots__/CreateResourceButton.Secret.stories.storyshot
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 @@ | ||
<DocumentFragment /> |
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.