64 lines
2.1 KiB
TypeScript
64 lines
2.1 KiB
TypeScript
|
import { Button, Link, Note, Popover, Spacer } from '@geist-ui/core'
|
||
|
import FileIcon from '@geist-ui/icons/fileText'
|
||
|
import CodeIcon from '@geist-ui/icons/fileLambda'
|
||
|
import styles from './dropdown.module.css'
|
||
|
import { useCallback, useEffect, useState } from "react"
|
||
|
import { codeFileExtensions } from "@lib/constants"
|
||
|
import ChevronDown from '@geist-ui/icons/chevronDown'
|
||
|
import ShiftBy from "@components/shift-by"
|
||
|
import type { File } from '@lib/types'
|
||
|
import FileTree from '@geist-ui/icons/list'
|
||
|
|
||
|
type Item = File & {
|
||
|
icon: JSX.Element
|
||
|
}
|
||
|
|
||
|
const FileDropdown = ({
|
||
|
files
|
||
|
}: {
|
||
|
files: File[]
|
||
|
}) => {
|
||
|
const [expanded, setExpanded] = useState(false)
|
||
|
const [items, setItems] = useState<Item[]>([])
|
||
|
useEffect(() => {
|
||
|
const newItems = files.map(file => {
|
||
|
const extension = file.title.split('.').pop()
|
||
|
if (codeFileExtensions.includes(extension || '')) {
|
||
|
return {
|
||
|
...file,
|
||
|
icon: <CodeIcon />
|
||
|
}
|
||
|
} else {
|
||
|
return {
|
||
|
...file,
|
||
|
icon: <FileIcon />
|
||
|
}
|
||
|
}
|
||
|
})
|
||
|
setItems(newItems)
|
||
|
}, [files])
|
||
|
|
||
|
const content = useCallback(() => (<ul className={styles.content}>
|
||
|
{items.map(item => (
|
||
|
<li key={item.id} onClick={() => setExpanded(false)}>
|
||
|
<Link color={false} href={`#${item.title}`}>
|
||
|
<ShiftBy y={5}><span className={styles.fileIcon}>
|
||
|
{item.icon}</span></ShiftBy>
|
||
|
<span className={styles.fileTitle}>{item.title}</span>
|
||
|
</Link>
|
||
|
</li>
|
||
|
))}
|
||
|
</ul>
|
||
|
), [items])
|
||
|
|
||
|
// a list of files with an icon and a title
|
||
|
return (
|
||
|
<Button auto onClick={() => setExpanded(!expanded)} className={styles.button} iconRight={<ChevronDown />}>
|
||
|
<Popover content={content} visible={expanded} trigger="click" hideArrow={true}>
|
||
|
{files.length} files
|
||
|
</Popover>
|
||
|
</Button >
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default FileDropdown
|