pulitzer 0.4.10 → 0.4.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d72706941967474e2ee4e72b60bea2eb1a61fdee
4
- data.tar.gz: a13c69ade04a17a54d56256ea81542f02eeb2075
3
+ metadata.gz: 360eaeb2c8f4bcac11c3d82ef0a50e9c4e99c638
4
+ data.tar.gz: ed16e77f203e19643949a826815cb136d09b4195
5
5
  SHA512:
6
- metadata.gz: 8b339c1808d1c59593750b3a3df4fac0077a1f63ec053fb885f91c4c5e430408d84af4e99d8c78f2b6d2777c7961ab378524fd368eaa9a56c8175f7c2fa96b4f
7
- data.tar.gz: fb8b437f4f441072eb48ce9173598240b172dc2459e46958758d19ba1e9a0b0939ab1c2499764eff231b24a78dd81451f27b2d438b40f5325f15f610fdd155a5
6
+ metadata.gz: d222161e37a3d82d1a5a4f1c45cf5a69bc2a97794af248a56045be5ecae0214ed7ce9bedef3d34f6d1b3084502226b0c29ef7dc3c3c55623ba33900a736c4865
7
+ data.tar.gz: 3153a24cba105ba8db89ebaf8502660e34fb87bddb85c0df349ea7fe11ad95115f56e5f76bbb64e452ec4b24a3ca2d8100bd5e1536c96401e6d226ea0c39b737
@@ -27,6 +27,54 @@ var Select2Trigger = Class.extend({
27
27
  });
28
28
 
29
29
  var RichTextEditor = Class.extend({
30
+ init: function($textarea){
31
+ this.$textarea = $textarea
32
+ var editor_kind = $textarea.data('rich-text-editor')
33
+ var editor_class_name = editor_kind + 'Editor'
34
+ var editor_class = eval(editor_class_name)
35
+ this.editor = new editor_class($textarea)
36
+ },
37
+ handleRemove: function(){
38
+ this.editor.handleRemove()
39
+ }
40
+ })
41
+
42
+ var TinyMCEEditor = Class.extend({
43
+ init: function($textarea){
44
+ this.editor_selector = $textarea.data('editor-selector')
45
+ this.editor_id = $textarea.attr('id')
46
+ this.custom_params = $textarea.data('mce-params')
47
+ var tinymceeditor = this;
48
+ var editor_params = this.getParams()
49
+ tinymce.init(this.getParams())
50
+ },
51
+ handleRemove: function(){
52
+ if($(this.editor_selector).length == 0){
53
+ var editor = this
54
+ $.each(tinymce.editors, function(){if(this.id == editor.editor_id){this.destroy()}})
55
+ }
56
+ },
57
+ getParams: function(){
58
+ if(this.custom_params){
59
+ var these_params = $.extend({},this.defaultParams(),this.custom_params)
60
+ } else {
61
+ var these_params = this.defaultParams()
62
+ }
63
+ return these_params
64
+ },
65
+ defaultParams: function(){
66
+ return {
67
+ selector: this.editor_selector,
68
+ plugins: "link",
69
+ menubar: false,
70
+ insert_toolbar: 'link unlink',
71
+ toolbar: 'undo redo | styleselect | bold italic | link',
72
+ statusbar: false
73
+ }
74
+ }
75
+ })
76
+
77
+ var WysiHtmlEditor = Class.extend({
30
78
  init: function($textarea){
31
79
  var rich_text_editor = this
32
80
  this.$form = $textarea.parents("form")
@@ -36,6 +84,11 @@ var RichTextEditor = Class.extend({
36
84
  stylesheets: wysihtml5Stylesheets,
37
85
  parserRules: wysihtml5ParserRules
38
86
  });
87
+ },
88
+ handleRemove: function(){
89
+ if(this.$textarea.parents('body').length == 0){ //the form has been removed from the dom
90
+ this.editor.fire('destroy:composer')
91
+ }
39
92
  }
40
93
  })
41
94
 
@@ -58,9 +111,7 @@ var ContentElementEditor = Class.extend({
58
111
  $(document).ajaxComplete(function(){
59
112
  if(window.any_time_manager.recordedObjects["RichTextEditor"]){
60
113
  $.each(window.any_time_manager.recordedObjects["RichTextEditor"], function(){
61
- if(this.$form.parents('body').length == 0){ //the form has been removed from the dom
62
- this.editor.fire('destroy:composer')
63
- }
114
+ this.handleRemove();
64
115
  })
65
116
  }
66
117
  })
@@ -133,6 +133,9 @@ body {
133
133
  border-radius: 4px;
134
134
  }
135
135
 
136
+ .mce-panel, .mce-btn {
137
+ background-color: inherit;
138
+ }
136
139
  }
137
140
  .pulitzer-span {
138
141
  margin-left: 0;
@@ -0,0 +1,15 @@
1
+ class Pulitzer::UpdateContentElement
2
+
3
+ def initialize(content_element, params)
4
+ @content_element, @params = content_element, params.dup
5
+ end
6
+
7
+ def call
8
+ text_editor = Pulitzer.text_editor_toolbars.detect { |toolbar| toolbar[:name] == content_element.text_editor }
9
+ if 'Kramdown' == text_editor[:kind]
10
+ params[:body] = Kramdown::Document.new(params[:body]).to_html
11
+ end
12
+ @content_element.update params
13
+ end
14
+
15
+ end
@@ -7,7 +7,7 @@ module Pulitzer
7
7
 
8
8
  belongs_to :post_type
9
9
  delegate :post_type_content_element_types, :free_form_section_types, :has_free_form_sections?, :has_templated_content_elements?, to: :post_type
10
- delegate :content_elements, :content_element, :section, :has_label_type, :has_label, :post_tags_for, to: :active_version, allow_nil: true
10
+ delegate :content_elements, :section, :has_label_type, :has_label, :post_tags_for, to: :active_version, allow_nil: true
11
11
 
12
12
  has_many :post_tags, through: :active_version
13
13
 
@@ -24,6 +24,12 @@ module Pulitzer
24
24
  post_tags.map(&:label)
25
25
  end
26
26
 
27
+ def content_element(label)
28
+ if content_elements
29
+ self.content_elements.find_by(label: label)
30
+ end
31
+ end
32
+
27
33
  def should_generate_new_friendly_id?
28
34
  new_record? || title_changed?
29
35
  end
@@ -27,20 +27,12 @@ module Pulitzer
27
27
  post_tags.where(label_type: label_type)
28
28
  end
29
29
 
30
- def cached_content_elements
31
- @cached_content_elements ||= content_elements.to_a
32
- end
33
-
34
30
  def content_element(label)
35
- cached_content_elements.detect{|ce| ce.label == label}
36
- end
37
-
38
- def cached_free_form_sections
39
- @cached_free_form_sections ||= free_form_sections.to_a
31
+ self.content_elements.find_by(label: label)
40
32
  end
41
33
 
42
34
  def section(name)
43
- cached_free_form_sections.detect{|ffs| ffs.name == name}
35
+ self.free_form_sections.find_by(name: name)
44
36
  end
45
37
 
46
38
  def template_content_elements
@@ -1,5 +1,15 @@
1
1
  <% text_editor = Pulitzer.text_editor_toolbars.detect { |toolbar| toolbar[:name] == content_element.text_editor } %>
2
- <% data_rich_text = { "rich-text-editor" => true } unless text_editor[:name] == "None" %>
3
2
 
4
- <%= render partial: text_editor[:template] %>
5
- <%= f.text_area(:body, placeholder: 'Body', data: (data_rich_text)) %>
3
+ <% input_params = {placeholder: 'Body', id: dom_id(content_element, :textarea)} %>
4
+ <% unless 'None' == text_editor[:name] %>
5
+ <% if 'WysiHtml' == text_editor[:kind] %>
6
+ <%= render partial: text_editor[:template] %>
7
+ <% input_params[:data] = { rich_text_editor: text_editor[:kind], editor_selector: dom_target(content_element, :textarea) } %>
8
+ <% end %>
9
+ <% if 'TinyMCE' == text_editor[:kind] %>
10
+ <% input_params[:data] = { rich_text_editor: text_editor[:kind], editor_selector: dom_target(content_element, :textarea), mce_params: text_editor[:params].to_json } %>
11
+ <% end %>
12
+ <% end %>
13
+
14
+ <% input_params[:value] = Kramdown::Document.new(f.object.body, input: 'html').to_kramdown if 'Kramdown' == text_editor[:kind] %>
15
+ <%= f.text_area(:body, input_params) %>
data/lib/pulitzer.rb CHANGED
@@ -19,7 +19,7 @@ module Pulitzer
19
19
  @@tagging_models = options[:tagging_models] || []
20
20
  @@layout = options[:layout] || 'application'
21
21
  @@partial_folder = options[:partial_folder] || 'pulitzer_partials'
22
- default_text_editor = [{ name: 'None', template: 'pulitzer/text_editors/none'}]
22
+ default_text_editor = [{ name: 'None', template: 'pulitzer/text_editors/none', kind: 'TinyMCE'}]
23
23
  user_text_editors = options[:text_editor_toolbars].flatten || nil
24
24
  @@text_editor_toolbars = default_text_editor.push(*user_text_editors).compact
25
25
  if options.has_key?( :active_job_queues)
@@ -1,3 +1,3 @@
1
1
  module Pulitzer
2
- VERSION = '0.4.10'
2
+ VERSION = '0.4.11'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulitzer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.10
4
+ version: 0.4.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Draut
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-06-14 00:00:00.000000000 Z
12
+ date: 2016-07-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
@@ -474,6 +474,7 @@ files:
474
474
  - app/interactions/pulitzer/create_singleton_post.rb
475
475
  - app/interactions/pulitzer/destroy_post_type_content_elements.rb
476
476
  - app/interactions/pulitzer/destroy_post_type_free_form_sections.rb
477
+ - app/interactions/pulitzer/update_content_element.rb
477
478
  - app/interactions/pulitzer/update_post_type_content_elements.rb
478
479
  - app/interactions/pulitzer/update_post_type_free_form_sections.rb
479
480
  - app/interactions/pulitzer/update_singleton_post.rb