overleaf/services/web/frontend/js/features/outline/components/outline-pane.js
Alf Eaton eebeffc1c5 Merge pull request #4188 from overleaf/ae-memo
Improve React performance by memoizing components and values

GitOrigin-RevId: 805278b8b7ac04c3dc4b078fa53cc0e3770d261b
2021-06-22 02:07:08 +00:00

87 lines
2.5 KiB
JavaScript

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'
const OutlinePane = React.memo(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 (
<div className={headerClasses}>
<header className="outline-header">
<button
className="outline-header-expand-collapse-btn"
disabled={!isTexFile}
onClick={handleExpandCollapseClick}
aria-label={expanded ? t('hide_outline') : t('show_outline')}
>
<Icon
type={isOpen ? 'angle-down' : 'angle-right'}
classes={{ icon: 'outline-caret-icon' }}
/>
<h4 className="outline-header-name">{t('file_outline')}</h4>
</button>
</header>
{expanded && isTexFile ? (
<div className="outline-body">
<OutlineRoot
outline={outline}
jumpToLine={jumpToLine}
highlightedLine={highlightedLine}
/>
</div>
) : null}
</div>
)
})
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)