META-INF.resources.js.components.table.TableWithPagination.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.digital.signature.web
Show all versions of com.liferay.digital.signature.web
Liferay Digital Signature Web
The newest version!
/**
* SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
* SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
*/
import ClayLayout from '@clayui/layout';
import {ClayPaginationBarWithBasicItems} from '@clayui/pagination-bar';
import React, {useContext} from 'react';
import {withLoading} from '../loading/Loading';
import SearchContext from '../management-toolbar/SearchContext';
import {withEmpty} from './EmptyState';
import Table from './Table';
const TableWithPagination = ({
actions,
columns,
deltaValues = [4, 8, 20, 40, 60],
items,
totalCount,
}) => {
const [{page, pageSize}, dispatch] = useContext(SearchContext);
const deltas = deltaValues.map((label) => ({label}));
return (
{totalCount > deltaValues[0] && (
dispatch({pageSize, type: 'CHANGE_PAGE_SIZE'})
}
onPageChange={(page) =>
dispatch({page, type: 'CHANGE_PAGE'})
}
totalItems={totalCount}
/>
)}
);
};
export default withLoading(withEmpty(TableWithPagination));