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

import React from 'react';

import {Link} from 'react-router/es6';

export default class AdminSidebarCategory extends React.Component {
    static get propTypes() {
        return {
            name: React.PropTypes.string,
            title: React.PropTypes.node.isRequired,
            icon: React.PropTypes.string.isRequired,
            sectionClass: React.PropTypes.string,
            parentLink: React.PropTypes.string,
            children: React.PropTypes.node,
            action: React.PropTypes.node
        };
    }

    static get defaultProps() {
        return {
            parentLink: ''
        };
    }

    static get contextTypes() {
        return {
            router: React.PropTypes.object.isRequired
        };
    }

    render() {
        let link = this.props.parentLink;
        let title = (
            <div className='category-title category-title--active'>
                <i className={'category-icon fa ' + this.props.icon}/>
                <span className='category-title__text'>
                    {this.props.title}
                </span>
                {this.props.action}
            </div>
        );

        if (this.props.name) {
            link += '/' + name;
            title = (
                <Link
                    to={link}
                    className='category-title'
                    activeClassName='category-title category-title--active'
                >
                    {title}
                </Link>
            );
        }

        let clonedChildren = null;
        if (this.props.children && this.context.router.isActive(link)) {
            clonedChildren = (
                <ul className={'sections ' + this.props.sectionClass}>
                    {
                        React.Children.map(this.props.children, (child) => {
                            if (child === null) {
                                return null;
                            }

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

        return (
            <li className='sidebar-category'>
                {title}
                {clonedChildren}
            </li>
        );
    }
}