misc_pterodactyl-panel/public/themes/pterodactyl/js/frontend/tasks/management-actions.js

105 lines
4.1 KiB
JavaScript
Raw Normal View History

2017-01-24 22:57:08 +00:00
// Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>
2017-01-21 20:40:46 +00:00
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
$(document).ready(function () {
2017-09-14 02:46:43 +00:00
$('[data-action="delete-schedule"]').click(function () {
var self = $(this);
swal({
type: 'error',
2017-09-14 02:46:43 +00:00
title: 'Delete Schedule?',
text: 'Are you sure you want to delete this schedule? There is no undo.',
showCancelButton: true,
allowOutsideClick: true,
closeOnConfirm: false,
2017-09-14 02:46:43 +00:00
confirmButtonText: 'Delete Schedule',
confirmButtonColor: '#d9534f',
showLoaderOnConfirm: true
}, function () {
$.ajax({
method: 'DELETE',
url: Router.route('server.schedules.view', {
server: Pterodactyl.server.uuidShort,
2017-09-14 02:46:43 +00:00
schedule: self.data('schedule-id'),
}),
headers: {
'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content'),
}
}).done(function (data) {
swal({
type: 'success',
title: '',
2017-09-14 02:46:43 +00:00
text: 'Schedule has been deleted.'
});
self.parent().parent().slideUp();
}).fail(function (jqXHR) {
console.error(jqXHR);
swal({
type: 'error',
title: 'Whoops!',
2017-09-14 02:46:43 +00:00
text: 'An error occured while attempting to delete this schedule.'
2017-01-21 20:40:46 +00:00
});
});
});
});
2017-09-14 02:46:43 +00:00
$('[data-action="toggle-schedule"]').click(function (event) {
var self = $(this);
swal({
type: 'info',
2017-09-14 02:46:43 +00:00
title: 'Toggle Schedule',
text: 'This will toggle the selected schedule.',
showCancelButton: true,
allowOutsideClick: true,
closeOnConfirm: false,
confirmButtonText: 'Continue',
showLoaderOnConfirm: true
}, function () {
$.ajax({
method: 'POST',
2017-09-14 02:46:43 +00:00
url: Router.route('server.schedules.toggle', {
server: Pterodactyl.server.uuidShort,
2017-09-14 02:46:43 +00:00
schedule: self.data('schedule-id'),
}),
headers: {
'X-CSRF-TOKEN': $('meta[name="_token"]').attr('content'),
}
}).done(function (data) {
swal({
type: 'success',
title: '',
2017-09-14 02:46:43 +00:00
text: 'Schedule has been toggled.'
});
if (data.status !== 1) {
self.parent().parent().addClass('muted muted-hover');
} else {
self.parent().parent().removeClass('muted muted-hover');
}
}).fail(function (jqXHR) {
console.error(jqXHR);
swal({
type: 'error',
title: 'Whoops!',
2017-09-14 02:46:43 +00:00
text: 'An error occured while attempting to toggle this schedule.'
2017-01-21 20:40:46 +00:00
});
});
});
});
});