summaryrefslogtreecommitdiffstats
path: root/webapp/components/admin_console/admin_sidebar_section.jsx
blob: c15291de90996251f79f3743438d21d65258ce5b (plain)
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
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import React from 'react';

import {Link} from 'react-router/es6';
import * as Utils from 'utils/utils.jsx';

export default class AdminSidebarSection extends React.Component {
    static get propTypes() {
        return {
            name: React.PropTypes.string.isRequired,
            title: React.PropTypes.node.isRequired,
            type: React.PropTypes.string,
            parentLink: React.PropTypes.string,
            subsection: React.PropTypes.bool,
            children: React.PropTypes.arrayOf(React.PropTypes.element),
            action: React.PropTypes.node,
            onlyActiveOnIndex: React.PropTypes.bool
        };
    }

    static get defaultProps() {
        return {
            parentLink: '',
            subsection: false,
            children: [],
            onlyActiveOnIndex: true
        };
    }

    getLink() {
        return this.props.parentLink + '/' + this.props.name;
    }

    render() {
        const link = this.getLink();

        let clonedChildren = null;
        if (this.props.children.length > 0) {
            clonedChildren = (
                <ul className='nav nav__sub-menu subsections'>
                    {
                        React.Children.map(this.props.children, (child) => {
                            if (child === null) {
                                return null;
                            }

                            return React.cloneElement(child, {
                                parentLink: link,
                                subsection: true
                            });
                        })
                    }
                </ul>
            );
        }

        let className = 'sidebar-section';
        if (this.props.subsection) {
            className += ' sidebar-subsection';
        }

        let sidebarItem = (
            <Link
                id={Utils.createSafeId(this.props.name)}
                className={`${className}-title`}
                activeClassName={`${className}-title ${className}-title--active`}
                onlyActiveOnIndex={this.props.onlyActiveOnIndex}
                onClick={this.handleClick}
                to={link}
            >
                <span className={`${className}-title__text`}>
                    {this.props.title}
                </span>
                {this.props.action}
            </Link>
        );

        if (this.props.type === 'text') {
            sidebarItem = (
                <div
                    className={`${className}-title`}
                >
                    <span className={`${className}-title__text`}>
                        {this.props.title}
                    </span>
                    {this.props.action}
                </div>
            );
        }

        return (
            <li className={className}>
                {sidebarItem}
                {clonedChildren}
            </li>
        );
    }
}