Create helper function for converting dashes names for display
This commit is contained in:
@@ -43,7 +43,7 @@ export class MarkdownSection extends React.Component<MarkdownSectionProps, Markd
|
||||
const { sectionName, markdownContent, headerSize, githubLink } = this.props as PropsWithDefaults;
|
||||
|
||||
const id = utils.getIdFromName(sectionName);
|
||||
const finalSectionName = sectionName.replace(/-/g, ' ');
|
||||
const finalSectionName = utils.convertDashesToSpaces(sectionName);
|
||||
return (
|
||||
<div
|
||||
className="md-px1 sm-px2 overflow-hidden"
|
||||
|
||||
@@ -45,7 +45,7 @@ export class NestedSidebarMenu extends React.Component<NestedSidebarMenuProps, N
|
||||
};
|
||||
public render() {
|
||||
const navigation = _.map(this.props.topLevelMenu, (menuItems: string[], sectionName: string) => {
|
||||
const finalSectionName = sectionName.replace(/-/g, ' ');
|
||||
const finalSectionName = utils.convertDashesToSpaces(sectionName);
|
||||
if (this.props.shouldDisplaySectionHeaders) {
|
||||
const id = utils.getIdFromName(sectionName);
|
||||
return (
|
||||
@@ -85,7 +85,7 @@ export class NestedSidebarMenu extends React.Component<NestedSidebarMenuProps, N
|
||||
: styles.menuItemWithoutHeaders;
|
||||
const menuItemInnerDivStyles = this.props.shouldDisplaySectionHeaders ? styles.menuItemInnerDivWithHeaders : {};
|
||||
const menuItems = _.map(menuItemNames, menuItemName => {
|
||||
const finalMenuItemName = menuItemName.replace(/-/g, ' ');
|
||||
const finalMenuItemName = utils.convertDashesToSpaces(menuItemName);
|
||||
const id = utils.getIdFromName(menuItemName);
|
||||
return (
|
||||
<div key={menuItemName}>
|
||||
|
||||
@@ -35,7 +35,7 @@ export class SectionHeader extends React.Component<SectionHeaderProps, SectionHe
|
||||
public render() {
|
||||
const { sectionName, headerSize } = this.props as PropsWithDefaults;
|
||||
|
||||
const finalSectionName = this.props.sectionName.replace(/-/g, ' ');
|
||||
const finalSectionName = utils.convertDashesToSpaces(this.props.sectionName);
|
||||
const id = utils.getIdFromName(finalSectionName);
|
||||
return (
|
||||
<div
|
||||
|
||||
@@ -30,6 +30,9 @@ export const utils = {
|
||||
const id = name.replace(/ /g, '-');
|
||||
return id;
|
||||
},
|
||||
convertDashesToSpaces(text: string) {
|
||||
return text.replace(/-/g, ' ');
|
||||
},
|
||||
getEtherScanLinkIfExists(
|
||||
addressOrTxHash: string,
|
||||
networkId: number,
|
||||
|
||||
Reference in New Issue
Block a user