Gmail like message list navigation (#70)

This commit is contained in:
RainLoop Team 2014-04-10 04:15:46 +04:00
parent da88e0d2b5
commit fbf17aa6f3
14 changed files with 556 additions and 543 deletions

View file

@ -18,24 +18,33 @@ function Selector(oKoList, oKoSelectedItem,
return _.filter(this.list(), function (oItem) { return _.filter(this.list(), function (oItem) {
return oItem.checked(); return oItem.checked();
}); });
}, this); }, this).extend({'rateLimit': 0});
this.isListChecked = ko.computed(function () { this.isListChecked = ko.computed(function () {
return 0 < this.listChecked().length; return 0 < this.listChecked().length;
}, this); }, this);
this.lastSelectedItem = ko.observable(null);
this.focusedItem = ko.observable(null); this.focusedItem = ko.observable(null);
this.selectedItem = oKoSelectedItem; this.selectedItem = oKoSelectedItem;
this.selectedItemUseCallback = true;
this.itemSelectedTrottle = _.throttle(_.bind(this.itemSelected, this), 300);
this.listChecked.subscribe(function (aItems) { this.listChecked.subscribe(function (aItems) {
if (0 < aItems.length) if (0 < aItems.length)
{ {
this.selectedItem(null); if (null === this.selectedItem())
{
this.selectedItem.valueHasMutated();
}
else
{
this.selectedItem(null);
}
} }
else if (this.bAutoSelect && this.lastSelectedItem()) else if (this.bAutoSelect && this.focusedItem())
{ {
this.selectedItem(this.lastSelectedItem()); this.selectedItem(this.focusedItem());
} }
}, this); }, this);
@ -43,17 +52,21 @@ function Selector(oKoList, oKoSelectedItem,
if (oItem) if (oItem)
{ {
if (this.bAutoSelect)
{
this.lastSelectedItem(oItem);
}
if (this.isListChecked()) if (this.isListChecked())
{ {
_.each(this.listChecked(), function (oSubItem) { _.each(this.listChecked(), function (oSubItem) {
oSubItem.checked(false); oSubItem.checked(false);
}); });
} }
if (this.selectedItemUseCallback)
{
this.itemSelectedTrottle(oItem);
}
}
else if (this.selectedItemUseCallback)
{
this.itemSelected(null);
} }
}, this); }, this);
@ -96,37 +109,12 @@ function Selector(oKoList, oKoSelectedItem,
this.sLastUid = ''; this.sLastUid = '';
this.oCallbacks = {}; this.oCallbacks = {};
this.iSelectTimer = 0;
this.bUseKeyboard = true; this.bUseKeyboard = true;
this.bAutoSelect = true; this.bAutoSelect = true;
this.emptyFunction = function () {}; this.emptyFunction = function () {};
this.useItemSelectCallback = true;
this.selectedItem.subscribe(function (oItem) {
if (oItem)
{
this.sLastUid = this.getItemUid(oItem);
this.focusedItem(oItem);
}
if (this.useItemSelectCallback)
{
if (oItem)
{
this.selectItemCallbacks(oItem);
}
else
{
this.selectItemCallbacks(null);
}
}
}, this);
this.focusedItem.subscribe(function (oItem) { this.focusedItem.subscribe(function (oItem) {
if (oItem) if (oItem)
{ {
@ -135,47 +123,55 @@ function Selector(oKoList, oKoSelectedItem,
}, this); }, this);
var var
aCache = [],
aCheckedCache = [], aCheckedCache = [],
mFocused = null, mFocused = null,
mSelected = null mSelected = null
; ;
this.list.subscribe(function () { this.list.subscribe(function (aItems) {
var self = this, aItems = this.list(); var self = this;
if (Utils.isArray(aItems)) if (Utils.isArray(aItems))
{ {
_.each(aItems, function (oItem) { _.each(aItems, function (oItem) {
if (oItem)
if (oItem.checked())
{ {
aCheckedCache.push(self.getItemUid(oItem)); var sUid = self.getItemUid(oItem);
aCache.push(sUid);
if (oItem.checked())
{
aCheckedCache.push(sUid);
}
if (null === mFocused && oItem.focused())
{
mFocused = sUid;
}
if (null === mSelected && oItem.selected())
{
mSelected = sUid;
}
} }
if (null === mFocused && oItem.focused())
{
mFocused = self.getItemUid(oItem);
}
if (null === mSelected && oItem.selected())
{
mSelected = self.getItemUid(oItem);
}
}); });
} }
}, this, 'beforeChange'); }, this, 'beforeChange');
this.list.subscribe(function (aItems) { this.list.subscribe(function (aItems) {
this.useItemSelectCallback = false;
var var
self = this, self = this,
oTemp = null,
bGetNext = false,
aUids = [],
mNextFocused = mFocused,
bChecked = false, bChecked = false,
bSelected = false,
iLen = 0 iLen = 0
; ;
this.selectedItemUseCallback = false;
this.focusedItem(null); this.focusedItem(null);
this.selectedItem(null); this.selectedItem(null);
@ -184,15 +180,9 @@ function Selector(oKoList, oKoSelectedItem,
iLen = aCheckedCache.length; iLen = aCheckedCache.length;
_.each(aItems, function (oItem) { _.each(aItems, function (oItem) {
var sUid = self.getItemUid(oItem); var sUid = self.getItemUid(oItem);
aUids.push(sUid);
if (0 < iLen && -1 < Utils.inArray(sUid, aCheckedCache))
{
bChecked = true;
oItem.checked(true);
iLen--;
}
if (null !== mFocused && mFocused === sUid) if (null !== mFocused && mFocused === sUid)
{ {
@ -200,28 +190,84 @@ function Selector(oKoList, oKoSelectedItem,
mFocused = null; mFocused = null;
} }
if (0 < iLen && -1 < Utils.inArray(sUid, aCheckedCache))
{
bChecked = true;
oItem.checked(true);
iLen--;
}
if (!bChecked && null !== mSelected && mSelected === sUid) if (!bChecked && null !== mSelected && mSelected === sUid)
{ {
bSelected = true;
self.selectedItem(oItem); self.selectedItem(oItem);
mSelected = null; mSelected = null;
} }
}); });
this.selectedItemUseCallback = true;
if (!bChecked && !bSelected && this.bAutoSelect)
{
if (self.focusedItem())
{
self.selectedItem(self.focusedItem());
}
else if (0 < aItems.length)
{
if (null !== mNextFocused)
{
bGetNext = false;
mNextFocused = _.find(aCache, function (sUid) {
if (bGetNext && -1 < Utils.inArray(sUid, aUids))
{
return sUid;
}
else if (mNextFocused === sUid)
{
bGetNext = true;
}
return false;
});
if (mNextFocused)
{
oTemp = _.find(aItems, function (oItem) {
return mNextFocused === self.getItemUid(oItem);
});
}
}
self.selectedItem(oTemp || null);
self.focusedItem(self.selectedItem());
}
}
} }
this.useItemSelectCallback = true; aCache = [];
aCheckedCache = []; aCheckedCache = [];
mFocused = null; mFocused = null;
mSelected = null; mSelected = null;
}, this); }, this);
this.selectItemCallbacksThrottle = _.debounce(this.selectItemCallbacks, 300);
} }
Selector.prototype.selectItemCallbacks = function (oItem) Selector.prototype.itemSelected = function (oItem)
{ {
(this.oCallbacks['onItemSelect'] || this.emptyFunction)(oItem); if (this.isListChecked())
{
if (!oItem)
{
(this.oCallbacks['onItemSelect'] || this.emptyFunction)(oItem || null);
}
}
else
{
if (oItem)
{
(this.oCallbacks['onItemSelect'] || this.emptyFunction)(oItem);
}
}
}; };
Selector.prototype.goDown = function (bForceSelect) Selector.prototype.goDown = function (bForceSelect)
@ -255,7 +301,7 @@ Selector.prototype.init = function (oContentVisible, oContentScrollable, sKeySco
} }
}) })
.on('click', this.sItemSelector, function (oEvent) { .on('click', this.sItemSelector, function (oEvent) {
self.actionClick(ko.dataFor(this), oEvent, true); self.actionClick(ko.dataFor(this), oEvent);
}) })
.on('click', this.sItemCheckedSelector, function (oEvent) { .on('click', this.sItemCheckedSelector, function (oEvent) {
var oItem = ko.dataFor(this); var oItem = ko.dataFor(this);
@ -267,7 +313,7 @@ Selector.prototype.init = function (oContentVisible, oContentScrollable, sKeySco
} }
else else
{ {
self.sLastUid = self.getItemUid(oItem); self.focusedItem(oItem);
oItem.checked(!oItem.checked()); oItem.checked(!oItem.checked());
} }
} }
@ -275,15 +321,12 @@ Selector.prototype.init = function (oContentVisible, oContentScrollable, sKeySco
; ;
key('enter', sKeyScope, function () { key('enter', sKeyScope, function () {
if (!self.bAutoSelect) if (self.focusedItem())
{ {
if (self.focusedItem()) self.actionClick(self.focusedItem());
{
self.actionClick(self.focusedItem());
}
return false;
} }
return false;
}); });
key('ctrl+up, command+up, ctrl+down, command+down', sKeyScope, function () { key('ctrl+up, command+up, ctrl+down, command+down', sKeyScope, function () {
@ -372,7 +415,6 @@ Selector.prototype.getItemUid = function (oItem)
Selector.prototype.newSelectPosition = function (iEventKeyCode, bShiftKey, bForceSelect) Selector.prototype.newSelectPosition = function (iEventKeyCode, bShiftKey, bForceSelect)
{ {
var var
self = this,
iIndex = 0, iIndex = 0,
iPageStep = 10, iPageStep = 10,
bNext = false, bNext = false,
@ -416,7 +458,6 @@ Selector.prototype.newSelectPosition = function (iEventKeyCode, bShiftKey, bForc
break; break;
case Enums.EventKeyCode.Down: case Enums.EventKeyCode.Down:
case Enums.EventKeyCode.Insert: case Enums.EventKeyCode.Insert:
// case Enums.EventKeyCode.Space:
if (bNext) if (bNext)
{ {
oResult = oItem; oResult = oItem;
@ -473,6 +514,8 @@ Selector.prototype.newSelectPosition = function (iEventKeyCode, bShiftKey, bForc
if (oResult) if (oResult)
{ {
this.focusedItem(oResult);
if (oFocused) if (oFocused)
{ {
if (bShiftKey) if (bShiftKey)
@ -488,15 +531,10 @@ Selector.prototype.newSelectPosition = function (iEventKeyCode, bShiftKey, bForc
} }
} }
this.focusedItem(oResult); if ((this.bAutoSelect || !!bForceSelect) &&
!this.isListChecked() && Enums.EventKeyCode.Space !== iEventKeyCode)
if ((this.bAutoSelect || !!bForceSelect) && !this.isListChecked() && Enums.EventKeyCode.Space !== iEventKeyCode)
{ {
window.clearTimeout(this.iSelectTimer); this.selectedItem(oResult);
this.iSelectTimer = window.setTimeout(function () {
self.iSelectTimer = 0;
self.actionClick(oResult);
}, 300);
} }
this.scrollToFocused(); this.scrollToFocused();
@ -511,6 +549,8 @@ Selector.prototype.newSelectPosition = function (iEventKeyCode, bShiftKey, bForc
{ {
oFocused.checked(!oFocused.checked()); oFocused.checked(!oFocused.checked());
} }
this.focusedItem(oFocused);
} }
}; };
@ -622,18 +662,20 @@ Selector.prototype.actionClick = function (oItem, oEvent)
oItem.checked(!oItem.checked()); oItem.checked(!oItem.checked());
this.eventClickFunction(oItem, oEvent); this.eventClickFunction(oItem, oEvent);
this.focusedItem(oItem);
} }
else if (oEvent.ctrlKey) else if (oEvent.ctrlKey)
{ {
bClick = false; bClick = false;
this.sLastUid = sUid; this.focusedItem(oItem);
oItem.checked(!oItem.checked()); oItem.checked(!oItem.checked());
} }
} }
if (bClick) if (bClick)
{ {
this.focusedItem(oItem);
this.selectedItem(oItem); this.selectedItem(oItem);
} }
} }

View file

@ -55,10 +55,12 @@ MailBoxScreen.prototype.onRoute = function (sFolderHash, iPage, sSearch, bPrevie
{ {
if (Utils.isUnd(bPreview) ? false : !!bPreview) if (Utils.isUnd(bPreview) ? false : !!bPreview)
{ {
if (Enums.Layout.NoPreview === RL.data().layout() && !RL.data().message()) _.delay(function () {
{ if (Enums.Layout.NoPreview === RL.data().layout() && !RL.data().message())
RL.historyBack(); {
} RL.historyBack();
}
}, 5);
} }
else else
{ {

View file

@ -192,7 +192,7 @@ function WebMailDataStorage()
// message list // message list
this.staticMessageList = []; this.staticMessageList = [];
this.messageList = ko.observableArray([]); this.messageList = ko.observableArray([]).extend({'rateLimit': 0});
this.messageListCount = ko.observable(0); this.messageListCount = ko.observable(0);
this.messageListSearch = ko.observable(''); this.messageListSearch = ko.observable('');
@ -263,6 +263,11 @@ function WebMailDataStorage()
{ {
this.message.focused(false); this.message.focused(false);
this.hideMessageBodies(); this.hideMessageBodies();
if (Enums.Layout.NoPreview === RL.data().layout())
{
RL.historyBack();
}
} }
else if (Enums.Layout.NoPreview === this.layout()) else if (Enums.Layout.NoPreview === this.layout())
{ {
@ -298,12 +303,16 @@ function WebMailDataStorage()
}, this); }, this);
this.currentMessage = ko.observable(null); this.currentMessage = ko.observable(null);
this.messageListChecked = ko.computed(function () { this.messageListChecked = ko.computed(function () {
return _.filter(this.messageList(), function (oItem) { return _.filter(this.messageList(), function (oItem) {
return oItem.checked(); return oItem.checked();
}); });
}, this); }, this).extend({'rateLimit': 0});
this.hasCheckedMessages = ko.computed(function () {
return 0 < this.messageListChecked().length;
}, this).extend({'rateLimit': 0});
this.messageListCheckedOrSelected = ko.computed(function () { this.messageListCheckedOrSelected = ko.computed(function () {
@ -752,9 +761,6 @@ WebMailDataStorage.prototype.removeMessagesFromList = function (
iUnseenCount = 0, iUnseenCount = 0,
oData = RL.data(), oData = RL.data(),
oCache = RL.cache(), oCache = RL.cache(),
bMoveSelected = false,
bGetNext = false,
oNextMessage = null,
aMessageList = oData.messageList(), aMessageList = oData.messageList(),
oFromFolder = RL.cache().getFolderFromCacheList(sFromFolderFullNameRaw), oFromFolder = RL.cache().getFolderFromCacheList(sFromFolderFullNameRaw),
oToFolder = '' === sToFolderFullNameRaw ? null : oCache.getFolderFromCacheList(sToFolderFullNameRaw || ''), oToFolder = '' === sToFolderFullNameRaw ? null : oCache.getFolderFromCacheList(sToFolderFullNameRaw || ''),
@ -770,11 +776,6 @@ WebMailDataStorage.prototype.removeMessagesFromList = function (
{ {
iUnseenCount++; iUnseenCount++;
} }
if (oMessage.selected())
{
bMoveSelected = true;
}
}); });
if (oFromFolder && !bCopy) if (oFromFolder && !bCopy)
@ -810,29 +811,6 @@ WebMailDataStorage.prototype.removeMessagesFromList = function (
} }
else else
{ {
// select next message // TODO
// if (bMoveSelected)
// {
// _.each(aMessageList, function (oMessage) {
// if (!oNextMessage && oMessage)
// {
// if (bGetNext && !oMessage.checked() && !oMessage.deleted() && !oMessage.selected())
// {
// oNextMessage = oMessage;
// }
// else if (!bGetNext && oMessage.selected())
// {
// bGetNext = true;
// }
// }
// });
//
// if (oNextMessage)
// {
// this.currentMessage(oNextMessage);
// }
// }
oData.messageListIsNotCompleted(true); oData.messageListIsNotCompleted(true);
_.each(aMessages, function (oMessage) { _.each(aMessages, function (oMessage) {
@ -1046,7 +1024,6 @@ WebMailDataStorage.prototype.setMessageList = function (oData, bCached)
iLen = 0, iLen = 0,
iCount = 0, iCount = 0,
iOffset = 0, iOffset = 0,
aPrevList = [],
aList = [], aList = [],
iUtc = moment().unix(), iUtc = moment().unix(),
aStaticList = oRainLoopData.staticMessageList, aStaticList = oRainLoopData.staticMessageList,
@ -1140,26 +1117,9 @@ WebMailDataStorage.prototype.setMessageList = function (oData, bCached)
oRainLoopData.messageListEndFolder(Utils.isNormal(oData.Result.Folder) ? oData.Result.Folder : ''); oRainLoopData.messageListEndFolder(Utils.isNormal(oData.Result.Folder) ? oData.Result.Folder : '');
oRainLoopData.messageListPage(Math.ceil((iOffset / oRainLoopData.messagesPerPage()) + 1)); oRainLoopData.messageListPage(Math.ceil((iOffset / oRainLoopData.messagesPerPage()) + 1));
aPrevList = oRainLoopData.messageList(); oRainLoopData.messageList(aList);
if (aPrevList.length !== aList.length)
{
oRainLoopData.messageList(aList);
}
else if (this.calculateMessageListHash(aPrevList) !== this.calculateMessageListHash(aList))
{
oRainLoopData.messageList(aList);
}
aPrevList = [];
oRainLoopData.messageListIsNotCompleted(false); oRainLoopData.messageListIsNotCompleted(false);
oMessage = oRainLoopData.message();
// TODO
// if (oMessage && oRainLoopData.messageList.setSelectedByUid)
// {
// oRainLoopData.messageList.setSelectedByUid(oMessage.generateUid());
// }
if (aStaticList.length < aList.length) if (aStaticList.length < aList.length)
{ {
oRainLoopData.staticMessageList = aList; oRainLoopData.staticMessageList = aList;

View file

@ -230,7 +230,7 @@ html.rl-no-preview-pane {
} }
&.focused .sidebarParent { &.focused .sidebarParent {
background-color: #bbb !important; background-color: #ccc !important;
} }
&.e-single-line { &.e-single-line {
@ -471,10 +471,6 @@ html.rl-no-preview-pane {
background-color: #398CF2 !important; background-color: #398CF2 !important;
} }
&.focused .sidebarParent {
background-color: darken(#398CF2, 5%) !important;
}
.delimiter { .delimiter {
background-color: #398CF2; background-color: #398CF2;
.opacity(20); .opacity(20);

View file

@ -38,6 +38,21 @@ html.rl-no-preview-pane {
background-color: #fff; background-color: #fff;
.b-message-view-checked-helper {
text-align: center;
font-size: 70px;
line-height: 70px;
padding-top: 140px;
color: #999;
.icon-mail {
font-size: 100px;
font-size: 50px;
line-height: 90px;
padding-left: 10px;
}
}
.b-message-view-desc { .b-message-view-desc {
text-align: center; text-align: center;
font-size: 24px; font-size: 24px;

View file

@ -24,6 +24,8 @@ function MailBoxMessageViewViewModel()
this.keyScope = oData.keyScope; this.keyScope = oData.keyScope;
this.message = oData.message; this.message = oData.message;
this.currentMessage = oData.currentMessage; this.currentMessage = oData.currentMessage;
this.messageListChecked = oData.messageListChecked;
this.hasCheckedMessages = oData.hasCheckedMessages;
this.messageLoading = oData.messageLoading; this.messageLoading = oData.messageLoading;
this.messageLoadingThrottle = oData.messageLoadingThrottle; this.messageLoadingThrottle = oData.messageLoadingThrottle;
this.messagesBodiesDom = oData.messagesBodiesDom; this.messagesBodiesDom = oData.messagesBodiesDom;
@ -38,31 +40,24 @@ function MailBoxMessageViewViewModel()
this.fullScreenMode = oData.messageFullScreenMode; this.fullScreenMode = oData.messageFullScreenMode;
this.showFullInfo = ko.observable(false); this.showFullInfo = ko.observable(false);
this.messageDomFocused = ko.observable(false); this.messageDomFocused = ko.observable(false).extend({'rateLimit': 0});
this.messageVisibility = ko.computed(function () { this.messageVisibility = ko.computed(function () {
return !this.messageLoadingThrottle() && !!this.message(); return !this.messageLoadingThrottle() && !!this.message();
}, this); }, this);
this.message.subscribe(function (oMessage) { this.message.subscribe(function (oMessage) {
if (!oMessage && this.currentMessage()) if (!oMessage)
{ {
this.currentMessage(null); this.currentMessage(null);
} }
}, this); }, this);
this.canBeRepliedOrForwarded = this.messageVisibility; this.canBeRepliedOrForwarded = this.messageVisibility;
// commands // commands
this.closeMessage = Utils.createCommand(this, function () { this.closeMessage = Utils.createCommand(this, function () {
if (Enums.Layout.NoPreview === oData.layout()) oData.message(null);
{
RL.historyBack();
}
else
{
oData.message(null);
}
}); });
this.replyCommand = createCommandHelper(Enums.ComposeType.Reply); this.replyCommand = createCommandHelper(Enums.ComposeType.Reply);
@ -138,7 +133,6 @@ function MailBoxMessageViewViewModel()
return this.message() ? this.message().pgpSignedVerifyUser() : ''; return this.message() ? this.message().pgpSignedVerifyUser() : '';
}, this); }, this);
this.message.subscribe(function (oMessage) { this.message.subscribe(function (oMessage) {
this.messageActiveDom(null); this.messageActiveDom(null);
@ -392,11 +386,7 @@ MailBoxMessageViewViewModel.prototype.escShortcuts = function ()
} }
else else
{ {
this.message.focused(false); this.message(null);
if (Enums.Layout.NoPreview === RL.data().layout())
{
RL.historyBack();
}
} }
return false; return false;

View file

@ -123,7 +123,11 @@
</div> </div>
<div class="b-content thm-message-view-background-color"> <div class="b-content thm-message-view-background-color">
<div> <div>
<div class="b-message-view-desc" data-bind="visible: !message() && '' === messageError()"> <div class="b-message-view-checked-helper" data-bind="visible: !message() && '' === messageError() && hasCheckedMessages()">
<span data-bind="text: messageListChecked().length"></span>
<i class="icon-mail"></i>
</div>
<div class="b-message-view-desc" data-bind="visible: !message() && '' === messageError() && !hasCheckedMessages()">
<span class="i18n" data-i18n-text="MESSAGE/MESSAGE_VIEW_DESC"></span> <span class="i18n" data-i18n-text="MESSAGE/MESSAGE_VIEW_DESC"></span>
</div> </div>
<div class="b-message-view-desc error" data-bind="visible: !message() && '' !== messageError()"> <div class="b-message-view-desc error" data-bind="visible: !message() && '' !== messageError()">

View file

@ -637,7 +637,7 @@
border-radius: 8px; border-radius: 8px;
} }
/*! normalize.css 2012-03-11T12:53 UTC - http://github.com/necolas/normalize.css */ /*! normalize.css 2012-03-11T12:53 UTC - http://github.com/necolas/normalize.css */
/* ============================================================================= /* =============================================================================
@ -1142,7 +1142,7 @@ table {
border-collapse: collapse; border-collapse: collapse;
border-spacing: 0; border-spacing: 0;
} }
@charset "UTF-8"; @charset "UTF-8";
@font-face { @font-face {
@ -1483,7 +1483,7 @@ table {
.icon-filter:before { .icon-filter:before {
content: "\e063"; content: "\e063";
} }
/** initial setup **/ /** initial setup **/
.nano { .nano {
/* /*
@ -1600,7 +1600,7 @@ table {
.nano > .pane2:hover > .slider2, .nano > .pane2.active > .slider2 { .nano > .pane2:hover > .slider2, .nano > .pane2.active > .slider2 {
background-color: rgba(0, 0, 0, 0.4); background-color: rgba(0, 0, 0, 0.4);
} }
/* Magnific Popup CSS */ /* Magnific Popup CSS */
.mfp-bg { .mfp-bg {
top: 0; top: 0;
@ -1965,7 +1965,7 @@ img.mfp-img {
right: 0; right: 0;
padding-top: 0; } padding-top: 0; }
/* overlay at start */ /* overlay at start */
.mfp-fade.mfp-bg { .mfp-fade.mfp-bg {
@ -2011,7 +2011,7 @@ img.mfp-img {
-moz-transform: translateX(50px); -moz-transform: translateX(50px);
transform: translateX(50px); transform: translateX(50px);
} }
.simple-pace { .simple-pace {
-webkit-pointer-events: none; -webkit-pointer-events: none;
pointer-events: none; pointer-events: none;
@ -2082,7 +2082,7 @@ img.mfp-img {
@keyframes simple-pace-stripe-animation { @keyframes simple-pace-stripe-animation {
0% { transform: none; transform: none; } 0% { transform: none; transform: none; }
100% { transform: translate(-32px, 0); transform: translate(-32px, 0); } 100% { transform: translate(-32px, 0); transform: translate(-32px, 0); }
} }
.inputosaurus-container { .inputosaurus-container {
background-color:#fff; background-color:#fff;
border:1px solid #bcbec0; border:1px solid #bcbec0;
@ -2150,7 +2150,7 @@ img.mfp-img {
box-shadow:none; box-shadow:none;
} }
.inputosaurus-input-hidden { display:none; } .inputosaurus-input-hidden { display:none; }
.flag-wrapper { .flag-wrapper {
width: 24px; width: 24px;
height: 16px; height: 16px;
@ -2194,7 +2194,7 @@ img.mfp-img {
.flag.flag-pt-br {background-position: -192px -11px} .flag.flag-pt-br {background-position: -192px -11px}
.flag.flag-cn, .flag.flag-zh-tw, .flag.flag-zh-cn, .flag.flag-zh-hk {background-position: -208px -22px} .flag.flag-cn, .flag.flag-zh-tw, .flag.flag-zh-cn, .flag.flag-zh-hk {background-position: -208px -22px}
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */ /* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
.clearfix { .clearfix {
*zoom: 1; *zoom: 1;
@ -6844,7 +6844,7 @@ html.rl-no-preview-pane .messageList.message-selected {
height: 100%; height: 100%;
} }
.messageList .b-content .messageListItem.focused .sidebarParent { .messageList .b-content .messageListItem.focused .sidebarParent {
background-color: #bbb !important; background-color: #ccc !important;
} }
.messageList .b-content .messageListItem.e-single-line { .messageList .b-content .messageListItem.e-single-line {
height: 35px; height: 35px;
@ -7045,9 +7045,6 @@ html.rl-no-preview-pane .messageList.message-selected {
.messageList .b-content .messageListItem.selected .sidebarParent { .messageList .b-content .messageListItem.selected .sidebarParent {
background-color: #398CF2 !important; background-color: #398CF2 !important;
} }
.messageList .b-content .messageListItem.selected.focused .sidebarParent {
background-color: #217ef0 !important;
}
.messageList .b-content .messageListItem.selected .delimiter { .messageList .b-content .messageListItem.selected .delimiter {
background-color: #398CF2; background-color: #398CF2;
opacity: 0.2; opacity: 0.2;
@ -7137,6 +7134,19 @@ html.rl-no-preview-pane .messageView.message-selected {
border-bottom-right-radius: 3px; border-bottom-right-radius: 3px;
background-color: #fff; background-color: #fff;
} }
.messageView .b-content .b-message-view-checked-helper {
text-align: center;
font-size: 70px;
line-height: 70px;
padding-top: 140px;
color: #999;
}
.messageView .b-content .b-message-view-checked-helper .icon-mail {
font-size: 100px;
font-size: 50px;
line-height: 90px;
padding-left: 10px;
}
.messageView .b-content .b-message-view-desc { .messageView .b-content .b-message-view-desc {
text-align: center; text-align: center;
font-size: 24px; font-size: 24px;

File diff suppressed because one or more lines are too long

View file

@ -1,5 +1,5 @@
/*! RainLoop Webmail Admin Module (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */ /*! RainLoop Webmail Admin Module (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
(function (window, $, ko, crossroads, hasher, _) { (function (window, $, ko, crossroads, hasher, _) {
'use strict'; 'use strict';
@ -70,14 +70,14 @@ var
$document = $(window.document), $document = $(window.document),
NotificationClass = window.Notification && window.Notification.requestPermission ? window.Notification : null NotificationClass = window.Notification && window.Notification.requestPermission ? window.Notification : null
; ;
/*jshint onevar: false*/ /*jshint onevar: false*/
/** /**
* @type {?AdminApp} * @type {?AdminApp}
*/ */
var RL = null; var RL = null;
/*jshint onevar: true*/ /*jshint onevar: true*/
/** /**
* @type {?} * @type {?}
*/ */
@ -221,7 +221,7 @@ if (Globals.bAllowPdfPreview && navigator && navigator.mimeTypes)
return oType && 'application/pdf' === oType.type; return oType && 'application/pdf' === oType.type;
}); });
} }
Consts.Defaults = {}; Consts.Defaults = {};
Consts.Values = {}; Consts.Values = {};
Consts.DataImages = {}; Consts.DataImages = {};
@ -339,7 +339,7 @@ Consts.DataImages.UserDotPic = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA
* @type {string} * @type {string}
*/ */
Consts.DataImages.TranspPic = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVQIW2NkAAIAAAoAAggA9GkAAAAASUVORK5CYII='; Consts.DataImages.TranspPic = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVQIW2NkAAIAAAoAAggA9GkAAAAASUVORK5CYII=';
/** /**
* @enum {string} * @enum {string}
*/ */
@ -714,7 +714,7 @@ Enums.Notification = {
'UnknownNotification': 999, 'UnknownNotification': 999,
'UnknownError': 999 'UnknownError': 999
}; };
Utils.trim = $.trim; Utils.trim = $.trim;
Utils.inArray = $.inArray; Utils.inArray = $.inArray;
Utils.isArray = _.isArray; Utils.isArray = _.isArray;
@ -2473,7 +2473,7 @@ Utils.restoreKeyFilter = function ()
}; };
} }
}; };
// Base64 encode / decode // Base64 encode / decode
// http://www.webtoolkit.info/ // http://www.webtoolkit.info/
@ -2636,7 +2636,7 @@ Base64 = {
} }
}; };
/*jslint bitwise: false*/ /*jslint bitwise: false*/
ko.bindingHandlers.tooltip = { ko.bindingHandlers.tooltip = {
'init': function (oElement, fValueAccessor) { 'init': function (oElement, fValueAccessor) {
if (!Globals.bMobileDevice) if (!Globals.bMobileDevice)
@ -3285,7 +3285,7 @@ ko.observable.fn.validateFunc = function (fFunc)
return this; return this;
}; };
/** /**
* @constructor * @constructor
*/ */
@ -3583,7 +3583,7 @@ LinkBuilder.prototype.socialFacebook = function ()
{ {
return this.sServer + 'SocialFacebook' + ('' !== this.sSpecSuffix ? '/' + this.sSpecSuffix + '/' : ''); return this.sServer + 'SocialFacebook' + ('' !== this.sSpecSuffix ? '/' + this.sSpecSuffix + '/' : '');
}; };
/** /**
* @type {Object} * @type {Object}
*/ */
@ -3677,7 +3677,7 @@ Plugins.settingsGet = function (sPluginSection, sName)
}; };
/** /**
* @constructor * @constructor
*/ */
@ -3751,7 +3751,7 @@ CookieDriver.prototype.get = function (sKey)
return mResult; return mResult;
}; };
/** /**
* @constructor * @constructor
*/ */
@ -3822,7 +3822,7 @@ LocalStorageDriver.prototype.get = function (sKey)
return mResult; return mResult;
}; };
/** /**
* @constructor * @constructor
*/ */
@ -3865,7 +3865,7 @@ LocalStorage.prototype.get = function (iKey)
{ {
return this.oDriver ? this.oDriver.get('p' + iKey) : null; return this.oDriver ? this.oDriver.get('p' + iKey) : null;
}; };
/** /**
* @constructor * @constructor
*/ */
@ -3878,7 +3878,7 @@ KnoinAbstractBoot.prototype.bootstart = function ()
{ {
}; };
/** /**
* @param {string=} sPosition = '' * @param {string=} sPosition = ''
* @param {string=} sTemplate = '' * @param {string=} sTemplate = ''
@ -3967,7 +3967,7 @@ KnoinAbstractViewModel.prototype.registerPopupEscapeKey = function ()
return true; return true;
}); });
}; };
/** /**
* @param {string} sScreenName * @param {string} sScreenName
* @param {?=} aViewModels = [] * @param {?=} aViewModels = []
@ -4043,7 +4043,7 @@ KnoinAbstractScreen.prototype.__start = function ()
this.oCross = oRoute; this.oCross = oRoute;
} }
}; };
/** /**
* @constructor * @constructor
*/ */
@ -4432,7 +4432,7 @@ Knoin.prototype.bootstart = function ()
}; };
kn = new Knoin(); kn = new Knoin();
/** /**
* @param {string=} sEmail * @param {string=} sEmail
* @param {string=} sName * @param {string=} sName
@ -4796,7 +4796,7 @@ EmailModel.prototype.inputoTagLine = function ()
{ {
return 0 < this.name.length ? this.name + ' (' + this.email + ')' : this.email; return 0 < this.name.length ? this.name + ' (' + this.email + ')' : this.email;
}; };
/** /**
* @constructor * @constructor
* @extends KnoinAbstractViewModel * @extends KnoinAbstractViewModel
@ -5014,7 +5014,7 @@ PopupsDomainViewModel.prototype.clearForm = function ()
this.smtpAuth(true); this.smtpAuth(true);
this.whiteList(''); this.whiteList('');
}; };
/** /**
* @constructor * @constructor
* @extends KnoinAbstractViewModel * @extends KnoinAbstractViewModel
@ -5151,7 +5151,7 @@ PopupsPluginViewModel.prototype.onBuild = function ()
} }
}, this)); }, this));
}; };
/** /**
* @constructor * @constructor
* @extends KnoinAbstractViewModel * @extends KnoinAbstractViewModel
@ -5267,7 +5267,7 @@ PopupsActivateViewModel.prototype.validateSubscriptionKey = function ()
{ {
var sValue = this.key(); var sValue = this.key();
return '' === sValue || !!/^RL[\d]+-[A-Z0-9\-]+Z$/.test(Utils.trim(sValue)); return '' === sValue || !!/^RL[\d]+-[A-Z0-9\-]+Z$/.test(Utils.trim(sValue));
}; };
/** /**
* @constructor * @constructor
* @extends KnoinAbstractViewModel * @extends KnoinAbstractViewModel
@ -5327,7 +5327,7 @@ PopupsLanguagesViewModel.prototype.changeLanguage = function (sLang)
RL.data().mainLanguage(sLang); RL.data().mainLanguage(sLang);
this.cancelCommand(); this.cancelCommand();
}; };
/** /**
* @constructor * @constructor
* @extends KnoinAbstractViewModel * @extends KnoinAbstractViewModel
@ -5435,7 +5435,7 @@ PopupsAskViewModel.prototype.onBuild = function ()
}, this)); }, this));
}; };
/** /**
* @constructor * @constructor
* @extends KnoinAbstractViewModel * @extends KnoinAbstractViewModel
@ -5522,7 +5522,7 @@ AdminLoginViewModel.prototype.onHide = function ()
{ {
this.loginFocus(false); this.loginFocus(false);
}; };
/** /**
* @param {?} oScreen * @param {?} oScreen
* *
@ -5544,7 +5544,7 @@ AdminMenuViewModel.prototype.link = function (sRoute)
{ {
return '#/' + sRoute; return '#/' + sRoute;
}; };
/** /**
* @constructor * @constructor
* @extends KnoinAbstractViewModel * @extends KnoinAbstractViewModel
@ -5566,7 +5566,7 @@ AdminPaneViewModel.prototype.logoutClick = function ()
RL.remote().adminLogout(function () { RL.remote().adminLogout(function () {
RL.loginAndLogoutReload(); RL.loginAndLogoutReload();
}); });
}; };
/** /**
* @constructor * @constructor
*/ */
@ -5666,7 +5666,7 @@ AdminGeneral.prototype.selectLanguage = function ()
{ {
kn.showScreenPopup(PopupsLanguagesViewModel); kn.showScreenPopup(PopupsLanguagesViewModel);
}; };
/** /**
* @constructor * @constructor
*/ */
@ -5718,7 +5718,7 @@ AdminLogin.prototype.onBuild = function ()
}, 50); }, 50);
}; };
/** /**
* @constructor * @constructor
*/ */
@ -5787,7 +5787,7 @@ AdminBranding.prototype.onBuild = function ()
}, 50); }, 50);
}; };
/** /**
* @constructor * @constructor
*/ */
@ -6007,7 +6007,7 @@ AdminContacts.prototype.onBuild = function ()
}, 50); }, 50);
}; };
/** /**
* @constructor * @constructor
*/ */
@ -6096,7 +6096,7 @@ AdminDomains.prototype.onDomainListChangeRequest = function ()
{ {
RL.reloadDomainList(); RL.reloadDomainList();
}; };
/** /**
* @constructor * @constructor
*/ */
@ -6191,7 +6191,7 @@ AdminSecurity.prototype.phpInfoLink = function ()
{ {
return RL.link().phpInfo(); return RL.link().phpInfo();
}; };
/** /**
* @constructor * @constructor
*/ */
@ -6307,7 +6307,7 @@ AdminSocial.prototype.onBuild = function ()
}, 50); }, 50);
}; };
/** /**
* @constructor * @constructor
*/ */
@ -6404,7 +6404,7 @@ AdminPlugins.prototype.onPluginDisableRequest = function (sResult, oData)
RL.reloadPluginList(); RL.reloadPluginList();
}; };
/** /**
* @constructor * @constructor
*/ */
@ -6502,7 +6502,7 @@ AdminPackages.prototype.installPackage = function (oPackage)
RL.remote().packageInstall(this.requestHelper(oPackage, true), oPackage); RL.remote().packageInstall(this.requestHelper(oPackage, true), oPackage);
} }
}; };
/** /**
* @constructor * @constructor
*/ */
@ -6553,7 +6553,7 @@ AdminLicensing.prototype.licenseExpiredMomentValue = function ()
{ {
var oDate = moment.unix(this.licenseExpired()); var oDate = moment.unix(this.licenseExpired());
return oDate.format('LL') + ' (' + oDate.from(moment()) + ')'; return oDate.format('LL') + ' (' + oDate.from(moment()) + ')';
}; };
/** /**
* @constructor * @constructor
*/ */
@ -6644,7 +6644,7 @@ AbstractData.prototype.populateDataOnStart = function()
this.contactsIsAllowed(!!RL.settingsGet('ContactsIsAllowed')); this.contactsIsAllowed(!!RL.settingsGet('ContactsIsAllowed'));
}; };
/** /**
* @constructor * @constructor
* @extends AbstractData * @extends AbstractData
@ -6678,7 +6678,7 @@ _.extend(AdminDataStorage.prototype, AbstractData.prototype);
AdminDataStorage.prototype.populateDataOnStart = function() AdminDataStorage.prototype.populateDataOnStart = function()
{ {
AbstractData.prototype.populateDataOnStart.call(this); AbstractData.prototype.populateDataOnStart.call(this);
}; };
/** /**
* @constructor * @constructor
*/ */
@ -6952,7 +6952,7 @@ AbstractAjaxRemoteStorage.prototype.jsVersion = function (fCallback, sVersion)
'Version': sVersion 'Version': sVersion
}); });
}; };
/** /**
* @constructor * @constructor
* @extends AbstractAjaxRemoteStorage * @extends AbstractAjaxRemoteStorage
@ -7196,7 +7196,7 @@ AdminAjaxRemoteStorage.prototype.adminPing = function (fCallback)
{ {
this.defaultRequest(fCallback, 'AdminPing'); this.defaultRequest(fCallback, 'AdminPing');
}; };
/** /**
* @constructor * @constructor
*/ */
@ -7262,7 +7262,7 @@ AbstractCacheStorage.prototype.setEmailsPicsHashesData = function (oData)
{ {
this.oEmailsPicsHashes = oData; this.oEmailsPicsHashes = oData;
}; };
/** /**
* @constructor * @constructor
* @extends AbstractCacheStorage * @extends AbstractCacheStorage
@ -7273,7 +7273,7 @@ function AdminCacheStorage()
} }
_.extend(AdminCacheStorage.prototype, AbstractCacheStorage.prototype); _.extend(AdminCacheStorage.prototype, AbstractCacheStorage.prototype);
/** /**
* @param {Array} aViewModels * @param {Array} aViewModels
* @constructor * @constructor
@ -7451,7 +7451,7 @@ AbstractSettings.prototype.routes = function ()
['', oRules] ['', oRules]
]; ];
}; };
/** /**
* @constructor * @constructor
* @extends KnoinAbstractScreen * @extends KnoinAbstractScreen
@ -7466,7 +7466,7 @@ _.extend(AdminLoginScreen.prototype, KnoinAbstractScreen.prototype);
AdminLoginScreen.prototype.onShow = function () AdminLoginScreen.prototype.onShow = function ()
{ {
RL.setTitle(''); RL.setTitle('');
}; };
/** /**
* @constructor * @constructor
* @extends AbstractSettings * @extends AbstractSettings
@ -7486,7 +7486,7 @@ AdminSettingsScreen.prototype.onShow = function ()
// AbstractSettings.prototype.onShow.call(this); // AbstractSettings.prototype.onShow.call(this);
RL.setTitle(''); RL.setTitle('');
}; };
/** /**
* @constructor * @constructor
* @extends KnoinAbstractBoot * @extends KnoinAbstractBoot
@ -7806,7 +7806,7 @@ AbstractApp.prototype.bootstart = function ()
ssm.ready(); ssm.ready();
}; };
/** /**
* @constructor * @constructor
* @extends AbstractApp * @extends AbstractApp
@ -8045,7 +8045,7 @@ AdminApp.prototype.bootstart = function ()
* @type {AdminApp} * @type {AdminApp}
*/ */
RL = new AdminApp(); RL = new AdminApp();
$html.addClass(Globals.bMobileDevice ? 'mobile' : 'no-mobile'); $html.addClass(Globals.bMobileDevice ? 'mobile' : 'no-mobile');
$window.keydown(Utils.killCtrlAandS).keyup(Utils.killCtrlAandS); $window.keydown(Utils.killCtrlAandS).keyup(Utils.killCtrlAandS);
@ -8092,9 +8092,9 @@ window['__RLBOOT'] = function (fCall) {
window['__RLBOOT'] = null; window['__RLBOOT'] = null;
}); });
}; };
if (window.SimplePace) { if (window.SimplePace) {
window.SimplePace.add(10); window.SimplePace.add(10);
} }
}(window, jQuery, ko, crossroads, hasher, _)); }(window, jQuery, ko, crossroads, hasher, _));

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long