Hiyve Components - v1.0.0
    Preparing search index...

    Interface UseFileNavigationResult

    Result of the useFileNavigation hook.

    interface UseFileNavigationResult {
        breadcrumbs: BreadcrumbSegment[];
        canNavigateUp: boolean;
        currentPath: string;
        navigateToFolder: (path: string) => void;
        navigateToRoot: () => void;
        navigateUp: () => void;
        setPath: (path: string) => void;
    }
    Index

    Properties

    breadcrumbs: BreadcrumbSegment[]

    Breadcrumb segments for the current path

    canNavigateUp: boolean

    Whether navigation up is possible

    currentPath: string

    Current folder path

    navigateToFolder: (path: string) => void

    Navigate to a specific folder path

    navigateToRoot: () => void

    Navigate to root folder

    navigateUp: () => void

    Navigate to parent folder

    setPath: (path: string) => void

    Set path directly (for external control)