From 355b0d61ae3cd5709b4a90789e0254b9d4710b9d Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Tue, 29 Mar 2016 13:08:57 -0400 Subject: Removed expand widget from the backstage sidebar and changed how the sections highlight --- webapp/components/backstage/backstage_section.jsx | 46 +---------------------- 1 file changed, 2 insertions(+), 44 deletions(-) (limited to 'webapp/components/backstage') diff --git a/webapp/components/backstage/backstage_section.jsx b/webapp/components/backstage/backstage_section.jsx index 41ce766bd..d6ce2b258 100644 --- a/webapp/components/backstage/backstage_section.jsx +++ b/webapp/components/backstage/backstage_section.jsx @@ -30,59 +30,17 @@ export default class BackstageSection extends React.Component { }; } - constructor(props) { - super(props); - - this.handleClick = this.handleClick.bind(this); - - this.state = { - expanded: true - }; - } - getLink() { return this.props.parentLink + '/' + this.props.name; } - isActive() { - const link = this.getLink(); - - return this.context.router.isActive(link); - } - - handleClick(e) { - if (this.isActive()) { - // we're already on this page so just toggle the link - e.preventDefault(); - - this.setState({ - expanded: !this.state.expanded - }); - } - - // otherwise, just follow the link - } - render() { const {title, subsection, children} = this.props; const link = this.getLink(); - const active = this.isActive(); - - // act like docs.mattermost.com and only expand if this link is active - const expanded = active && this.state.expanded; - - let toggle = null; - if (children.length > 0) { - if (expanded) { - toggle = ; - } else { - toggle = ; - } - } let clonedChildren = null; - if (children.length > 0 && expanded) { + if (children.length > 0) { clonedChildren = (
    { @@ -107,10 +65,10 @@ export default class BackstageSection extends React.Component { - {toggle} {title} -- cgit v1.2.3-1-g7c22