mirror of
https://github.com/ansible/awx.git
synced 2026-04-07 02:59:21 -02:30
Merge pull request #7754 from mabashian/convert-JobTemplatesList-useRequest
Converts JobTemplatesList to use useRequest in preparation for advanced search Reviewed-by: Jake McDermott <yo@jakemcdermott.me> https://github.com/jakemcdermott
This commit is contained in:
@@ -1,10 +1,11 @@
|
|||||||
import React, { useState, useEffect } from 'react';
|
import React, { useEffect, useCallback } from 'react';
|
||||||
import { useLocation } from 'react-router-dom';
|
import { useLocation } from 'react-router-dom';
|
||||||
import { withI18n } from '@lingui/react';
|
import { withI18n } from '@lingui/react';
|
||||||
import { t } from '@lingui/macro';
|
import { t } from '@lingui/macro';
|
||||||
import { func, shape } from 'prop-types';
|
import { func, shape } from 'prop-types';
|
||||||
import { JobTemplatesAPI } from '../../../../../../api';
|
import { JobTemplatesAPI } from '../../../../../../api';
|
||||||
import { getQSConfig, parseQueryString } from '../../../../../../util/qs';
|
import { getQSConfig, parseQueryString } from '../../../../../../util/qs';
|
||||||
|
import useRequest from '../../../../../../util/useRequest';
|
||||||
import PaginatedDataList from '../../../../../../components/PaginatedDataList';
|
import PaginatedDataList from '../../../../../../components/PaginatedDataList';
|
||||||
import DataListToolbar from '../../../../../../components/DataListToolbar';
|
import DataListToolbar from '../../../../../../components/DataListToolbar';
|
||||||
import CheckboxListItem from '../../../../../../components/CheckboxListItem';
|
import CheckboxListItem from '../../../../../../components/CheckboxListItem';
|
||||||
@@ -16,32 +17,33 @@ const QS_CONFIG = getQSConfig('job_templates', {
|
|||||||
});
|
});
|
||||||
|
|
||||||
function JobTemplatesList({ i18n, nodeResource, onUpdateNodeResource }) {
|
function JobTemplatesList({ i18n, nodeResource, onUpdateNodeResource }) {
|
||||||
const [count, setCount] = useState(0);
|
|
||||||
const [error, setError] = useState(null);
|
|
||||||
const [isLoading, setIsLoading] = useState(true);
|
|
||||||
const [jobTemplates, setJobTemplates] = useState([]);
|
|
||||||
|
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
|
|
||||||
useEffect(() => {
|
const {
|
||||||
(async () => {
|
result: { jobTemplates, count },
|
||||||
setIsLoading(true);
|
error,
|
||||||
setJobTemplates([]);
|
isLoading,
|
||||||
setCount(0);
|
request: fetchJobTemplates,
|
||||||
|
} = useRequest(
|
||||||
|
useCallback(async () => {
|
||||||
const params = parseQueryString(QS_CONFIG, location.search);
|
const params = parseQueryString(QS_CONFIG, location.search);
|
||||||
try {
|
const results = await JobTemplatesAPI.read(params, {
|
||||||
const { data } = await JobTemplatesAPI.read(params, {
|
role_level: 'execute_role',
|
||||||
role_level: 'execute_role',
|
});
|
||||||
});
|
return {
|
||||||
setJobTemplates(data.results);
|
jobTemplates: results.data.results,
|
||||||
setCount(data.count);
|
count: results.data.count,
|
||||||
} catch (err) {
|
};
|
||||||
setError(err);
|
}, [location]),
|
||||||
} finally {
|
{
|
||||||
setIsLoading(false);
|
jobTemplates: [],
|
||||||
}
|
count: 0,
|
||||||
})();
|
}
|
||||||
}, [location]);
|
);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
fetchJobTemplates();
|
||||||
|
}, [fetchJobTemplates]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<PaginatedDataList
|
<PaginatedDataList
|
||||||
@@ -76,11 +78,11 @@ function JobTemplatesList({ i18n, nodeResource, onUpdateNodeResource }) {
|
|||||||
key: 'playbook',
|
key: 'playbook',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: i18n._(t`Created By (Username)`),
|
name: i18n._(t`Created by (username)`),
|
||||||
key: 'created_by__username',
|
key: 'created_by__username',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: i18n._(t`Modified By (Username)`),
|
name: i18n._(t`Modified by (username)`),
|
||||||
key: 'modified_by__username',
|
key: 'modified_by__username',
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user