Skip to content

Commit

Permalink
fix: fix second-level heading in description
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanHotsiy committed Mar 21, 2018
1 parent 8662176 commit a084532
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 16 deletions.
5 changes: 5 additions & 0 deletions src/components/Markdown/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ export const markdownCss = css`
margin-top: 0;
}
h2 {
${headerCommonMixin(2)};
color: ${props => props.theme.colors.text};
}
code {
color: #e53935;
background-color: rgba(38, 50, 56, 0.04);
Expand Down
18 changes: 9 additions & 9 deletions src/components/SideMenu/MenuItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ export class MenuItem extends React.Component<MenuItemProps> {
{item.type === 'operation' ? (
<OperationMenuItemContent item={item as OperationModel} />
) : (
<MenuItemLabel depth={item.depth} active={item.active}>
<MenuItemTitle title={item.name}>{item.name}</MenuItemTitle>
{(item.depth > 0 &&
item.items.length > 0 && (
<ShelfIcon float={'right'} direction={item.active ? 'down' : 'right'} />
)) ||
null}
</MenuItemLabel>
)}
<MenuItemLabel depth={item.depth} active={item.active} type={item.type}>
<MenuItemTitle title={item.name}>{item.name}</MenuItemTitle>
{(item.depth > 0 &&
item.items.length > 0 && (
<ShelfIcon float={'right'} direction={item.active ? 'down' : 'right'} />
)) ||
null}
</MenuItemLabel>
)}
{!withoutChildren &&
item.items &&
item.items.length > 0 && (
Expand Down
12 changes: 7 additions & 5 deletions src/components/SideMenu/styled.elements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import styled, { css, withProps } from '../../styled-components';

export const OperationBadge = withProps<{ type: string }>(styled.span).attrs({
className: props => `operation-type ${props.type}`,
})`
}) `
width: 26px;
display: inline-block;
height: ${props => props.theme.code.fontSize};;
Expand Down Expand Up @@ -70,7 +70,7 @@ function menuItemActiveBg(depth): string {
}
}

export const MenuItemUl = withProps<{ active: boolean }>(styled.ul)`
export const MenuItemUl = withProps<{ active: boolean }>(styled.ul) `
margin: 0;
padding: 0;
Expand All @@ -81,7 +81,7 @@ export const MenuItemUl = withProps<{ active: boolean }>(styled.ul)`
${props => (props.active ? '' : 'display: none;')};
`;

export const MenuItemLi = withProps<{ depth: number }>(styled.li)`
export const MenuItemLi = withProps<{ depth: number }>(styled.li) `
list-style: none inside none;
overflow: hidden;
text-overflow: ellipsis;
Expand Down Expand Up @@ -114,17 +114,19 @@ export const MenuItemLabel = withProps<{
depth: number;
active: boolean;
deprecated?: boolean;
type?: string;
}>(styled.label).attrs({
role: 'menuitem',
className: props =>
classnames('-depth' + props.depth, {
active: props.active,
}),
})`
}) `
cursor: pointer;
color: ${props => (props.active ? props.theme.colors.main : props.theme.colors.text)};
margin: 0;
padding: 12.5px ${props => props.theme.spacingUnit}px;
${({ depth, type, theme }) => type === 'section' && depth > 1 && 'padding-left: ' + theme.spacingUnit * 2 + 'px;' || ''}
display: flex;
justify-content: space-between;
font-family: ${props => props.theme.headingsFont.family};
Expand All @@ -138,7 +140,7 @@ export const MenuItemLabel = withProps<{
}
`;

export const MenuItemTitle = withProps<{ width?: string }>(styled.span)`
export const MenuItemTitle = withProps<{ width?: string }>(styled.span) `
display: inline-block;
vertical-align: middle;
width: ${props => (props.width ? props.width : 'auto')};
Expand Down
2 changes: 1 addition & 1 deletion src/services/MenuBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export class MenuBuilder {
const group = new GroupModel('section', heading, parent);
group.depth = depth;
if (heading.items) {
group.items = mapHeadingsDeep(group, group.items, depth + 1);
group.items = mapHeadingsDeep(group, heading.items, depth + 1);
}
return group;
});
Expand Down
3 changes: 2 additions & 1 deletion src/services/__tests__/MarkdownRenderer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ describe('Markdown renderer', () => {
expect(Object.keys(renderer.headings)).toHaveLength(1);
expect(renderer.headings[0].name).toEqual('Sub Intro');
});

test('should return a level-2 heading as a child of level-1', () => {
const headings = renderer.extractHeadings('# Introduction \n ## Sub Intro', false);
const headings = renderer.extractHeadings('# Introduction \n ## Sub Intro');
expect(headings).toHaveLength(1);
expect(headings[0].name).toEqual('Introduction');
expect(headings[0].items).toBeDefined();
Expand Down

0 comments on commit a084532

Please sign in to comment.