當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Editor.command方法代碼示例

本文整理匯總了TypeScript中slate.Editor.command方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Editor.command方法的具體用法?TypeScript Editor.command怎麽用?TypeScript Editor.command使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在slate.Editor的用法示例。


在下文中一共展示了Editor.command方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: Editor

    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");

// Test all editor commands
editor
.addMark("bold")
.addMarkAtRange(range, "italic")
.addMarkByKey("a", 0, 1, "bold")
.addMarkByPath("a", 0, 1, "bold")
開發者ID:TeamworkGuy2,項目名稱:DefinitelyTyped,代碼行數:30,代碼來源:slate-tests.ts

示例2: Editor

const doc = Document.fromJSON({
	object: "document",
	data: {},
	nodes: [node]
});

const editor = new Editor({ value });
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");

editor.registerQuery("testQuery");
editor.registerCommand("testCommand");
editor.setReadOnly(true).setValue(value);
editor.command("testCommand");
editor.query("testQuery");
editor.run("testCommand");

// Test all editor commands
editor
.addMark("bold")
.addMarkAtRange(range, "italic")
.addMarkByKey("a", 0, 1, "bold")
.addMarkByPath("a", 0, 1, "bold")
.blur()
.delete()
.deleteAtRange(range)
.deleteBackward(0)
.deleteBackwardAtRange(range, 0)
.deleteCharBackwardAtRange(range)
開發者ID:MrBigDog2U,項目名稱:DefinitelyTyped,代碼行數:31,代碼來源:slate-tests.ts


注:本文中的slate.Editor.command方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。