2022-03-22 23:06:15 -04:00
|
|
|
|
2022-03-21 23:30:45 -04:00
|
|
|
|
2022-03-11 21:48:40 -05:00
|
|
|
import { ChangeEvent, memo, useCallback, useMemo, useRef, useState } from "react"
|
2022-03-06 19:46:59 -05:00
|
|
|
import styles from './document.module.css'
|
2022-03-21 18:55:21 -04:00
|
|
|
import Trash from '@geist-ui/icons/trash'
|
|
|
|
import Download from '@geist-ui/icons/download'
|
|
|
|
import ExternalLink from '@geist-ui/icons/externalLink'
|
2022-03-11 21:48:40 -05:00
|
|
|
import FormattingIcons from "./formatting-icons"
|
2022-03-09 20:11:37 -05:00
|
|
|
import Skeleton from "react-loading-skeleton"
|
2022-03-21 23:43:50 -04:00
|
|
|
|
2022-03-22 23:06:15 -04:00
|
|
|
import { Button, ButtonGroup, Card, Input, Spacer, Tabs, Textarea, Tooltip } from "@geist-ui/core"
|
|
|
|
import Preview from "@components/preview"
|
2022-03-21 23:43:50 -04:00
|
|
|
|
2022-03-11 21:48:40 -05:00
|
|
|
// import Link from "next/link"
|
2022-03-06 19:46:59 -05:00
|
|
|
type Props = {
|
|
|
|
title?: string
|
|
|
|
content?: string
|
|
|
|
setTitle?: (title: string) => void
|
|
|
|
setContent?: (content: string) => void
|
2022-03-22 01:50:25 -04:00
|
|
|
handleOnContentChange?: (e: ChangeEvent<HTMLTextAreaElement>) => void
|
2022-03-07 01:16:08 -05:00
|
|
|
initialTab?: "edit" | "preview"
|
2022-03-23 00:18:26 -04:00
|
|
|
remove?: () => void
|
2022-03-23 19:42:56 -04:00
|
|
|
onPaste?: (e: any) => void
|
2022-03-06 19:46:59 -05:00
|
|
|
}
|
|
|
|
|
2022-03-24 21:03:57 -04:00
|
|
|
const Document = ({ onPaste, remove, title, content, setTitle, setContent, initialTab = 'edit', handleOnContentChange }: Props) => {
|
2022-03-06 19:46:59 -05:00
|
|
|
const codeEditorRef = useRef<HTMLTextAreaElement>(null)
|
2022-03-08 03:43:18 -05:00
|
|
|
const [tab, setTab] = useState(initialTab)
|
2022-03-21 03:46:15 -04:00
|
|
|
// const height = editable ? "500px" : '100%'
|
|
|
|
const height = "100%";
|
2022-03-08 03:43:18 -05:00
|
|
|
|
|
|
|
const handleTabChange = (newTab: string) => {
|
|
|
|
if (newTab === 'edit') {
|
|
|
|
codeEditorRef.current?.focus()
|
|
|
|
}
|
|
|
|
setTab(newTab as 'edit' | 'preview')
|
|
|
|
}
|
2022-03-06 19:46:59 -05:00
|
|
|
|
2022-03-22 01:50:25 -04:00
|
|
|
const onTitleChange = useCallback((event: ChangeEvent<HTMLInputElement>) => setTitle ? setTitle(event.target.value) : null, [setTitle])
|
|
|
|
|
2022-03-23 00:37:27 -04:00
|
|
|
const removeFile = useCallback((remove?: () => void) => {
|
2022-03-06 19:46:59 -05:00
|
|
|
if (remove) {
|
|
|
|
if (content && content.trim().length > 0) {
|
|
|
|
const confirmed = window.confirm("Are you sure you want to remove this file?")
|
|
|
|
if (confirmed) {
|
|
|
|
remove()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
remove()
|
|
|
|
}
|
|
|
|
}
|
2022-03-22 01:50:25 -04:00
|
|
|
}, [content])
|
2022-03-11 21:48:40 -05:00
|
|
|
|
2022-03-24 21:03:57 -04:00
|
|
|
// if (skeleton) {
|
|
|
|
// return <>
|
|
|
|
// <Spacer height={1} />
|
|
|
|
// <div className={styles.card}>
|
|
|
|
// <div className={styles.fileNameContainer}>
|
|
|
|
// <Skeleton width={275} height={36} />
|
|
|
|
// {remove && <Skeleton width={36} height={36} />}
|
|
|
|
// </div>
|
|
|
|
// <div className={styles.descriptionContainer}>
|
|
|
|
// <div style={{ flexDirection: 'row', display: 'flex' }}><Skeleton width={125} height={36} /></div>
|
|
|
|
// <Skeleton width={'100%'} height={350} />
|
|
|
|
// </div >
|
|
|
|
// </div>
|
|
|
|
// </>
|
|
|
|
// }
|
2022-03-22 01:50:25 -04:00
|
|
|
|
2022-03-06 19:46:59 -05:00
|
|
|
return (
|
2022-03-09 04:01:58 -05:00
|
|
|
<>
|
|
|
|
<Spacer height={1} />
|
2022-03-23 19:28:39 -04:00
|
|
|
<div className={styles.card}>
|
2022-03-09 04:01:58 -05:00
|
|
|
<div className={styles.fileNameContainer}>
|
|
|
|
<Input
|
|
|
|
placeholder="MyFile.md"
|
|
|
|
value={title}
|
2022-03-22 01:50:25 -04:00
|
|
|
onChange={onTitleChange}
|
2022-03-09 04:01:58 -05:00
|
|
|
marginTop="var(--gap-double)"
|
|
|
|
size={1.2}
|
|
|
|
font={1.2}
|
|
|
|
label="Filename"
|
|
|
|
width={"100%"}
|
2022-03-20 23:45:37 -04:00
|
|
|
id={title}
|
2022-03-09 04:01:58 -05:00
|
|
|
/>
|
2022-03-23 00:18:26 -04:00
|
|
|
{remove && <Button type="abort" ghost icon={<Trash />} auto height={'36px'} width={'36px'} onClick={() => removeFile(remove)} />}
|
2022-03-09 04:01:58 -05:00
|
|
|
</div>
|
|
|
|
<div className={styles.descriptionContainer}>
|
2022-03-23 00:18:26 -04:00
|
|
|
{tab === 'edit' && <FormattingIcons setText={setContent} textareaRef={codeEditorRef} />}
|
2022-03-09 04:01:58 -05:00
|
|
|
<Tabs onChange={handleTabChange} initialValue={initialTab} hideDivider leftSpace={0}>
|
2022-03-23 00:18:26 -04:00
|
|
|
<Tabs.Item label={"Edit"} value="edit">
|
2022-03-09 04:01:58 -05:00
|
|
|
{/* <textarea className={styles.lineCounter} wrap='off' readOnly ref={lineNumberRef}>1.</textarea> */}
|
2022-03-23 19:42:56 -04:00
|
|
|
<div style={{ marginTop: 'var(--gap-half)', display: 'flex', flexDirection: 'column' }}>
|
2022-03-09 04:01:58 -05:00
|
|
|
<Textarea
|
2022-03-23 19:42:56 -04:00
|
|
|
onPaste={onPaste ? onPaste : undefined}
|
2022-03-09 04:01:58 -05:00
|
|
|
ref={codeEditorRef}
|
2022-03-22 23:06:15 -04:00
|
|
|
placeholder=""
|
2022-03-09 04:01:58 -05:00
|
|
|
value={content}
|
2022-03-22 01:50:25 -04:00
|
|
|
onChange={handleOnContentChange}
|
2022-03-09 04:01:58 -05:00
|
|
|
width="100%"
|
|
|
|
// TODO: Textarea should grow to fill parent if height == 100%
|
|
|
|
style={{ flex: 1, minHeight: 350 }}
|
|
|
|
resize="vertical"
|
|
|
|
className={styles.textarea}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</Tabs.Item>
|
|
|
|
<Tabs.Item label="Preview" value="preview">
|
2022-03-23 19:42:56 -04:00
|
|
|
<div style={{ marginTop: 'var(--gap-half)', }}>
|
|
|
|
<Preview height={height} title={title} content={content} />
|
|
|
|
</div>
|
2022-03-09 04:01:58 -05:00
|
|
|
</Tabs.Item>
|
|
|
|
</Tabs>
|
|
|
|
</div >
|
2022-03-23 19:28:39 -04:00
|
|
|
</div >
|
2022-03-09 04:01:58 -05:00
|
|
|
</>
|
2022-03-06 19:46:59 -05:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export default memo(Document)
|