Skip to content

Commit

Permalink
Desktop: Fixes #4338: Some commands were no longer working (#4343)
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebJohn authored and laurent22 committed Jan 11, 2021
1 parent 7530d2e commit 63a331c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
6 changes: 5 additions & 1 deletion packages/lib/services/CommandService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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' ||
Expand All @@ -328,7 +330,9 @@ export default class CommandService extends BaseService {
commandName === 'textCheckbox' ||
commandName === 'textHeading' ||
commandName === 'textHorizontalRule' ||
commandName === 'insertDateTime'
commandName === 'insertDateTime' ||
commandName === 'selectedText' ||
commandName === 'replaceSelection'
);
}

Expand Down
16 changes: 14 additions & 2 deletions packages/lib/services/commands/ToolbarButtonUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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');
}
},
Expand Down

0 comments on commit 63a331c

Please sign in to comment.