2021-06-23 05:37:08 -04:00
|
|
|
import { useEffect, useState, useRef } from 'react'
|
2021-03-10 07:19:54 -05:00
|
|
|
import PropTypes from 'prop-types'
|
2021-04-27 05:06:44 -04:00
|
|
|
import { OverlayTrigger, Tooltip } from 'react-bootstrap'
|
|
|
|
import { useTranslation } from 'react-i18next'
|
2021-03-10 07:19:54 -05:00
|
|
|
import classNames from 'classnames'
|
|
|
|
import Icon from '../../../shared/components/icon'
|
|
|
|
|
|
|
|
function ProjectNameEditableLabel({
|
|
|
|
projectName,
|
2021-06-25 04:14:07 -04:00
|
|
|
hasRenamePermissions,
|
2021-03-10 07:19:54 -05:00
|
|
|
onChange,
|
2021-04-27 03:52:58 -04:00
|
|
|
className,
|
2021-03-10 07:19:54 -05:00
|
|
|
}) {
|
2021-04-27 05:06:44 -04:00
|
|
|
const { t } = useTranslation()
|
|
|
|
|
2021-03-10 07:19:54 -05:00
|
|
|
const [isRenaming, setIsRenaming] = useState(false)
|
|
|
|
|
2021-06-25 04:14:07 -04:00
|
|
|
const canRename = hasRenamePermissions && !isRenaming
|
2021-03-10 07:19:54 -05:00
|
|
|
|
|
|
|
const [inputContent, setInputContent] = useState(projectName)
|
|
|
|
|
|
|
|
const inputRef = useRef(null)
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (isRenaming) {
|
|
|
|
inputRef.current.select()
|
|
|
|
}
|
|
|
|
}, [isRenaming])
|
|
|
|
|
|
|
|
function startRenaming() {
|
2021-06-25 04:14:07 -04:00
|
|
|
if (canRename) {
|
|
|
|
setInputContent(projectName)
|
|
|
|
setIsRenaming(true)
|
|
|
|
}
|
2021-03-10 07:19:54 -05:00
|
|
|
}
|
|
|
|
|
2021-08-11 04:50:01 -04:00
|
|
|
function finishRenaming() {
|
|
|
|
setIsRenaming(false)
|
|
|
|
onChange(inputContent)
|
|
|
|
}
|
|
|
|
|
2021-03-10 07:19:54 -05:00
|
|
|
function handleKeyDown(event) {
|
|
|
|
if (event.key === 'Enter') {
|
|
|
|
event.preventDefault()
|
2021-08-11 04:50:01 -04:00
|
|
|
finishRenaming()
|
2021-03-10 07:19:54 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleOnChange(event) {
|
|
|
|
setInputContent(event.target.value)
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleBlur() {
|
2021-08-11 04:50:01 -04:00
|
|
|
if (isRenaming) {
|
|
|
|
finishRenaming()
|
|
|
|
}
|
2021-03-10 07:19:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
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 && (
|
2021-04-27 05:06:44 -04:00
|
|
|
<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>
|
2021-03-10 07:19:54 -05:00
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
ProjectNameEditableLabel.propTypes = {
|
|
|
|
projectName: PropTypes.string.isRequired,
|
2021-06-25 04:14:07 -04:00
|
|
|
hasRenamePermissions: PropTypes.bool,
|
2021-03-10 07:19:54 -05:00
|
|
|
onChange: PropTypes.func.isRequired,
|
2021-04-27 03:52:58 -04:00
|
|
|
className: PropTypes.string,
|
2021-03-10 07:19:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export default ProjectNameEditableLabel
|