UNPKG

@uiw/react-md-editor

Version:

A markdown editor with preview, implemented with React.js and TypeScript.

87 lines (86 loc) 3.77 kB
import React from 'react'; import { bold } from './bold'; import { code, codeBlock } from './code'; import { italic } from './italic'; import { link } from './link'; import { unorderedListCommand, orderedListCommand, checkedListCommand } from './list'; import { quote } from './quote'; import { hr } from './hr'; import { title } from './title'; import { title1 } from './title1'; import { title2 } from './title2'; import { title3 } from './title3'; import { title4 } from './title4'; import { title5 } from './title5'; import { title6 } from './title6'; import { group } from './group'; import { divider } from './divider'; import { codePreview, codeEdit, codeLive } from './preview'; import { fullscreen } from './fullscreen'; import { image } from './image'; import { strikethrough } from './strikeThrough'; import { ContextStore, ExecuteCommandState } from '../Context'; export interface CommandOrchestrator { executeCommand(command: ICommand): void; } export interface ICommandChildHandle<T = string> extends ICommandBase<T> { children?: (handle: { close: () => void; execute: () => void; getState?: TextAreaCommandOrchestrator['getState']; textApi?: TextAreaTextApi; }) => React.ReactElement; } export interface ICommandChildCommands<T = string> extends ICommandBase<T> { children?: Array<ICommand<T>>; } export interface ICommandBase<T> { parent?: ICommand<any>; keyCommand?: string; name?: string; shortcuts?: string; groupName?: string; icon?: React.ReactElement; value?: T; position?: 'right'; liProps?: React.LiHTMLAttributes<HTMLLIElement>; buttonProps?: React.ButtonHTMLAttributes<HTMLButtonElement> | null; render?: (command: ICommand<T>, disabled: boolean, executeCommand: (command: ICommand<T>, name?: string) => void, index: number) => void | undefined | null | React.ReactElement; execute?: (state: TextState, api: TextAreaTextApi, dispatch?: React.Dispatch<ContextStore>, executeCommandState?: ExecuteCommandState) => void; } export declare type ICommand<T = string> = ICommandChildCommands<T> | ICommandChildHandle<T>; export interface TextRange { start: number; end: number; } export interface TextState { text: string; selectedText: string; selection: TextRange; } declare const getCommands: () => ICommand[]; declare const getExtraCommands: () => ICommand[]; declare function getStateFromTextArea(textArea: HTMLTextAreaElement): TextState; declare class TextAreaTextApi { textArea: HTMLTextAreaElement; constructor(textArea: HTMLTextAreaElement); /** * Replaces the current selection with the new text. This will make the new selectedText to be empty, the * selection start and selection end will be the same and will both point to the end * @param text Text that should replace the current selection */ replaceSelection(text: string): TextState; /** * Selects the specified text range * @param selection */ setSelectionRange(selection: TextRange): TextState; } declare class TextAreaCommandOrchestrator implements CommandOrchestrator { textArea: HTMLTextAreaElement; textApi: TextAreaTextApi; constructor(textArea: HTMLTextAreaElement); getState(): false | TextState; executeCommand(command: ICommand<string>, dispatch?: React.Dispatch<ContextStore>, state?: ExecuteCommandState): void; } export { title, title1, title2, title3, title4, title5, title6, bold, codeBlock, italic, strikethrough, hr, group, divider, link, quote, code, image, unorderedListCommand, orderedListCommand, checkedListCommand, codeEdit, codeLive, codePreview, fullscreen, getCommands, getExtraCommands, getStateFromTextArea, TextAreaCommandOrchestrator, TextAreaTextApi, };