mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
f8c5f7b967
Summary: Major ID refactor Test Plan: edgehill --test Reviewers: bengotow, dillon Differential Revision: https://phab.nylas.com/D1946
77 lines
2.1 KiB
CoffeeScript
77 lines
2.1 KiB
CoffeeScript
_ = require 'underscore'
|
|
React = require 'react'
|
|
{ListTabular,
|
|
MultiselectList,
|
|
InjectedComponent} = require 'nylas-component-kit'
|
|
{timestamp, subject} = require './formatting-utils'
|
|
{Actions,
|
|
DatabaseStore} = require 'nylas-exports'
|
|
DraftListStore = require './draft-list-store'
|
|
|
|
class DraftList extends React.Component
|
|
@displayName: 'DraftList'
|
|
|
|
@containerRequired: false
|
|
|
|
componentWillMount: =>
|
|
snippet = (html) =>
|
|
@draftSanitizer ?= document.createElement('div')
|
|
@draftSanitizer.innerHTML = html[0..400]
|
|
text = @draftSanitizer.innerText
|
|
text[0..200]
|
|
|
|
c1 = new ListTabular.Column
|
|
name: "Name"
|
|
width: 200
|
|
resolver: (draft) =>
|
|
<div className="participants">
|
|
<InjectedComponent matching={role:"Participants"}
|
|
exposedProps={participants: [].concat(draft.to, draft.cc, draft.bcc), clickable: false}/>
|
|
</div>
|
|
|
|
c2 = new ListTabular.Column
|
|
name: "Message"
|
|
flex: 4
|
|
resolver: (draft) =>
|
|
attachments = []
|
|
if draft.files?.length > 0
|
|
attachments = <div className="thread-icon thread-icon-attachment"></div>
|
|
<span className="details">
|
|
<span className="subject">{subject(draft.subject)}</span>
|
|
<span className="snippet">{snippet(draft.body)}</span>
|
|
{attachments}
|
|
</span>
|
|
|
|
c3 = new ListTabular.Column
|
|
name: "Date"
|
|
flex: 1
|
|
resolver: (draft) =>
|
|
<span className="timestamp">{timestamp(draft.date)}</span>
|
|
|
|
@columns = [c1, c2, c3]
|
|
@commands =
|
|
'core:remove-item': @_onDelete
|
|
|
|
render: =>
|
|
<MultiselectList
|
|
dataStore={DraftListStore}
|
|
columns={@columns}
|
|
commands={@commands}
|
|
onDoubleClick={@_onDoubleClick}
|
|
itemPropsProvider={ -> {} }
|
|
itemHeight={39}
|
|
className="draft-list"
|
|
collection="draft" />
|
|
|
|
_onDoubleClick: (item) =>
|
|
Actions.composePopoutDraft(item.clientId)
|
|
|
|
# Additional Commands
|
|
|
|
_onDelete: ({focusedId}) =>
|
|
item = DraftListStore.view().getById(focusedId)
|
|
return unless item
|
|
Actions.destroyDraft(item.clientId)
|
|
|
|
|
|
module.exports = DraftList
|