mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.8 KiB
61 lines
1.8 KiB
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');
|
|
});
|