-
Notifications
You must be signed in to change notification settings - Fork 995
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1c4e613
commit b9d268a
Showing
7 changed files
with
272 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
.editor-action { | ||
position: absolute; | ||
top: 50%; | ||
right: 8px; | ||
transform: translateY(-50%); | ||
background: hsl(var(--input)) !important; | ||
padding: 6px; | ||
border-radius: 50%; | ||
cursor: pointer; | ||
transition: 0.1s; | ||
outline: 0; | ||
opacity: 0; | ||
|
||
&.active { | ||
opacity: 1; | ||
} | ||
|
||
&:hover { | ||
background: hsl(var(--border-hover)) !important; | ||
} | ||
} | ||
|
||
.editor-dialog { | ||
max-width: min(90vw, 920px) !important; | ||
} | ||
|
||
.editor-container { | ||
padding: 2px 4px 0; | ||
} | ||
|
||
.editor-wrapper { | ||
padding: 4px 0; | ||
} | ||
|
||
.editor-object { | ||
position: relative; | ||
display: grid; | ||
grid-gap: 12px; | ||
height: 100%; | ||
|
||
&.show-editor { | ||
grid-template-columns: 1fr; | ||
grid-template-rows: 1fr; | ||
grid-template-areas: 'editor'; | ||
} | ||
|
||
&.show-preview { | ||
grid-template-columns: 1fr; | ||
grid-template-rows: 1fr; | ||
grid-template-areas: 'markdown'; | ||
} | ||
|
||
&.show-editor.show-preview { | ||
grid-template-columns: 1fr 1fr; | ||
grid-template-rows: 1fr; | ||
grid-template-areas: 'editor markdown'; | ||
} | ||
} | ||
|
||
.editor-input { | ||
grid-area: editor; | ||
scrollbar-width: thin; | ||
height: max-content; | ||
transition: .1s; | ||
min-height: 20vh !important; | ||
color: hsl(var(--text)); | ||
font-size: 16px !important; | ||
padding: 14px 12px !important; | ||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; | ||
} | ||
|
||
.editor-preview { | ||
height: 100%; | ||
grid-area: markdown; | ||
overflow: auto; | ||
padding: 12px; | ||
border-radius: 4px; | ||
background: hsl(var(--input)); | ||
color: hsl(var(--text)); | ||
border: 1px solid hsl(var(--border)); | ||
scrollbar-width: thin; | ||
transition: 0.1s; | ||
min-height: 20vh !important; | ||
font-size: 16px; | ||
} | ||
|
||
.editor-toolbar { | ||
display: flex; | ||
flex-direction: row; | ||
align-items: flex-end; | ||
gap: 4px; | ||
margin: 4px 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
import { | ||
Dialog, | ||
DialogContent, | ||
DialogDescription, | ||
DialogHeader, | ||
DialogTitle, | ||
DialogTrigger, | ||
} from "./ui/dialog.tsx"; | ||
import { Edit, Image, MenuSquare, PanelRight } from "lucide-react"; | ||
import { useTranslation } from "react-i18next"; | ||
import "../assets/editor.less"; | ||
import { Textarea } from "./ui/textarea.tsx"; | ||
import Markdown from "./Markdown.tsx"; | ||
import { useEffect, useRef, useState } from "react"; | ||
import { Toggle } from "./ui/toggle.tsx"; | ||
import {mobile} from "../utils.ts"; | ||
|
||
type RichEditorProps = { | ||
value: string; | ||
onChange: (value: string) => void; | ||
className?: string; | ||
id?: string; | ||
placeholder?: string; | ||
maxLength?: number; | ||
}; | ||
|
||
function RichEditor({ | ||
value, | ||
onChange, | ||
className, | ||
id, | ||
placeholder, | ||
maxLength, | ||
}: RichEditorProps) { | ||
const { t } = useTranslation(); | ||
const input = useRef(null); | ||
const [openPreview, setOpenPreview] = useState(!mobile); | ||
const [openInput, setOpenInput] = useState(true); | ||
|
||
useEffect(() => { | ||
if (!input.current) return; | ||
const target = input.current as HTMLElement; | ||
const preview = target.parentElement?.querySelector( | ||
".editor-preview", | ||
) as HTMLElement; | ||
|
||
const listener = () => { | ||
preview.style.height = `${target.clientHeight}px`; | ||
}; | ||
target.addEventListener("transitionstart", listener); | ||
const task = setInterval(listener, 250); | ||
target.addEventListener("scroll", () => { | ||
preview.scrollTop = target.scrollTop; | ||
}); | ||
|
||
preview.style.height = `${target.clientHeight}px`; | ||
|
||
return () => { | ||
target.removeEventListener("transitionstart", listener); | ||
clearInterval(task); | ||
}; | ||
}, [input]); | ||
|
||
return ( | ||
<> | ||
<Dialog> | ||
<DialogTrigger asChild> | ||
<div | ||
className={`editor-action active ${className}`} | ||
> | ||
<Edit className={`h-3.5 w-3.5`} /> | ||
</div> | ||
</DialogTrigger> | ||
<DialogContent className={`editor-dialog flex-dialog`}> | ||
<DialogHeader> | ||
<DialogTitle>{t("edit")}</DialogTitle> | ||
<DialogDescription asChild> | ||
<div className={`editor-container`}> | ||
<div className={`editor-toolbar`}> | ||
<div className={`grow`} /> | ||
<Toggle | ||
variant={`outline`} | ||
className={`h-8 w-8 p-0`} | ||
pressed={openInput && !openPreview} | ||
onClick={() => { | ||
setOpenPreview(false); | ||
setOpenInput(true); | ||
}} | ||
> | ||
<MenuSquare className={`h-3.5 w-3.5`} /> | ||
</Toggle> | ||
|
||
<Toggle | ||
variant={`outline`} | ||
className={`h-8 w-8 p-0`} | ||
pressed={openInput && openPreview} | ||
onClick={() => { | ||
setOpenPreview(true); | ||
setOpenInput(true); | ||
}} | ||
> | ||
<PanelRight className={`h-3.5 w-3.5`} /> | ||
</Toggle> | ||
|
||
<Toggle | ||
variant={`outline`} | ||
className={`h-8 w-8 p-0`} | ||
pressed={!openInput && openPreview} | ||
onClick={() => { | ||
setOpenPreview(true); | ||
setOpenInput(false); | ||
}} | ||
> | ||
<Image className={`h-3.5 w-3.5`} /> | ||
</Toggle> | ||
</div> | ||
<div className={`editor-wrapper`}> | ||
<div | ||
className={`editor-object ${ | ||
openInput ? "show-editor" : "" | ||
} ${openPreview ? "show-preview" : ""}`} | ||
> | ||
{openInput && ( | ||
<Textarea | ||
placeholder={placeholder} | ||
value={value} | ||
className={`editor-input`} | ||
id={id} | ||
maxLength={maxLength} | ||
onChange={(e) => onChange(e.target.value)} | ||
ref={input} | ||
/> | ||
)} | ||
{openPreview && ( | ||
<Markdown className={`editor-preview`} children={value} /> | ||
)} | ||
</div> | ||
</div> | ||
</div> | ||
</DialogDescription> | ||
</DialogHeader> | ||
</DialogContent> | ||
</Dialog> | ||
</> | ||
); | ||
} | ||
|
||
export default RichEditor; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters