mirror of
https://github.com/ansible/awx.git
synced 2026-03-04 10:11:05 -03:30
Converts InventorySourcesList to use useRequest in preparation for advanced search
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 { InventorySourcesAPI } from '../../../../../../api';
|
import { InventorySourcesAPI } 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,29 +17,31 @@ const QS_CONFIG = getQSConfig('inventory_sources', {
|
|||||||
});
|
});
|
||||||
|
|
||||||
function InventorySourcesList({ i18n, nodeResource, onUpdateNodeResource }) {
|
function InventorySourcesList({ i18n, nodeResource, onUpdateNodeResource }) {
|
||||||
const [count, setCount] = useState(0);
|
|
||||||
const [error, setError] = useState(null);
|
|
||||||
const [inventorySources, setInventorySources] = useState([]);
|
|
||||||
const [isLoading, setIsLoading] = useState(true);
|
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
|
|
||||||
useEffect(() => {
|
const {
|
||||||
(async () => {
|
result: { inventorySources, count },
|
||||||
setIsLoading(true);
|
error,
|
||||||
setInventorySources([]);
|
isLoading,
|
||||||
setCount(0);
|
request: fetchInventorySources,
|
||||||
|
} = useRequest(
|
||||||
|
useCallback(async () => {
|
||||||
const params = parseQueryString(QS_CONFIG, location.search);
|
const params = parseQueryString(QS_CONFIG, location.search);
|
||||||
try {
|
const results = await InventorySourcesAPI.read(params);
|
||||||
const { data } = await InventorySourcesAPI.read(params);
|
return {
|
||||||
setInventorySources(data.results);
|
inventorySources: results.data.results,
|
||||||
setCount(data.count);
|
count: results.data.count,
|
||||||
} catch (err) {
|
};
|
||||||
setError(err);
|
}, [location]),
|
||||||
} finally {
|
{
|
||||||
setIsLoading(false);
|
inventorySources: [],
|
||||||
}
|
count: 0,
|
||||||
})();
|
}
|
||||||
}, [location]);
|
);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
fetchInventorySources();
|
||||||
|
}, [fetchInventorySources]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<PaginatedDataList
|
<PaginatedDataList
|
||||||
|
|||||||
Reference in New Issue
Block a user