_ = require 'underscore' React = require 'react' classNames = require 'classnames' {ListTabular, InjectedComponent} = require 'nylas-component-kit' {timestamp, subject} = require './formatting-utils' snippet = (html) => return "" unless html and typeof(html) is 'string' try @draftSanitizer ?= document.createElement('div') @draftSanitizer.innerHTML = html[0..400] text = @draftSanitizer.innerText text[0..200] catch return "" c1 = new ListTabular.Column name: "Name" width: 200 resolver: (draft) =>
c2 = new ListTabular.Column name: "Message" flex: 4 resolver: (draft) => attachments = [] if draft.files?.length > 0 attachments =
{subject(draft.subject)} {snippet(draft.body)} {attachments} c3 = new ListTabular.Column name: "Date" flex: 1 resolver: (draft) => {timestamp(draft.date)} module.exports = Wide: [c1, c2, c3]