import React, { useState, useEffect } from 'react' import PropTypes from 'prop-types' import { OverlayTrigger, Tooltip } from 'react-bootstrap' import classNames from 'classnames' import { useTranslation, Trans } from 'react-i18next' import OutlineRoot from './outline-root' import localStorage from '../../../modules/localStorage' import withErrorBoundary from '../../../infrastructure/error-boundary' function OutlinePane({ isTexFile, outline, projectId, jumpToLine, onToggle, eventTracking, highlightedLine }) { const { t } = useTranslation() const storageKey = `file_outline.expanded.${projectId}` const [expanded, setExpanded] = useState(() => { const storedExpandedState = localStorage(storageKey) !== false return storedExpandedState }) const isOpen = isTexFile && expanded useEffect( () => { onToggle(isOpen) }, [isOpen] ) const expandCollapseIconClasses = classNames('fa', 'outline-caret-icon', { 'fa-angle-down': isOpen, 'fa-angle-right': !isOpen }) const headerClasses = classNames('outline-pane', { 'outline-pane-disabled': !isTexFile }) function handleExpandCollapseClick() { if (isTexFile) { localStorage(storageKey, !expanded) eventTracking.sendMB(expanded ? 'outline-collapse' : 'outline-expand') setExpanded(!expanded) } } const infoContent = ( <> ]} /> . ) const tooltip = {infoContent} return (
{expanded && isTexFile ? (
) : null}
) } OutlinePane.propTypes = { isTexFile: PropTypes.bool.isRequired, outline: PropTypes.array.isRequired, projectId: PropTypes.string.isRequired, jumpToLine: PropTypes.func.isRequired, onToggle: PropTypes.func, eventTracking: PropTypes.object.isRequired, highlightedLine: PropTypes.number } export default withErrorBoundary(OutlinePane)