znt/module/system/js/smtpview.js

111 lines
3.6 KiB
JavaScript

$(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>&nbsp;&nbsp;' + 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>&nbsp;&nbsp;' + 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();
});