mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 04:21:57 +03:00
Use semantic headings in user settings Keyboard (#10793)
* settingssubsection text component * use semantic headings in HelpUserSetttings tab * test * strict * lint * semantic heading in labs settings * semantic headings in keyboard settings tab * semantic heading in preferencesusersettingstab * tidying * findByTestId * prettier * allow testids in settings sections * use semantic headings in LabsUserSettingsTab * use semantic headings in usersettingspreferences * rethemendex * put back margin var
This commit is contained in:
parent
38ae8e98e4
commit
68b1930852
3 changed files with 1117 additions and 1050 deletions
|
@ -15,31 +15,26 @@ See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.mx_KeyboardUserSettingsTab .mx_SettingsTab_section {
|
.mx_KeyboardShortcut_shortcutList {
|
||||||
ul {
|
margin: 0;
|
||||||
margin: 0;
|
padding: 0;
|
||||||
padding: 0;
|
width: 100%;
|
||||||
}
|
display: grid;
|
||||||
|
grid-gap: $spacing-4;
|
||||||
.mx_KeyboardShortcut_shortcutRow,
|
}
|
||||||
.mx_KeyboardShortcut {
|
|
||||||
display: flex;
|
.mx_KeyboardShortcut_shortcutRow,
|
||||||
justify-content: space-between;
|
.mx_KeyboardShortcut {
|
||||||
align-items: center;
|
display: flex;
|
||||||
}
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
.mx_KeyboardShortcut_shortcutRow {
|
}
|
||||||
column-gap: $spacing-8;
|
|
||||||
margin-bottom: $spacing-4;
|
.mx_KeyboardShortcut_shortcutRow {
|
||||||
|
column-gap: $spacing-8;
|
||||||
/* TODO: Use flexbox */
|
}
|
||||||
&:last-of-type {
|
|
||||||
margin-bottom: 0;
|
.mx_KeyboardShortcut {
|
||||||
}
|
flex-wrap: nowrap;
|
||||||
|
column-gap: $spacing-4;
|
||||||
.mx_KeyboardShortcut {
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
column-gap: 5px; /* TODO: Use a spacing variable */
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,6 +25,9 @@ import {
|
||||||
getKeyboardShortcutValue,
|
getKeyboardShortcutValue,
|
||||||
} from "../../../../../accessibility/KeyboardShortcutUtils";
|
} from "../../../../../accessibility/KeyboardShortcutUtils";
|
||||||
import { KeyboardShortcut } from "../../KeyboardShortcut";
|
import { KeyboardShortcut } from "../../KeyboardShortcut";
|
||||||
|
import SettingsTab from "../SettingsTab";
|
||||||
|
import { SettingsSection } from "../../shared/SettingsSection";
|
||||||
|
import SettingsSubsection from "../../shared/SettingsSubsection";
|
||||||
|
|
||||||
interface IKeyboardShortcutRowProps {
|
interface IKeyboardShortcutRowProps {
|
||||||
name: KeyBindingAction;
|
name: KeyBindingAction;
|
||||||
|
@ -57,26 +60,27 @@ const KeyboardShortcutSection: React.FC<IKeyboardShortcutSectionProps> = ({ cate
|
||||||
if (!category.categoryLabel) return null;
|
if (!category.categoryLabel) return null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="mx_SettingsTab_section" key={categoryName}>
|
<SettingsSubsection heading={_t(category.categoryLabel)} key={categoryName}>
|
||||||
<div className="mx_SettingsTab_subheading">{_t(category.categoryLabel)}</div>
|
<ul className="mx_KeyboardShortcut_shortcutList">
|
||||||
<ul>
|
|
||||||
{" "}
|
|
||||||
{category.settingNames.map((shortcutName) => {
|
{category.settingNames.map((shortcutName) => {
|
||||||
return <KeyboardShortcutRow key={shortcutName} name={shortcutName} />;
|
return <KeyboardShortcutRow key={shortcutName} name={shortcutName} />;
|
||||||
})}{" "}
|
})}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</SettingsSubsection>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const KeyboardUserSettingsTab: React.FC = () => {
|
const KeyboardUserSettingsTab: React.FC = () => {
|
||||||
return (
|
return (
|
||||||
<div className="mx_SettingsTab mx_KeyboardUserSettingsTab">
|
<SettingsTab>
|
||||||
<div className="mx_SettingsTab_heading">{_t("Keyboard")}</div>
|
<SettingsSection heading={_t("Keyboard")}>
|
||||||
{visibleCategories.map(([categoryName, category]) => {
|
{visibleCategories.map(([categoryName, category]: [CategoryName, ICategory]) => {
|
||||||
return <KeyboardShortcutSection key={categoryName} categoryName={categoryName} category={category} />;
|
return (
|
||||||
})}
|
<KeyboardShortcutSection key={categoryName} categoryName={categoryName} category={category} />
|
||||||
</div>
|
);
|
||||||
|
})}
|
||||||
|
</SettingsSection>
|
||||||
|
</SettingsTab>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue