mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
c1c098e2f9
GitOrigin-RevId: f926666c032d1398a0e3f72a298116a3c7a9cd75
73 lines
1.8 KiB
JavaScript
73 lines
1.8 KiB
JavaScript
import PropTypes from 'prop-types'
|
|
|
|
import { useSelectableEntity } from '../contexts/file-tree-selectable'
|
|
|
|
import FileTreeItemInner from './file-tree-item/file-tree-item-inner'
|
|
import { useTranslation } from 'react-i18next'
|
|
import Icon from '../../../shared/components/icon'
|
|
import iconTypeFromName from '../util/icon-type-from-name'
|
|
import classnames from 'classnames'
|
|
|
|
function FileTreeDoc({ name, id, isFile, isLinkedFile }) {
|
|
const type = isFile ? 'file' : 'doc'
|
|
|
|
const { isSelected, props: selectableEntityProps } = useSelectableEntity(
|
|
id,
|
|
type
|
|
)
|
|
|
|
return (
|
|
<li
|
|
// eslint-disable-next-line jsx-a11y/role-has-required-aria-props
|
|
role="treeitem"
|
|
// aria-selected is provided in selectableEntityProps
|
|
{...selectableEntityProps}
|
|
aria-label={name}
|
|
tabIndex="0"
|
|
>
|
|
<FileTreeItemInner
|
|
id={id}
|
|
name={name}
|
|
type={type}
|
|
isSelected={isSelected}
|
|
icons={<FileTreeIcon isLinkedFile={isLinkedFile} name={name} />}
|
|
/>
|
|
</li>
|
|
)
|
|
}
|
|
|
|
FileTreeDoc.propTypes = {
|
|
name: PropTypes.string.isRequired,
|
|
id: PropTypes.string.isRequired,
|
|
isFile: PropTypes.bool,
|
|
isLinkedFile: PropTypes.bool,
|
|
}
|
|
|
|
export const FileTreeIcon = ({ isLinkedFile, name }) => {
|
|
const { t } = useTranslation()
|
|
|
|
const className = classnames('spaced', 'file-tree-icon', {
|
|
'linked-file-icon': isLinkedFile,
|
|
})
|
|
|
|
return (
|
|
<>
|
|
|
|
<Icon type={iconTypeFromName(name)} fw className={className} />
|
|
{isLinkedFile && (
|
|
<Icon
|
|
type="external-link-square"
|
|
modifier="rotate-180"
|
|
className="linked-file-highlight"
|
|
accessibilityLabel={t('linked_file')}
|
|
/>
|
|
)}
|
|
</>
|
|
)
|
|
}
|
|
FileTreeIcon.propTypes = {
|
|
name: PropTypes.string.isRequired,
|
|
isLinkedFile: PropTypes.bool,
|
|
}
|
|
|
|
export default FileTreeDoc
|