mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-24 10:27:10 +02:00
parent
25341858d5
commit
b7313568de
@ -314,6 +314,8 @@ export default class CommandService extends BaseService {
|
||||
return (commandName.indexOf('editor.') === 0 ||
|
||||
// These commands are grandfathered in, but in the future
|
||||
// all editor commands should start with "editor."
|
||||
commandName === 'insertText' ||
|
||||
commandName === 'scrollToHash' ||
|
||||
commandName === 'textCopy' ||
|
||||
commandName === 'textCut' ||
|
||||
commandName === 'textPaste' ||
|
||||
@ -328,7 +330,9 @@ export default class CommandService extends BaseService {
|
||||
commandName === 'textCheckbox' ||
|
||||
commandName === 'textHeading' ||
|
||||
commandName === 'textHorizontalRule' ||
|
||||
commandName === 'insertDateTime'
|
||||
commandName === 'insertDateTime' ||
|
||||
commandName === 'selectedText' ||
|
||||
commandName === 'replaceSelection'
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -33,6 +33,19 @@ export default class ToolbarButtonUtils {
|
||||
return this.service_;
|
||||
}
|
||||
|
||||
private isEditorCommand(commandName: string) {
|
||||
return CommandService.isEditorCommand(commandName) && !(
|
||||
// These commands are attached to the editor runtime,
|
||||
// but they either handle focus themselves or don't need
|
||||
// to focus the editor
|
||||
commandName === 'textLink' ||
|
||||
commandName === 'insertText' ||
|
||||
commandName === 'scrollToHash' ||
|
||||
commandName === 'selectedText' ||
|
||||
commandName === 'replaceSelection'
|
||||
);
|
||||
}
|
||||
|
||||
private commandToToolbarButton(commandName: string, whenClauseContext: any): ToolbarButtonInfo {
|
||||
const newEnabled = this.service.isEnabled(commandName, whenClauseContext);
|
||||
const newTitle = this.service.title(commandName);
|
||||
@ -54,8 +67,7 @@ export default class ToolbarButtonUtils {
|
||||
enabled: newEnabled,
|
||||
onClick: async () => {
|
||||
void this.service.execute(commandName);
|
||||
// WARNING: textLink is a special case because it handles it's own focus
|
||||
if (CommandService.isEditorCommand(commandName) && commandName !== 'textLink') {
|
||||
if (this.isEditorCommand(commandName)) {
|
||||
void this.service.execute('editor.focus');
|
||||
}
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user