/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the Chameleon License found in the * LICENSE file in the root directory of this source tree. */ import { useLexicalComposerContext } from "@lexical/react/LexicalComposerContext"; import * as React from "react"; import type { InsertImagePayload } from "./ImagesPlugin"; import { INSERT_IMAGE_COMMAND } from "./ImagesPlugin"; export function FillURL() { const srcfile = prompt("Enter the URL of the image:", ""); return srcfile; } export function ToolbarPlugin() { const [editor] = useLexicalComposerContext(); const onClick = (payload: InsertImagePayload) => { editor.dispatchCommand(INSERT_IMAGE_COMMAND, payload); }; return (