add VersionInfo.js
This commit is contained in:
parent
5c7a1b15c8
commit
e4dc0a14ac
|
@ -56,8 +56,7 @@ Ext.define('PBS.MainView', {
|
||||||
xtype: 'proxmoxlogo'
|
xtype: 'proxmoxlogo'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
//xtype: 'versioninfo'
|
xtype: 'versioninfo'
|
||||||
html: "version"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
flex: 1
|
flex: 1
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
JSSRC= \
|
JSSRC= \
|
||||||
Logo.js \
|
Logo.js \
|
||||||
|
VersionInfo.js \
|
||||||
Application.js \
|
Application.js \
|
||||||
MainView.js
|
MainView.js
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,33 @@
|
||||||
|
/*global Proxmox*/
|
||||||
|
Ext.define('PBS.view.main.VersionInfo',{
|
||||||
|
extend: 'Ext.Component',
|
||||||
|
xtype: 'versioninfo',
|
||||||
|
|
||||||
|
makeApiCall: true,
|
||||||
|
|
||||||
|
data: {
|
||||||
|
version: false
|
||||||
|
},
|
||||||
|
|
||||||
|
tpl: [
|
||||||
|
'Backup Server',
|
||||||
|
'<tpl if="version">',
|
||||||
|
' {version}-{release}',
|
||||||
|
'</tpl>'
|
||||||
|
],
|
||||||
|
|
||||||
|
initComponent: function() {
|
||||||
|
var me = this;
|
||||||
|
me.callParent();
|
||||||
|
|
||||||
|
if (me.makeApiCall) {
|
||||||
|
Proxmox.Utils.API2Request({
|
||||||
|
url: '/version',
|
||||||
|
method: 'GET',
|
||||||
|
success: function(response) {
|
||||||
|
me.update(response.result.data);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
Loading…
Reference in New Issue