import { mergeAttributes, Node, nodePasteRule } from '@tiptap/core' import { getEmbedURLFromYoutubeURL, isValidYoutubeUrl, YOUTUBE_REGEX_GLOBAL } from './utils' export interface YoutubeOptions { addPasteHandler: boolean; allowFullscreen: boolean; autoplay: boolean; ccLanguage: string; ccLoadPolicy: boolean; controls: boolean; disableKBcontrols: boolean; enableIFrameApi: boolean; endTime: number; height: number; interfaceLanguage: string; ivLoadPolicy: number; loop: boolean; modestBranding: boolean; HTMLAttributes: Record; inline: boolean; nocookie: boolean; origin: string; playlist: string; progressBarColor: string; width: number; } declare module '@tiptap/core' { interface Commands { youtube: { /** * Insert a youtube video */ setYoutubeVideo: (options: { src: string, width?: number, height?: number, start?: number }) => ReturnType, } } } export const Youtube = Node.create({ name: 'youtube', addOptions() { return { addPasteHandler: true, allowFullscreen: false, autoplay: false, ccLanguage: 'en', ccLoadPolicy: false, controls: true, disableKBcontrols: false, enableIFrameApi: false, endTime: 0, height: 480, interfaceLanguage: 'en', ivLoadPolicy: 1, loop: false, modestBranding: false, HTMLAttributes: {}, inline: false, nocookie: false, origin: '', playlist: '', progressBarColor: 'red', width: 640, } }, inline() { return this.options.inline }, group() { return this.options.inline ? 'inline' : 'block' }, draggable: true, addAttributes() { return { src: { default: null, }, start: { default: 0, }, width: { default: this.options.width, }, height: { default: this.options.height, }, } }, parseHTML() { return [ { tag: 'div[data-youtube-video] iframe', }, ] }, addCommands() { return { setYoutubeVideo: options => ({ commands }) => { if (!isValidYoutubeUrl(options.src)) { return false } return commands.insertContent({ type: this.name, attrs: options, }) }, } }, addPasteRules() { if (!this.options.addPasteHandler) { return [] } return [ nodePasteRule({ find: YOUTUBE_REGEX_GLOBAL, type: this.type, getAttributes: match => { return { src: match.input } }, }), ] }, renderHTML({ HTMLAttributes }) { const embedUrl = getEmbedURLFromYoutubeURL({ url: HTMLAttributes.src, allowFullscreen: this.options.allowFullscreen, autoplay: this.options.autoplay, ccLanguage: this.options.ccLanguage, ccLoadPolicy: this.options.ccLoadPolicy, controls: this.options.controls, disableKBcontrols: this.options.disableKBcontrols, enableIFrameApi: this.options.enableIFrameApi, endTime: this.options.endTime, interfaceLanguage: this.options.interfaceLanguage, ivLoadPolicy: this.options.ivLoadPolicy, loop: this.options.loop, modestBranding: this.options.modestBranding, nocookie: this.options.nocookie, origin: this.options.origin, playlist: this.options.playlist, progressBarColor: this.options.progressBarColor, startAt: HTMLAttributes.start || 0, }) HTMLAttributes.src = embedUrl return [ 'div', { 'data-youtube-video': '' }, [ 'iframe', mergeAttributes( this.options.HTMLAttributes, { width: this.options.width, height: this.options.height, allowfullscreen: this.options.allowFullscreen, autoplay: this.options.autoplay, ccLanguage: this.options.ccLanguage, ccLoadPolicy: this.options.ccLoadPolicy, disableKBcontrols: this.options.disableKBcontrols, enableIFrameApi: this.options.enableIFrameApi, endTime: this.options.endTime, interfaceLanguage: this.options.interfaceLanguage, ivLoadPolicy: this.options.ivLoadPolicy, loop: this.options.loop, modestBranding: this.options.modestBranding, origin: this.options.origin, playlist: this.options.playlist, progressBarColor: this.options.progressBarColor, }, HTMLAttributes, ), ], ] }, })