define([ '/common/messages.js' ], function (Messages) { /** Id of the element for getting debug info. */ var DEBUG_LINK_CLS = 'rtwysiwyg-debug-link'; /** Id of the div containing the user list. */ var USER_LIST_CLS = 'rtwysiwyg-user-list'; /** Id of the button to change my username. */ var USERNAME_BUTTON_ID = 'rtwysiwyg-change-username'; /** Id of the div containing the lag info. */ var LAG_ELEM_CLS = 'rtwysiwyg-lag'; /** The toolbar class which contains the user list, debug link and lag. */ var TOOLBAR_CLS = 'rtwysiwyg-toolbar'; /** Key in the localStore which indicates realtime activity should be disallowed. */ var LOCALSTORAGE_DISALLOW = 'rtwysiwyg-disallow'; var SPINNER_DISAPPEAR_TIME = 3000; var SPINNER = [ '-', '\\', '|', '/' ]; var uid = function () { return 'rtwysiwyg-uid-' + String(Math.random()).substring(2); }; var createRealtimeToolbar = function ($container) { var id = uid(); $container.prepend( '
' + '
' + '
' + '
' ); var toolbar = $container.find('#'+id); toolbar.append([ '' ].join('\n')); return toolbar; }; var createEscape = function ($container) { var id = uid(); $container.append('
⇐ Back
'); var $ret = $container.find('#'+id); $ret.on('click', function () { window.location.href = '/'; }); return $ret[0]; }; var createSpinner = function ($container) { var id = uid(); $container.append('
'); return $container.find('#'+id)[0]; }; var kickSpinner = function (spinnerElement, reversed) { var txt = spinnerElement.textContent || '-'; var inc = (reversed) ? -1 : 1; spinnerElement.textContent = SPINNER[(SPINNER.indexOf(txt) + inc) % SPINNER.length]; if (spinnerElement.timeout) { clearTimeout(spinnerElement.timeout); } spinnerElement.timeout = setTimeout(function () { spinnerElement.textContent = ''; }, SPINNER_DISAPPEAR_TIME); }; var createUserList = function ($container) { var id = uid(); $container.append('
'); return $container.find('#'+id)[0]; }; var getOtherUsers = function(myUserName, userList, userData) { var i = 0; var list = ''; userList.forEach(function(user) { if(user !== myUserName) { var data = (userData) ? (userData[user] || null) : null; var userName = (data) ? data.name : null; if(userName) { if(i === 0) { list = ' : '; } list += userName + ', '; i++; } } }); return (i > 0) ? list.slice(0, -2) : list; }; var createChangeName = function($container, userList, buttonID) { var id = uid(); userList.innerHTML = 'Change name'; return $container.find('#'+id)[0]; }; var updateUserList = function (myUserName, listElement, userList, userData) { var meIdx = userList.indexOf(myUserName); if (meIdx === -1) { listElement.textContent = Messages.synchronizing; return; } if (userList.length === 1) { listElement.innerHTML = Messages.editingAlone; } else if (userList.length === 2) { listElement.innerHTML = Messages.editingWithOneOtherPerson + getOtherUsers(myUserName, userList, userData); } else { listElement.innerHTML = Messages.editingWith + ' ' + (userList.length - 1) + ' ' + Messages.otherPeople + getOtherUsers(myUserName, userList, userData); } }; var createLagElement = function ($container) { var id = uid(); $container.append('
'); return $container.find('#'+id)[0]; }; var checkLag = function (getLag, lagElement) { if(typeof getLag !== "function") { return; } var lag = getLag(); var lagMsg = Messages.lag + ' '; if(lag) { var lagSec = lag/1000; if (lag.waiting && lagSec > 1) { lagMsg += "?? " + Math.floor(lagSec); } else { lagMsg += lagSec; } } else { lagMsg += "??"; } lagElement.textContent = lagMsg; }; // this is a little hack, it should go in it's own file. // FIXME ok, so let's put it in its own file then // TODO there should also be a 'clear recent pads' button var rememberPad = function () { // FIXME, this is overly complicated, use array methods var recentPadsStr = localStorage['CryptPad_RECENTPADS']; var recentPads = []; if (recentPadsStr) { recentPads = JSON.parse(recentPadsStr); } // TODO use window.location.hash or something like that if (window.location.href.indexOf('#') === -1) { return; } var now = new Date(); var out = []; for (var i = recentPads.length; i >= 0; i--) { if (recentPads[i] && // TODO precompute this time value, maybe make it configurable? // FIXME precompute the date too, why getTime every time? now.getTime() - recentPads[i][1] < (1000*60*60*24*30) && recentPads[i][0] !== window.location.href) { out.push(recentPads[i]); } } out.push([window.location.href, now.getTime()]); localStorage['CryptPad_RECENTPADS'] = JSON.stringify(out); }; var create = function ($container, myUserName, realtime, getLag, userList, config) { var toolbar = createRealtimeToolbar($container); createEscape(toolbar.find('.rtwysiwyg-toolbar-leftside')); var userListElement = createUserList(toolbar.find('.rtwysiwyg-toolbar-leftside')); var spinner = createSpinner(toolbar.find('.rtwysiwyg-toolbar-rightside')); var lagElement = createLagElement(toolbar.find('.rtwysiwyg-toolbar-rightside')); var userData = config.userData; var changeNameID = config.changeNameID; // Check if the user is allowed to change his name if(changeNameID) { // Create the button and update the element containing the user list userListElement = createChangeName($container, userListElement, changeNameID); } rememberPad(); var connected = false; userList.onChange = function(newUserData) { var users = userList.users; if (users.indexOf(myUserName) !== -1) { connected = true; } if (!connected) { return; } if(newUserData) { // Someone has changed his name/color userData = newUserData; } updateUserList(myUserName, userListElement, users, userData); }; var ks = function () { if (connected) { kickSpinner(spinner, false); } }; realtime.onPatch(ks); // Try to filter out non-patch messages, doesn't have to be perfect this is just the spinner realtime.onMessage(function (msg) { if (msg.indexOf(':[2,') > -1) { ks(); } }); setInterval(function () { if (!connected) { return; } checkLag(getLag, lagElement); }, 3000); return { failed: function () { connected = false; userListElement.textContent = ''; lagElement.textContent = ''; }, reconnecting: function () { connected = false; userListElement.textContent = Messages.reconnecting; lagElement.textContent = ''; }, connected: function () { connected = true; } }; }; return { create: create }; });