---
export interface Props {
title?: string;
toggleLabel?: string;
targetSelector?: string;
headingSelector?: string;
minLevel?: number;
maxLevel?: number;
defaultOpenBreakpoint?: string;
}
const {
title = '页面导航',
toggleLabel = '导航',
targetSelector = '[data-report-content]',
headingSelector,
minLevel = 2,
maxLevel = 3,
defaultOpenBreakpoint = '(min-width: 1280px)'
} = Astro.props;
const sidebarId = `report-sidebar-${Math.random().toString(36).slice(2, 10)}`;
const navListId = `${sidebarId}-list`;
const config = {
sidebarId,
navListId,
title,
toggleLabel,
targetSelector,
headingSelector: headingSelector ?? '',
minLevel,
maxLevel,
breakpoint: defaultOpenBreakpoint
};
---