Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | import React from "react";
import {
PreviewSlotsProps,
PreviewToolbar,
TToolbarAction,
} from "./layout/types";
import { SxProps } from "@mui/material";
export type TDocument = {
name: string;
type: string;
URL: string;
tag?: string;
id: number;
isUploaded?: boolean;
};
type TDirection = "prev" | "next";
export type TChangeFileDirection = (
direction: TDirection,
deleteFile?: TDocument | null,
) => void;
export type TFileNavigation = {
showPrev: boolean;
showNext: boolean;
changeFile: TChangeFileDirection;
handleClose?: () => void;
};
type RendererProps = {
file: TDocument;
onClose?: () => void;
handleOpenDrawer?: () => void;
showControls?: boolean;
toggleControlsPersistence?: () => void;
customDocumentWrapperStyles?: SxProps;
customImageStyle?: React.CSSProperties;
};
export interface IPreviewerProps extends RendererProps {
navigation: TFileNavigation;
toolbarActions?: TToolbarAction[];
count: number;
index: number;
headerActions?: TToolbarAction[];
disableBackdropClick?: boolean;
}
export type TRenderer = (props: RendererProps) => {
Previewer: React.ReactNode;
headerActions?: React.ReactNode;
toolbar: PreviewToolbar;
onZoom: ZoomHandler;
slots?: PreviewSlotsProps;
toggleControlsPersistence?: () => void;
isSearchPanelFocused?: boolean;
};
export type ZoomDirection = "in" | "out";
type ZoomFactor = ZoomDirection | number;
export type ZoomHandler = (zoomFactor: ZoomFactor) => void;
|