@@ -314,7 +314,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
314
314
* @return false if no action was initiated and the activatedPanel is the
315
315
* MailInboxView, otherwise true
316
316
*/
317
- onMailDesktopViewTabChange : function ( panel , activatedPanel ) {
317
+ onMailDesktopViewTabChange ( panel , activatedPanel ) {
318
318
319
319
const me = this ;
320
320
@@ -382,7 +382,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
382
382
* @param {Boolean } deleteDis, optional. True to disable the delete-button,
383
383
* false to enable it.
384
384
*/
385
- disableEmailEditButtons : function ( editDis , deleteDis ) {
385
+ disableEmailEditButtons ( editDis , deleteDis ) {
386
386
387
387
const me = this ,
388
388
editBtn = me . getEditButton ( ) ,
@@ -403,7 +403,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
403
403
*
404
404
* @param {Boolean } disable true to disable the buttons, false to enable them.
405
405
*/
406
- disableEmailActionButtons : function ( disable ) {
406
+ disableEmailActionButtons ( disable ) {
407
407
const me = this ,
408
408
replyToBtn = me . getReplyToButton ( ) ,
409
409
replyAllBtn = me . getReplyAllButton ( ) ,
@@ -423,7 +423,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
423
423
* @see disableEmailActionButtons
424
424
* @see disableEmailEditButtons
425
425
*/
426
- activateButtonsForMessageGrid : function ( ) {
426
+ activateButtonsForMessageGrid ( ) {
427
427
const me = this ,
428
428
selection = me . getMailMessageGrid ( ) . getSelection ( ) ;
429
429
@@ -443,7 +443,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
443
443
* @see disableEmailActionButtons
444
444
* @see disableEmailEditButtons
445
445
*/
446
- activateButtonsForMessageItem : function ( record ) {
446
+ activateButtonsForMessageItem ( record ) {
447
447
448
448
const me = this ,
449
449
isDraft = record . get ( "draft" ) ;
@@ -469,7 +469,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
469
469
*
470
470
* @param {conjoon.cn_mail.view.mail.inbox.InboxView } view
471
471
*/
472
- onMailInboxViewActivate : function ( view ) {
472
+ onMailInboxViewActivate ( view ) {
473
473
474
474
const me = this ,
475
475
ACCOUNT = conjoon . cn_mail . data . mail . folder . MailFolderTypes . ACCOUNT ;
@@ -506,7 +506,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
506
506
*
507
507
* @param {conjoon.cn_mail.view.mail.inbox.InboxView } view
508
508
*/
509
- onMailInboxViewDeactivate : function ( inboxView ) {
509
+ onMailInboxViewDeactivate ( inboxView ) {
510
510
var me = this ;
511
511
512
512
me . getToggleGridListButton ( ) . setDisabled ( true ) ;
@@ -520,7 +520,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
520
520
*
521
521
* @param {conjoon.cn_mail.store.mail.message.MessageItemStore } store
522
522
*/
523
- onMailMessageGridBeforeLoad : function ( store ) {
523
+ onMailMessageGridBeforeLoad ( store ) {
524
524
var me = this ;
525
525
526
526
me . getToggleGridListButton ( ) . setDisabled ( true ) ;
@@ -533,7 +533,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
533
533
*
534
534
* @param {conjoon.cn_mail.store.mail.message.MessageItemStore } store
535
535
*/
536
- onMailMessageGridLoad : function ( ) {
536
+ onMailMessageGridLoad ( ) {
537
537
var me = this ;
538
538
539
539
if ( me . getMailDesktopView ( ) . getLayout ( ) . getActiveItem ( ) !== me . getMailInboxView ( ) ) {
@@ -553,7 +553,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
553
553
* @param {Ext.Button } btn
554
554
* @param {Boolean } pressed
555
555
*/
556
- onToggleFolderViewButtonClick : function ( btn , pressed ) {
556
+ onToggleFolderViewButtonClick ( btn , pressed ) {
557
557
558
558
var me = this ,
559
559
mailFolder = me . getMailFolderTree ( ) ;
@@ -574,7 +574,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
574
574
* @param {Ext.Button } btn
575
575
* @param {Boolean } pressed
576
576
*/
577
- onToggleListViewButtonClick : function ( btn , pressed ) {
577
+ onToggleListViewButtonClick ( btn , pressed ) {
578
578
579
579
var me = this ,
580
580
messageGrid = me . getMailMessageGrid ( ) ;
@@ -590,7 +590,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
590
590
* @param {Ext.menu.CheckItem } menuItem
591
591
* @param {boolean } checked
592
592
*/
593
- onReadingPaneCheckChange : function ( menuItem , checked ) {
593
+ onReadingPaneCheckChange ( menuItem , checked ) {
594
594
595
595
// exit if checked is set to false. There will
596
596
// follow an immediate call to this method with the
@@ -628,7 +628,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
628
628
* @throws if this method was called with more than one record available
629
629
* in records
630
630
*/
631
- onMailFolderTreeSelectionChange : function ( treeList , records ) {
631
+ onMailFolderTreeSelectionChange ( treeList , records ) {
632
632
633
633
const me = this ;
634
634
@@ -663,7 +663,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
663
663
* @param selectionModel
664
664
* @param record
665
665
*/
666
- onMailMessageGridDeselect : function ( selectionModel , record ) {
666
+ onMailMessageGridDeselect ( selectionModel , record ) {
667
667
668
668
const me = this ;
669
669
@@ -689,7 +689,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
689
689
* @param selectionModel
690
690
* @param record
691
691
*/
692
- onMailMessageGridSelect : function ( selectionModel , record ) {
692
+ onMailMessageGridSelect ( selectionModel , record ) {
693
693
694
694
const me = this ;
695
695
@@ -701,7 +701,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
701
701
/**
702
702
* Action for cn_mail/home.
703
703
*/
704
- onHomeTabRoute : function ( ) {
704
+ onHomeTabRoute ( ) {
705
705
var me = this ,
706
706
mailDesktopView = me . getMainPackageView ( ) ;
707
707
@@ -718,7 +718,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
718
718
*
719
719
* @see {conjoon.cn_mail.view.mail.MailDesktopView#showMailMessageViewFor}
720
720
*/
721
- onReadMessageRoute : function ( mailAccountId , mailFolderId , id ) {
721
+ onReadMessageRoute ( mailAccountId , mailFolderId , id ) {
722
722
723
723
const
724
724
me = this ,
@@ -736,7 +736,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
736
736
*
737
737
* @see {conjoon.cn_mail.view.mail.MailDesktopView#showMailAccountFor}
738
738
*/
739
- onMailAccountRoute : function ( mailAccountId ) {
739
+ onMailAccountRoute ( mailAccountId ) {
740
740
const me = this ,
741
741
mailDesktopView = me . getMainPackageView ( ) ;
742
742
@@ -752,7 +752,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
752
752
*
753
753
* @see {conjoon.cn_mail.view.mail.MailDesktopView#showMailFolderFor}
754
754
*/
755
- onMailFolderRoute : function ( mailAccountId , mailFolderId ) {
755
+ onMailFolderRoute ( mailAccountId , mailFolderId ) {
756
756
const me = this ,
757
757
mailDesktopView = me . getMainPackageView ( ) ;
758
758
@@ -767,7 +767,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
767
767
*
768
768
* @param {String } id the id to be able to track this MessageEditor instance
769
769
*/
770
- onComposeMessageRoute : function ( id ) {
770
+ onComposeMessageRoute ( id ) {
771
771
this . showMailEditor ( id , "compose" ) ;
772
772
} ,
773
773
@@ -777,7 +777,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
777
777
*
778
778
* @param {String } id the id to be able to track this MessageEditor instance
779
779
*/
780
- onComposeMailtoMessageRoute : function ( id ) {
780
+ onComposeMailtoMessageRoute ( id ) {
781
781
id = "mailto%3A" + id ;
782
782
this . showMailEditor ( id , "compose" ) ;
783
783
} ,
@@ -788,7 +788,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
788
788
*
789
789
* @param {Ext.Button } btn
790
790
*/
791
- onMessageComposeButtonClick : function ( btn ) {
791
+ onMessageComposeButtonClick ( btn ) {
792
792
this . showMailEditor ( Date . now ( ) , "compose" ) ;
793
793
} ,
794
794
@@ -798,7 +798,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
798
798
*
799
799
* @param {String } id the id of the message to edit
800
800
*/
801
- onEditMessageRoute : function ( mailAccountId , mailFolderId , id ) {
801
+ onEditMessageRoute ( mailAccountId , mailFolderId , id ) {
802
802
const me = this ;
803
803
804
804
me . showMailEditor (
@@ -813,7 +813,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
813
813
*
814
814
* @param {String } id the id of the message to edit
815
815
*/
816
- onReplyToRoute : function ( mailAccountId , mailFolderId , id ) {
816
+ onReplyToRoute ( mailAccountId , mailFolderId , id ) {
817
817
const me = this ;
818
818
819
819
me . showMailEditor (
@@ -828,7 +828,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
828
828
*
829
829
* @param {String } id the id of the message to edit
830
830
*/
831
- onReplyAllRoute : function ( mailAccountId , mailFolderId , id ) {
831
+ onReplyAllRoute ( mailAccountId , mailFolderId , id ) {
832
832
const me = this ;
833
833
834
834
me . showMailEditor (
@@ -843,7 +843,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
843
843
*
844
844
* @param {String } id the id of the message to edit
845
845
*/
846
- onForwardRoute : function ( mailAccountId , mailFolderId , id ) {
846
+ onForwardRoute ( mailAccountId , mailFolderId , id ) {
847
847
const me = this ;
848
848
849
849
me . showMailEditor (
@@ -858,7 +858,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
858
858
*
859
859
* @param {Ext.Button } btn
860
860
*/
861
- onMessageEditButtonClick : function ( btn ) {
861
+ onMessageEditButtonClick ( btn ) {
862
862
const me = this ,
863
863
key = me . getCompoundKeyFromGridOrMessageView ( ) ;
864
864
@@ -871,7 +871,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
871
871
*
872
872
* @param {Ext.Button } btn
873
873
*/
874
- onMessageDeleteButtonClick : function ( btn ) {
874
+ onMessageDeleteButtonClick ( btn ) {
875
875
const me = this ,
876
876
item = me . getItemOrDraftFromActiveView ( ) ;
877
877
@@ -892,7 +892,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
892
892
*
893
893
* @param {Ext.Button } btn
894
894
*/
895
- onReplyToButtonClick : function ( btn ) {
895
+ onReplyToButtonClick ( btn ) {
896
896
const me = this ,
897
897
key = me . getCompoundKeyFromGridOrMessageView ( ) ;
898
898
@@ -905,7 +905,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
905
905
*
906
906
* @param {Ext.Button } btn
907
907
*/
908
- onReplyAllButtonClick : function ( btn ) {
908
+ onReplyAllButtonClick ( btn ) {
909
909
const me = this ,
910
910
key = me . getCompoundKeyFromGridOrMessageView ( ) ;
911
911
@@ -918,7 +918,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
918
918
*
919
919
* @param {Ext.Button } btn
920
920
*/
921
- onForwardButtonClick : function ( btn ) {
921
+ onForwardButtonClick ( btn ) {
922
922
const me = this ,
923
923
key = me . getCompoundKeyFromGridOrMessageView ( ) ;
924
924
@@ -1114,7 +1114,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
1114
1114
*
1115
1115
* @return {conjoon.cn_mail.view.mail.MailDesktopView }
1116
1116
*/
1117
- getMainPackageView : function ( ) {
1117
+ getMainPackageView ( ) {
1118
1118
var me = this ,
1119
1119
app = me . getApplication ( ) ;
1120
1120
@@ -1143,7 +1143,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
1143
1143
*
1144
1144
* @return {null|conjoon.cn_mail.model.mail.message.AbstractMessageItem }
1145
1145
*/
1146
- getItemOrDraftFromActiveView : function ( ) {
1146
+ getItemOrDraftFromActiveView ( ) {
1147
1147
1148
1148
const me = this ,
1149
1149
tab = me . getMailDesktopView ( ) . getActiveTab ( ) ;
@@ -1169,7 +1169,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
1169
1169
*
1170
1170
* @private
1171
1171
*/
1172
- getCompoundKeyFromGridOrMessageView : function ( ) {
1172
+ getCompoundKeyFromGridOrMessageView ( ) {
1173
1173
1174
1174
const me = this ,
1175
1175
tab = me . getMailDesktopView ( ) . getActiveTab ( ) ;
@@ -1190,20 +1190,20 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
1190
1190
* information whether the MessageItem which is about to load is a message
1191
1191
* flagged as "draft".
1192
1192
*
1193
- * @param {cconjoon .cn_mail.view.mail.message.reader.MessageView } messageView
1193
+ * @param {conjoon .cn_mail.view.mail.message.reader.MessageView } messageView
1194
1194
* @param {conjoon.cn_mail.model.mail.message.MessageItem }} messageItem
1195
1195
*
1196
1196
* @private
1197
1197
*/
1198
- onMailMessageItemLoadForActivatedView : function ( messageView , messageItem ) {
1198
+ onMailMessageItemLoadForActivatedView ( messageView , messageItem ) {
1199
1199
1200
1200
const me = this ;
1201
1201
1202
1202
if ( ! messageItem ) {
1203
1203
messageItem = messageView . getViewModel ( ) . get ( "messageItem" ) ;
1204
1204
}
1205
1205
1206
- if ( messageItem . get ( "draft" ) ) {
1206
+ if ( messageItem ? .get ( "draft" ) ) {
1207
1207
me . disableEmailActionButtons ( true ) ;
1208
1208
me . disableEmailEditButtons ( false , false ) ;
1209
1209
} else {
@@ -1226,7 +1226,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
1226
1226
*
1227
1227
* @throws if type is not "compose" and key is not an instance of conjoon.cn_mail.data.mail.message.compoundKey.MessageEntityCompoundKey
1228
1228
*/
1229
- showMailEditor : function ( key , type ) {
1229
+ showMailEditor ( key , type ) {
1230
1230
1231
1231
var me = this ,
1232
1232
mailDesktopView = me . getMainPackageView ( ) ;
@@ -1258,7 +1258,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
1258
1258
*
1259
1259
* @private
1260
1260
*/
1261
- createCompoundKeyFromUrlFragments : function ( mailAccountId , mailFolderId , id ) {
1261
+ createCompoundKeyFromUrlFragments ( mailAccountId , mailFolderId , id ) {
1262
1262
1263
1263
return conjoon . cn_mail . data . mail . message . compoundKey . MessageEntityCompoundKey . createFor (
1264
1264
decodeURIComponent ( mailAccountId ) ,
@@ -1275,7 +1275,7 @@ Ext.define("conjoon.cn_mail.app.PackageController", {
1275
1275
*
1276
1276
* @private
1277
1277
*/
1278
- messageEditorIsActivatedTab : function ( ) {
1278
+ messageEditorIsActivatedTab ( ) {
1279
1279
const me = this ;
1280
1280
1281
1281
me . disableEmailActionButtons ( true ) ;
0 commit comments