mirror of
https://github.com/documenso/documenso.git
synced 2025-11-15 17:21:41 +10:00
chore: clean up unused imports and improve accessibility in pagination
This commit is contained in:
@ -163,14 +163,6 @@ export const TemplatePageViewDocumentsTable = ({
|
|||||||
perPage: 10,
|
perPage: 10,
|
||||||
currentPage: 1,
|
currentPage: 1,
|
||||||
totalPages: 1,
|
totalPages: 1,
|
||||||
stats: {
|
|
||||||
[ExtendedDocumentStatus.DRAFT]: 0,
|
|
||||||
[ExtendedDocumentStatus.PENDING]: 0,
|
|
||||||
[ExtendedDocumentStatus.COMPLETED]: 0,
|
|
||||||
[ExtendedDocumentStatus.REJECTED]: 0,
|
|
||||||
[ExtendedDocumentStatus.INBOX]: 0,
|
|
||||||
[ExtendedDocumentStatus.ALL]: 0,
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const getEmptyStateStatus = (): ExtendedDocumentStatus => {
|
const getEmptyStateStatus = (): ExtendedDocumentStatus => {
|
||||||
|
|||||||
@ -1,7 +1,6 @@
|
|||||||
import { useEffect, useMemo, useState } from 'react';
|
import { useEffect, useMemo, useState } from 'react';
|
||||||
|
|
||||||
import { Trans } from '@lingui/react/macro';
|
import { Trans } from '@lingui/react/macro';
|
||||||
// imports for tasks
|
|
||||||
import { FolderIcon, HomeIcon, Loader2 } from 'lucide-react';
|
import { FolderIcon, HomeIcon, Loader2 } from 'lucide-react';
|
||||||
import { useNavigate, useSearchParams } from 'react-router';
|
import { useNavigate, useSearchParams } from 'react-router';
|
||||||
import { z } from 'zod';
|
import { z } from 'zod';
|
||||||
@ -17,7 +16,6 @@ import { type TFolderWithSubfolders } from '@documenso/trpc/server/folder-router
|
|||||||
import { Avatar, AvatarFallback, AvatarImage } from '@documenso/ui/primitives/avatar';
|
import { Avatar, AvatarFallback, AvatarImage } from '@documenso/ui/primitives/avatar';
|
||||||
import { Button } from '@documenso/ui/primitives/button';
|
import { Button } from '@documenso/ui/primitives/button';
|
||||||
|
|
||||||
// Tasks Imports
|
|
||||||
import { DocumentMoveToFolderDialog } from '~/components/dialogs/document-move-to-folder-dialog';
|
import { DocumentMoveToFolderDialog } from '~/components/dialogs/document-move-to-folder-dialog';
|
||||||
import { CreateFolderDialog } from '~/components/dialogs/folder-create-dialog';
|
import { CreateFolderDialog } from '~/components/dialogs/folder-create-dialog';
|
||||||
import { FolderDeleteDialog } from '~/components/dialogs/folder-delete-dialog';
|
import { FolderDeleteDialog } from '~/components/dialogs/folder-delete-dialog';
|
||||||
|
|||||||
@ -117,7 +117,7 @@ export function DataTablePagination<TData>({
|
|||||||
onClick={() => table.setPageIndex(table.getPageCount() - 1)}
|
onClick={() => table.setPageIndex(table.getPageCount() - 1)}
|
||||||
disabled={!table.getCanNextPage()}
|
disabled={!table.getCanNextPage()}
|
||||||
>
|
>
|
||||||
<span className="sr-only">{_(msg`Go to last page`)} </span>
|
<span className="sr-only">{_(msg`Go to last page`)}</span>
|
||||||
<ChevronsRight className="h-4 w-4" />
|
<ChevronsRight className="h-4 w-4" />
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user