/***************************************************************************************** * X2Engine Open Source Edition is a customer relationship management program developed by * X2Engine, Inc. Copyright (C) 2011-2015 X2Engine Inc. * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU Affero General Public License version 3 as published by the * Free Software Foundation with the addition of the following permission added * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK * IN WHICH THE COPYRIGHT IS OWNED BY X2ENGINE, X2ENGINE DISCLAIMS THE WARRANTY * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more * details. * * You should have received a copy of the GNU Affero General Public License along with * this program; if not, see http://www.gnu.org/licenses or write to the Free * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA. * * You can contact X2Engine, Inc. P.O. Box 66752, Scotts Valley, * California 95067, USA. or at email address contact@x2engine.com. * * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU Affero General Public License version 3. * * In accordance with Section 7(b) of the GNU Affero General Public License version 3, * these Appropriate Legal Notices must retain the display of the "Powered by * X2Engine" logo. If the display of the logo is not reasonably feasible for * technical reasons, the Appropriate Legal Notices must display the words * "Powered by X2Engine". *****************************************************************************************/ x2.ActivityFeed = (function () { function ActivityFeed (argsDict) { var that = this; argsDict = typeof argsDict === 'undefined' ? {} : argsDict; var defaultArgs = { DEBUG: false && x2.DEBUG, usersGroups: null, minimizeFeed: null, commentFlag: null, lastEventId: null, lastTimestamp: null, profileId: null, myProfileId: null, deletePostUrl: null, translations: {} }; auxlib.applyArgs (this, defaultArgs, argsDict); // used to clear timeout when editor resize animation is called this.timeout = null; // used to prevent editor resize animation on manual resize this.editorManualResize = false; // used to prevent text field expansion if already expanded that.editorIsExpanded = false; this._init (); this.setUpOpacityScreen (); } /* Removes an error div created by createErrorBox (). Parameters: parentElem - a jQuery element which contains the error div */ ActivityFeed.prototype.destroyErrorBox = function (parentElem) { var that = this; var $errorBox = $(parentElem).find ('.error-summary-container'); if ($errorBox.length !== 0) { $errorBox.remove (); } } /* Returns a jQuery element corresponding to an error box. The error box will contain the specified errorHeader and a bulleted list of the specified error messages. Parameters: errorHeader - a string errorMessages - an array of strings */ ActivityFeed.prototype.createErrorBox = function (errorHeader, errorMessages) { var that = this; var errorBox = $('
', {'class': 'error-summary-container'}).append ( $("
", { 'class': "error-summary"}).append ( $("

", { text: errorHeader }), $("