wco_email 0.1.1.52 → 0.1.1.54
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascript/wco_email/application.js +5 -0
- data/app/assets/stylesheets/wco_email/application.scss +2 -2
- data/app/views/wco_email/conversations/index.haml +2 -35
- data/app/views/wco_email/conversations/show.haml +5 -2
- data/app/views/wco_email/email_filters/_form.haml +1 -1
- data/app/views/wco_email/messages/_meta.haml +35 -31
- data/app/views/wco_email/messages/show_iframe.haml +11 -2
- data/lib/tasks/wco_email_tasks.rake +0 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0f6ede374892e4ee2d1d74b9493abbc3b723786f53da7e5009db344cb075f481
|
4
|
+
data.tar.gz: b5850a2cab796944d3beb0f5b654fd3fd6388868bc655464c90fcc892996d831
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ebc21b5cd1660e3132b27cb64ca994971cdd3b06beb5ea1ee5fef0b53e5afe1f40a3fe88c3699c57f4c29d0dba53e523a28eefc4dae707a72e352fa7b3c2a51c
|
7
|
+
data.tar.gz: 5147c26369314cf73e8085a2135fdd901e2b3975805d66500ecbadcc6c2ffb36c17f217b8dc43063720adbae17583dfa37294919e0b3f58e815f2459cc94e42a
|
@@ -14,39 +14,6 @@
|
|
14
14
|
= render '/wco_email/conversations/actions'
|
15
15
|
|
16
16
|
= render '/wco/paginate', resource: @conversations, param_name: :conv_page
|
17
|
-
|
18
|
-
|
19
|
-
%th.select-all.nosort
|
20
|
-
.a
|
21
|
-
= check_box_tag :select_all
|
22
|
-
.n-selected -
|
23
|
-
%th.leads leads
|
24
|
-
%th.subject subject, preview
|
25
|
-
%th.tags Tags
|
26
|
-
%th.latest-at latest_at
|
27
|
-
- @conversations.each_with_index do |conv, idx|
|
28
|
-
%tr
|
29
|
-
%td.select-all
|
30
|
-
.gray= idx+1
|
31
|
-
= check_box_tag 'conversation_ids[]', conv.id.to_s, nil, { class: 'i-sel' }
|
32
|
-
%td.leads.mini
|
33
|
-
-# - conv.from_emails.each do |from|
|
34
|
-
-# = link_to from, wco.lead_path( from )
|
35
|
-
-# %hr
|
36
|
-
- conv.leads.each do |lead|
|
37
|
-
= link_to lead.email, wco.lead_path( lead )
|
38
|
-
%td.subject
|
39
|
-
- if conv.unread?
|
40
|
-
<b>#{link_to conv.subject, conversation_path(conv)}</b>
|
41
|
-
- else
|
42
|
-
= link_to conv.subject, conversation_path(conv)
|
43
|
-
<b>(#{conv.messages.length})</b>
|
44
|
-
%span.gray= conv.preview
|
45
|
-
%td.tags.mini
|
46
|
-
- conv.tags.each do |tag|
|
47
|
-
.mb-1
|
48
|
-
.Chip= tag.slug
|
49
|
-
%td.latest-at
|
50
|
-
= pp_date conv.latest_at
|
51
|
-
= pp_time conv.latest_at
|
17
|
+
= render '/wco_email/conversations/table', convs: @conversations
|
18
|
+
|
52
19
|
= render '/wco/paginate', resource: @conversations, param_name: :conv_page
|
@@ -27,6 +27,9 @@
|
|
27
27
|
- @conversation.messages.each do |msg|
|
28
28
|
%li
|
29
29
|
= render '/wco_email/messages/meta', message: msg
|
30
|
-
|
30
|
+
= link_to '[expand]', message_iframe_path(msg, expand_history: true), target: "iframe_#{msg.id}"
|
31
|
+
= link_to '[collapse]', message_iframe_path(msg), target: "iframe_#{msg.id}"
|
32
|
+
%iframe.message-iframe{ src: message_iframe_path(msg), id: "iframe_#{msg.id}", name: "iframe_#{msg.id}", onload: "resizeIframe(this)" }
|
31
33
|
|
32
|
-
|
34
|
+
- msg = @conversation.messages.last
|
35
|
+
= render '/wco_email/contexts/form_reply', lead_id: msg.lead_id, message: msg, ctx: WcoEmail::Context.new({ from_email: msg.to&.downcase, subject: msg.subject, email_template_id: ET.find_by( slug: 'blank').id })
|
@@ -32,7 +32,7 @@
|
|
32
32
|
= f.select :email_template_id, options_for_select(@email_templates_list, selected: params[:email_template_id] || email_filter.email_template_id ), {}, { class: 'select2' }
|
33
33
|
.field
|
34
34
|
= f.label :email_action_template
|
35
|
-
= f.select :email_action_template, options_for_select( @email_action_templates_list, selected: email_filter.
|
35
|
+
= f.select :email_action_template, options_for_select( @email_action_templates_list, selected: email_filter.email_action_template_id ), {}, class: 'select2'
|
36
36
|
.field
|
37
37
|
= f.label :tag
|
38
38
|
= f.select :tag, options_for_select( @tags_list, selected: email_filter.tag_id ), {}, class: 'select2'
|
@@ -1,32 +1,36 @@
|
|
1
1
|
|
2
|
-
.
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
%
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
<b>
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
2
|
+
.d-inline-block
|
3
|
+
.collapse-expand{ id: "meta_#{message.id}" }
|
4
|
+
Meta
|
5
|
+
.messages--meta.flex-row{ style: 'display: none' }
|
6
|
+
|
7
|
+
%ul
|
8
|
+
%li <b>froms:</b> #{message.froms}
|
9
|
+
%li <b>tos:</b> #{message.tos}
|
10
|
+
%li <b>ccs:</b> #{message.ccs}
|
11
|
+
%li <b>bccs:</b> #{message.bccs}
|
12
|
+
%li <b>logs:</b> #{message.logs}
|
13
|
+
%ul
|
14
|
+
%li
|
15
|
+
<b>date:</b> #{message.date}
|
16
|
+
%li
|
17
|
+
<b>id:</b> #{link_to message.id, message_path(message)}
|
18
|
+
%li
|
19
|
+
<b>message_id:</b> #{message.message_id}
|
20
|
+
%li
|
21
|
+
<b>object_key:</b> #{message.object_key}
|
22
|
+
%li <b>in_reply_to_id:</b> #{message.in_reply_to_id}
|
23
|
+
%li
|
24
|
+
<b>n_images:</b> #{message.photos.length}
|
25
|
+
%br
|
26
|
+
- message.photos.each do |photo|
|
27
|
+
= link_to photo.photo.url(:original), target: :_blank do
|
28
|
+
%span.bordered.p-0= image_tag( photo.photo.url(:mini) )
|
29
|
+
= photo.photo.original_filename
|
30
|
+
%li
|
31
|
+
<b>n_assets:</b> #{message.assets.length}
|
32
|
+
- if !message.assets.blank?
|
33
|
+
%ol
|
34
|
+
- message.assets.each do |asset|
|
35
|
+
%li
|
36
|
+
= link_to asset.filename, asset.object.url(:original), target: :_blank
|
@@ -1,5 +1,14 @@
|
|
1
1
|
|
2
|
+
- if params[:expand_history] == 'true'
|
3
|
+
-# ;
|
4
|
+
- else
|
5
|
+
:css
|
6
|
+
blockquote {
|
7
|
+
display: none;
|
8
|
+
}
|
9
|
+
|
2
10
|
|
3
11
|
= raw @message.part_html_sanitized
|
4
|
-
|
5
|
-
%
|
12
|
+
|
13
|
+
-# %hr{ style: 'border-top: 1px solid red;' }
|
14
|
+
-# %pre= @message.part_txt
|
@@ -172,7 +172,6 @@ namespace :wco_email do
|
|
172
172
|
unsub = WcoEmail::Unsubscribe.where({ lead_id: ctx.lead_id, template_id: ctx.email_template_id }).first
|
173
173
|
if unsub
|
174
174
|
puts! 'This user is unsubscribed; the context cannot be sent.' if DEBUG
|
175
|
-
# Office::AdminMessage.create({ message: "Lead `#{ctx.lead.full_name}` [mailto:#{ctx.lead.email}] has already unsubscribed from template `#{Ish::EmailTemplate.find( ctx.email_template_id ).slug}` ." })
|
176
175
|
email_action_template_ids = WcoEmail::EmailActionTemplate.where({ email_template_id: ctx.email_template_id }).map(&:id)
|
177
176
|
schs = WcoEmail::EmailAction.active.where({
|
178
177
|
lead_id: ctx.lead_id,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wco_email
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.1.
|
4
|
+
version: 0.1.1.54
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Victor Pudeyev
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-02-
|
11
|
+
date: 2024-02-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-s3
|