Add link icon to editor

This commit is contained in:
Ategon 2025-02-10 22:58:26 -05:00
parent a2a1323e01
commit 87878f270a

View file

@ -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(),