aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-shared/src/components/nested_sidebar_menu.tsx
blob: 87622310a39261294195708fa3ada30d26dcfd92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
import { ObjectMap } from '@0xproject/types';
import * as _ from 'lodash';
import MenuItem from 'material-ui/MenuItem';
import * as React from 'react';

import { ALink, Styles } from '../types';
import { colors } from '../utils/colors';
import { utils } from '../utils/utils';

import { Link } from './link';

export interface NestedSidebarMenuProps {
    sectionNameToLinks: ObjectMap<ALink[]>;
    sidebarHeader?: React.ReactNode;
    shouldDisplaySectionHeaders?: boolean;
    shouldReformatMenuItemNames?: boolean;
    parentName?: string;
}

export interface NestedSidebarMenuState {
    scrolledToId: string;
}

const styles: Styles = {
    menuItemWithHeaders: {
        minHeight: 0,
    },
    menuItemWithoutHeaders: {
        minHeight: 48,
    },
    menuItemInnerDivWithHeaders: {
        color: colors.grey800,
        fontSize: 14,
        lineHeight: 2,
        padding: 0,
        whiteSpace: 'nowrap',
        overflow: 'hidden',
        textOverflow: 'ellipsis',
    },
};

export class NestedSidebarMenu extends React.Component<NestedSidebarMenuProps, NestedSidebarMenuState> {
    public static defaultProps: Partial<NestedSidebarMenuProps> = {
        shouldDisplaySectionHeaders: true,
        shouldReformatMenuItemNames: true,
        parentName: 'default',
    };
    private _urlIntervalCheckId: number;
    constructor(props: NestedSidebarMenuProps) {
        super(props);
        this.state = {
            scrolledToId: '',
        };
    }
    public componentDidMount(): void {
        this._urlIntervalCheckId = window.setInterval(() => {
            const scrollId = location.hash.slice(1);
            if (scrollId !== this.state.scrolledToId) {
                this.setState({
                    scrolledToId: scrollId,
                });
            }
        }, 200);
    }
    public componentWillUnmount(): void {
        window.clearInterval(this._urlIntervalCheckId);
    }
    public render(): React.ReactNode {
        const navigation = _.map(this.props.sectionNameToLinks, (links: ALink[], sectionName: string) => {
            const finalSectionName = utils.convertCamelCaseToSpaces(sectionName);
            if (this.props.shouldDisplaySectionHeaders) {
                // tslint:disable-next-line:no-unused-variable
                return (
                    <div key={`section-${sectionName}`} className="py1" style={{ color: colors.greyTheme }}>
                        <div style={{ fontSize: 14, letterSpacing: 0.5 }} className="py1 pl1">
                            {finalSectionName.toUpperCase()}
                        </div>
                        {this._renderMenuItems(links)}
                    </div>
                );
            } else {
                return <div key={`section-${sectionName}`}>{this._renderMenuItems(links)}</div>;
            }
        });
        return (
            <div>
                {this.props.sidebarHeader}
                <div>{navigation}</div>
            </div>
        );
    }
    private _renderMenuItems(links: ALink[]): React.ReactNode[] {
        const scrolledToId = this.state.scrolledToId;
        const menuItemStyles = this.props.shouldDisplaySectionHeaders
            ? styles.menuItemWithHeaders
            : styles.menuItemWithoutHeaders;
        const menuItemInnerDivStyles = this.props.shouldDisplaySectionHeaders ? styles.menuItemInnerDivWithHeaders : {};
        const menuItems = _.map(links, link => {
            const isScrolledTo = link.to === scrolledToId;
            const finalMenuItemName = this.props.shouldReformatMenuItemNames
                ? utils.convertDashesToSpaces(link.title)
                : link.title;
            return (
                <div key={`menuItem-${finalMenuItemName}`}>
                    <Link to={link.to} shouldOpenInNewTab={link.shouldOpenInNewTab}>
                        <MenuItem
                            style={{
                                ...menuItemStyles,
                                paddingLeft: 8,
                                borderRadius: 6,
                                backgroundColor: isScrolledTo ? colors.lightLinkBlue : 'inherit',
                            }}
                            innerDivStyle={{
                                ...menuItemInnerDivStyles,
                                color: isScrolledTo ? colors.white : 'inherit',
                                fontWeight: isScrolledTo ? 'bold' : 'inherit',
                            }}
                        >
                            <span
                                style={{
                                    textTransform: this.props.shouldReformatMenuItemNames ? 'capitalize' : 'none',
                                }}
                            >
                                {finalMenuItemName}
                            </span>
                        </MenuItem>
                    </Link>
                </div>
            );
        });
        return menuItems;
    }
}