mirror of
https://github.com/ansible/awx.git
synced 2026-05-19 14:57:39 -02:30
Add Project Edit form and refactor how the form handles credentials
This commit is contained in:
@@ -1,10 +1,62 @@
|
|||||||
import React, { Component } from 'react';
|
import React, { useState } from 'react';
|
||||||
import { CardBody } from '@patternfly/react-core';
|
import { withRouter } from 'react-router-dom';
|
||||||
|
import { withI18n } from '@lingui/react';
|
||||||
|
import { t } from '@lingui/macro';
|
||||||
|
import styled from 'styled-components';
|
||||||
|
import {
|
||||||
|
Card as _Card,
|
||||||
|
CardBody,
|
||||||
|
CardHeader,
|
||||||
|
Tooltip,
|
||||||
|
} from '@patternfly/react-core';
|
||||||
|
import CardCloseButton from '@components/CardCloseButton';
|
||||||
|
import ProjectForm from '../shared/ProjectForm';
|
||||||
|
import { ProjectsAPI } from '@api';
|
||||||
|
|
||||||
class ProjectEdit extends Component {
|
const Card = styled(_Card)`
|
||||||
render() {
|
--pf-c-card--child--PaddingLeft: 0;
|
||||||
return <CardBody>Coming soon :)</CardBody>;
|
--pf-c-card--child--PaddingRight: 0;
|
||||||
}
|
`;
|
||||||
|
|
||||||
|
function ProjectEdit({ project, history, i18n }) {
|
||||||
|
const [formSubmitError, setFormSubmitError] = useState(null);
|
||||||
|
|
||||||
|
const handleSubmit = async values => {
|
||||||
|
try {
|
||||||
|
const {
|
||||||
|
data: { id },
|
||||||
|
} = await ProjectsAPI.update(project.id, values);
|
||||||
|
history.push(`/projects/${id}/details`);
|
||||||
|
} catch (error) {
|
||||||
|
setFormSubmitError(error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleCancel = () => {
|
||||||
|
history.push(`/projects/${project.id}/details`);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Card>
|
||||||
|
<CardHeader css="text-align: right">
|
||||||
|
<Tooltip content={i18n._(t`Close`)} position="top">
|
||||||
|
<CardCloseButton onClick={handleCancel} />
|
||||||
|
</Tooltip>
|
||||||
|
</CardHeader>
|
||||||
|
<CardBody>
|
||||||
|
<ProjectForm
|
||||||
|
project={project}
|
||||||
|
handleCancel={handleCancel}
|
||||||
|
handleSubmit={handleSubmit}
|
||||||
|
/>
|
||||||
|
</CardBody>
|
||||||
|
{formSubmitError ? (
|
||||||
|
<div className="formSubmitError">formSubmitError</div>
|
||||||
|
) : (
|
||||||
|
''
|
||||||
|
)}
|
||||||
|
</Card>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ProjectEdit;
|
export default withI18n()(withRouter(ProjectEdit));
|
||||||
|
|||||||
@@ -30,19 +30,19 @@ const ScmTypeFormRow = styled(FormRow)`
|
|||||||
padding: 24px;
|
padding: 24px;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
function ProjectForm(props) {
|
function ProjectForm({ project, ...props }) {
|
||||||
const { project, handleCancel, handleSubmit, i18n } = props;
|
const { i18n, handleCancel, handleSubmit } = props;
|
||||||
|
const { summary_fields = {} } = project;
|
||||||
const [contentError, setContentError] = useState(null);
|
const [contentError, setContentError] = useState(null);
|
||||||
const [isLoading, setIsLoading] = useState(true);
|
const [isLoading, setIsLoading] = useState(true);
|
||||||
const [organization, setOrganization] = useState(null);
|
const [organization, setOrganization] = useState(
|
||||||
|
summary_fields.organization || null
|
||||||
|
);
|
||||||
|
const [scmSubFormState, setScmSubFormState] = useState(null);
|
||||||
const [scmTypeOptions, setScmTypeOptions] = useState(null);
|
const [scmTypeOptions, setScmTypeOptions] = useState(null);
|
||||||
const [scmCredential, setScmCredential] = useState({
|
const [credentials, setCredentials] = useState({
|
||||||
typeId: null,
|
scm: { typeId: null, value: null },
|
||||||
value: null,
|
insights: { typeId: null, value: null },
|
||||||
});
|
|
||||||
const [insightsCredential, setInsightsCredential] = useState({
|
|
||||||
typeId: null,
|
|
||||||
value: null,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@@ -74,9 +74,32 @@ function ProjectForm(props) {
|
|||||||
ProjectsAPI.readOptions(),
|
ProjectsAPI.readOptions(),
|
||||||
]);
|
]);
|
||||||
|
|
||||||
setScmCredential({ typeId: scmCredentialType.id });
|
|
||||||
setInsightsCredential({ typeId: insightsCredentialType.id });
|
|
||||||
setScmTypeOptions(choices);
|
setScmTypeOptions(choices);
|
||||||
|
|
||||||
|
const { credential } = summary_fields;
|
||||||
|
if (!credential) {
|
||||||
|
setCredentials({
|
||||||
|
scm: { typeId: scmCredentialType.id },
|
||||||
|
insights: { typeId: insightsCredentialType.id },
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { credential_type_id } = credential;
|
||||||
|
setCredentials({
|
||||||
|
scm: {
|
||||||
|
typeId: scmCredentialType.id,
|
||||||
|
value:
|
||||||
|
credential_type_id === scmCredentialType.id ? credential : null,
|
||||||
|
},
|
||||||
|
insights: {
|
||||||
|
typeId: insightsCredentialType.id,
|
||||||
|
value:
|
||||||
|
credential_type_id === insightsCredentialType.id
|
||||||
|
? credential
|
||||||
|
: null,
|
||||||
|
},
|
||||||
|
});
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
setContentError(error);
|
setContentError(error);
|
||||||
} finally {
|
} finally {
|
||||||
@@ -87,22 +110,50 @@ function ProjectForm(props) {
|
|||||||
fetchData();
|
fetchData();
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
const resetScmTypeFields = form => {
|
const scmFormFields = {
|
||||||
const scmFormFields = [
|
scm_url: '',
|
||||||
'scm_url',
|
scm_branch: '',
|
||||||
'scm_branch',
|
scm_refspec: '',
|
||||||
'scm_refspec',
|
credential: '',
|
||||||
'credential',
|
scm_clean: false,
|
||||||
'scm_clean',
|
scm_delete_on_update: false,
|
||||||
'scm_delete_on_update',
|
scm_update_on_launch: false,
|
||||||
'scm_update_on_launch',
|
allow_override: false,
|
||||||
'allow_override',
|
scm_update_cache_timeout: 0,
|
||||||
'scm_update_cache_timeout',
|
};
|
||||||
];
|
|
||||||
|
|
||||||
scmFormFields.forEach(field => {
|
const saveSubFormState = form => {
|
||||||
form.setFieldValue(field, form.initialValues[field]);
|
const updatedScmFormFields = { ...scmFormFields };
|
||||||
form.setFieldTouched(field, false);
|
|
||||||
|
Object.keys(updatedScmFormFields).forEach(label => {
|
||||||
|
updatedScmFormFields[label] = form.values[label];
|
||||||
|
});
|
||||||
|
|
||||||
|
setScmSubFormState(updatedScmFormFields);
|
||||||
|
};
|
||||||
|
|
||||||
|
const resetScmTypeFields = (value, form) => {
|
||||||
|
if (form.values.scm_type === form.initialValues.scm_type) {
|
||||||
|
saveSubFormState(form);
|
||||||
|
}
|
||||||
|
|
||||||
|
Object.keys(scmFormFields).forEach(label => {
|
||||||
|
if (value === form.initialValues.scm_type) {
|
||||||
|
form.setFieldValue(label, scmSubFormState[label]);
|
||||||
|
} else {
|
||||||
|
form.setFieldValue(label, scmFormFields[label]);
|
||||||
|
}
|
||||||
|
form.setFieldTouched(label, false);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleCredentialSelection = (type, value) => {
|
||||||
|
setCredentials({
|
||||||
|
...credentials,
|
||||||
|
[type]: {
|
||||||
|
...credentials[type],
|
||||||
|
value,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -213,7 +264,7 @@ function ProjectForm(props) {
|
|||||||
]}
|
]}
|
||||||
onChange={(event, value) => {
|
onChange={(event, value) => {
|
||||||
form.setFieldValue('scm_type', value);
|
form.setFieldValue('scm_type', value);
|
||||||
resetScmTypeFields(form);
|
resetScmTypeFields(value, form);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</FormGroup>
|
</FormGroup>
|
||||||
@@ -226,29 +277,29 @@ function ProjectForm(props) {
|
|||||||
{
|
{
|
||||||
git: (
|
git: (
|
||||||
<GitSubForm
|
<GitSubForm
|
||||||
setScmCredential={setScmCredential}
|
credential={credentials.scm}
|
||||||
scmCredential={scmCredential}
|
onCredentialSelection={handleCredentialSelection}
|
||||||
scmUpdateOnLaunch={formik.values.scm_update_on_launch}
|
scmUpdateOnLaunch={formik.values.scm_update_on_launch}
|
||||||
/>
|
/>
|
||||||
),
|
),
|
||||||
hg: (
|
hg: (
|
||||||
<HgSubForm
|
<HgSubForm
|
||||||
setScmCredential={setScmCredential}
|
credential={credentials.scm}
|
||||||
scmCredential={scmCredential}
|
onCredentialSelection={handleCredentialSelection}
|
||||||
scmUpdateOnLaunch={formik.values.scm_update_on_launch}
|
scmUpdateOnLaunch={formik.values.scm_update_on_launch}
|
||||||
/>
|
/>
|
||||||
),
|
),
|
||||||
svn: (
|
svn: (
|
||||||
<SvnSubForm
|
<SvnSubForm
|
||||||
setScmCredential={setScmCredential}
|
credential={credentials.scm}
|
||||||
scmCredential={scmCredential}
|
onCredentialSelection={handleCredentialSelection}
|
||||||
scmUpdateOnLaunch={formik.values.scm_update_on_launch}
|
scmUpdateOnLaunch={formik.values.scm_update_on_launch}
|
||||||
/>
|
/>
|
||||||
),
|
),
|
||||||
insights: (
|
insights: (
|
||||||
<InsightsSubForm
|
<InsightsSubForm
|
||||||
setInsightsCredential={setInsightsCredential}
|
credential={credentials.insights}
|
||||||
insightsCredential={insightsCredential}
|
onCredentialSelection={handleCredentialSelection}
|
||||||
scmUpdateOnLaunch={formik.values.scm_update_on_launch}
|
scmUpdateOnLaunch={formik.values.scm_update_on_launch}
|
||||||
/>
|
/>
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -11,8 +11,8 @@ import {
|
|||||||
|
|
||||||
const GitSubForm = ({
|
const GitSubForm = ({
|
||||||
i18n,
|
i18n,
|
||||||
scmCredential,
|
credential,
|
||||||
setScmCredential,
|
onCredentialSelection,
|
||||||
scmUpdateOnLaunch,
|
scmUpdateOnLaunch,
|
||||||
}) => (
|
}) => (
|
||||||
<>
|
<>
|
||||||
@@ -74,8 +74,8 @@ const GitSubForm = ({
|
|||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
<ScmCredentialFormField
|
<ScmCredentialFormField
|
||||||
setScmCredential={setScmCredential}
|
credential={credential}
|
||||||
scmCredential={scmCredential}
|
onCredentialSelection={onCredentialSelection}
|
||||||
/>
|
/>
|
||||||
<ScmTypeOptions scmUpdateOnLaunch={scmUpdateOnLaunch} />
|
<ScmTypeOptions scmUpdateOnLaunch={scmUpdateOnLaunch} />
|
||||||
</>
|
</>
|
||||||
|
|||||||
@@ -10,8 +10,8 @@ import {
|
|||||||
|
|
||||||
const HgSubForm = ({
|
const HgSubForm = ({
|
||||||
i18n,
|
i18n,
|
||||||
scmCredential,
|
credential,
|
||||||
setScmCredential,
|
onCredentialSelection,
|
||||||
scmUpdateOnLaunch,
|
scmUpdateOnLaunch,
|
||||||
}) => (
|
}) => (
|
||||||
<>
|
<>
|
||||||
@@ -34,8 +34,8 @@ const HgSubForm = ({
|
|||||||
/>
|
/>
|
||||||
<BranchFormField i18n={i18n} label={i18n._(t`SCM Branch/Tag/Revision`)} />
|
<BranchFormField i18n={i18n} label={i18n._(t`SCM Branch/Tag/Revision`)} />
|
||||||
<ScmCredentialFormField
|
<ScmCredentialFormField
|
||||||
setScmCredential={setScmCredential}
|
credential={credential}
|
||||||
scmCredential={scmCredential}
|
onCredentialSelection={onCredentialSelection}
|
||||||
/>
|
/>
|
||||||
<ScmTypeOptions scmUpdateOnLaunch={scmUpdateOnLaunch} />
|
<ScmTypeOptions scmUpdateOnLaunch={scmUpdateOnLaunch} />
|
||||||
</>
|
</>
|
||||||
|
|||||||
@@ -8,8 +8,8 @@ import { ScmTypeOptions } from './SharedFields';
|
|||||||
|
|
||||||
const InsightsSubForm = ({
|
const InsightsSubForm = ({
|
||||||
i18n,
|
i18n,
|
||||||
setInsightsCredential,
|
credential,
|
||||||
insightsCredential,
|
onCredentialSelection,
|
||||||
scmUpdateOnLaunch,
|
scmUpdateOnLaunch,
|
||||||
}) => (
|
}) => (
|
||||||
<>
|
<>
|
||||||
@@ -18,19 +18,16 @@ const InsightsSubForm = ({
|
|||||||
validate={required(i18n._(t`Select a value for this field`), i18n)}
|
validate={required(i18n._(t`Select a value for this field`), i18n)}
|
||||||
render={({ form }) => (
|
render={({ form }) => (
|
||||||
<CredentialLookup
|
<CredentialLookup
|
||||||
credentialTypeId={insightsCredential.typeId}
|
credentialTypeId={credential.typeId}
|
||||||
label={i18n._(t`Insights Credential`)}
|
label={i18n._(t`Insights Credential`)}
|
||||||
helperTextInvalid={form.errors.credential}
|
helperTextInvalid={form.errors.credential}
|
||||||
isValid={!form.touched.credential || !form.errors.credential}
|
isValid={!form.touched.credential || !form.errors.credential}
|
||||||
onBlur={() => form.setFieldTouched('credential')}
|
onBlur={() => form.setFieldTouched('credential')}
|
||||||
onChange={credential => {
|
onChange={value => {
|
||||||
form.setFieldValue('credential', credential.id);
|
onCredentialSelection('insights', value);
|
||||||
setInsightsCredential({
|
form.setFieldValue('credential', value.id);
|
||||||
...insightsCredential,
|
|
||||||
value: credential,
|
|
||||||
});
|
|
||||||
}}
|
}}
|
||||||
value={insightsCredential.value}
|
value={credential.value}
|
||||||
required
|
required
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -41,20 +41,17 @@ export const BranchFormField = withI18n()(({ i18n, label }) => (
|
|||||||
));
|
));
|
||||||
|
|
||||||
export const ScmCredentialFormField = withI18n()(
|
export const ScmCredentialFormField = withI18n()(
|
||||||
({ i18n, setScmCredential, scmCredential }) => (
|
({ i18n, credential, onCredentialSelection }) => (
|
||||||
<Field
|
<Field
|
||||||
name="credential"
|
name="credential"
|
||||||
render={({ form }) => (
|
render={({ form }) => (
|
||||||
<CredentialLookup
|
<CredentialLookup
|
||||||
credentialTypeId={scmCredential.typeId}
|
credentialTypeId={credential.typeId}
|
||||||
label={i18n._(t`SCM Credential`)}
|
label={i18n._(t`SCM Credential`)}
|
||||||
value={scmCredential.value}
|
value={credential.value}
|
||||||
onChange={credential => {
|
onChange={value => {
|
||||||
form.setFieldValue('credential', credential.id);
|
onCredentialSelection('scm', value);
|
||||||
setScmCredential({
|
form.setFieldValue('credential', value.id);
|
||||||
...scmCredential,
|
|
||||||
value: credential,
|
|
||||||
});
|
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -10,8 +10,8 @@ import {
|
|||||||
|
|
||||||
const SvnSubForm = ({
|
const SvnSubForm = ({
|
||||||
i18n,
|
i18n,
|
||||||
scmCredential,
|
credential,
|
||||||
setScmCredential,
|
onCredentialSelection,
|
||||||
scmUpdateOnLaunch,
|
scmUpdateOnLaunch,
|
||||||
}) => (
|
}) => (
|
||||||
<>
|
<>
|
||||||
@@ -30,8 +30,8 @@ const SvnSubForm = ({
|
|||||||
/>
|
/>
|
||||||
<BranchFormField i18n={i18n} label={i18n._(t`Revision #`)} />
|
<BranchFormField i18n={i18n} label={i18n._(t`Revision #`)} />
|
||||||
<ScmCredentialFormField
|
<ScmCredentialFormField
|
||||||
setScmCredential={setScmCredential}
|
credential={credential}
|
||||||
scmCredential={scmCredential}
|
onCredentialSelection={onCredentialSelection}
|
||||||
/>
|
/>
|
||||||
<ScmTypeOptions scmUpdateOnLaunch={scmUpdateOnLaunch} />
|
<ScmTypeOptions scmUpdateOnLaunch={scmUpdateOnLaunch} />
|
||||||
</>
|
</>
|
||||||
|
|||||||
Reference in New Issue
Block a user