mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
Add link icon to editor
This commit is contained in:
parent
a2a1323e01
commit
87878f270a
1 changed files with 19 additions and 0 deletions
|
@ -10,6 +10,7 @@ import {
|
|||
Code,
|
||||
Highlighter,
|
||||
Italic,
|
||||
LinkIcon,
|
||||
Minus,
|
||||
Quote,
|
||||
Redo,
|
||||
|
@ -28,6 +29,18 @@ type EditorMenuProps = {
|
|||
export default function EditorMenuBar({ editor }: EditorMenuProps) {
|
||||
if (!editor) return null;
|
||||
|
||||
const addLink = () => {
|
||||
const url = prompt("Enter link URL:");
|
||||
if (url) {
|
||||
editor
|
||||
.chain()
|
||||
.focus()
|
||||
.extendMarkRange("link")
|
||||
.setLink({ href: url })
|
||||
.run();
|
||||
}
|
||||
};
|
||||
|
||||
const buttons = [
|
||||
{
|
||||
icon: <Bold size={20} />,
|
||||
|
@ -71,6 +84,12 @@ export default function EditorMenuBar({ editor }: EditorMenuProps) {
|
|||
disabled: false,
|
||||
isActive: editor.isActive("superscript"),
|
||||
},
|
||||
{
|
||||
icon: <LinkIcon size={20} />,
|
||||
onClick: addLink,
|
||||
disabled: false,
|
||||
isActive: editor.isActive("link"),
|
||||
},
|
||||
{
|
||||
icon: <Minus size={20} />,
|
||||
onClick: () => editor.chain().focus().setHorizontalRule().run(),
|
||||
|
|
Loading…
Reference in a new issue