import * as React from 'react';
import Editor from 'src/editor';
import { EditorConfig } from 'src/share/var';
export interface PluginProps {
editor: Editor;
editorConfig: EditorConfig;
config?: any;
}
export abstract class PluginComponent extends React.Component
{ static pluginName: string = ''; static align: string = 'left'; protected get editor(): Editor { return this.props.editor; } protected get editorConfig(): EditorConfig { return this.props.editorConfig; } constructor(props: P) { super(props); } protected getConfig(key: string, defaultValue?: any) { return this.props.config && typeof this.props.config[key] !== 'undefined' && this.props.config[key] !== null ? this.props.config[key] : defaultValue; } }