mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-01 23:59:49 -05:00
73 lines
1.7 KiB
TypeScript
73 lines
1.7 KiB
TypeScript
|
import { FC, useCallback, useEffect, useRef, useState } from 'react'
|
||
|
import classNames from 'classnames'
|
||
|
import { Button } from 'react-bootstrap'
|
||
|
import { useTranslation } from 'react-i18next'
|
||
|
|
||
|
export const ExpandableContent: FC<{ className?: string }> = ({
|
||
|
children,
|
||
|
className,
|
||
|
}) => {
|
||
|
const { t } = useTranslation()
|
||
|
const contentRef = useRef<HTMLDivElement>(null)
|
||
|
const [isExpanded, setIsExpanded] = useState(false)
|
||
|
const [isOverflowing, setIsOverflowing] = useState(false)
|
||
|
|
||
|
useEffect(() => {
|
||
|
if (contentRef.current) {
|
||
|
setIsOverflowing(
|
||
|
contentRef.current.scrollHeight > contentRef.current.clientHeight
|
||
|
)
|
||
|
}
|
||
|
}, [])
|
||
|
|
||
|
const handleShowMore = useCallback(() => {
|
||
|
setIsExpanded(true)
|
||
|
contentRef.current?.dispatchEvent(
|
||
|
new CustomEvent('review-panel:position', { bubbles: true })
|
||
|
)
|
||
|
}, [])
|
||
|
|
||
|
const handleShowLess = useCallback(() => {
|
||
|
setIsExpanded(false)
|
||
|
contentRef.current?.dispatchEvent(
|
||
|
new CustomEvent('review-panel:position', { bubbles: true })
|
||
|
)
|
||
|
}, [])
|
||
|
|
||
|
return (
|
||
|
<div>
|
||
|
<div
|
||
|
ref={contentRef}
|
||
|
className={classNames(
|
||
|
'review-panel-content-expandable',
|
||
|
{
|
||
|
'review-panel-content-expanded': isExpanded,
|
||
|
},
|
||
|
className
|
||
|
)}
|
||
|
>
|
||
|
{children}
|
||
|
</div>
|
||
|
{isExpanded ? (
|
||
|
<Button
|
||
|
bsStyle="link"
|
||
|
className="btn-inline-link"
|
||
|
onClick={handleShowLess}
|
||
|
>
|
||
|
{t('show_less')}
|
||
|
</Button>
|
||
|
) : (
|
||
|
isOverflowing && (
|
||
|
<Button
|
||
|
bsStyle="link"
|
||
|
className="btn-inline-link"
|
||
|
onClick={handleShowMore}
|
||
|
>
|
||
|
{t('show_more')}
|
||
|
</Button>
|
||
|
)
|
||
|
)}
|
||
|
</div>
|
||
|
)
|
||
|
}
|