summaryrefslogtreecommitdiffstats
path: root/apps/comments/js/activitytabviewplugin.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/comments/js/activitytabviewplugin.js')
-rw-r--r--apps/comments/js/activitytabviewplugin.js59
1 files changed, 59 insertions, 0 deletions
diff --git a/apps/comments/js/activitytabviewplugin.js b/apps/comments/js/activitytabviewplugin.js
new file mode 100644
index 00000000000..ca3253bd137
--- /dev/null
+++ b/apps/comments/js/activitytabviewplugin.js
@@ -0,0 +1,59 @@
+/*
+ * @author Joas Schilling <coding@schilljs.com>
+ * Copyright (c) 2016
+ *
+ * This file is licensed under the Affero General Public License version 3
+ * or later.
+ *
+ * See the COPYING-README file.
+ */
+
+(function() {
+ OCA.Comments.ActivityTabViewPlugin = {
+
+ /**
+ * Prepare activity for display
+ *
+ * @param {OCA.Activity.ActivityModel} model for this activity
+ * @param {jQuery} $el jQuery handle for this activity
+ * @param {string} view The view that displayes this activity
+ */
+ prepareModelForDisplay: function (model, $el, view) {
+ if (model.get('app') !== 'comments' || model.get('type') !== 'comments') {
+ return;
+ }
+
+ if (view === 'ActivityTabView') {
+ $el.addClass('comment');
+ if (this._isLong(model.get('message_prepared'))) {
+ $el.addClass('collapsed');
+ var $overlay = $('<div>').addClass('message-overlay');
+ $el.find('.activitymessage').after($overlay);
+ $el.on('click', this._onClickCollapsedComment);
+ }
+ }
+ },
+
+ /*
+ * Copy of CommentsTabView._onClickComment()
+ */
+ _onClickCollapsedComment: function(ev) {
+ var $row = $(ev.target);
+ if (!$row.is('.comment')) {
+ $row = $row.closest('.comment');
+ }
+ $row.removeClass('collapsed');
+ },
+
+ /*
+ * Copy of CommentsTabView._isLong()
+ */
+ _isLong: function(message) {
+ return message.length > 250 || (message.match(/\n/g) || []).length > 1;
+ }
+ };
+
+
+})();
+
+OC.Plugins.register('OCA.Activity.RenderingPlugins', OCA.Comments.ActivityTabViewPlugin);