cscg22-gearboy

CSCG 2022 Challenge 'Gearboy'
git clone https://git.sinitax.com/sinitax/cscg22-gearboy
Log | Files | Refs | sfeed.txt

dynsections.js (4452B)


      1/*
      2 @licstart  The following is the entire license notice for the JavaScript code in this file.
      3
      4 The MIT License (MIT)
      5
      6 Copyright (C) 1997-2020 by Dimitri van Heesch
      7
      8 Permission is hereby granted, free of charge, to any person obtaining a copy of this software
      9 and associated documentation files (the "Software"), to deal in the Software without restriction,
     10 including without limitation the rights to use, copy, modify, merge, publish, distribute,
     11 sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
     12 furnished to do so, subject to the following conditions:
     13
     14 The above copyright notice and this permission notice shall be included in all copies or
     15 substantial portions of the Software.
     16
     17 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
     18 BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
     19 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
     20 DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
     21 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
     22
     23 @licend  The above is the entire license notice for the JavaScript code in this file
     24 */
     25function toggleVisibility(linkObj)
     26{
     27 var base = $(linkObj).attr('id');
     28 var summary = $('#'+base+'-summary');
     29 var content = $('#'+base+'-content');
     30 var trigger = $('#'+base+'-trigger');
     31 var src=$(trigger).attr('src');
     32 if (content.is(':visible')===true) {
     33   content.hide();
     34   summary.show();
     35   $(linkObj).addClass('closed').removeClass('opened');
     36   $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png');
     37 } else {
     38   content.show();
     39   summary.hide();
     40   $(linkObj).removeClass('closed').addClass('opened');
     41   $(trigger).attr('src',src.substring(0,src.length-10)+'open.png');
     42 }
     43 return false;
     44}
     45
     46function updateStripes()
     47{
     48  $('table.directory tr').
     49       removeClass('even').filter(':visible:even').addClass('even');
     50}
     51
     52function toggleLevel(level)
     53{
     54  $('table.directory tr').each(function() {
     55    var l = this.id.split('_').length-1;
     56    var i = $('#img'+this.id.substring(3));
     57    var a = $('#arr'+this.id.substring(3));
     58    if (l<level+1) {
     59      i.removeClass('iconfopen iconfclosed').addClass('iconfopen');
     60      a.html('&#9660;');
     61      $(this).show();
     62    } else if (l==level+1) {
     63      i.removeClass('iconfclosed iconfopen').addClass('iconfclosed');
     64      a.html('&#9658;');
     65      $(this).show();
     66    } else {
     67      $(this).hide();
     68    }
     69  });
     70  updateStripes();
     71}
     72
     73function toggleFolder(id)
     74{
     75  // the clicked row
     76  var currentRow = $('#row_'+id);
     77
     78  // all rows after the clicked row
     79  var rows = currentRow.nextAll("tr");
     80
     81  var re = new RegExp('^row_'+id+'\\d+_$', "i"); //only one sub
     82
     83  // only match elements AFTER this one (can't hide elements before)
     84  var childRows = rows.filter(function() { return this.id.match(re); });
     85
     86  // first row is visible we are HIDING
     87  if (childRows.filter(':first').is(':visible')===true) {
     88    // replace down arrow by right arrow for current row
     89    var currentRowSpans = currentRow.find("span");
     90    currentRowSpans.filter(".iconfopen").removeClass("iconfopen").addClass("iconfclosed");
     91    currentRowSpans.filter(".arrow").html('&#9658;');
     92    rows.filter("[id^=row_"+id+"]").hide(); // hide all children
     93  } else { // we are SHOWING
     94    // replace right arrow by down arrow for current row
     95    var currentRowSpans = currentRow.find("span");
     96    currentRowSpans.filter(".iconfclosed").removeClass("iconfclosed").addClass("iconfopen");
     97    currentRowSpans.filter(".arrow").html('&#9660;');
     98    // replace down arrows by right arrows for child rows
     99    var childRowsSpans = childRows.find("span");
    100    childRowsSpans.filter(".iconfopen").removeClass("iconfopen").addClass("iconfclosed");
    101    childRowsSpans.filter(".arrow").html('&#9658;');
    102    childRows.show(); //show all children
    103  }
    104  updateStripes();
    105}
    106
    107
    108function toggleInherit(id)
    109{
    110  var rows = $('tr.inherit.'+id);
    111  var img = $('tr.inherit_header.'+id+' img');
    112  var src = $(img).attr('src');
    113  if (rows.filter(':first').is(':visible')===true) {
    114    rows.css('display','none');
    115    $(img).attr('src',src.substring(0,src.length-8)+'closed.png');
    116  } else {
    117    rows.css('display','table-row'); // using show() causes jump in firefox
    118    $(img).attr('src',src.substring(0,src.length-10)+'open.png');
    119  }
    120}
    121/* @license-end */