mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
1fb1c08348
Rename project on blur instead of canceling renaming GitOrigin-RevId: fe58b48d5ab37357df33e970338e8b96c3ec1986
100 lines
2.4 KiB
JavaScript
100 lines
2.4 KiB
JavaScript
import { useEffect, useState, useRef } from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { OverlayTrigger, Tooltip } from 'react-bootstrap'
|
|
import { useTranslation } from 'react-i18next'
|
|
import classNames from 'classnames'
|
|
import Icon from '../../../shared/components/icon'
|
|
|
|
function ProjectNameEditableLabel({
|
|
projectName,
|
|
hasRenamePermissions,
|
|
onChange,
|
|
className,
|
|
}) {
|
|
const { t } = useTranslation()
|
|
|
|
const [isRenaming, setIsRenaming] = useState(false)
|
|
|
|
const canRename = hasRenamePermissions && !isRenaming
|
|
|
|
const [inputContent, setInputContent] = useState(projectName)
|
|
|
|
const inputRef = useRef(null)
|
|
|
|
useEffect(() => {
|
|
if (isRenaming) {
|
|
inputRef.current.select()
|
|
}
|
|
}, [isRenaming])
|
|
|
|
function startRenaming() {
|
|
if (canRename) {
|
|
setInputContent(projectName)
|
|
setIsRenaming(true)
|
|
}
|
|
}
|
|
|
|
function finishRenaming() {
|
|
setIsRenaming(false)
|
|
onChange(inputContent)
|
|
}
|
|
|
|
function handleKeyDown(event) {
|
|
if (event.key === 'Enter') {
|
|
event.preventDefault()
|
|
finishRenaming()
|
|
}
|
|
}
|
|
|
|
function handleOnChange(event) {
|
|
setInputContent(event.target.value)
|
|
}
|
|
|
|
function handleBlur() {
|
|
if (isRenaming) {
|
|
finishRenaming()
|
|
}
|
|
}
|
|
|
|
return (
|
|
<div className={classNames('project-name', className)}>
|
|
{!isRenaming && (
|
|
<span className="name" onDoubleClick={startRenaming}>
|
|
{projectName}
|
|
</span>
|
|
)}
|
|
{isRenaming && (
|
|
<input
|
|
ref={inputRef}
|
|
type="text"
|
|
className="form-control"
|
|
onKeyDown={handleKeyDown}
|
|
onChange={handleOnChange}
|
|
onBlur={handleBlur}
|
|
value={inputContent}
|
|
/>
|
|
)}
|
|
{canRename && (
|
|
<OverlayTrigger
|
|
placement="bottom"
|
|
trigger={['hover', 'focus']}
|
|
overlay={<Tooltip id="tooltip-online-user">{t('rename')}</Tooltip>}
|
|
>
|
|
{/* eslint-disable-next-line jsx-a11y/anchor-is-valid, jsx-a11y/click-events-have-key-events, jsx-a11y/interactive-supports-focus */}
|
|
<a className="rename" role="button" onClick={startRenaming}>
|
|
<Icon type="pencil" modifier="fw" />
|
|
</a>
|
|
</OverlayTrigger>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
ProjectNameEditableLabel.propTypes = {
|
|
projectName: PropTypes.string.isRequired,
|
|
hasRenamePermissions: PropTypes.bool,
|
|
onChange: PropTypes.func.isRequired,
|
|
className: PropTypes.string,
|
|
}
|
|
|
|
export default ProjectNameEditableLabel
|