From 724cd50e523f10a9b732c72dc77306a75a0c5e0c Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 26 Apr 2016 12:47:57 +0200 Subject: [PATCH] Register a ActivityTabView plugin Signed-off-by: Lukas Reschke --- apps/comments/appinfo/app.php | 1 + apps/comments/js/activitytabviewplugin.js | 57 +++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 apps/comments/js/activitytabviewplugin.js diff --git a/apps/comments/appinfo/app.php b/apps/comments/appinfo/app.php index 00085cf914..df41bdfa32 100644 --- a/apps/comments/appinfo/app.php +++ b/apps/comments/appinfo/app.php @@ -32,6 +32,7 @@ $eventDispatcher->addListener( \OCP\Util::addScript('comments', 'commentsummarymodel'); \OCP\Util::addScript('comments', 'commentstabview'); \OCP\Util::addScript('comments', 'filesplugin'); + \OCP\Util::addScript('comments', 'activitytabviewplugin'); \OCP\Util::addStyle('comments', 'comments'); } ); diff --git a/apps/comments/js/activitytabviewplugin.js b/apps/comments/js/activitytabviewplugin.js new file mode 100644 index 0000000000..a087bf1279 --- /dev/null +++ b/apps/comments/js/activitytabviewplugin.js @@ -0,0 +1,57 @@ +/* + * @author Joas Schilling + * 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 = $('
').addClass('message-overlay'); + $el.find('.activitymessage').after($overlay); + $el.on('click', this._onClickCollapsedComment); + } + } + }, + + _onClickCollapsedComment: function(ev) { + var $row = $(ev.target); + if (!$row.is('.comment')) { + $row = $row.closest('.comment'); + } + $row.removeClass('collapsed'); + }, + + /** + * Returns whether the given message is long and needs + * collapsing + */ + _isLong: function(message) { + return message.length > 250 || (message.match(/\n/g) || []).length > 1; + } + }; + + +})(); + +OC.Plugins.register('OCA.Activity.Plugins', OCA.Comments.ActivityTabViewPlugin);