You've already forked nginx-proxy-manager
							
							
				mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-11-04 04:11:42 +03:00 
			
		
		
		
	Certificates react table basis
This commit is contained in:
		
							
								
								
									
										71
									
								
								frontend/src/pages/Certificates/TableWrapper.tsx
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										71
									
								
								frontend/src/pages/Certificates/TableWrapper.tsx
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,71 @@
 | 
			
		||||
import { IconSearch } from "@tabler/icons-react";
 | 
			
		||||
import Alert from "react-bootstrap/Alert";
 | 
			
		||||
import { LoadingPage } from "src/components";
 | 
			
		||||
import { useCertificates } from "src/hooks";
 | 
			
		||||
import { intl } from "src/locale";
 | 
			
		||||
import Table from "./Table";
 | 
			
		||||
 | 
			
		||||
export default function TableWrapper() {
 | 
			
		||||
	const { isFetching, isLoading, isError, error, data } = useCertificates([
 | 
			
		||||
		"owner",
 | 
			
		||||
		"dead_hosts",
 | 
			
		||||
		"proxy_hosts",
 | 
			
		||||
		"redirection_hosts",
 | 
			
		||||
	]);
 | 
			
		||||
 | 
			
		||||
	if (isLoading) {
 | 
			
		||||
		return <LoadingPage />;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	if (isError) {
 | 
			
		||||
		return <Alert variant="danger">{error?.message || "Unknown error"}</Alert>;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	return (
 | 
			
		||||
		<div className="card mt-4">
 | 
			
		||||
			<div className="card-status-top bg-pink" />
 | 
			
		||||
			<div className="card-table">
 | 
			
		||||
				<div className="card-header">
 | 
			
		||||
					<div className="row w-full">
 | 
			
		||||
						<div className="col">
 | 
			
		||||
							<h2 className="mt-1 mb-0">{intl.formatMessage({ id: "certificates.title" })}</h2>
 | 
			
		||||
						</div>
 | 
			
		||||
						<div className="col-md-auto col-sm-12">
 | 
			
		||||
							<div className="ms-auto d-flex flex-wrap btn-list">
 | 
			
		||||
								<div className="input-group input-group-flat w-auto">
 | 
			
		||||
									<span className="input-group-text input-group-text-sm">
 | 
			
		||||
										<IconSearch size={16} />
 | 
			
		||||
									</span>
 | 
			
		||||
									<input
 | 
			
		||||
										id="advanced-table-search"
 | 
			
		||||
										type="text"
 | 
			
		||||
										className="form-control form-control-sm"
 | 
			
		||||
										autoComplete="off"
 | 
			
		||||
									/>
 | 
			
		||||
								</div>
 | 
			
		||||
								<div className="dropdown">
 | 
			
		||||
									<button
 | 
			
		||||
										type="button"
 | 
			
		||||
										className="btn btn-sm dropdown-toggle btn-pink mt-1"
 | 
			
		||||
										data-bs-toggle="dropdown"
 | 
			
		||||
									>
 | 
			
		||||
										{intl.formatMessage({ id: "certificates.add" })}
 | 
			
		||||
									</button>
 | 
			
		||||
									<div className="dropdown-menu">
 | 
			
		||||
										<a className="dropdown-item" href="#">
 | 
			
		||||
											{intl.formatMessage({ id: "lets-encrypt" })}
 | 
			
		||||
										</a>
 | 
			
		||||
										<a className="dropdown-item" href="#">
 | 
			
		||||
											{intl.formatMessage({ id: "certificates.custom" })}
 | 
			
		||||
										</a>
 | 
			
		||||
									</div>
 | 
			
		||||
								</div>
 | 
			
		||||
							</div>
 | 
			
		||||
						</div>
 | 
			
		||||
					</div>
 | 
			
		||||
				</div>
 | 
			
		||||
				<Table data={data ?? []} isFetching={isFetching} />
 | 
			
		||||
			</div>
 | 
			
		||||
		</div>
 | 
			
		||||
	);
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user