canvas-lms/public/javascripts/authentication_provider_deb...

81 lines
2.5 KiB
JavaScript

/*
* Copyright (C) 2012 - present Instructure, Inc.
*
* This file is part of Canvas.
*
* Canvas is free software: you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License as published by the Free
* Software Foundation, version 3 of the License.
*
* Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import $ from 'jquery'
$(document).ready(function() {
var $start_debugging = $('.start_debugging'),
$stop_debugging = $('.stop_debugging'),
$refresh_debugging = $('.refresh_debugging');
var stop_debugging = function($link){
var $container = $link.closest('div.debugging')
$container.find('.start_debugging').show();
$container.find('.refresh_debugging').hide();
$container.find('.stop_debugging').hide();
var debug_data = $container.find('.debug_data');
debug_data.html("");
debug_data.hide();
};
var load_debug_data = function($link, new_debug_session){
var url = $link.attr('href');
var method = 'GET';
var debug_data;
if(new_debug_session){
method = 'PUT';
}
$.ajaxJSON(url, method, {}, function (data) {
if (data) {
if (data.debugging) {
debug_data = $link.closest('div.debugging').find('.debug_data');
debug_data.html($.raw(data.debug_data));
debug_data.show();
} else {
stop_debugging();
}
}
});
};
$start_debugging.click(function(event){
event.preventDefault();
var $link = $(event.target)
load_debug_data($link, true);
$link.hide();
var $container = $link.closest('div.debugging');
$container.find('.refresh_debugging').show();
$container.find('.stop_debugging').show();
});
$refresh_debugging.click(function(event){
event.preventDefault();
load_debug_data($(event.target), false);
});
$stop_debugging.click(function(event){
event.preventDefault();
var $link = $(event.target)
stop_debugging($link);
var url = $link.attr('href');
$.ajaxJSON(url, 'DELETE', {}, function (data) {
});
});
});