Files
react/components/tree/tree-folder.tsx
witt 7facec3849 feat(scaleable): add scaleable props to each component (#531)
* feat(scaleable): add scaleable props to each component

* chore(scaleable): update the exported type

* feat: apply scaleable to components

chore: remove with-default

test: improve testcase for scaleable

chore: resolve test warning

ci: upgrade nodejs to latest lts

docs: fix type error in document site

* docs: update documents to be compatible with scaleable

chore: fix build errors

* chore: remove all size-related attributes

docs: improve guide document

* docs: add scaleable documentation

test: update snapshots

chore: remove unused

* feat: add scaleable to grid components

* docs: improve docs

* test: update snapshots

* fix(grid): fix basic component props
2021-08-13 17:10:57 +08:00

160 lines
3.9 KiB
TypeScript

import React, { useEffect, useMemo, useState } from 'react'
import useTheme from '../use-theme'
import { setChildrenProps } from '../utils/collections'
import TreeFile from './tree-file'
import Expand from '../shared/expand'
import TreeIndents from './tree-indents'
import { useTreeContext } from './tree-context'
import TreeFolderIcon from './tree-folder-icon'
import TreeStatusIcon from './tree-status-icon'
import { sortChildren, 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 TreeFolderProps = Props & NativeAttrs
const TreeFolder: React.FC<React.PropsWithChildren<TreeFolderProps>> = ({
name,
children,
parentPath,
level: parentLevel,
extra,
className,
...props
}: React.PropsWithChildren<TreeFolderProps> & typeof defaultProps) => {
const theme = useTheme()
const { initialExpand, isImperative } = useTreeContext()
const [expanded, setExpanded] = useState<boolean>(initialExpand)
useEffect(() => setExpanded(initialExpand), [])
const currentPath = useMemo(() => makeChildPath(name, parentPath), [])
const clickHandler = () => setExpanded(!expanded)
const nextChildren = setChildrenProps(
children,
{
parentPath: currentPath,
level: parentLevel + 1,
},
[TreeFolder, TreeFile],
)
const sortedChildren = isImperative
? nextChildren
: sortChildren(nextChildren, TreeFolder)
return (
<div className={`folder ${className}`} onClick={clickHandler} {...props}>
<div className="names">
<TreeIndents count={parentLevel} />
<span className="status">
<TreeStatusIcon active={expanded} />
</span>
<span className="icon">
<TreeFolderIcon />
</span>
<span className="name">
{name}
{extra && <span className="extra">{extra}</span>}
</span>
</div>
<Expand isExpanded={expanded}>
<div className="content" onClick={stopPropagation}>
{sortedChildren}
</div>
</Expand>
<style jsx>{`
.folder {
cursor: pointer;
line-height: 1;
user-select: none;
}
.names {
display: flex;
height: 1.75rem;
align-items: center;
margin-left: calc(1.875rem * ${parentLevel});
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;
}
.status {
position: absolute;
left: calc(-1.125rem);
top: 50%;
transform: translate(-50%, -50%);
width: 0.875rem;
height: 0.875rem;
z-index: 10;
background-color: ${theme.palette.background};
}
.icon {
width: 1.5rem;
height: 100%;
margin-right: 0.5rem;
}
.status,
.icon {
display: inline-flex;
align-items: center;
justify-content: center;
}
.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;
}
.content {
display: flex;
flex-direction: column;
height: auto;
}
`}</style>
</div>
)
}
TreeFolder.defaultProps = defaultProps
TreeFolder.displayName = 'GeistTreeFolder'
export default TreeFolder