decidim-comments 0.24.1 → 0.25.0.rc2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -20
  3. data/app/assets/javascripts/decidim/comments/bundle.js.map +1 -1
  4. data/app/cells/decidim/comments/comment/actions.erb +1 -1
  5. data/app/cells/decidim/comments/comment/deletion_data.erb +1 -0
  6. data/app/cells/decidim/comments/comment/show.erb +30 -21
  7. data/app/cells/decidim/comments/comment/utilities.erb +40 -12
  8. data/app/cells/decidim/comments/comment/votes.erb +6 -6
  9. data/app/cells/decidim/comments/comment_cell.rb +29 -0
  10. data/app/cells/decidim/comments/comment_form/show.erb +1 -1
  11. data/app/cells/decidim/comments/comments/add_comment.erb +10 -6
  12. data/app/cells/decidim/comments/comments/order_control.erb +4 -5
  13. data/app/cells/decidim/comments/comments/show.erb +2 -4
  14. data/app/cells/decidim/comments/comments/user_comments_blocked_warning.erb +5 -1
  15. data/app/cells/decidim/comments/comments_cell.rb +24 -2
  16. data/app/cells/decidim/comments/edit_comment_modal_form/show.erb +29 -0
  17. data/app/cells/decidim/comments/edit_comment_modal_form_cell.rb +53 -0
  18. data/app/commands/decidim/comments/create_comment.rb +2 -1
  19. data/app/commands/decidim/comments/delete_comment.rb +46 -0
  20. data/app/commands/decidim/comments/update_comment.rb +62 -0
  21. data/app/controllers/decidim/comments/comments_controller.rb +63 -6
  22. data/app/events/decidim/comments/comment_voted_event.rb +9 -0
  23. data/app/forms/decidim/comments/comment_form.rb +1 -1
  24. data/app/models/decidim/comments/comment.rb +26 -1
  25. data/app/packs/src/decidim/comments/comments.component.js +299 -0
  26. data/app/{assets/javascripts → packs/src}/decidim/comments/comments.component.test.js +49 -24
  27. data/app/packs/src/decidim/comments/comments.component_for_testing.js +8 -0
  28. data/app/packs/src/decidim/comments/comments.js +1 -0
  29. data/app/permissions/decidim/comments/permissions.rb +10 -1
  30. data/app/queries/decidim/comments/metrics/comment_participants_metric_measure.rb +1 -1
  31. data/app/queries/decidim/comments/metrics/comments_metric_manage.rb +1 -1
  32. data/app/views/decidim/comments/comments/_delete.html.erb +5 -0
  33. data/app/views/decidim/comments/comments/_edited_comment.html.erb +1 -0
  34. data/app/views/decidim/comments/comments/create.js.erb +2 -0
  35. data/app/views/decidim/comments/comments/delete.js.erb +17 -0
  36. data/app/views/decidim/comments/comments/deletion_error.js.erb +1 -0
  37. data/app/views/decidim/comments/comments/reload.js.erb +2 -0
  38. data/app/views/decidim/comments/comments/update.js.erb +8 -0
  39. data/app/views/decidim/comments/comments/update_error.js.erb +1 -0
  40. data/config/assets.rb +5 -0
  41. data/config/locales/ar.yml +0 -1
  42. data/config/locales/ca.yml +7 -1
  43. data/config/locales/cs.yml +25 -1
  44. data/config/locales/de.yml +7 -1
  45. data/config/locales/el.yml +0 -1
  46. data/config/locales/en.yml +25 -1
  47. data/config/locales/es-MX.yml +7 -1
  48. data/config/locales/es-PY.yml +7 -1
  49. data/config/locales/es.yml +7 -1
  50. data/config/locales/fi-plain.yml +25 -1
  51. data/config/locales/fi.yml +25 -1
  52. data/config/locales/fr-CA.yml +25 -1
  53. data/config/locales/fr-LU.yml +162 -0
  54. data/config/locales/fr.yml +25 -1
  55. data/config/locales/gl.yml +25 -1
  56. data/config/locales/hu.yml +0 -1
  57. data/config/locales/it.yml +38 -1
  58. data/config/locales/ja.yml +35 -1
  59. data/config/locales/lb-LU.yml +1 -0
  60. data/config/locales/lv.yml +0 -1
  61. data/config/locales/nl.yml +27 -2
  62. data/config/locales/no.yml +0 -1
  63. data/config/locales/pl.yml +7 -1
  64. data/config/locales/pt-BR.yml +61 -0
  65. data/config/locales/pt.yml +0 -1
  66. data/config/locales/ro-RO.yml +25 -1
  67. data/config/locales/sk.yml +0 -1
  68. data/config/locales/sr-CS.yml +0 -1
  69. data/config/locales/sv.yml +25 -1
  70. data/config/locales/tr-TR.yml +0 -1
  71. data/config/locales/zh-CN.yml +0 -1
  72. data/db/migrate/20200706123136_make_comments_handle_i18n.rb +1 -1
  73. data/db/migrate/20210402124534_add_participatory_process_to_comments.rb +12 -0
  74. data/db/migrate/20210529095942_add_deleted_at_column_to_comments.rb +7 -0
  75. data/lib/decidim/comments/commentable.rb +6 -1
  76. data/lib/decidim/comments/commentable_with_component.rb +33 -0
  77. data/lib/decidim/comments/engine.rb +1 -9
  78. data/lib/decidim/comments/test/factories.rb +1 -0
  79. data/lib/decidim/comments/version.rb +1 -1
  80. data/lib/decidim/comments.rb +1 -0
  81. data/lib/tasks/decidim_comments.rake +15 -0
  82. metadata +32 -29
  83. data/app/assets/config/decidim_comments_manifest.js +0 -1
  84. data/app/assets/javascripts/decidim/comments/comments.component.js.es6 +0 -292
  85. data/app/assets/javascripts/decidim/comments/comments.js.erb +0 -10
  86. data/config/locales/ja-JP.yml +0 -120
@@ -1 +0,0 @@
1
- //= link decidim/comments/comments.js
@@ -1,292 +0,0 @@
1
- /**
2
- * A plain Javascript component that handles the comments.
3
- *
4
- * @class
5
- * @augments Component
6
- */
7
- ((exports) => {
8
- const $ = exports.$; // eslint-disable-line
9
-
10
- class CommentsComponent {
11
- constructor($element, config) {
12
- this.$element = $element;
13
- this.commentableGid = config.commentableGid;
14
- this.commentsUrl = config.commentsUrl;
15
- this.rootDepth = config.rootDepth;
16
- this.order = config.order;
17
- this.lastCommentId = config.lastCommentId;
18
- this.pollingInterval = config.pollingInterval || 15000;
19
- this.id = this.$element.attr("id") || this._getUID();
20
- this.mounted = false;
21
- }
22
-
23
- /**
24
- * Handles the logic for mounting the component
25
- * @public
26
- * @returns {Void} - Returns nothing
27
- */
28
- mountComponent() {
29
- if (this.$element.length > 0 && !this.mounted) {
30
- this.mounted = true;
31
- this._initializeComments(this.$element);
32
-
33
- $(".order-by__dropdown .is-submenu-item a", this.$element).on(
34
- "click.decidim-comments",
35
- () => {
36
- this._onInitOrder();
37
- }
38
- );
39
- }
40
- }
41
-
42
- /**
43
- * Handles the logic for unmounting the component
44
- * @public
45
- * @returns {Void} - Returns nothing
46
- */
47
- unmountComponent() {
48
- if (this.mounted) {
49
- this.mounted = false;
50
- this._stopPolling();
51
-
52
- $(".add-comment .opinion-toggle .button", this.$element).off("click.decidim-comments");
53
- $(".add-comment textarea", this.$element).off("input.decidim-comments");
54
- $(".order-by__dropdown .is-submenu-item a", this.$element).off("click.decidim-comments");
55
- $(".add-comment form", this.$element).off("submit.decidim-comments");
56
- }
57
- }
58
-
59
- /**
60
- * Adds a new thread to the comments section.
61
- * @public
62
- * @param {String} threadHtml - The HTML content for the thread.
63
- * @returns {Void} - Returns nothing
64
- */
65
- addThread(threadHtml) {
66
- const $parent = $(".comments:first", this.$element);
67
- const $comment = $(threadHtml);
68
- const $threads = $(".comment-threads", this.$element);
69
- this._addComment($threads, $comment);
70
- this._finalizeCommentCreation($parent);
71
- }
72
-
73
- /**
74
- * Adds a new reply to an existing comment.
75
- * @public
76
- * @param {Number} commentId - The ID of the comment for which to add the
77
- * reply to.
78
- * @param {String} replyHtml - The HTML content for the reply.
79
- * @returns {Void} - Returns nothing
80
- */
81
- addReply(commentId, replyHtml) {
82
- const $parent = $(`#comment_${commentId}`);
83
- const $comment = $(replyHtml);
84
- const $replies = $(`#comment-${commentId}-replies`);
85
- this._addComment($replies, $comment);
86
- $replies.siblings(".comment__additionalreply").removeClass("hide");
87
- this._finalizeCommentCreation($parent);
88
- }
89
-
90
- /**
91
- * Generates a unique identifier for the form.
92
- * @private
93
- * @returns {String} - Returns a unique identifier
94
- */
95
- _getUID() {
96
- return `comments-${new Date().setUTCMilliseconds()}-${Math.floor(Math.random() * 10000000)}`;
97
- }
98
-
99
- /**
100
- * Initializes the comments for the given parent element.
101
- * @private
102
- * @param {jQuery} $parent The parent element to initialize.
103
- * @returns {Void} - Returns nothing
104
- */
105
- _initializeComments($parent) {
106
- $(".add-comment", $parent).each((_i, el) => {
107
- const $add = $(el);
108
- const $form = $("form", $add);
109
- const $opinionButtons = $(".opinion-toggle .button", $add);
110
- const $text = $("textarea", $form);
111
-
112
- $opinionButtons.on("click.decidim-comments", this._onToggleOpinion);
113
- $text.on("input.decidim-comments", this._onTextInput);
114
-
115
- $(document).trigger("attach-mentions-element", [$text.get(0)]);
116
-
117
- $form.on("submit.decidim-comments", () => {
118
- const $submit = $("button[type='submit']", $form);
119
-
120
- $submit.attr("disabled", "disabled");
121
- this._stopPolling();
122
- });
123
- });
124
-
125
- this._pollComments();
126
- }
127
-
128
- /**
129
- * Adds the given comment element to the given target element and
130
- * initializes it.
131
- * @private
132
- * @param {jQuery} $target - The target element to add the comment to.
133
- * @param {jQuery} $container - The comment container element to add.
134
- * @returns {Void} - Returns nothing
135
- */
136
- _addComment($target, $container) {
137
- let $comment = $(".comment", $container);
138
- if ($comment.length < 1) {
139
- // In case of a reply
140
- $comment = $container;
141
- }
142
- this.lastCommentId = parseInt($comment.data("comment-id"), 10);
143
-
144
- $target.append($container);
145
- $container.foundation();
146
- this._initializeComments($container);
147
- if (exports.Decidim.createCharacterCounter) {
148
- exports.Decidim.createCharacterCounter($(".add-comment textarea", $container));
149
- }
150
- }
151
-
152
- /**
153
- * Finalizes the new comment creation after the comment adding finishes
154
- * successfully.
155
- * @private
156
- * @param {jQuery} $parent - The parent comment element to finalize.
157
- * @returns {Void} - Returns nothing
158
- */
159
- _finalizeCommentCreation($parent) {
160
- const $add = $("> .add-comment", $parent);
161
- const $text = $("textarea", $add);
162
- const characterCounter = $text.data("remaining-characters-counter");
163
- $text.val("");
164
- if (characterCounter) {
165
- characterCounter.updateStatus();
166
- }
167
- if (!$add.parent().is(".comments")) {
168
- $add.addClass("hide");
169
- }
170
-
171
- // Restart the polling
172
- this._pollComments();
173
- }
174
-
175
- /**
176
- * Sets a timeout to poll new comments.
177
- * @private
178
- * @returns {Void} - Returns nothing
179
- */
180
- _pollComments() {
181
- this._stopPolling();
182
-
183
- this.pollTimeout = setTimeout(() => {
184
- $.ajax({
185
- url: this.commentsUrl,
186
- method: "GET",
187
- contentType: "application/javascript",
188
- data: {
189
- "commentable_gid": this.commentableGid,
190
- "root_depth": this.rootDepth,
191
- order: this.order,
192
- after: this.lastCommentId
193
- }
194
- }).done(() => {
195
- this._pollComments();
196
- });
197
- }, this.pollingInterval);
198
- }
199
-
200
- /**
201
- * Stops polling for new comments.
202
- * @private
203
- * @returns {Void} - Returns nothing
204
- */
205
- _stopPolling() {
206
- if (this.pollTimeout) {
207
- clearTimeout(this.pollTimeout);
208
- }
209
- }
210
-
211
- /**
212
- * Sets the loading comments element visible in the view.
213
- * @private
214
- * @returns {Void} - Returns nothing
215
- */
216
- _setLoading() {
217
- const $container = $("> .comments-container", this.$element);
218
- $("> .comments", $container).addClass("hide");
219
- $("> .loading-comments", $container).removeClass("hide");
220
- }
221
-
222
- /**
223
- * Event listener for the ordering links.
224
- * @private
225
- * @returns {Void} - Returns nothing
226
- */
227
- _onInitOrder() {
228
- this._stopPolling();
229
- this._setLoading();
230
- }
231
-
232
- /**
233
- * Event listener for the opinion toggle buttons.
234
- * @private
235
- * @param {Event} ev - The event object.
236
- * @returns {Void} - Returns nothing
237
- */
238
- _onToggleOpinion(ev) {
239
- let $btn = $(ev.target);
240
- if (!$btn.is(".button")) {
241
- $btn = $btn.parents(".button");
242
- }
243
-
244
- const $add = $btn.closest(".add-comment");
245
- const $form = $("form", $add);
246
- const $opinionButtons = $(".opinion-toggle .button", $add);
247
- const $alignment = $(".alignment-input", $form);
248
-
249
- $opinionButtons.removeClass("is-active");
250
- $btn.addClass("is-active");
251
-
252
- if ($btn.is(".opinion-toggle--ok")) {
253
- $alignment.val(1);
254
- } else if ($btn.is(".opinion-toggle--meh")) {
255
- $alignment.val(0);
256
- } else if ($btn.is(".opinion-toggle--ko")) {
257
- $alignment.val(-1);
258
- }
259
- }
260
-
261
- /**
262
- * Event listener for the comment field text input.
263
- * @private
264
- * @param {Event} ev - The event object.
265
- * @returns {Void} - Returns nothing
266
- */
267
- _onTextInput(ev) {
268
- const $text = $(ev.target);
269
- const $add = $text.closest(".add-comment");
270
- const $form = $("form", $add);
271
- const $submit = $("button[type='submit']", $form);
272
-
273
- if ($text.val().length > 0) {
274
- $submit.removeAttr("disabled");
275
- } else {
276
- $submit.attr("disabled", "disabled");
277
- }
278
- }
279
- }
280
-
281
- exports.Decidim = exports.Decidim || {};
282
- exports.Decidim.CommentsComponent = CommentsComponent;
283
-
284
- $(() => {
285
- $("[data-decidim-comments]").each((_i, el) => {
286
- const $el = $(el);
287
- const comments = new CommentsComponent($el, $el.data("decidim-comments"));
288
- comments.mountComponent();
289
- $(el).data("comments", comments);
290
- });
291
- });
292
- })(window);
@@ -1,10 +0,0 @@
1
- // = require_self
2
- // = require decidim/comments/comments.component
3
-
4
- window.DecidimComments = window.DecidimComments || {};
5
-
6
- window.DecidimComments = {
7
- assets: {
8
- 'icons.svg': "<%= asset_path "decidim/icons.svg" %>"
9
- }
10
- };
@@ -1,120 +0,0 @@
1
- ja:
2
- activemodel:
3
- models:
4
- decidim/comments/comment_by_followed_user_event: コメント
5
- decidim/comments/comment_created_event: コメント
6
- decidim/comments/reply_created_event: コメント返信
7
- decidim/comments/user_group_mentioned_event: メンション
8
- decidim/comments/user_mentioned_event: メンション
9
- activerecord:
10
- models:
11
- decidim/comments/comment:
12
- other: コメント
13
- decidim/comments/comment_vote:
14
- other: 投票
15
- decidim:
16
- comments:
17
- comments: コメント
18
- comments_count: コメント数
19
- last_activity:
20
- new_comment_at_html: "<span> %{link}に新しいコメント</span>"
21
- votes:
22
- create:
23
- error: コメントに投票中に問題がありました。
24
- components:
25
- add_comment_form:
26
- account_message: <a href="%{sign_in_url}">アカウント</a> または <a href="%{sign_up_url}">サインアップ</a> でコメントを追加します。
27
- form:
28
- body:
29
- label: コメント
30
- placeholder: これについてどう思いますか?
31
- form_error: テキストは必須で、 %{length} 文字を超えることはできません。
32
- submit: 送信
33
- user_group_id:
34
- label: 'コメント:'
35
- opinion:
36
- neutral: ニュートラル
37
- remaining_characters: "残り %{count} 文字"
38
- remaining_characters_1: "残り%{count} 文字"
39
- title: コメントを追加
40
- comment:
41
- alignment:
42
- against: <unk>
43
- in_favor: <unk>
44
- deleted_user: 参加者を削除しました
45
- hide_replies: 返信を非表示
46
- reply: 返信
47
- report:
48
- action: レポート
49
- already_reported: このコンテンツはすでに報告されており、管理者が確認します。
50
- close: 閉じる
51
- description: このコンテンツは不適切ですか?
52
- details: 追加コメント
53
- reasons:
54
- does_not_belong: 違法行為、自殺の脅威、個人情報、または %{organization_name} に属していないと思われる何かが含まれています。
55
- offensive: 人種差別、性差別、スラー、個人攻撃、死の脅威、自殺要求やあらゆる形態の憎悪スピーチが含まれています。
56
- spam: クリックベイト、広告、詐欺やスクリプトボットが含まれています。
57
- title: 不適切なコンテンツを報告する
58
- show_replies: '%{replies_count} 件の返信を表示'
59
- single_comment_link_title: シングルコメントへのリンクを取得
60
- comment_order_selector:
61
- order:
62
- best_rated: 最高評価
63
- most_discussed: 最も議論されたもの
64
- older: 古い順
65
- recent: 最近のもの
66
- title: '並び順:'
67
- comment_thread:
68
- title: '%{authorName} との会話'
69
- comments:
70
- blocked_comments_for_user_warning: 現時点ではコメントできませんが、以前のコメントを読むことができます。
71
- blocked_comments_warning: コメントは現時点で無効になっていますが、以前のコメントを読むことができます。
72
- comment_details_title: コメントの詳細
73
- loading: コメントを読み込んでいます...
74
- single_comment_warning: コメントの残りはこちら <a href="%{url}"></a>で確認できます。
75
- single_comment_warning_title: 単一のコメントが表示されています
76
- title: "%{count} 件のコメント"
77
- down_vote_button:
78
- text: このコメントに同意しない
79
- up_vote_button:
80
- text: このコメントに同意します
81
- events:
82
- comments:
83
- comment_by_followed_user:
84
- email_intro: "%{author_name} は %{resource_title}にコメントを残しました。このページで読むことができます:"
85
- email_outro: '%{author_name}をフォローしているため、この通知を受け取りました。プロフィールページからこのユーザーのフォローを解除することができます。'
86
- email_subject: '%{author_name} に %{resource_title} による新しいコメントがあります'
87
- notification_title: There is a new comment by <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
88
- comment_by_followed_user_group:
89
- email_intro: 'グループ %{author_name} は %{resource_title}にコメントを残しました。このページで読むことができます:'
90
- email_outro: '%{author_name}をフォローしているため、この通知を受け取りました。プロフィールページからこのグループのフォローを解除できます。'
91
- email_subject: '%{author_name} に %{resource_title} による新しいコメントがあります'
92
- notification_title: There is a new comment by <a href="%{author_path}">%{author_name} %{author_nickname}</a> in <a href="%{resource_path}">%{resource_title}</a>.
93
- comment_created:
94
- email_intro: "%{resource_title} はコメントされました。このページでコメントを読むことができます:"
95
- email_outro: '"%{resource_title}" またはその著者をフォローしているため、この通知を受け取りました。前のリンクからフォローを解除することができます。'
96
- email_subject: '%{author_name} に %{resource_title} から新しいコメントがあります'
97
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> から <a href="%{resource_path}">%{resource_title}に新しいコメントがあります</a>
98
- reply_created:
99
- email_intro: "%{author_name} は %{resource_title}であなたのコメントを返信しました。このページで読むことができます:"
100
- email_outro: コメントが返信されたため、この通知を受信しました。
101
- email_subject: "%{author_name} が %{resource_title} であなたのコメントに返信しました"
102
- notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> が <a href="%{resource_path}">%{resource_title}</a> であなたのコメントに返信しました
103
- user_group_mentioned:
104
- email_intro: あなたが所属しているグループがメンションされました
105
- email_outro: あなたは %{group_name} でメンションされたグループ %{resource_title} のメンバーであるため、この通知を受け取りました。
106
- email_subject: あなたは %{resource_title} で %{group_name} のメンバーとしてメンションされました
107
- notification_title: あなたは <a href="%{resource_path}">%{resource_title}</a> に <a href="%{author_path}">%{author_name} %{author_nickname}</a> のメンバとして <a href="%{group_path}">%{group_name} %{group_nickname}</a>
108
- user_mentioned:
109
- email_intro: あなたはメンションされています
110
- email_outro: あなたが %{resource_title}でメンションされたため、この通知を受け取りました。
111
- email_subject: あなたは %{resource_title} でメンションされました
112
- notification_title: あなたは <a href="%{resource_path}">%{resource_title}</a> で <a href="%{author_path}">%{author_name} %{author_nickname}によってメンションされました</a>
113
- metrics:
114
- comments:
115
- description: 出席者によって生成されたコメント数
116
- object: コメント
117
- title: コメント
118
- errors:
119
- messages:
120
- cannot_have_comments: コメントを持つことはできません