mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 20:44:30 +08:00
54 lines
1.4 KiB
JavaScript
54 lines
1.4 KiB
JavaScript
import Rx from 'rx-lite'
|
|
import React, {Component, PropTypes} from 'react'
|
|
import {FocusedContentStore} from 'nylas-exports'
|
|
import {TimeoutTransitionGroup} from 'nylas-component-kit'
|
|
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 (
|
|
<TimeoutTransitionGroup
|
|
className="message-toolbar-items"
|
|
leaveTimeout={125}
|
|
enterTimeout={125}
|
|
transitionName="opacity-125ms">
|
|
{shouldRender ? injectedButtons : undefined}
|
|
</TimeoutTransitionGroup>
|
|
)
|
|
}
|
|
}
|
|
|
|
const toolbarProps = {
|
|
getObservable,
|
|
extraRoles: [`MessageList:${ToolbarRole}`],
|
|
}
|
|
|
|
export default InjectsToolbarButtons(MessageListToolbar, toolbarProps)
|