_ = require 'underscore'
React = require 'react'
classNames = require 'classnames'
{ListTabular,
RetinaImg,
MailLabelSet,
MailImportantIcon,
InjectedComponentSet} = require 'nylas-component-kit'
{Thread, FocusedPerspectiveStore, Utils} = require 'nylas-exports'
{ThreadArchiveQuickAction,
ThreadTrashQuickAction} = require './thread-list-quick-actions'
ThreadListParticipants = require './thread-list-participants'
ThreadListStore = require './thread-list-store'
ThreadListIcon = require './thread-list-icon'
TimestampComponentForPerspective = (thread) ->
if FocusedPerspectiveStore.current().isSent()
{Utils.shortTimeString(thread.lastMessageSentTimestamp)}
else
{Utils.shortTimeString(thread.lastMessageReceivedTimestamp)}
subject = (subj) ->
if (subj ? "").trim().length is 0
return (No Subject)
else
return subj
c1 = new ListTabular.Column
name: "★"
resolver: (thread) =>
[
]
c2 = new ListTabular.Column
name: "Participants"
width: 200
resolver: (thread) =>
hasDraft = _.find (thread.metadata ? []), (m) -> m.draft
if hasDraft
else
c3 = new ListTabular.Column
name: "Message"
flex: 4
resolver: (thread) =>
attachment = []
if thread.hasAttachments
attachment =
{subject(thread.subject)}
{thread.snippet}
{attachment}
c4 = new ListTabular.Column
name: "Date"
resolver: (thread) =>
TimestampComponentForPerspective(thread)
c5 = new ListTabular.Column
name: "HoverActions"
resolver: (thread) =>
]}
matching={role: "ThreadListQuickAction"}
className="thread-injected-quick-actions"
exposedProps={thread: thread}/>
cNarrow = new ListTabular.Column
name: "Item"
flex: 1
resolver: (thread) =>
pencil = []
attachment = []
hasDraft = _.find (thread.metadata ? []), (m) -> m.draft
if thread.hasAttachments
attachment =
if hasDraft
pencil =
{pencil}
{attachment}
{TimestampComponentForPerspective(thread)}
{subject(thread.subject)}
module.exports =
Narrow: [cNarrow]
Wide: [c1, c2, c3, c4, c5]