本文整理汇总了TypeScript中tinymce/core/api/Editor.Editor.setProgressState方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Editor.setProgressState方法的具体用法?TypeScript Editor.setProgressState怎么用?TypeScript Editor.setProgressState使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tinymce/core/api/Editor.Editor
的用法示例。
在下文中一共展示了Editor.setProgressState方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: function
const addToDictionary = function (editor: Editor, pluginUrl: string, startedState, textMatcherState, currentLanguageState, word: string, spans: Element[]) {
editor.setProgressState(true);
sendRpcCall(editor, pluginUrl, currentLanguageState, 'addToDictionary', word, () => {
editor.setProgressState(false);
editor.dom.remove(spans, true);
checkIfFinished(editor, startedState, textMatcherState);
}, (message) => {
editor.notificationManager.open({ text: message, type: 'error' });
editor.setProgressState(false);
});
};
示例2: function
const markErrors = function (editor: Editor, startedState: Cell<boolean>, textMatcherState: Cell<DomTextMatcher>, lastSuggestionsState: Cell<LastSuggestion>, data: Data) {
let suggestions, hasDictionarySupport;
if (typeof data !== 'string' && data.words) {
hasDictionarySupport = !!data.dictionary;
suggestions = data.words;
} else {
// Fallback to old format
suggestions = data;
}
editor.setProgressState(false);
if (isEmpty(suggestions)) {
const message = editor.translate('No misspellings found.');
editor.notificationManager.open({ text: message, type: 'info' });
startedState.set(false);
return;
}
lastSuggestionsState.set({
suggestions,
hasDictionarySupport
});
const bookmark = editor.selection.getBookmark();
getTextMatcher(editor, textMatcherState).find(Settings.getSpellcheckerWordcharPattern(editor)).filter(function (match) {
return !!suggestions[match.text];
}).wrap(function (match) {
return editor.dom.create('span', {
'class': 'mce-spellchecker-word',
'data-mce-bogus': 1,
'data-mce-word': match.text
});
});
editor.selection.moveToBookmark(bookmark);
startedState.set(true);
Events.fireSpellcheckStart(editor);
};
示例3:
}, (message) => {
editor.notificationManager.open({ text: message, type: 'error' });
editor.setProgressState(false);
});
示例4: sendRpcCall
sendRpcCall(editor, pluginUrl, currentLanguageState, 'addToDictionary', word, () => {
editor.setProgressState(false);
editor.dom.remove(spans, true);
checkIfFinished(editor, startedState, textMatcherState);
}, (message) => {
示例5:
const sSetProgressState = (editor: Editor, state) => Step.sync(() => {
editor.setProgressState(state);
});