Mailspring/internal_packages/thread-list/lib/message-list-toolbar.jsx
Ben Gotow 39768fd9d4 bump(react): 0.13.2 => 0.14.7
Great breakdown of React changes here:
https://github.com/facebook/react/blob/master/CHANGELOG.md#0140-october-7-2015

Due to deprecation warnings, I don't think this will break third-party extensions unless they were doing really bad things.
2016-03-29 01:43:12 -07:00

55 lines
1.4 KiB
JavaScript

import Rx from 'rx-lite'
import React, {Component, PropTypes} from 'react'
import ReactCSSTransitionGroup from 'react-addons-css-transition-group'
import {FocusedContentStore} from 'nylas-exports'
import ThreadListStore from './thread-list-store'
import InjectsToolbarButtons, {ToolbarRole} from './injects-toolbar-buttons'
function getObservable() {
return (
Rx.Observable.combineLatest(
Rx.Observable.fromStore(FocusedContentStore),
ThreadListStore.selectionObservable(),
(store, items) => ({focusedThread: store.focused('thread'), items})
)
.map(({focusedThread, items}) => {
if (focusedThread) {
return [focusedThread]
}
return items
})
)
}
class MessageListToolbar extends Component {
static displayName = 'MessageListToolbar';
static propTypes = {
items: PropTypes.array,
injectedButtons: PropTypes.element,
};
render() {
const {items, injectedButtons} = this.props
const shouldRender = items.length > 0
return (
<ReactCSSTransitionGroup
className="message-toolbar-items"
transitionLeaveTimeout={125}
transitionEnterTimeout={125}
transitionName="opacity-125ms">
{shouldRender ? injectedButtons : undefined}
</ReactCSSTransitionGroup>
)
}
}
const toolbarProps = {
getObservable,
extraRoles: [`MessageList:${ToolbarRole}`],
}
export default InjectsToolbarButtons(MessageListToolbar, toolbarProps)