(core) Keep focus when canceling choice rename

Summary:
Small bug fix that ensures focus isn't lost when Escape is pressed
while renaming a choice. This now makes it possible to close the
editor with a subsequent press of Escape.

Test Plan: Browser test.

Reviewers: jarek

Reviewed By: jarek

Differential Revision: https://phab.getgrist.com/D3556
pull/242/head
George Gevoian 2 years ago
parent e430748c12
commit d12b05abcb

@ -293,7 +293,7 @@ export class ChoiceListEntry extends Disposable {
focus(tokenField.getTextInput()); focus(tokenField.getTextInput());
}; };
return cssColorAndLabel( const tokenColorAndLabel: HTMLDivElement = cssColorAndLabel(
dom.autoDispose(fillColorObs), dom.autoDispose(fillColorObs),
dom.autoDispose(textColorObs), dom.autoDispose(textColorObs),
dom.autoDispose(choiceText), dom.autoDispose(choiceText),
@ -335,9 +335,13 @@ export class ChoiceListEntry extends Disposable {
dom.on('copy', stopPropagation), dom.on('copy', stopPropagation),
dom.on('cut', stopPropagation), dom.on('cut', stopPropagation),
dom.on('paste', stopPropagation), dom.on('paste', stopPropagation),
// On enter, focus on the input element.
dom.onKeyDown({ dom.onKeyDown({
Enter : focusOnNew // On enter, focus on the input element.
Enter : focusOnNew,
// On escape, focus on the token (i.e. the parent node of this element). That way
// the browser will scroll the view if needed, and a subsequent escape will close
// the editor.
Escape: () => tokenColorAndLabel.parentElement?.focus(),
}), }),
// Don't bubble up click, as it would change focus. // Don't bubble up click, as it would change focus.
dom.on('click', stopPropagation), dom.on('click', stopPropagation),
@ -346,6 +350,11 @@ export class ChoiceListEntry extends Disposable {
args: [dom.cls(cssEditableLabel.className)], args: [dom.cls(cssEditableLabel.className)],
}), }),
); );
return [
tokenColorAndLabel,
dom.onKeyDown({Escape$: () => this._cancel()}),
];
} }
} }
@ -464,6 +473,9 @@ const cssToken = styled(cssListRow, `
.${cssTokenField.className}.token-dragactive & { .${cssTokenField.className}.token-dragactive & {
cursor: unset; cursor: unset;
} }
&:focus {
outline: none;
}
`); `);
const cssTokenColorInactive = styled('div', ` const cssTokenColorInactive = styled('div', `

Loading…
Cancel
Save