mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-10 16:58:07 +08:00
27d4bd74ad
Code refactoring
196 lines
No EOL
4.5 KiB
JavaScript
196 lines
No EOL
4.5 KiB
JavaScript
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
_ = require('_'),
|
|
|
|
Enums = require('Common/Enums'),
|
|
Globals = require('Common/Globals'),
|
|
Utils = require('Common/Utils'),
|
|
Events = require('Common/Events'),
|
|
|
|
KnoinAbstractScreen = require('Knoin:AbstractScreen'),
|
|
|
|
Settings = require('Storage:Settings'),
|
|
Data = require('Storage:RainLoop:Data'),
|
|
Cache = require('Storage:RainLoop:Cache'),
|
|
Remote = require('Storage:RainLoop:Remote')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
* @extends KnoinAbstractScreen
|
|
*/
|
|
function MailBoxScreen()
|
|
{
|
|
KnoinAbstractScreen.call(this, 'mailbox', [
|
|
require('View:RainLoop:MailBoxSystemDropDown'),
|
|
require('View:RainLoop:MailBoxFolderList'),
|
|
require('View:RainLoop:MailBoxMessageList'),
|
|
require('View:RainLoop:MailBoxMessageView')
|
|
]);
|
|
|
|
this.oLastRoute = {};
|
|
}
|
|
|
|
_.extend(MailBoxScreen.prototype, KnoinAbstractScreen.prototype);
|
|
|
|
/**
|
|
* @type {Object}
|
|
*/
|
|
MailBoxScreen.prototype.oLastRoute = {};
|
|
|
|
MailBoxScreen.prototype.setNewTitle = function ()
|
|
{
|
|
var
|
|
sEmail = Data.accountEmail(),
|
|
nFoldersInboxUnreadCount = Data.foldersInboxUnreadCount()
|
|
;
|
|
|
|
require('App:RainLoop').setTitle(('' === sEmail ? '' :
|
|
(0 < nFoldersInboxUnreadCount ? '(' + nFoldersInboxUnreadCount + ') ' : ' ') + sEmail + ' - ') + Utils.i18n('TITLES/MAILBOX'));
|
|
};
|
|
|
|
MailBoxScreen.prototype.onShow = function ()
|
|
{
|
|
this.setNewTitle();
|
|
Globals.keyScope(Enums.KeyState.MessageList);
|
|
};
|
|
|
|
/**
|
|
* @param {string} sFolderHash
|
|
* @param {number} iPage
|
|
* @param {string} sSearch
|
|
* @param {boolean=} bPreview = false
|
|
*/
|
|
MailBoxScreen.prototype.onRoute = function (sFolderHash, iPage, sSearch, bPreview)
|
|
{
|
|
if (Utils.isUnd(bPreview) ? false : !!bPreview)
|
|
{
|
|
if (Enums.Layout.NoPreview === Data.layout() && !Data.message())
|
|
{
|
|
require('App:RainLoop').historyBack();
|
|
}
|
|
}
|
|
else
|
|
{
|
|
var
|
|
sFolderFullNameRaw = Cache.getFolderFullNameRaw(sFolderHash),
|
|
oFolder = Cache.getFolderFromCacheList(sFolderFullNameRaw)
|
|
;
|
|
|
|
if (oFolder)
|
|
{
|
|
Data
|
|
.currentFolder(oFolder)
|
|
.messageListPage(iPage)
|
|
.messageListSearch(sSearch)
|
|
;
|
|
|
|
if (Enums.Layout.NoPreview === Data.layout() && Data.message())
|
|
{
|
|
Data.message(null);
|
|
}
|
|
|
|
require('App:RainLoop').reloadMessageList();
|
|
}
|
|
}
|
|
};
|
|
|
|
MailBoxScreen.prototype.onStart = function ()
|
|
{
|
|
var
|
|
fResizeFunction = function () {
|
|
Utils.windowResize();
|
|
}
|
|
;
|
|
|
|
if (Settings.capa(Enums.Capa.AdditionalAccounts) || Settings.capa(Enums.Capa.AdditionalIdentities))
|
|
{
|
|
require('App:RainLoop').accountsAndIdentities();
|
|
}
|
|
|
|
_.delay(function () {
|
|
if ('INBOX' !== Data.currentFolderFullNameRaw())
|
|
{
|
|
require('App:RainLoop').folderInformation('INBOX');
|
|
}
|
|
}, 1000);
|
|
|
|
_.delay(function () {
|
|
require('App:RainLoop').quota();
|
|
}, 5000);
|
|
|
|
_.delay(function () {
|
|
Remote.appDelayStart(Utils.emptyFunction);
|
|
}, 35000);
|
|
|
|
Globals.$html.toggleClass('rl-no-preview-pane', Enums.Layout.NoPreview === Data.layout());
|
|
|
|
Data.folderList.subscribe(fResizeFunction);
|
|
Data.messageList.subscribe(fResizeFunction);
|
|
Data.message.subscribe(fResizeFunction);
|
|
|
|
Data.layout.subscribe(function (nValue) {
|
|
Globals.$html.toggleClass('rl-no-preview-pane', Enums.Layout.NoPreview === nValue);
|
|
});
|
|
|
|
Events.sub('mailbox.inbox-unread-count', function (nCount) {
|
|
Data.foldersInboxUnreadCount(nCount);
|
|
});
|
|
|
|
Data.foldersInboxUnreadCount.subscribe(function () {
|
|
this.setNewTitle();
|
|
}, this);
|
|
};
|
|
|
|
/**
|
|
* @return {Array}
|
|
*/
|
|
MailBoxScreen.prototype.routes = function ()
|
|
{
|
|
var
|
|
fNormP = function () {
|
|
return ['Inbox', 1, '', true];
|
|
},
|
|
fNormS = function (oRequest, oVals) {
|
|
oVals[0] = Utils.pString(oVals[0]);
|
|
oVals[1] = Utils.pInt(oVals[1]);
|
|
oVals[1] = 0 >= oVals[1] ? 1 : oVals[1];
|
|
oVals[2] = Utils.pString(oVals[2]);
|
|
|
|
if ('' === oRequest)
|
|
{
|
|
oVals[0] = 'Inbox';
|
|
oVals[1] = 1;
|
|
}
|
|
|
|
return [decodeURI(oVals[0]), oVals[1], decodeURI(oVals[2]), false];
|
|
},
|
|
fNormD = function (oRequest, oVals) {
|
|
oVals[0] = Utils.pString(oVals[0]);
|
|
oVals[1] = Utils.pString(oVals[1]);
|
|
|
|
if ('' === oRequest)
|
|
{
|
|
oVals[0] = 'Inbox';
|
|
}
|
|
|
|
return [decodeURI(oVals[0]), 1, decodeURI(oVals[1]), false];
|
|
}
|
|
;
|
|
|
|
return [
|
|
[/^([a-zA-Z0-9]+)\/p([1-9][0-9]*)\/(.+)\/?$/, {'normalize_': fNormS}],
|
|
[/^([a-zA-Z0-9]+)\/p([1-9][0-9]*)$/, {'normalize_': fNormS}],
|
|
[/^([a-zA-Z0-9]+)\/(.+)\/?$/, {'normalize_': fNormD}],
|
|
[/^message-preview$/, {'normalize_': fNormP}],
|
|
[/^([^\/]*)$/, {'normalize_': fNormS}]
|
|
];
|
|
};
|
|
|
|
module.exports = MailBoxScreen;
|
|
|
|
}()); |