feat: init youtube editor extension

This commit is contained in:
swve 2022-12-14 00:08:46 +01:00
parent 5eb9101084
commit 8d0efdb93e
5 changed files with 68 additions and 5 deletions

View file

@ -16,6 +16,7 @@ import Avvvatars from "avvvatars-react";
import InfoCallout from "./Extensions/Callout/Info/InfoCallout";
import WarningCallout from "./Extensions/Callout/Warning/WarningCallout";
import ImageBlock from "./Extensions/Image/ImageBlock";
import Youtube from "@tiptap/extension-youtube";
interface Editor {
content: string;
@ -31,7 +32,7 @@ function Editor(props: Editor) {
const editor: any = useEditor({
editable: true,
extensions: [
StarterKit.configure({
// The Collaboration extension comes with its own history handling
@ -45,7 +46,11 @@ function Editor(props: Editor) {
}),
ImageBlock.configure({
editable: true,
element: props.element
element: props.element,
}),
Youtube.configure({
controls: true,
modestBranding: true,
}),
// Register the document with Tiptap
// Collaboration.configure({
@ -238,7 +243,7 @@ const EditorInfoThumbnail = styled.img`
}
`;
const EditorContentWrapper = styled.div`
export const EditorContentWrapper = styled.div`
margin: 40px;
margin-top: 90px;
background-color: white;
@ -259,6 +264,17 @@ const EditorContentWrapper = styled.div`
box-shadow: none !important;
}
}
iframe {
border-radius: 6px;
border: none;
min-width: 200px;
width: 100%;
height: 440px;
min-height: 200px;
display: block;
outline: 0px solid transparent;
}
`;
export default Editor;

View file

@ -1,12 +1,26 @@
import styled from "styled-components";
import { FontBoldIcon, FontItalicIcon, StrikethroughIcon, ArrowLeftIcon, ArrowRightIcon, OpacityIcon } from "@radix-ui/react-icons";
import { AlertCircle, AlertTriangle, ImagePlus, Info } from "lucide-react";
import { AlertCircle, AlertTriangle, ImagePlus, Info, Youtube } from "lucide-react";
export const ToolbarButtons = ({ editor }: any) => {
if (!editor) {
return null;
}
// YouTube extension
const addYoutubeVideo = () => {
const url = prompt("Enter YouTube URL");
if (url) {
editor.commands.setYoutubeVideo({
src: url,
width: 640,
height: 480,
});
}
};
return (
<ToolButtonsWrapper>
<ToolBtn onClick={() => editor.chain().focus().undo().run()}>
@ -60,6 +74,9 @@ export const ToolbarButtons = ({ editor }: any) => {
>
<ImagePlus size={15} />
</ToolBtn>
<ToolBtn onClick={() => addYoutubeVideo()}>
<Youtube size={15} />
</ToolBtn>
</ToolButtonsWrapper>
);
};