mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
5465aef099
Update file outline to follow React code style guidelines GitOrigin-RevId: 8b32e27d20378cbf573d24feb799eb6f99746402
110 lines
3 KiB
JavaScript
110 lines
3 KiB
JavaScript
import React, { useState, useEffect, createRef, useRef } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import scrollIntoViewIfNeeded from 'scroll-into-view-if-needed'
|
|
import classNames from 'classnames'
|
|
import OutlineList from './outline-list'
|
|
|
|
function getChildrenLines(children) {
|
|
return (children || [])
|
|
.map(child => {
|
|
return getChildrenLines(child.children).concat(child.line)
|
|
})
|
|
.flat()
|
|
}
|
|
|
|
function OutlineItem({ outlineItem, jumpToLine, highlightedLine }) {
|
|
const [expanded, setExpanded] = useState(true)
|
|
const titleElementRef = createRef()
|
|
const isHighlightedRef = useRef(false)
|
|
|
|
const mainItemClasses = classNames('outline-item', {
|
|
'outline-item-no-children': !outlineItem.children
|
|
})
|
|
|
|
const expandCollapseIconClasses = classNames('fa', 'outline-caret-icon', {
|
|
'fa-angle-down': expanded,
|
|
'fa-angle-right': !expanded
|
|
})
|
|
|
|
const hasHighlightedChild =
|
|
!expanded &&
|
|
getChildrenLines(outlineItem.children).includes(highlightedLine)
|
|
|
|
const itemLinkClasses = classNames('outline-item-link', {
|
|
'outline-item-link-highlight':
|
|
highlightedLine === outlineItem.line || hasHighlightedChild
|
|
})
|
|
|
|
function handleExpandCollapseClick() {
|
|
setExpanded(!expanded)
|
|
}
|
|
|
|
function handleOutlineItemLinkClick() {
|
|
jumpToLine(outlineItem.line, false)
|
|
}
|
|
|
|
function handleOutlineItemLinkDoubleClick() {
|
|
jumpToLine(outlineItem.line, true)
|
|
}
|
|
|
|
useEffect(
|
|
() => {
|
|
const wasHighlighted = isHighlightedRef.current
|
|
const isNowHighlighted = highlightedLine === outlineItem.line
|
|
|
|
isHighlightedRef.current = isNowHighlighted
|
|
|
|
if (!wasHighlighted && isNowHighlighted) {
|
|
scrollIntoViewIfNeeded(titleElementRef.current, {
|
|
scrollMode: 'if-needed',
|
|
block: 'center'
|
|
})
|
|
}
|
|
},
|
|
[highlightedLine, titleElementRef, isHighlightedRef]
|
|
)
|
|
|
|
return (
|
|
<li className={mainItemClasses}>
|
|
<div className="outline-item-row">
|
|
{outlineItem.children ? (
|
|
<button
|
|
className="outline-item-expand-collapse-btn"
|
|
onClick={handleExpandCollapseClick}
|
|
>
|
|
<i className={expandCollapseIconClasses} />
|
|
</button>
|
|
) : null}
|
|
<button
|
|
className={itemLinkClasses}
|
|
onClick={handleOutlineItemLinkClick}
|
|
onDoubleClick={handleOutlineItemLinkDoubleClick}
|
|
ref={titleElementRef}
|
|
>
|
|
{outlineItem.title}
|
|
</button>
|
|
</div>
|
|
{expanded && outlineItem.children ? (
|
|
<OutlineList
|
|
outline={outlineItem.children}
|
|
jumpToLine={jumpToLine}
|
|
isRoot={false}
|
|
highlightedLine={highlightedLine}
|
|
/>
|
|
) : null}
|
|
</li>
|
|
)
|
|
}
|
|
|
|
OutlineItem.propTypes = {
|
|
outlineItem: PropTypes.exact({
|
|
line: PropTypes.number.isRequired,
|
|
title: PropTypes.string.isRequired,
|
|
level: PropTypes.number.isRequired,
|
|
children: PropTypes.array
|
|
}).isRequired,
|
|
jumpToLine: PropTypes.func.isRequired,
|
|
highlightedLine: PropTypes.number
|
|
}
|
|
|
|
export default OutlineItem
|