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 +4 -4
- data/app/assets/javascripts/pulitzer.js +54 -3
- data/app/assets/stylesheets/pulitzer.scss +3 -0
- data/app/interactions/pulitzer/update_content_element.rb +15 -0
- data/app/models/pulitzer/post.rb +7 -1
- data/app/models/pulitzer/version.rb +2 -10
- data/app/views/pulitzer/content_elements/_text_fields.html.erb +13 -3
- data/lib/pulitzer.rb +1 -1
- data/lib/pulitzer/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 360eaeb2c8f4bcac11c3d82ef0a50e9c4e99c638
|
4
|
+
data.tar.gz: ed16e77f203e19643949a826815cb136d09b4195
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
62
|
-
this.editor.fire('destroy:composer')
|
63
|
-
}
|
114
|
+
this.handleRemove();
|
64
115
|
})
|
65
116
|
}
|
66
117
|
})
|
@@ -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
|
data/app/models/pulitzer/post.rb
CHANGED
@@ -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, :
|
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
|
-
|
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
|
-
|
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
|
-
|
5
|
-
|
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)
|
data/lib/pulitzer/version.rb
CHANGED
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.
|
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-
|
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
|