123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- $(function() {
- $('#sidebar').on('click', 'a', function(e) {
- if (e.currentTarget.className.indexOf('deltree') !== -1) {
- e.preventDefault();
- if (confirm('Are you sure you want to delete this whole tree and all it\'s keys?')) {
- $.ajax({
- type: "POST",
- url: this.href,
- data: 'post=1',
- success: function(url) {
- top.location.href = top.location.pathname+url;
- }
- });
- }
- } else {
- if (e.currentTarget.href.indexOf('/?') == -1) {
- return;
- }
-
- e.preventDefault();
-
- var href;
-
- if ((e.currentTarget.href.indexOf('?') == -1) ||
- (e.currentTarget.href.indexOf('?') == (e.currentTarget.href.length - 1))) {
- href = 'overview.php';
- } else {
- href = e.currentTarget.href.substr(e.currentTarget.href.indexOf('?') + 1);
-
- if (href.indexOf('&') != -1) {
- href = href.replace('&', '.php?');
- } else {
- href += '.php';
- }
- }
-
- if (href.indexOf('flush.php') == 0) {
- if (confirm('Are you sure you want to delete this key and all it\'s values?')) {
- $.ajax({
- type: "POST",
- url: href,
- data: 'post=1',
- success: function() {
- window.location.reload();
- }
- });
- }
- } else {
- $('#iframe').attr('src', href);
- }
- $('li.current').removeClass('current');
- $(this).parent().addClass('current');
- }
- });
- $('#server').change(function(e) {
- if (location.href.indexOf('?') == -1) {
- location.href = location.href+'?s='+e.target.value;
- } else if (location.href.indexOf('&s=') == -1) {
- location.href = location.href+'&s='+e.target.value;
- } else {
- location.href = location.href.replace(/s=[0-9]*/, 's='+e.target.value);
- }
- });
- $('#database').change(function(e) {
- if (location.href.indexOf('?') == -1) {
- location.href = location.href+'?d='+e.target.value;
- } else if (location.href.indexOf('&d=') == -1) {
- location.href = location.href+'&d='+e.target.value;
- } else {
- location.href = location.href.replace(/d=[0-9]*/, 'd='+e.target.value);
- }
- });
- $('li.current').parents('li.folder').removeClass('collapsed');
- $('#sidebar').on('click', 'li.folder', function(e) {
- var t = $(this);
- if ((e.pageY >= t.offset().top) &&
- (e.pageY <= t.offset().top + t.children('div').height())) {
- e.stopPropagation();
- t.toggleClass('collapsed');
- }
- });
- $('#btn_server_filter').click(function() {
- var filter = $('#server_filter').val();
- location.href = top.location.pathname + '?overview&s=' + $('#server').val() + '&d=' + ($('#database').val() || '') + '&filter=' + filter;
- });
- $('#server_filter').keydown(function(e){
- if (e.keyCode == 13) {
- $('#btn_server_filter').click();
- }
- });
- $('#filter').focus(function() {
- if ($(this).hasClass('info')) {
- $(this).removeClass('info').val('');
- }
- }).keyup(function() {
- var val = $(this).val();
- $('li:not(.folder)').each(function(i, el) {
- var key = $('a', el).get(0);
- var key = unescape(key.href.substr(key.href.indexOf('key=') + 4));
- if (key.indexOf(val) == -1) {
- $(el).addClass('hidden');
- } else {
- $(el).removeClass('hidden');
- }
- });
- $('li.folder').each(function(i, el) {
- if ($('li:not(.hidden, .folder)', el).length == 0) {
- $(el).addClass('hidden');
- } else {
- $(el).removeClass('hidden');
- }
- });
- });
- var isResizing = false;
- var lastDownX = 0;
- var lastWidth = 0;
- var resizeSidebar = function(w) {
- $('#sidebar').css('width', w);
- $('#keys').css('width', w);
- $('#resize').css('left', w + 10);
- $('#resize-layover').css('left', w + 15);
- $('#frame').css('left', w + 15);
- };
- if (parseInt($.cookie('sidebar')) > 0) {
- resizeSidebar(parseInt($.cookie('sidebar')));
- }
- $('#resize').on('mousedown', function (e) {
- isResizing = true;
- lastDownX = e.clientX;
- lastWidth = $('#sidebar').width();
- $('#resize-layover').css('z-index', 1000);
- e.preventDefault();
- });
- $(document).on('mousemove', function (e) {
- if (!isResizing) {
- return;
- }
- var w = lastWidth - (lastDownX - e.clientX);
- if (w < 250 ) {
- w = 250;
- } else if (w > 1000) {
- w = 1000;
- }
- resizeSidebar(w);
- $.cookie('sidebar', w);
- }).on('mouseup', function (e) {
- isResizing = false;
- $('#resize-layover').css('z-index', 0);
- });
- });
|