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
|
Ext.namespace('Zarafa.plugins.files.settings.ui');
/**
* @class Zarafa.plugins.files.settings.ui.FeatureVersionInfoPanel
* @extends Ext.Panel
* @xtype filesplugin.featureversioninfopanel
*
* Will generate UI for {@link Zarafa.plugins.files.settings.ui.FeatureVersionInfoContentPanel FeatureVersionInfoContentPanel}.
*/
Zarafa.plugins.files.settings.ui.FeatureVersionInfoPanel = Ext.extend(Ext.Panel, {
/**
* @cfg {Object} The current loaded account record.
*/
account: undefined,
/**
* @constructor
* @param {Object} config Configuration structure.
*/
constructor: function (config) {
config = config || {};
if (config.item) {
this.account = config.item;
}
Ext.applyIf(config, {
xtype : 'filesplugin.featureversioninfopanel',
items : this.createPanelItems(config),
buttons : [{
text : dgettext('plugin_files', 'Close'),
handler: this.doClose,
scope : this
}]
});
Zarafa.plugins.files.settings.ui.FeatureVersionInfoPanel.superclass.constructor.call(this, config);
this.doReload();
},
/**
* Close the dialog.
*/
doClose: function () {
this.dialog.close();
},
/**
* Reload the version store.
*/
doReload: function () {
var responseHandler = new Zarafa.core.data.AbstractResponseHandler({
doGetversion: this.gotVersionValues.createDelegate(this)
});
container.getRequest().singleRequest(
'filesaccountmodule',
'getversion',
{
accountId: this.account.get("id")
},
responseHandler
);
},
/**
* Function is called after we received the response object from the server.
* It will update the textfield values.
*
* @param {Object} response version information object
*/
gotVersionValues: function (response) {
this.backendVersionField.setValue(response.version.backend);
this.serverVersionField.setValue(response.version.server);
},
/**
* Function will create panel items for {@link Zarafa.plugins.files.settings.ui.FeatureVersionInfoPanel FeatureVersionInfoPanel}.
*
* @return {Array} array of items that should be added to panel.
* @private
*/
createPanelItems: function () {
return [{
xtype : 'form',
border : false,
labelAlign: 'left',
items : [{
xtype : 'displayfield',
ref : '../backendVersionField',
fieldLabel: dgettext('plugin_files', 'Backend'),
value : dgettext('plugin_files', 'Loading') + '…'
}, {
xtype : 'displayfield',
ref : '../serverVersionField',
fieldLabel: this.account.get('backend'),
value : dgettext('plugin_files', 'Loading') + '…'
}]
}];
}
});
Ext.reg('filesplugin.featureversioninfopanel', Zarafa.plugins.files.settings.ui.FeatureVersionInfoPanel);
|