1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/movim_ynh.git synced 2024-09-03 19:46:19 +02:00
movim_ynh/sources/app/widgets/AdminTest/admintest.js

61 lines
1.8 KiB
JavaScript

var AdminTest = {
databaseOK : false,
weksocketOK : false,
apiOK : false,
movimOK : true,
toggleConfiguration : function() {
if(this.databaseOK && this.websocketOK && this.movimOK) {
movim_remove_class('li.admingen', 'disabled');
movim_remove_class('li.api', 'disabled');
} else {
movim_add_class('li.admingen', 'disabled');
movim_add_class('li.api', 'disabled');
}
},
enableWebsocket : function() {
this.websocketOK = true;
this.toggleConfiguration();
movim_remove_class('figure #browser-daemon', 'error');
movim_add_class('figure #browser-daemon', 'success');
movim_add_class('div #xmpp-daemon', 'success');
movim_remove_class('li.admindb', 'disabled');
movim_get_node('#websocket_error').style.display = 'none';
},
enableAPI : function() {
this.apiOK = true;
movim_remove_class('figure #movim-api', 'disabled');
movim_add_class('figure #movim-api', 'success');
},
disableMovim : function() {
this.movimOK = false;
movim_add_class('figure #movim_block', 'error');
}/*,
testXMPPWebsocket : function(url) {
this.connection = new WebSocket(url, 'xmpp');
this.connection.onopen = function(e) {
movim_remove_class('figure #daemon-xmpp', 'error');
movim_add_class('figure #daemon-xmpp', 'success');
movim_get_node('#xmpp_websocket_error').style.display = 'none';
};
}*/
}
MovimWebsocket.attach(function() {
AdminTest.enableWebsocket();
AdminTest.toggleConfiguration();
});
movim_add_onload(function() {
AdminTest.toggleConfiguration();
movim_add_class('li.admindb', 'disabled');
});