Pman.Dialog.CoreEmail.bjs
[Pman.Core] / Pman.Dialog.CoreEmail.js
index a4e86ff..5f92914 100644 (file)
@@ -21,16 +21,18 @@ Pman.Dialog.CoreEmail = {
   '6f16a5f8ff5d75ab84c018adacdfcbb7' :"Field",
   'ec211f7c20af43e742bf2570c3cb84f9' :"Add",
   'e9968623956c15023d54335ea3699855' :"Convert Html to Text",
-  '5b8ef4e762c00a15a41cfc26dc3ef99c' :"Send me a test copy",
   '1243daf593fa297e07ab03bf06d925af' :"Searching...",
+  '5b8ef4e762c00a15a41cfc26dc3ef99c' :"Send me a test copy",
   'c7892ebbb139886662c6f2fc8c450710' :"Subject",
   'dc0de523c25be298ba751c63c694109e' :"Responsive Email (1)",
   '396ecabf0cd1f9503e591418851ef406' :"Edit / Create Message",
   'b9c49611cfda3259a2b837b39489e650' :"Add Image",
   'ea4788705e6873b424c65e91c2846b19' :"Cancel",
+  'c4ca4238a0b923820dcc509a6f75849b' :"1",
   'bd88a20b53a47f7b5704a83a15ff5506' :"Saved Version",
   'b20a8b77b05d53b4e695738731400c85' :"Mailout Name",
   '1bd18d39370b7f26c1c5e18067b74c6f' :"Html File",
+  '2c466a2c159463f1d9ef5a7b57b52827' :"Select BCC Group",
   '5da618e8e4b89c66fe86e32cdafde142' :"From",
   '31bb2f6e9b8fb11cbb7fb63c6025223f' :"Select Template",
   'b78a3223503896721cca1303f776159b' :"Title",
@@ -546,7 +548,7 @@ Pman.Dialog.CoreEmail = {
                 
                  if (action.type == 'setdata') {
                  
-                     setInterval(_this.form.findField('bodytext').autosave, 60000);
+                     setInterval(_this.form.findField('bodytext').autosave, 5000);
                      
                      _this.data.module = _this.data.module || 'crm_mailing_list_message';
                      
@@ -571,6 +573,9 @@ Pman.Dialog.CoreEmail = {
                  }
                  if (action.type == 'load') {
                      _this.dialog.el.unmask();
+                     
+                     _this.form.findField('bodytext').originalValue = _this.form.findField('bodytext').getValue();
+                     
                      return;
                  }
                  if (action.type =='submit') {
@@ -604,6 +609,36 @@ Pman.Dialog.CoreEmail = {
                xns : Roo.form,
                '|xns' : 'Roo.form',
                xtype : 'TextField'
+              },
+              {
+               hideLabels : true,
+               xns : Roo.form,
+               '|xns' : 'Roo.form',
+               xtype : 'Column',
+               items  : [
+                {
+                 boxLabel : 'Enabled - will be sent out',
+                 checked : true,
+                 name : 'active',
+                 value : 1,
+                 valueOff : 0,
+                 xns : Roo.form,
+                 '|xns' : 'Roo.form',
+                 xtype : 'Checkbox',
+                 listeners : {
+                  check : function (_self, checked)
+                   {
+                       var boxLabel = 'Enabled - will be sent out';
+                       
+                       if(!checked){
+                           boxLabel = 'Disabled - will NOT be sent out';
+                       }
+                       
+                       this.setBoxLabel(boxLabel);
+                   }
+                 }
+                }
+               ]
               }
              ]
             },
@@ -629,6 +664,77 @@ Pman.Dialog.CoreEmail = {
                xns : Roo.form,
                '|xns' : 'Roo.form',
                xtype : 'TextField'
+              },
+              {
+               allowBlank : true,
+               alwaysQuery : true,
+               displayField : 'file',
+               editable : false,
+               emptyText : _this._strings['2c466a2c159463f1d9ef5a7b57b52827'] /* Select BCC Group */,
+               fieldLabel : _this._strings['278c491bdd8a53618c149c4ac790da34'] /* Template */,
+               forceSelection : true,
+               hiddenName : 'template',
+               listWidth : 400,
+               loadingText : _this._strings['1243daf593fa297e07ab03bf06d925af'] /* Searching... */,
+               minChars : 2,
+               name : 'name',
+               pageSize : 25,
+               qtip : _this._strings['2c466a2c159463f1d9ef5a7b57b52827'] /* Select BCC Group */,
+               selectOnFocus : true,
+               tpl : '<div class=\"x-grid-cell-text x-btn button\"><b>{name}</b> </div>',
+               triggerAction : 'all',
+               typeAhead : true,
+               valueField : 'id',
+               width : 200,
+               xns : Roo.form,
+               '|xns' : 'Roo.form',
+               xtype : 'ComboBox',
+               listeners : {
+                select : function (combo, record, index)
+                 {
+                    
+                 /*
+                     (function() { 
+                         combo.setValue('');
+                     }).defer(100);
+                 */    
+                     if(!record){
+                         return;
+                     }
+                     _this.form.findField('bodytext').setValue(record.data.content);
+                 
+                 }
+               },
+               store : {
+                remoteSort : true,
+                sortInfo : { direction : 'DESC', field: 'file' },
+                xns : Roo.data,
+                '|xns' : 'Roo.data',
+                xtype : 'Store',
+                listeners : {
+                 beforeload : function (_self, o){
+                      o.params = o.params || {};
+                      // set more here
+                     
+                  }
+                },
+                proxy : {
+                 method : 'GET',
+                 url : baseURL + '/Core/MailTemplateList.php',
+                 xns : Roo.data,
+                 '|xns' : 'Roo.data',
+                 xtype : 'HttpProxy'
+                },
+                reader : {
+                 fields : [{"name":"file","type":"string"},{"name":"content","type":"string"}],
+                 id : 'name',
+                 root : 'data',
+                 totalProperty : 'total',
+                 xns : Roo.data,
+                 '|xns' : 'Roo.data',
+                 xtype : 'JsonReader'
+                }
+               }
               }
              ]
             },
@@ -656,7 +762,20 @@ Pman.Dialog.CoreEmail = {
                xtype : 'FieldSet',
                items  : [
                 {
-                 autosave : function() { },
+                 autosave : function() {
+                     
+                     var body = _this.form.findField('bodytext');
+                     
+                     if(!body.wrap.isVisible(true) || body.getValue() == '' || !body.isDirty()){
+                         Roo.log('body not dirty');
+                         return;
+                     }
+                     
+                     Roo.log('body dirty, auto save!');
+                     
+                     body.fireEvent('autosave', body);
+                    
+                 },
                  clearUp : false,
                  cwhite : [ 
                      'margin',
@@ -703,10 +822,44 @@ Pman.Dialog.CoreEmail = {
                  '|xns' : 'Roo.form',
                  xtype : 'HtmlEditor',
                  listeners : {
-                  savedpreview : function (_self)
+                  autosave : function (_self)
                    {
-                       Roo.log('saved preview');
+                       Roo.log('autosave');
+                       
+                       var id = _this.form.findField('id').getValue() * 1;
+                       
+                       /*
+                       if(!_self.editorcore.sourceEditMode){
+                           _self.syncValue();
+                       }else{
+                           _self.pushValue();
+                       }
+                       */
+                       
+                       new Pman.Request({
+                           url : baseURL + '/Roo/Events.php',
+                           method :'POST',
+                           params : {
+                               id : 0,
+                               action : 'AUTOSAVE',
+                               on_id : (id > 0) ? id : 0,
+                               on_table : 'crm_mailing_list_message',
+                               remarks : 'BODY',
+                               source: _self.getValue()
+                           },
+                           success : function() {
+                               _self.originalValue = _self.getValue();
+                               
+                           },
+                           failure : function() 
+                           {
+                               Roo.log('body autosave failed?!');
+                           }
+                       });
                        
+                   },
+                  savedpreview : function (_self)
+                   {
                        var id = _this.form.findField('id').getValue() * 1;
                        
                        var successFn = function(res){
@@ -911,6 +1064,7 @@ Pman.Dialog.CoreEmail = {
                      xtype : 'Separator'
                     },
                     {
+                     cls : 'x-init-enable',
                      text : _this._strings['bd88a20b53a47f7b5704a83a15ff5506'] /* Saved Version */,
                      xns : Roo.Toolbar,
                      '|xns' : 'Roo.Toolbar',
@@ -919,6 +1073,7 @@ Pman.Dialog.CoreEmail = {
                       click : function (_self, e)
                        {
                            this.scope.owner.fireEvent('savedpreview', this.scope.owner);
+                           
                        }
                      }
                     }