mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
c2b553e915
* Upgrade react-resizable-panels * Add FileTreeOpenProvider * Add OutlineProvider and OutlineContainer * Convert Outline tests to Cypress GitOrigin-RevId: afd9ae8190edf37642e36a4ffb331f1182c8982d
87 lines
2.4 KiB
JavaScript
87 lines
2.4 KiB
JavaScript
import React, { 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 withErrorBoundary from '../../../infrastructure/error-boundary'
|
|
import Tooltip from '../../../shared/components/tooltip'
|
|
|
|
const OutlinePane = React.memo(function OutlinePane({
|
|
isTexFile,
|
|
outline,
|
|
jumpToLine,
|
|
onToggle,
|
|
highlightedLine,
|
|
isPartial = false,
|
|
expanded,
|
|
toggleExpanded,
|
|
}) {
|
|
const { t } = useTranslation()
|
|
|
|
const isOpen = isTexFile && expanded
|
|
|
|
useEffect(() => {
|
|
onToggle(isOpen)
|
|
}, [isOpen, onToggle])
|
|
|
|
const headerClasses = classNames('outline-pane', {
|
|
'outline-pane-disabled': !isTexFile,
|
|
})
|
|
|
|
return (
|
|
<div className={headerClasses}>
|
|
<header className="outline-header">
|
|
<button
|
|
className="outline-header-expand-collapse-btn"
|
|
disabled={!isTexFile}
|
|
onClick={toggleExpanded}
|
|
aria-label={expanded ? t('hide_outline') : t('show_outline')}
|
|
>
|
|
<Icon
|
|
type={isOpen ? 'angle-down' : 'angle-right'}
|
|
className="outline-caret-icon"
|
|
/>
|
|
<h4 className="outline-header-name">{t('file_outline')}</h4>
|
|
{isPartial && (
|
|
<Tooltip
|
|
id="partial-outline"
|
|
description={t('partial_outline_warning')}
|
|
overlayProps={{ placement: 'top' }}
|
|
>
|
|
<span role="status">
|
|
<Icon
|
|
type="exclamation-triangle"
|
|
aria-label={t('partial_outline_warning')}
|
|
/>
|
|
</span>
|
|
</Tooltip>
|
|
)}
|
|
</button>
|
|
</header>
|
|
{isOpen && (
|
|
<div className="outline-body">
|
|
<OutlineRoot
|
|
outline={outline}
|
|
jumpToLine={jumpToLine}
|
|
highlightedLine={highlightedLine}
|
|
/>
|
|
</div>
|
|
)}
|
|
</div>
|
|
)
|
|
})
|
|
|
|
OutlinePane.propTypes = {
|
|
isTexFile: PropTypes.bool.isRequired,
|
|
outline: PropTypes.array.isRequired,
|
|
jumpToLine: PropTypes.func.isRequired,
|
|
onToggle: PropTypes.func.isRequired,
|
|
highlightedLine: PropTypes.number,
|
|
isPartial: PropTypes.bool,
|
|
expanded: PropTypes.bool,
|
|
toggleExpanded: PropTypes.func.isRequired,
|
|
}
|
|
|
|
export default withErrorBoundary(OutlinePane)
|