| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- $(function()
- {
- $('#smtpPassBtn').on('click', function(event){
- var inputTyep = $('#smtp_password').attr('type');
- if(inputTyep == 'text'){
- $('#smtp_password').attr('type', 'password');
- $('#smtpPassBtn').find('.icon').removeClass('icon-eye').addClass('icon-eye-off');
- }
- else
- {
- $('#smtp_password').attr('type', 'text');
- $('#smtpPassBtn').find('.icon').addClass('icon-eye').removeClass('icon-eye-off');
- }
- });
- $('.btn-start').on('click', function(event)
- {
- bootbox.confirm(instanceNotices.confirmStart, function(result)
- {
- if(!result) return;
- var loadingDialog = bootbox.dialog(
- {
- message: '<div class="text-center"><i class="icon icon-spinner-indicator icon-spin"></i> ' + instanceNotices.starting + '</div>',
- });
- let id = $(event.target).closest('button').attr('instance-id');
- let url = createLink('instance', 'ajaxStart', 'id=' + id, 'json');
- $.post(url).done(function(response)
- {
- loadingDialog.modal('hide');
- let res = JSON.parse(response);
- if(res.result == 'success')
- {
- window.location.reload();
- }
- else
- {
- bootbox.alert(
- {
- title: instanceNotices.fail,
- message: res.message,
- });
- }
- });
- });
- });
- $('.btn-stop').on('click', function(event)
- {
- bootbox.confirm(instanceNotices.confirmStop, function(result)
- {
- if(!result) return;
- var loadingDialog = bootbox.dialog(
- {
- message: '<div class="text-center"><i class="icon icon-spinner-indicator icon-spin"></i> ' + instanceNotices.stopping + '</div>',
- });
- let id = $(event.target).closest('button').attr('instance-id');
- let url = createLink('instance', 'ajaxStop', 'id=' + id, 'json');
- $.post(url).done(function(response)
- {
- loadingDialog.modal('hide');
- let res = JSON.parse(response);
- if(res.result == 'success')
- {
- window.location.reload();
- }
- else
- {
- bootbox.alert(
- {
- title: instanceNotices.fail,
- message: res.message,
- });
- }
- });
- });
- });
- var enableTimer = true;
- window.parent.$(window.parent.document).on('showapp', function(event, app)
- {
- enableTimer = app.code == 'space';
- });
- setInterval(function()
- {
- if(!enableTimer) return;
- var statusURL = createLink('instance', 'ajaxStatus');
- $.post(statusURL, {idList: instanceIdList}).done(function(response)
- {
- let res = JSON.parse(response);
- if(res.result == 'success' && res.data instanceof Array)
- {
- res.data.forEach(function(instance)
- {
- if($(".instance-status[instance-id=" + instance.id + "]").data('status') != instance.status) window.location.reload();
- });
- }
- if(res.locate) window.parent.location.href = res.locate;
- });
- }, 1000 * 5);
- $('[data-toggle="tooltip"]').tooltip();
- });
|