本文整理匯總了TypeScript中slate.Editor類的典型用法代碼示例。如果您正苦於以下問題:TypeScript Editor類的具體用法?TypeScript Editor怎麽用?TypeScript Editor使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了Editor類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: switch
normalize: (editor: Editor, { code, node }: any) => {
switch (code) {
case 'last_child_type_invalid': {
const paragraph = Block.create('paragraph');
return editor.insertNodeByKey(node.key, node.nodes.size, paragraph);
}
}
},
示例2: next
const plugin: Plugin = {
normalizeNode: (node: Node, editor: Editor, next: () => void) => next(),
onChange: (editor: Editor, next: () => void) => next(),
onCommand: (command: Command, editor: Editor, next: () => void) => next(),
onConstruct: (editor: Editor, next: () => void) => next(),
onQuery: (query: Query, editor: Editor, next: () => void) => next(),
validateNode: (node: Node, editor: Editor, next: () => void) => next(),
commands: { [pluginCommandName]: (editor: Editor, ...args: any[]) => editor },
queries: { [pluginQueryName]: (editor: Editor, ...args: any[]) => editor },
schema: {...schema},
};
const plugins = [plugin];
const editor = new Editor({ value, plugins });
const point = Point.create({ key: "a", offset: 0 });
const range = Range.create({ anchor: point, focus: point });
const inline = Inline.create("text");
const mark = Mark.create("bold");
const decorations = Decoration.createList([{ anchor: Point.create({ key: "a", offset: 0 }), focus: Point.create({ key: "a", offset: 0 }), mark }]);
editor.command(pluginCommandName, 1);
editor.query(pluginQueryName, 1);
editor.registerQuery("testQuery");
editor.registerCommand("testCommand");
editor.setReadOnly(true).setValue(value);
editor.command("testCommand");
editor.query("testQuery");
editor.run("testCommand");
示例3: Editor
{
object: "text",
leaves: [
{
text: "example",
marks: []
}
]
}
]
};
const doc = Document.fromJSON({
object: "document",
data: {},
nodes: [node]
});
const editor = new Editor({ value });
editor.change((change: Change) => {
return change.insertText("test");
});
editor.registerQuery("testQuery");
editor.registerCommand("testCommand");
editor.setReadOnly(true).setValue(value);
editor.command("testCommand");
editor.query("testQuery");
editor.run("testCommand");
editor.event("mouseDown", new Event("mouseDown"));