Files
react/components/tree/tree-file.tsx
unix 4e7b4cc57d refactor: export all hooks functions directly from main module
refactor: rename the modules to make sure tree-shaking works
2020-05-16 23:04:57 +08:00

110 lines
2.6 KiB
TypeScript

import React, { useMemo } from 'react'
import withDefaults from '../utils/with-defaults'
import useTheme from '../styles/use-theme'
import TreeFileIcon from './tree-file-icon'
import { useTreeContext } from './tree-context'
import TreeIndents from './tree-indents'
import { makeChildPath, stopPropagation } from './tree-help'
interface Props {
name: string
extra?: string
parentPath?: string
level?: number
className?: string
}
const defaultProps = {
level: 0,
className: '',
parentPath: '',
}
type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>
export type TreeFileProps = Props & typeof defaultProps & NativeAttrs
const TreeFile: React.FC<React.PropsWithChildren<TreeFileProps>> = ({
name,
parentPath,
level,
extra,
className,
...props
}) => {
const theme = useTheme()
const { onFileClick } = useTreeContext()
const currentPath = useMemo(() => makeChildPath(name, parentPath), [])
const clickHandler = (event: React.MouseEvent) => {
stopPropagation(event)
onFileClick && onFileClick(currentPath)
}
return (
<div className={`file ${className}`} onClick={clickHandler} {...props}>
<div className="names">
<TreeIndents count={level} />
<span className="icon">
<TreeFileIcon />
</span>
<span className="name">
{name}
{extra && <span className="extra">{extra}</span>}
</span>
</div>
<style jsx>{`
.file {
cursor: pointer;
line-height: 1;
user-select: none;
margin-left: calc(1.875rem * ${level});
}
.names {
display: flex;
height: 1.75rem;
align-items: center;
position: relative;
}
.names > :global(.indent) {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 1px;
height: 100%;
background-color: ${theme.palette.accents_2};
margin-left: -1px;
}
.icon {
width: 1.5rem;
height: 100%;
display: inline-flex;
align-items: center;
margin-right: 0.5rem;
}
.name {
transition: opacity 100ms ease 0ms;
color: ${theme.palette.accents_8};
white-space: nowrap;
font-size: 0.875rem;
}
.extra {
font-size: 0.75rem;
align-self: baseline;
padding-left: 4px;
color: ${theme.palette.accents_5};
}
.name:hover {
opacity: 0.7;
}
`}</style>
</div>
)
}
export default withDefaults(TreeFile, defaultProps)