Fix project lookup autocomplete behavior

* Refactor credential lookup to use useRequest hook
* Update unit tests
This commit is contained in:
Marliana Lara 2020-05-20 12:29:02 -04:00
parent e509bbfbb3
commit ea5e35910f
No known key found for this signature in database
GPG Key ID: 38C73B40DFA809EE
9 changed files with 141 additions and 99 deletions

View File

@ -1,4 +1,4 @@
import React, { useEffect, useState, useRef } from 'react';
import React, { useCallback, useEffect } from 'react';
import { bool, func, node, number, string, oneOfType } from 'prop-types';
import { withRouter } from 'react-router-dom';
import { withI18n } from '@lingui/react';
@ -10,6 +10,7 @@ import { getQSConfig, parseQueryString, mergeParams } from '../../util/qs';
import { FieldTooltip } from '../FormField';
import Lookup from './Lookup';
import OptionsList from '../OptionsList';
import useRequest from '../../util/useRequest';
import LookupErrorMessage from './shared/LookupErrorMessage';
const QS_CONFIG = getQSConfig('credentials', {
@ -32,20 +33,12 @@ function CredentialLookup({
i18n,
tooltip,
}) {
const [credentials, setCredentials] = useState([]);
const [count, setCount] = useState(0);
const [error, setError] = useState(null);
const isMounted = useRef(null);
useEffect(() => {
isMounted.current = true;
return () => {
isMounted.current = false;
};
}, []);
useEffect(() => {
(async () => {
const {
result: { count, credentials },
error,
request: fetchCredentials,
} = useRequest(
useCallback(async () => {
const params = parseQueryString(QS_CONFIG, history.location.search);
const typeIdParams = credentialTypeId
? { credential_type: credentialTypeId }
@ -54,21 +47,23 @@ function CredentialLookup({
? { credential_type__kind: credentialTypeKind }
: {};
try {
const { data } = await CredentialsAPI.read(
mergeParams(params, { ...typeIdParams, ...typeKindParams })
);
if (isMounted.current) {
setCredentials(data.results);
setCount(data.count);
}
} catch (err) {
if (isMounted.current) {
setError(err);
}
}
})();
}, [credentialTypeId, credentialTypeKind, history.location.search]);
const { data } = await CredentialsAPI.read(
mergeParams(params, { ...typeIdParams, ...typeKindParams })
);
return {
count: data.count,
credentials: data.results,
};
}, [credentialTypeId, credentialTypeKind, history.location.search]),
{
count: 0,
credentials: [],
}
);
useEffect(() => {
fetchCredentials();
}, [fetchCredentials]);
// TODO: replace credential type search with REST-based grabbing of cred types

View File

@ -21,6 +21,7 @@ const QS_CONFIG = getQSConfig('project', {
function ProjectLookup({
helperTextInvalid,
autocomplete,
i18n,
isValid,
onChange,
@ -38,14 +39,14 @@ function ProjectLookup({
useCallback(async () => {
const params = parseQueryString(QS_CONFIG, history.location.search);
const { data } = await ProjectsAPI.read(params);
if (data.count === 1) {
onChange(data.results[0]);
if (data.count === 1 && autocomplete) {
autocomplete(data.results[0]);
}
return {
count: data.count,
projects: data.results,
};
}, [onChange, history.location.search]),
}, [history.location.search, autocomplete]),
{
count: 0,
projects: [],
@ -131,22 +132,24 @@ function ProjectLookup({
}
ProjectLookup.propTypes = {
value: Project,
autocomplete: func,
helperTextInvalid: node,
isValid: bool,
onBlur: func,
onChange: func.isRequired,
required: bool,
tooltip: string,
value: Project,
};
ProjectLookup.defaultProps = {
autocomplete: () => {},
helperTextInvalid: '',
isValid: true,
onBlur: () => {},
required: false,
tooltip: '',
value: null,
onBlur: () => {},
};
export { ProjectLookup as _ProjectLookup };

View File

@ -15,12 +15,14 @@ describe('<ProjectLookup />', () => {
count: 1,
},
});
const onChange = jest.fn();
const autocomplete = jest.fn();
await act(async () => {
mountWithContexts(<ProjectLookup onChange={onChange} />);
mountWithContexts(
<ProjectLookup autocomplete={autocomplete} onChange={() => {}} />
);
});
await sleep(0);
expect(onChange).toHaveBeenCalledWith({ id: 1 });
expect(autocomplete).toHaveBeenCalledWith({ id: 1 });
});
test('should not auto-select project when multiple available', async () => {
@ -30,11 +32,13 @@ describe('<ProjectLookup />', () => {
count: 2,
},
});
const onChange = jest.fn();
const autocomplete = jest.fn();
await act(async () => {
mountWithContexts(<ProjectLookup onChange={onChange} />);
mountWithContexts(
<ProjectLookup autocomplete={autocomplete} onChange={() => {}} />
);
});
await sleep(0);
expect(onChange).not.toHaveBeenCalled();
expect(autocomplete).not.toHaveBeenCalled();
});
});

View File

@ -144,7 +144,7 @@ const InventorySourceForm = ({
overwrite: source?.overwrite || false,
overwrite_vars: source?.overwrite_vars || false,
source: source?.source || '',
source_path: source?.source_path || '',
source_path: source?.source_path === '' ? '/ (project root)' : '',
source_project: source?.summary_fields?.source_project || null,
source_vars: source?.source_vars || '---\n',
update_cache_timeout: source?.update_cache_timeout || 0,

View File

@ -37,10 +37,10 @@ const SCMSubForm = ({ i18n }) => {
);
useEffect(() => {
if (projectField.value?.id) {
fetchSourcePath(projectField.value.id);
if (projectMeta.initialValue) {
fetchSourcePath(projectMeta.initialValue.id);
}
}, [fetchSourcePath, projectField.value]);
}, [fetchSourcePath, projectMeta.initialValue]);
const handleProjectUpdate = useCallback(
value => {
@ -51,6 +51,16 @@ const SCMSubForm = ({ i18n }) => {
[] // eslint-disable-line react-hooks/exhaustive-deps
);
const handleProjectAutocomplete = useCallback(
val => {
projectHelpers.setValue(val);
if (!projectMeta.initialValue) {
fetchSourcePath(val.id);
}
},
[] // eslint-disable-line react-hooks/exhaustive-deps
);
return (
<>
<CredentialLookup
@ -62,6 +72,7 @@ const SCMSubForm = ({ i18n }) => {
}}
/>
<ProjectLookup
autocomplete={handleProjectAutocomplete}
value={projectField.value}
isValid={!projectMeta.touched || !projectMeta.error}
helperTextInvalid={projectMeta.error}

View File

@ -6,9 +6,25 @@ import {
waitForElement,
} from '../../../../testUtils/enzymeHelpers';
import JobTemplateAdd from './JobTemplateAdd';
import { JobTemplatesAPI, LabelsAPI } from '../../../api';
import {
CredentialsAPI,
CredentialTypesAPI,
JobTemplatesAPI,
LabelsAPI,
ProjectsAPI,
} from '../../../api';
jest.mock('../../../api');
CredentialsAPI.read.mockResolvedValue({
data: {
results: [],
count: 0,
},
});
CredentialTypesAPI.loadAllTypes.mockResolvedValue([]);
ProjectsAPI.readPlaybooks.mockResolvedValue({
data: [],
});
const jobTemplateData = {
allow_callbacks: false,

View File

@ -6,7 +6,13 @@ import {
mountWithContexts,
waitForElement,
} from '../../../../testUtils/enzymeHelpers';
import { JobTemplatesAPI, LabelsAPI, ProjectsAPI } from '../../../api';
import {
CredentialsAPI,
CredentialTypesAPI,
JobTemplatesAPI,
LabelsAPI,
ProjectsAPI,
} from '../../../api';
import JobTemplateEdit from './JobTemplateEdit';
jest.mock('../../../api');
@ -60,7 +66,7 @@ const mockJobTemplate = {
{ id: 2, kind: 'ssh', name: 'Bar' },
],
project: {
id: 15,
id: 3,
name: 'Boo',
},
},
@ -176,6 +182,13 @@ ProjectsAPI.readPlaybooks.mockResolvedValue({
data: mockRelatedProjectPlaybooks,
});
LabelsAPI.read.mockResolvedValue({ data: { results: [] } });
CredentialsAPI.read.mockResolvedValue({
data: {
results: [],
count: 0,
},
});
CredentialTypesAPI.loadAllTypes.mockResolvedValue([]);
describe('<JobTemplateEdit />', () => {
beforeEach(() => {
@ -251,7 +264,7 @@ describe('<JobTemplateEdit />', () => {
const expected = {
...mockJobTemplate,
project: mockJobTemplate.project.id,
project: mockJobTemplate.project,
...updatedTemplateData,
};
delete expected.summary_fields;

View File

@ -46,27 +46,25 @@ const { origin } = document.location;
function JobTemplateForm({
template,
validateField,
handleCancel,
handleSubmit,
setFieldValue,
submitError,
i18n,
}) {
const { values: formikValues } = useFormikContext();
const [contentError, setContentError] = useState(false);
const [project, setProject] = useState(template?.summary_fields?.project);
const [inventory, setInventory] = useState(
template?.summary_fields?.inventory
);
const [allowCallbacks, setAllowCallbacks] = useState(
Boolean(template?.host_config_key)
);
const [enableWebhooks, setEnableWebhooks] = useState(
Boolean(template.webhook_service)
);
const { values: formikValues } = useFormikContext();
const [jobTypeField, jobTypeMeta, jobTypeHelpers] = useField({
name: 'job_type',
validate: required(null, i18n),
@ -74,16 +72,13 @@ function JobTemplateForm({
const [, inventoryMeta, inventoryHelpers] = useField('inventory');
const [projectField, projectMeta, projectHelpers] = useField({
name: 'project',
validate: () => handleProjectValidation(),
validate: project => handleProjectValidation(project),
});
const [scmField, , scmHelpers] = useField('scm_branch');
const [playbookField, playbookMeta, playbookHelpers] = useField({
name: 'playbook',
validate: required(i18n._(t`Select a value for this field`), i18n),
});
const [credentialField, , credentialHelpers] = useField('credentials');
const [labelsField, , labelsHelpers] = useField('labels');
const [limitField, limitMeta] = useField('limit');
@ -101,13 +96,10 @@ function JobTemplateForm({
contentLoading: hasProjectLoading,
} = useRequest(
useCallback(async () => {
let projectData;
if (template?.project) {
projectData = await ProjectsAPI.readDetail(template?.project);
validateField('project');
setProject(projectData.data);
await ProjectsAPI.readDetail(template?.project);
}
}, [template, validateField])
}, [template])
);
const {
@ -133,26 +125,28 @@ function JobTemplateForm({
loadRelatedInstanceGroups();
}, [loadRelatedInstanceGroups]);
const handleProjectValidation = () => {
const handleProjectValidation = project => {
if (!project && projectMeta.touched) {
return i18n._(t`Select a value for this field`);
}
if (project && project.status === 'never updated') {
if (project?.value?.status === 'never updated') {
return i18n._(t`This project needs to be updated`);
}
return undefined;
};
const handleProjectUpdate = useCallback(
newProject => {
if (project?.id !== newProject?.id) {
// Clear the selected playbook value when a different project is selected or
// when the project is deselected.
playbookHelpers.setValue(0);
}
setProject(newProject);
projectHelpers.setValue(newProject);
value => {
playbookHelpers.setValue(0);
scmHelpers.setValue('');
projectHelpers.setValue(value);
},
[] // eslint-disable-line react-hooks/exhaustive-deps
);
const handleProjectAutocomplete = useCallback(
val => {
projectHelpers.setValue(val);
},
[] // eslint-disable-line react-hooks/exhaustive-deps
);
@ -189,8 +183,12 @@ function JobTemplateForm({
return <ContentLoading />;
}
if (instanceGroupError || projectContentError) {
return <ContentError error={contentError} />;
if (contentError || instanceGroupError || projectContentError) {
return (
<ContentError
error={contentError || instanceGroupError || projectContentError}
/>
);
}
return (
@ -261,18 +259,18 @@ function JobTemplateForm({
</div>
)}
</FieldWithPrompt>
<ProjectLookup
value={project}
value={projectField.value}
onBlur={() => projectHelpers.setTouched()}
tooltip={i18n._(t`Select the project containing the playbook
you want this job to execute.`)}
isValid={!projectMeta.touched || !projectMeta.error}
helperTextInvalid={projectMeta.error}
onChange={handleProjectUpdate}
autocomplete={handleProjectAutocomplete}
required
/>
{project?.allow_override && (
{projectField.value?.allow_override && (
<FieldWithPrompt
fieldId="template-scm-branch"
label={i18n._(t`Source Control Branch`)}
@ -299,7 +297,7 @@ function JobTemplateForm({
content={i18n._(t`Select the playbook to be executed by this job.`)}
/>
<PlaybookSelect
projectId={project?.id || projectField.value?.id}
projectId={projectField.value?.id}
isValid={!playbookMeta.touched || !playbookMeta.error}
field={playbookField}
onBlur={() => playbookHelpers.setTouched()}
@ -609,6 +607,8 @@ const FormikApp = withFormik({
} = template;
return {
allow_callbacks: template.allow_callbacks || false,
allow_simultaneous: template.allow_simultaneous || false,
ask_credential_on_launch: template.ask_credential_on_launch || false,
ask_diff_mode_on_launch: template.ask_diff_mode_on_launch || false,
ask_inventory_on_launch: template.ask_inventory_on_launch || false,
@ -619,31 +619,29 @@ const FormikApp = withFormik({
ask_tags_on_launch: template.ask_tags_on_launch || false,
ask_variables_on_launch: template.ask_variables_on_launch || false,
ask_verbosity_on_launch: template.ask_verbosity_on_launch || false,
name: template.name || '',
description: template.description || '',
job_type: template.job_type || 'run',
inventory: template.inventory || null,
project: template.project || null,
scm_branch: template.scm_branch || '',
playbook: template.playbook || '',
labels: summary_fields.labels.results || [],
forks: template.forks || 0,
limit: template.limit || '',
verbosity: template.verbosity || '0',
job_slice_count: template.job_slice_count || 1,
timeout: template.timeout || 0,
diff_mode: template.diff_mode || false,
job_tags: template.job_tags || '',
skip_tags: template.skip_tags || '',
become_enabled: template.become_enabled || false,
allow_callbacks: template.allow_callbacks || false,
allow_simultaneous: template.allow_simultaneous || false,
use_fact_cache: template.use_fact_cache || false,
credentials: summary_fields.credentials || [],
description: template.description || '',
diff_mode: template.diff_mode || false,
extra_vars: template.extra_vars || '---\n',
forks: template.forks || 0,
host_config_key: template.host_config_key || '',
initialInstanceGroups: [],
instanceGroups: [],
credentials: summary_fields.credentials || [],
extra_vars: template.extra_vars || '---\n',
inventory: template.inventory || null,
job_slice_count: template.job_slice_count || 1,
job_tags: template.job_tags || '',
job_type: template.job_type || 'run',
labels: summary_fields.labels.results || [],
limit: template.limit || '',
name: template.name || '',
playbook: template.playbook || '',
project: summary_fields?.project || null,
scm_branch: template.scm_branch || '',
skip_tags: template.skip_tags || '',
timeout: template.timeout || 0,
use_fact_cache: template.use_fact_cache || false,
verbosity: template.verbosity || '0',
webhook_service: template.webhook_service || '',
webhook_url: template?.related?.webhook_receiver
? `${origin}${template.related.webhook_receiver}`

View File

@ -13,6 +13,7 @@ import {
JobTemplatesAPI,
ProjectsAPI,
CredentialsAPI,
CredentialTypesAPI,
} from '../../../api';
jest.mock('../../../api');
@ -99,6 +100,7 @@ describe('<JobTemplateForm />', () => {
LabelsAPI.read.mockReturnValue({
data: mockData.summary_fields.labels,
});
CredentialTypesAPI.loadAllTypes.mockResolvedValue([]);
CredentialsAPI.read.mockReturnValue({
data: { results: mockCredentials },
});