React = require 'react' {Actions} = require("nylas-exports") {ScrollRegion} = require("nylas-component-kit") SidebarDividerItem = require("./account-sidebar-divider-item") SidebarTagItem = require("./account-sidebar-tag-item") SidebarSheetItem = require("./account-sidebar-sheet-item") SidebarStore = require ("./account-sidebar-store") class AccountSidebar extends React.Component @displayName: 'AccountSidebar' @containerRequired: false @containerStyles: minWidth: 165 maxWidth: 207 constructor: (@props) -> @state = @_getStateFromStores() componentDidMount: => @unsubscribe = SidebarStore.listen @_onStoreChange # It's important that every React class explicitly stops listening to # atom events before it unmounts. Thank you event-kit # This can be fixed via a Reflux mixin componentWillUnmount: => @unsubscribe() if @unsubscribe render: =>
{@_sections()}
_sections: => return @state.sections.map (section) =>
{section.label}
{@_itemComponents(section)}
_itemComponents: (section) => section.items?.map (item) => if section.type is 'tag' itemClass = SidebarTagItem else if section.type is 'sheet' itemClass = item.sidebarComponent ? SidebarSheetItem else throw new Error("Unsure how to render item type #{section.type}") _onStoreChange: => @setState @_getStateFromStores() _getStateFromStores: => sections: SidebarStore.sections() selected: SidebarStore.selected() module.exports = AccountSidebar