Spaces:
Sleeping
Sleeping
File size: 6,724 Bytes
07c3cdd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 | Ext.onReady(function() {
Ext.QuickTips.init();
// turn on validation errors beside the field globally
Ext.form.Field.prototype.msgTarget = 'side';
// Store
var store = new Ext.data.Store( {
proxy: new Ext.data.HttpProxy({
url: 'appCacheViewAjax',
method: 'POST'
}),
baseParams : { request : 'info'},
reader : new Ext.data.JsonReader( {
root : 'info',
fields : [ {name : 'name'}, {name : 'value'} ]
})
});
// create the Grid
var infoGrid = new Ext.grid.GridPanel( {
store : store,
columns : [{
id : 'name',
header : '',
width : 210,
sortable : false,
dataIndex : 'name'
},
{
header : '',
width : 190,
sortable : false,
dataIndex : 'value'
}
],
stripeRows : true,
autoHeight : true,
width : 400,
title : _('ID_CACHE_TITLE_INFO'), // 'Workflow Applications Cache Info',
// config options for stateful behavior
stateful : true,
stateId : 'gridAppCacheView',
enableColumnHide: false,
enableColumnResize: false,
enableHdMenu: false
});
// render the grid to the specified div in the page
infoGrid.render('info-panel');
var fsf = new Ext.FormPanel( {
labelWidth : 105, // label settings here cascade unless overridden
url : '',
frame : true,
title : ' ',
width : 400,
items : [ ],
buttons : [{
text : _('ID_CACHE_BTN_BUILD'), // 'Build Cache',
handler : function() {
Ext.Msg.show ({ msg : _('ID_PROCESSING'), wait:true,waitConfig: {interval:400} });
Ext.Ajax.request({
url: 'appCacheViewAjax',
success: function(response) {
store.reload();
Ext.MessageBox.hide();
res = Ext.decode ( response.responseText );
Ext.Msg.alert ( '', res.msg );
},
failure : function(response) {
Ext.Msg.hide();
Ext.Msg.alert ( _('ID_ERROR'), response.responseText );
},
params: {request: 'build', lang: 'en' },
waitMsg : _('ID_CACHE_BUILDING'), // 'Building Workflow Application Cache...',
timeout : 1000*60*30 //30 mins
});
}
}]
});
var txtUser = {
id : 'txtUser',
xtype: 'textfield',
fieldLabel: _('ID_CACHE_USER'), // 'User',
disabled: false,
name: 'user',
allowBlank: false
};
var txtHost = {
id : 'txtHost',
xtype: 'textfield',
fieldLabel: _('ID_CACHE_HOST'), // 'Host',
disabled: false,
name: 'host',
allowBlank: false
};
var txtPasswd = {
id : 'txtPasswd',
inputType: 'password',
xtype:'textfield',
fieldLabel: _('ID_CACHE_PASSWORD'), // 'Password',
disabled: false,
hidden: false,
value: ''
};
var txtCode = {
allowBlank: false,
disabled: false,
fieldLabel: _('ID_CAPTCHA_INPUT_CODE'),// Security Code
id : 'txtCode',
name: 'code',
xtype : 'textfield'
};
var onCaptchaChange = function () {
Ext.get('cacheViewAjax').dom.src = 'appCacheViewAjax?request=captcha&t=' + Math.random();
};
var refreshBtn = new Ext.Button({
columnWidth: 0.1,
iconCls:'x-tbar-loading',
scale:'small',
handler : function() {
Ext.get('cacheViewAjax').dom.src = 'appCacheViewAjax?request=captcha&t=' + Math.random();
}
});
var boxCaptcha = new Ext.BoxComponent({
columnWidth: 0.9,
autoEl: {
tag:'img',
id: 'cacheViewAjax',
title : _('ID_CAPTCHA_REFRESH_CODE'), //Click to refresh code
src:'appCacheViewAjax?request=captcha&t=' + Math.random()
}
});
boxCaptcha.on('render',function (){
var curr = Ext.get('cacheViewAjax');
curr.on('click',onCaptchaChange,this);
},this);
var captcha = {
xtype:'fieldset',
hideLabels: true,
labelWidth: 0,
width: 350,
layout:'column',
border:false,
items:[
boxCaptcha,
refreshBtn
]
};
var fieldsetRoot = {
xtype : 'fieldset',
title : _('ID_CACHE_SUBTITLE_SETUP_DB'), // 'Setup MySql Root Password',
collapsible : true,
collapsed: true,
autoHeight : true,
defaults : { width : 200 },
defaultType : 'textfield',
items : [
txtHost,
txtUser,
txtPasswd,
captcha,
txtCode
],
buttons : [{
text : _('ID_CACHE_BTN_SETUP_PASSWRD'), // 'Setup Password',
handler : function() {
if (!fsf.getForm().isValid()) {
return;
}
Ext.Msg.show ({ msg : _('ID_PROCESSING'), wait:true,waitConfig: {interval:400} });
Ext.Ajax.request({
url: 'appCacheViewAjax',
success: function(response) {
store.reload();
Ext.MessageBox.hide();
Ext.Msg.alert ( '', response.responseText );
},
failure : function(response) {
Ext.Msg.hide();
Ext.Msg.alert ( _('ID_ERROR'), response.responseText );
},
params: { request: 'recreate-root', lang: 'en', host: Ext.getCmp('txtHost').getValue(), user: Ext.getCmp('txtUser').getValue(), password: Ext.getCmp('txtPasswd').getValue(), codeCaptcha: Ext.getCmp('txtCode').getValue() },
// timeout : 1000
// 30 mins
timeout : 1000*60*30 //30 mins
});
}
}]
};
fsf.add(fieldsetRoot);
fsf.render(document.getElementById('main-panel'));
//store.load(); instead call standard proxy we are calling ajax request, because we need to catch any error
Ext.Ajax.request({
url: 'appCacheViewAjax',
success: function(response) {
var myData = Ext.decode ( response.responseText );
store.loadData(myData);
if ( myData.error ) {
Warning( _('ID_ERROR'), myData.errorMsg );
}
},
failure : function(response) {
Ext.Msg.alert ( _('ID_ERROR'), response.responseText );
},
params: {request: 'info' }
});
}); //ExtReady
var Warning = function( msgTitle, msgError ) {
var tplEl = Ext.get ('errorMsg');
var tplText = '<div style="font-size:12px; border: 1px solid #FF0000; background-color:#FFAAAA; display:block;' +
' padding:10px; color:#404000;"><b>' + msgTitle + ': </b>' + msgError + '</div>';
tplEl.update ( tplText );
};
|