Accessible modals (#560)

Improve the accessibility of our modals (the color picker and the export dialog)

Implement a focus trap so that tapping through the controls inside them don't escape to outer elements, it also allows to close the modals with the "Escape" key.
This commit is contained in:
Guillermo Peralta Scura
2020-01-25 19:37:58 -03:00
committed by GitHub
parent ba13f88924
commit e4ff408f23
13 changed files with 207 additions and 58 deletions

View File

@ -10,11 +10,11 @@ export const actionChangeViewBackgroundColor: Action = {
perform: (elements, appState, value) => {
return { appState: { ...appState, viewBackgroundColor: value } };
},
PanelComponent: ({ appState, updateData }) => {
PanelComponent: ({ appState, updateData, t }) => {
return (
<div style={{ position: "relative" }}>
<ColorPicker
label="Canvas Background"
label={t("labels.canvasBackground")}
type="canvasBackground"
color={appState.viewBackgroundColor}
onChange={color => updateData(color)}

View File

@ -10,8 +10,9 @@ export const actionChangeProjectName: Action = {
perform: (elements, appState, value) => {
return { appState: { ...appState, name: value } };
},
PanelComponent: ({ appState, updateData }) => (
PanelComponent: ({ appState, updateData, t }) => (
<EditableText
label={t("labels.fileTitle")}
value={appState.name || "Unnamed"}
onChange={(name: string) => updateData(name)}
/>