PHP Classes

File: src/components/loading/TableLoading.tsx

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   WordPress React Plugin Kit   src/components/loading/TableLoading.tsx   Download  
File: src/components/loading/TableLoading.tsx
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: WordPress React Plugin Kit
Environment to develop new WordPress plugins
Author: By
Last change:
Date: 1 year ago
Size: 5,110 bytes
 

Contents

Class file image Download
/** * External dependencies */ import { Fragment } from '@wordpress/element'; /** * Internal dependencies */ import { ITableHeader, ITableLoading, } from '../../../interfaces/TableInterface'; import { getHeaderRowClassName } from '../table/Table'; const defaultTableLoadingProps = { /** * Table Headers to show loading skeleton. */ headers: [], /** * How many rows will be shown by default. */ count: 10, /** * Show pagination or not. */ showPagination: true, /** * Checkbox enabled or not in table row. */ hasCheckbox: true, }; const TableLoading = ({ headers, count, showPagination, hasCheckbox, }: ITableLoading) => { const countRows = typeof count === 'undefined' ? defaultTableLoadingProps.count : count; const isChecked = typeof hasCheckbox === 'undefined' ? defaultTableLoadingProps.hasCheckbox : hasCheckbox; const getTableRows = () => { const rows = []; for (let i = 0; i < countRows; i++) { rows.push( <tr key={i} className="h-12"> {headers.map((header: ITableHeader, index: number) => ( <Fragment key={index}> {index === 0 && isChecked ? ( <td className={`border-0`}></td> ) : ( <> <td key={header.key} className={`${getHeaderRowClassName( header, index, headers )} border-0`} > <span className={`h-2 w-12 bg-gray ${ index === headers.length - 1 ? 'text-right' : '' }`} > &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span> </td> </> )} </Fragment> ))} </tr> ); } return rows; }; return ( <> <div className="bg-white shadow-xs rounded-sm"> <table className="animate-pulse table-auto border-collapse border border-gray-lite bg-white mb-2 w-full"> <thead> <tr className="h-12"> {headers.map( (header: ITableHeader, index: number) => ( <th key={header.key} className={getHeaderRowClassName( header, index, headers )} > {header.title} </th> ) )} </tr> </thead> <tbody>{getTableRows()}</tbody> </table> </div> {/* View Pagination */} {showPagination && ( <div className="flex mt-5"> <div className="flex-1 text-left"> <h2 className="h-4 w-32 bg-gray"></h2> </div> <div className="flex-1"> <div className="flex text-right justify-end"> <div className="flex-none bg-gray h-8 w-8 border-gray border-1 border-solid mr-2"></div> <div className="flex-none bg-gray h-8 w-8 border-gray border-1 border-solid mr-2"></div> <div className="flex-none bg-gray h-8 w-8 border-gray border-1 border-solid mr-2"></div> <div className="flex-none bg-gray h-8 w-8 border-gray border-1 border-solid mr-2"></div> <div className="flex-none bg-gray h-8 w-8 border-gray border-1 border-solid mr-2"></div> <div className="flex-none bg-gray h-8 w-8 border-gray border-1 border-solid mr-2"></div> </div> </div> </div> )} </> ); }; TableLoading.defaultProps = defaultTableLoadingProps; export default TableLoading;