import React, { useState, useEffect } from 'react' import PropTypes from 'prop-types' import classNames from 'classnames' import { useTranslation } from 'react-i18next' import OutlineRoot from './outline-root' import Icon from '../../../shared/components/icon' import localStorage from '../../../infrastructure/local-storage' import withErrorBoundary from '../../../infrastructure/error-boundary' import { useEditorContext } from '../../../shared/context/editor-context' function OutlinePane({ isTexFile, outline, jumpToLine, onToggle, eventTracking, highlightedLine }) { const { t } = useTranslation() const { projectId } = useEditorContext({ projectId: PropTypes.string.isRequired }) const storageKey = `file_outline.expanded.${projectId}` const [expanded, setExpanded] = useState(() => { const storedExpandedState = localStorage.getItem(storageKey) !== false return storedExpandedState }) const isOpen = isTexFile && expanded useEffect(() => { onToggle(isOpen) }, [isOpen, onToggle]) const headerClasses = classNames('outline-pane', { 'outline-pane-disabled': !isTexFile }) function handleExpandCollapseClick() { if (isTexFile) { localStorage.setItem(storageKey, !expanded) eventTracking.sendMB(expanded ? 'outline-collapse' : 'outline-expand') setExpanded(!expanded) } } return (
{expanded && isTexFile ? (
) : null}
) } OutlinePane.propTypes = { isTexFile: PropTypes.bool.isRequired, outline: PropTypes.array.isRequired, jumpToLine: PropTypes.func.isRequired, onToggle: PropTypes.func.isRequired, eventTracking: PropTypes.object.isRequired, highlightedLine: PropTypes.number } export default withErrorBoundary(OutlinePane)