mdui.editor
Version:
Material Design 样式的富文本编辑器
25 lines (24 loc) • 753 B
JavaScript
import MenuAbstract from './menuAbstract';
/**
* 原生命令抽象类
*/
class MenuNativeAbstract extends MenuAbstract {
onclick() {
const isSelectionEmpty = this.selection.isEmpty();
if (isSelectionEmpty) {
// 选区是空的,插入并选中一个“空白”
this.selection.createEmptyRange(this.getElementName());
}
// 执行 bold 命令
this.command.do(this.getCommandName());
if (isSelectionEmpty) {
// 需要将选区折叠起来
this.selection.collapseRange();
this.selection.restore();
}
}
isActive() {
return document.queryCommandState(this.getCommandName());
}
}
export default MenuNativeAbstract;