decidim-comments 0.23.6 → 0.24.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/decidim/comments/bundle.js.map +1 -1
- data/app/assets/javascripts/decidim/comments/comments.component.js.es6 +292 -0
- data/app/assets/javascripts/decidim/comments/comments.component.test.js +581 -0
- data/app/assets/javascripts/decidim/comments/comments.js.erb +1 -1
- data/app/cells/decidim/comments/comment/actions.erb +7 -0
- data/app/cells/decidim/comments/comment/alignment_badge.erb +4 -0
- data/app/cells/decidim/comments/comment/author.erb +1 -0
- data/app/cells/decidim/comments/comment/show.erb +40 -0
- data/app/cells/decidim/comments/comment/utilities.erb +13 -0
- data/app/cells/decidim/comments/comment/votes.erb +25 -0
- data/app/cells/decidim/comments/comment_card_cell.rb +22 -0
- data/app/cells/decidim/comments/comment_cell.rb +142 -8
- data/app/cells/decidim/comments/comment_form/comment_as.erb +10 -0
- data/app/cells/decidim/comments/comment_form/show.erb +24 -0
- data/app/cells/decidim/comments/comment_form_cell.rb +94 -0
- data/app/cells/decidim/comments/comment_m/top.erb +1 -1
- data/app/cells/decidim/comments/comment_thread/show.erb +6 -0
- data/app/cells/decidim/comments/comment_thread/title.erb +3 -0
- data/app/cells/decidim/comments/comment_thread_cell.rb +30 -0
- data/app/cells/decidim/comments/comments/add_comment.erb +30 -0
- data/app/cells/decidim/comments/comments/blocked_comments_warning.erb +3 -0
- data/app/cells/decidim/comments/comments/order_control.erb +37 -0
- data/app/cells/decidim/comments/comments/show.erb +32 -0
- data/app/cells/decidim/comments/comments/single_comment_warning.erb +9 -0
- data/app/cells/decidim/comments/comments/user_comments_blocked_warning.erb +3 -0
- data/app/cells/decidim/comments/comments_cell.rb +134 -0
- data/app/commands/decidim/comments/vote_comment.rb +34 -10
- data/app/controllers/decidim/comments/application_controller.rb +16 -0
- data/app/controllers/decidim/comments/comments_controller.rb +122 -0
- data/app/controllers/decidim/comments/votes_controller.rb +41 -0
- data/app/events/decidim/comments/comment_created_event.rb +1 -1
- data/app/events/decidim/comments/comment_downvoted_event.rb +8 -0
- data/app/events/decidim/comments/comment_upvoted_event.rb +8 -0
- data/app/events/decidim/comments/comment_voted_event.rb +26 -0
- data/app/forms/decidim/comments/comment_form.rb +6 -2
- data/app/models/decidim/comments/comment.rb +22 -8
- data/app/models/decidim/comments/seed.rb +1 -1
- data/app/permissions/decidim/comments/permissions.rb +59 -0
- data/app/queries/decidim/comments/metrics/comment_participants_metric_measure.rb +2 -2
- data/app/queries/decidim/comments/metrics/comments_metric_manage.rb +5 -6
- data/app/queries/decidim/comments/sorted_comments.rb +18 -14
- data/app/views/decidim/comments/comments/_comment.html.erb +5 -0
- data/app/views/decidim/comments/comments/_comments.html.erb +1 -0
- data/app/views/decidim/comments/comments/create.js.erb +16 -0
- data/app/views/decidim/comments/comments/error.js.erb +1 -0
- data/app/views/decidim/comments/comments/index.js.erb +24 -0
- data/app/views/decidim/comments/comments/reload.js.erb +21 -0
- data/app/views/decidim/comments/votes/create.js.erb +23 -0
- data/app/views/decidim/comments/votes/error.js.erb +1 -0
- data/config/locales/ar.yml +0 -2
- data/config/locales/ca.yml +7 -2
- data/config/locales/cs.yml +24 -7
- data/config/locales/de.yml +17 -2
- data/config/locales/el.yml +0 -2
- data/config/locales/en.yml +17 -2
- data/config/locales/es-MX.yml +7 -2
- data/config/locales/es-PY.yml +7 -2
- data/config/locales/es.yml +7 -2
- data/config/locales/eu.yml +0 -2
- data/config/locales/fi-plain.yml +17 -2
- data/config/locales/fi.yml +17 -2
- data/config/locales/fr-CA.yml +17 -2
- data/config/locales/fr.yml +17 -2
- data/config/locales/gl.yml +7 -2
- data/config/locales/hu.yml +0 -2
- data/config/locales/id-ID.yml +0 -2
- data/config/locales/is-IS.yml +0 -1
- data/config/locales/it.yml +4 -2
- data/config/locales/ja.yml +8 -4
- data/config/locales/lv.yml +0 -2
- data/config/locales/nl.yml +0 -2
- data/config/locales/no.yml +0 -2
- data/config/locales/pl.yml +19 -2
- data/config/locales/pt-BR.yml +0 -2
- data/config/locales/pt.yml +0 -2
- data/config/locales/ro-RO.yml +0 -3
- data/config/locales/ru.yml +0 -2
- data/config/locales/sk.yml +0 -2
- data/config/locales/sv.yml +7 -2
- data/config/locales/tr-TR.yml +7 -2
- data/config/locales/uk.yml +0 -1
- data/config/locales/zh-CN.yml +0 -2
- data/lib/decidim/api/add_comment_type.rb +13 -0
- data/lib/decidim/api/comment_mutation_type.rb +22 -0
- data/lib/decidim/api/comment_type.rb +89 -0
- data/lib/decidim/api/commentable_interface.rb +50 -0
- data/lib/decidim/api/commentable_mutation_type.rb +30 -0
- data/{app/types/decidim/comments → lib/decidim/api}/commentable_type.rb +2 -5
- data/lib/decidim/comments/api.rb +12 -0
- data/lib/decidim/comments/comments_helper.rb +10 -52
- data/lib/decidim/comments/engine.rb +9 -7
- data/lib/decidim/comments/mutation_extensions.rb +22 -22
- data/lib/decidim/comments/query_extensions.rb +12 -14
- data/lib/decidim/comments/test/shared_examples/comment_voted_event.rb +65 -0
- data/lib/decidim/comments/test.rb +1 -0
- data/lib/decidim/comments/version.rb +1 -1
- data/lib/decidim/comments.rb +1 -3
- metadata +67 -66
- data/app/assets/javascripts/decidim/comments/bundle.js +0 -268
- data/app/frontend/application/apollo_client.ts +0 -12
- data/app/frontend/application/application.component.test.tsx +0 -23
- data/app/frontend/application/application.component.tsx +0 -35
- data/app/frontend/application/icon.component.test.tsx +0 -38
- data/app/frontend/application/icon.component.tsx +0 -46
- data/app/frontend/comments/add_comment_form.component.test.tsx +0 -265
- data/app/frontend/comments/add_comment_form.component.tsx +0 -482
- data/app/frontend/comments/comment.component.test.tsx +0 -490
- data/app/frontend/comments/comment.component.tsx +0 -677
- data/app/frontend/comments/comment_order_selector.component.test.tsx +0 -29
- data/app/frontend/comments/comment_order_selector.component.tsx +0 -106
- data/app/frontend/comments/comment_thread.component.test.tsx +0 -82
- data/app/frontend/comments/comment_thread.component.tsx +0 -81
- data/app/frontend/comments/comments.component.test.tsx +0 -150
- data/app/frontend/comments/comments.component.tsx +0 -289
- data/app/frontend/comments/down_vote_button.component.test.tsx +0 -59
- data/app/frontend/comments/down_vote_button.component.tsx +0 -133
- data/app/frontend/comments/up_vote_button.component.test.tsx +0 -59
- data/app/frontend/comments/up_vote_button.component.tsx +0 -133
- data/app/frontend/comments/vote_button.component.tsx +0 -50
- data/app/frontend/comments/vote_button_component.test.tsx +0 -64
- data/app/frontend/entry.ts +0 -38
- data/app/frontend/entry_test.ts +0 -6
- data/app/frontend/fragments/add_comment_form_commentable.fragment.graphql +0 -4
- data/app/frontend/fragments/add_comment_form_session.fragment.graphql +0 -6
- data/app/frontend/fragments/comment.fragment.graphql +0 -14
- data/app/frontend/fragments/comment_data.fragment.graphql +0 -27
- data/app/frontend/fragments/comment_thread.fragment.graphql +0 -6
- data/app/frontend/fragments/down_vote_button.fragment.graphql +0 -6
- data/app/frontend/fragments/up_vote_button.fragment.graphql +0 -6
- data/app/frontend/mutations/add_comment.mutation.graphql +0 -9
- data/app/frontend/mutations/down_vote.mutation.graphql +0 -9
- data/app/frontend/mutations/up_vote.mutation.graphql +0 -9
- data/app/frontend/queries/comments.query.graphql +0 -26
- data/app/frontend/support/asset_url.ts +0 -11
- data/app/frontend/support/generate_comments_data.ts +0 -49
- data/app/frontend/support/generate_user_data.ts +0 -14
- data/app/frontend/support/generate_user_group_data.ts +0 -14
- data/app/frontend/support/graphql_transformer.js +0 -32
- data/app/frontend/support/load_translations.ts +0 -48
- data/app/frontend/support/require_all.ts +0 -10
- data/app/frontend/support/resolve_graphql_query.ts +0 -37
- data/app/frontend/support/schema.ts +0 -2026
- data/app/types/decidim/comments/commentable_interface.rb +0 -61
- data/app/types/decidim/comments/commentable_mutation_type.rb +0 -33
- data/lib/decidim/comments/api/add_comment_type.rb +0 -13
- data/lib/decidim/comments/api/comment_mutation_type.rb +0 -20
- data/lib/decidim/comments/api/comment_type.rb +0 -89
@@ -0,0 +1,65 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "spec_helper"
|
4
|
+
|
5
|
+
shared_examples_for "a comment voted event" do
|
6
|
+
include_context "when it's a comment event"
|
7
|
+
|
8
|
+
let(:resource) { comment.commentable }
|
9
|
+
|
10
|
+
let(:comment) { create :comment }
|
11
|
+
let(:comment_vote) { create :comment_vote, comment: comment }
|
12
|
+
let(:comment_vote_author) { comment_vote.author }
|
13
|
+
|
14
|
+
let(:extra) { { comment_id: comment.id, author_id: comment_vote_author.id, weight: weight, downvotes: 100, upvotes: 999 } }
|
15
|
+
let(:resource_title) { decidim_html_escape(translated(resource.title)) }
|
16
|
+
let(:resource_text) { subject.resource_text }
|
17
|
+
|
18
|
+
let(:verb) { weight.positive? ? "upvoted" : "downvoted" }
|
19
|
+
|
20
|
+
describe "downvotes" do
|
21
|
+
it "outputs the total downvotes" do
|
22
|
+
expect(subject.downvotes).to eq(100)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
describe "upvotes" do
|
27
|
+
it "outputs the total upvotes" do
|
28
|
+
expect(subject.upvotes).to eq(999)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
describe "resource_text" do
|
33
|
+
it "outputs the comment body" do
|
34
|
+
expect(subject.resource_text).to eq comment.formatted_body
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
describe "email_subject" do
|
39
|
+
it "is generated correctly" do
|
40
|
+
expect(subject.email_subject).to eq("Your comment in \"#{resource_title}\" has been #{verb}.")
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
describe "email_intro" do
|
45
|
+
it "is generated correctly" do
|
46
|
+
expect(subject.email_intro).to eq("Your comment in \"#{resource_title}\" has been #{verb}. It now has a total of 999 upvotes and 100 downvotes.")
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
describe "email_outro" do
|
51
|
+
it "is generated correctly" do
|
52
|
+
expect(subject.email_outro)
|
53
|
+
.to eq("You have received this notification because you are the author of this comment.")
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
describe "notification_title" do
|
58
|
+
it "is generated correctly" do
|
59
|
+
expect(subject.notification_title)
|
60
|
+
.to include("Your <a href=\"#{resource_path}#comment_#{comment.id}\">comment</a> in \"#{resource_title}\" has been #{verb}")
|
61
|
+
expect(subject.notification_title)
|
62
|
+
.to include("It now has a total of 999 upvotes and 100 downvotes.")
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
data/lib/decidim/comments.rb
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "decidim/comments/admin"
|
4
|
+
require "decidim/comments/api"
|
4
5
|
require "decidim/comments/engine"
|
5
6
|
require "decidim/comments/admin_engine"
|
6
7
|
|
@@ -10,9 +11,6 @@ module Decidim
|
|
10
11
|
# a React component which handle all the comments render and logic.
|
11
12
|
module Comments
|
12
13
|
autoload :CommentsHelper, "decidim/comments/comments_helper"
|
13
|
-
autoload :AddCommentType, "decidim/comments/api/add_comment_type"
|
14
|
-
autoload :CommentMutationType, "decidim/comments/api/comment_mutation_type"
|
15
|
-
autoload :CommentType, "decidim/comments/api/comment_type"
|
16
14
|
autoload :Commentable, "decidim/comments/commentable"
|
17
15
|
autoload :CommentSerializer, "decidim/comments/comment_serializer"
|
18
16
|
autoload :CommentVoteSerializer, "decidim/comments/comment_vote_serializer"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim-comments
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.24.0.rc1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josep Jaume Rey Peroy
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2021-
|
13
|
+
date: 2021-03-01 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: decidim-core
|
@@ -18,70 +18,76 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - '='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 0.
|
21
|
+
version: 0.24.0.rc1
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
26
|
- - '='
|
27
27
|
- !ruby/object:Gem::Version
|
28
|
-
version: 0.
|
28
|
+
version: 0.24.0.rc1
|
29
29
|
- !ruby/object:Gem::Dependency
|
30
30
|
name: jquery-rails
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|
32
32
|
requirements:
|
33
33
|
- - "~>"
|
34
34
|
- !ruby/object:Gem::Version
|
35
|
-
version: '4.
|
35
|
+
version: '4.4'
|
36
36
|
type: :runtime
|
37
37
|
prerelease: false
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
39
39
|
requirements:
|
40
40
|
- - "~>"
|
41
41
|
- !ruby/object:Gem::Version
|
42
|
-
version: '4.
|
42
|
+
version: '4.4'
|
43
43
|
- !ruby/object:Gem::Dependency
|
44
44
|
name: redcarpet
|
45
45
|
requirement: !ruby/object:Gem::Requirement
|
46
46
|
requirements:
|
47
47
|
- - "~>"
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: '3.
|
49
|
+
version: '3.5'
|
50
|
+
- - ">="
|
51
|
+
- !ruby/object:Gem::Version
|
52
|
+
version: 3.5.1
|
50
53
|
type: :runtime
|
51
54
|
prerelease: false
|
52
55
|
version_requirements: !ruby/object:Gem::Requirement
|
53
56
|
requirements:
|
54
57
|
- - "~>"
|
55
58
|
- !ruby/object:Gem::Version
|
56
|
-
version: '3.
|
59
|
+
version: '3.5'
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: 3.5.1
|
57
63
|
- !ruby/object:Gem::Dependency
|
58
64
|
name: decidim-admin
|
59
65
|
requirement: !ruby/object:Gem::Requirement
|
60
66
|
requirements:
|
61
67
|
- - '='
|
62
68
|
- !ruby/object:Gem::Version
|
63
|
-
version: 0.
|
69
|
+
version: 0.24.0.rc1
|
64
70
|
type: :development
|
65
71
|
prerelease: false
|
66
72
|
version_requirements: !ruby/object:Gem::Requirement
|
67
73
|
requirements:
|
68
74
|
- - '='
|
69
75
|
- !ruby/object:Gem::Version
|
70
|
-
version: 0.
|
76
|
+
version: 0.24.0.rc1
|
71
77
|
- !ruby/object:Gem::Dependency
|
72
78
|
name: decidim-dev
|
73
79
|
requirement: !ruby/object:Gem::Requirement
|
74
80
|
requirements:
|
75
81
|
- - '='
|
76
82
|
- !ruby/object:Gem::Version
|
77
|
-
version: 0.
|
83
|
+
version: 0.24.0.rc1
|
78
84
|
type: :development
|
79
85
|
prerelease: false
|
80
86
|
version_requirements: !ruby/object:Gem::Requirement
|
81
87
|
requirements:
|
82
88
|
- - '='
|
83
89
|
- !ruby/object:Gem::Version
|
84
|
-
version: 0.
|
90
|
+
version: 0.24.0.rc1
|
85
91
|
description: Pluggable comments system for some components.
|
86
92
|
email:
|
87
93
|
- josepjaume@gmail.com
|
@@ -94,72 +100,57 @@ files:
|
|
94
100
|
- README.md
|
95
101
|
- Rakefile
|
96
102
|
- app/assets/config/decidim_comments_manifest.js
|
97
|
-
- app/assets/javascripts/decidim/comments/bundle.js
|
98
103
|
- app/assets/javascripts/decidim/comments/bundle.js.map
|
104
|
+
- app/assets/javascripts/decidim/comments/comments.component.js.es6
|
105
|
+
- app/assets/javascripts/decidim/comments/comments.component.test.js
|
99
106
|
- app/assets/javascripts/decidim/comments/comments.js.erb
|
107
|
+
- app/cells/decidim/comments/comment/actions.erb
|
108
|
+
- app/cells/decidim/comments/comment/alignment_badge.erb
|
109
|
+
- app/cells/decidim/comments/comment/author.erb
|
110
|
+
- app/cells/decidim/comments/comment/show.erb
|
111
|
+
- app/cells/decidim/comments/comment/utilities.erb
|
112
|
+
- app/cells/decidim/comments/comment/votes.erb
|
100
113
|
- app/cells/decidim/comments/comment_activity_cell.rb
|
114
|
+
- app/cells/decidim/comments/comment_card_cell.rb
|
101
115
|
- app/cells/decidim/comments/comment_cell.rb
|
116
|
+
- app/cells/decidim/comments/comment_form/comment_as.erb
|
117
|
+
- app/cells/decidim/comments/comment_form/show.erb
|
118
|
+
- app/cells/decidim/comments/comment_form_cell.rb
|
102
119
|
- app/cells/decidim/comments/comment_m/footer.erb
|
103
120
|
- app/cells/decidim/comments/comment_m/top.erb
|
104
121
|
- app/cells/decidim/comments/comment_m_cell.rb
|
122
|
+
- app/cells/decidim/comments/comment_thread/show.erb
|
123
|
+
- app/cells/decidim/comments/comment_thread/title.erb
|
124
|
+
- app/cells/decidim/comments/comment_thread_cell.rb
|
125
|
+
- app/cells/decidim/comments/comments/add_comment.erb
|
126
|
+
- app/cells/decidim/comments/comments/blocked_comments_warning.erb
|
127
|
+
- app/cells/decidim/comments/comments/order_control.erb
|
128
|
+
- app/cells/decidim/comments/comments/show.erb
|
129
|
+
- app/cells/decidim/comments/comments/single_comment_warning.erb
|
130
|
+
- app/cells/decidim/comments/comments/user_comments_blocked_warning.erb
|
131
|
+
- app/cells/decidim/comments/comments_cell.rb
|
105
132
|
- app/commands/decidim/comments/create_comment.rb
|
106
133
|
- app/commands/decidim/comments/vote_comment.rb
|
134
|
+
- app/controllers/decidim/comments/application_controller.rb
|
135
|
+
- app/controllers/decidim/comments/comments_controller.rb
|
136
|
+
- app/controllers/decidim/comments/votes_controller.rb
|
107
137
|
- app/events/decidim/comments/comment_by_followed_user_event.rb
|
108
138
|
- app/events/decidim/comments/comment_by_followed_user_group_event.rb
|
109
139
|
- app/events/decidim/comments/comment_created_event.rb
|
140
|
+
- app/events/decidim/comments/comment_downvoted_event.rb
|
110
141
|
- app/events/decidim/comments/comment_event.rb
|
142
|
+
- app/events/decidim/comments/comment_upvoted_event.rb
|
143
|
+
- app/events/decidim/comments/comment_voted_event.rb
|
111
144
|
- app/events/decidim/comments/reply_created_event.rb
|
112
145
|
- app/events/decidim/comments/user_group_mentioned_event.rb
|
113
146
|
- app/events/decidim/comments/user_mentioned_event.rb
|
114
147
|
- app/forms/decidim/comments/comment_form.rb
|
115
|
-
- app/frontend/application/apollo_client.ts
|
116
|
-
- app/frontend/application/application.component.test.tsx
|
117
|
-
- app/frontend/application/application.component.tsx
|
118
|
-
- app/frontend/application/icon.component.test.tsx
|
119
|
-
- app/frontend/application/icon.component.tsx
|
120
|
-
- app/frontend/comments/add_comment_form.component.test.tsx
|
121
|
-
- app/frontend/comments/add_comment_form.component.tsx
|
122
|
-
- app/frontend/comments/comment.component.test.tsx
|
123
|
-
- app/frontend/comments/comment.component.tsx
|
124
|
-
- app/frontend/comments/comment_order_selector.component.test.tsx
|
125
|
-
- app/frontend/comments/comment_order_selector.component.tsx
|
126
|
-
- app/frontend/comments/comment_thread.component.test.tsx
|
127
|
-
- app/frontend/comments/comment_thread.component.tsx
|
128
|
-
- app/frontend/comments/comments.component.test.tsx
|
129
|
-
- app/frontend/comments/comments.component.tsx
|
130
|
-
- app/frontend/comments/down_vote_button.component.test.tsx
|
131
|
-
- app/frontend/comments/down_vote_button.component.tsx
|
132
|
-
- app/frontend/comments/up_vote_button.component.test.tsx
|
133
|
-
- app/frontend/comments/up_vote_button.component.tsx
|
134
|
-
- app/frontend/comments/vote_button.component.tsx
|
135
|
-
- app/frontend/comments/vote_button_component.test.tsx
|
136
|
-
- app/frontend/entry.ts
|
137
|
-
- app/frontend/entry_test.ts
|
138
|
-
- app/frontend/fragments/add_comment_form_commentable.fragment.graphql
|
139
|
-
- app/frontend/fragments/add_comment_form_session.fragment.graphql
|
140
|
-
- app/frontend/fragments/comment.fragment.graphql
|
141
|
-
- app/frontend/fragments/comment_data.fragment.graphql
|
142
|
-
- app/frontend/fragments/comment_thread.fragment.graphql
|
143
|
-
- app/frontend/fragments/down_vote_button.fragment.graphql
|
144
|
-
- app/frontend/fragments/up_vote_button.fragment.graphql
|
145
|
-
- app/frontend/mutations/add_comment.mutation.graphql
|
146
|
-
- app/frontend/mutations/down_vote.mutation.graphql
|
147
|
-
- app/frontend/mutations/up_vote.mutation.graphql
|
148
|
-
- app/frontend/queries/comments.query.graphql
|
149
|
-
- app/frontend/support/asset_url.ts
|
150
|
-
- app/frontend/support/generate_comments_data.ts
|
151
|
-
- app/frontend/support/generate_user_data.ts
|
152
|
-
- app/frontend/support/generate_user_group_data.ts
|
153
|
-
- app/frontend/support/graphql_transformer.js
|
154
|
-
- app/frontend/support/load_translations.ts
|
155
|
-
- app/frontend/support/require_all.ts
|
156
|
-
- app/frontend/support/resolve_graphql_query.ts
|
157
|
-
- app/frontend/support/schema.ts
|
158
148
|
- app/helpers/decidim/comments/comment_cells_helper.rb
|
159
149
|
- app/models/decidim/comments/application_record.rb
|
160
150
|
- app/models/decidim/comments/comment.rb
|
161
151
|
- app/models/decidim/comments/comment_vote.rb
|
162
152
|
- app/models/decidim/comments/seed.rb
|
153
|
+
- app/permissions/decidim/comments/permissions.rb
|
163
154
|
- app/queries/decidim/comments/metrics/comment_participants_metric_measure.rb
|
164
155
|
- app/queries/decidim/comments/metrics/comments_metric_manage.rb
|
165
156
|
- app/queries/decidim/comments/sorted_comments.rb
|
@@ -167,9 +158,14 @@ files:
|
|
167
158
|
- app/scrubbers/decidim/comments/user_input_scrubber.rb
|
168
159
|
- app/services/decidim/comments/comment_creation.rb
|
169
160
|
- app/services/decidim/comments/new_comment_notification_creator.rb
|
170
|
-
- app/
|
171
|
-
- app/
|
172
|
-
- app/
|
161
|
+
- app/views/decidim/comments/comments/_comment.html.erb
|
162
|
+
- app/views/decidim/comments/comments/_comments.html.erb
|
163
|
+
- app/views/decidim/comments/comments/create.js.erb
|
164
|
+
- app/views/decidim/comments/comments/error.js.erb
|
165
|
+
- app/views/decidim/comments/comments/index.js.erb
|
166
|
+
- app/views/decidim/comments/comments/reload.js.erb
|
167
|
+
- app/views/decidim/comments/votes/create.js.erb
|
168
|
+
- app/views/decidim/comments/votes/error.js.erb
|
173
169
|
- config/locales/am-ET.yml
|
174
170
|
- config/locales/ar-SA.yml
|
175
171
|
- config/locales/ar.yml
|
@@ -253,12 +249,16 @@ files:
|
|
253
249
|
- db/migrate/20200706123136_make_comments_handle_i18n.rb
|
254
250
|
- db/migrate/20200828101910_add_commentable_counter_cache_to_comments.rb
|
255
251
|
- db/seeds.rb
|
252
|
+
- lib/decidim/api/add_comment_type.rb
|
253
|
+
- lib/decidim/api/comment_mutation_type.rb
|
254
|
+
- lib/decidim/api/comment_type.rb
|
255
|
+
- lib/decidim/api/commentable_interface.rb
|
256
|
+
- lib/decidim/api/commentable_mutation_type.rb
|
257
|
+
- lib/decidim/api/commentable_type.rb
|
256
258
|
- lib/decidim/comments.rb
|
257
259
|
- lib/decidim/comments/admin.rb
|
258
260
|
- lib/decidim/comments/admin_engine.rb
|
259
|
-
- lib/decidim/comments/api
|
260
|
-
- lib/decidim/comments/api/comment_mutation_type.rb
|
261
|
-
- lib/decidim/comments/api/comment_type.rb
|
261
|
+
- lib/decidim/comments/api.rb
|
262
262
|
- lib/decidim/comments/comment_serializer.rb
|
263
263
|
- lib/decidim/comments/comment_vote_serializer.rb
|
264
264
|
- lib/decidim/comments/commentable.rb
|
@@ -271,6 +271,7 @@ files:
|
|
271
271
|
- lib/decidim/comments/test.rb
|
272
272
|
- lib/decidim/comments/test/factories.rb
|
273
273
|
- lib/decidim/comments/test/shared_examples/comment_event.rb
|
274
|
+
- lib/decidim/comments/test/shared_examples/comment_voted_event.rb
|
274
275
|
- lib/decidim/comments/test/shared_examples/create_comment_context.rb
|
275
276
|
- lib/decidim/comments/version.rb
|
276
277
|
homepage: https://github.com/decidim/decidim
|
@@ -285,14 +286,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
285
286
|
requirements:
|
286
287
|
- - ">="
|
287
288
|
- !ruby/object:Gem::Version
|
288
|
-
version: '2.
|
289
|
+
version: '2.7'
|
289
290
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
290
291
|
requirements:
|
291
|
-
- - "
|
292
|
+
- - ">"
|
292
293
|
- !ruby/object:Gem::Version
|
293
|
-
version:
|
294
|
+
version: 1.3.1
|
294
295
|
requirements: []
|
295
|
-
rubygems_version: 3.
|
296
|
+
rubygems_version: 3.1.2
|
296
297
|
signing_key:
|
297
298
|
specification_version: 4
|
298
299
|
summary: Decidim comments module
|