MediaWiki:Common.js: Difference between revisions

From Vintage Story Wiki
no edit summary
No edit summary
No edit summary
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
(function($) {
var sR = {
     defaults: {
     defaults: {
         slideSpeed: 400,
         slideSpeed: 400,
Line 70: Line 73:
                     }
                     }
},
},
});
});                                                                                            
            /*var wait = setInterval(function () {
                if($cellContentWrappers.is(':animated') === false) {
                    clearInterval(wait);
                    if(typeof sR.thisCallArgs.callback == 'function') {
                        sR.thisCallArgs.callback.call(this);
                    }
                }
            }, 100);*/                                                                                               
             return $(this);
             return $(this);
         },
         },
Line 132: Line 127:
}
}
});
});
            /*var wait = setInterval(function () {
                if($cellContentWrappers.is(':animated') === false) {
                    clearInterval(wait);
                    if(typeof sR.thisCallArgs.callback == 'function') {
                        sR.thisCallArgs.callback.call(this);
                    }
                }
            }, 100);*/
             return $(this);
             return $(this);
         }
         }
Line 176: Line 162:


var item = {
var item = {
id: id,
                id: id,
number: i,
level: 0,
level: 0,
parent: parent,
parent: parent,
Line 182: Line 169:
el: $el,
el: $el,
left: 0,
left: 0,
width: $el.width() + 12
                width: $el.width() + 12,
                opened: true,
                parentOpened: function() {
this.opened = true;
                    this.children.forEach(function (child) {
child.parentOpened();
});
                },
                slideUp: function() {
                    this.opened = false;
                   
                    var lineUpdateUp = setInterval(function () {
                        updateLines(item);
                    }, 1);
                    $("." + this.el.attr("data-tt-id")).slideRow("up", 400, function () { clearInterval(lineUpdateUp); updateLines(); });
                },
                slideDown: function() {
                    this.opened = true;
this.children.forEach(function (child) {
                        child.parentOpened();
                    });
                    var lineUpdateDown = setInterval(function () {
                        updateLines(item);
                    }, 1);
                    $("." + this.el.attr("data-tt-id")).slideRow("down", 400, function () { clearInterval(lineUpdateDown); updateLines(); });
                }
};
};


Line 203: Line 215:
item.left = 0;
item.left = 0;
if (item.parent !== undefined) {
if (item.parent !== undefined) {
item.left = item.parent.left + Math.min(item.parent.width, 40);
                item.left = item.parent.left + item.parent.width;
}
}
});
});
Line 222: Line 234:
item.el.closest("tr").addClass("level" + item.level);
item.el.closest("tr").addClass("level" + item.level);
 
if(item.parent == undefined)
            var odd = true;
item.el.closest("tr").addClass("odd");
var odd = true;
if (item.children.length > 0) {
if (item.children.length > 0) {
item.children.forEach(function (child) {
item.children.forEach(function (child) {
if(odd)
if(odd)
Line 237: Line 247:
});
});
item.opened = true;
item.el.addClass("tt-parent");
item.el.addClass("tt-parent");
item.showChildren = true;
var className = item.el.attr("data-tt-id");
var className = item.el.attr("data-tt-id");
//item.el.closest("tr").addClass(className);
                var children = item.children.slice();
 
var children = item.children.slice();
while(children.length > 0) {
while(children.length > 0)
{
children[0].el.closest("tr").addClass(className);
children[0].el.closest("tr").addClass(className);
if(children[0].children.length > 0)
if(children[0].children.length > 0)
Line 252: Line 259:
children.shift();
children.shift();
}
}
//$("." + className).wrapAll("<span id='children_group_" + item.el.attr("data-tt-id") + "'></col>");
}
}
});
});
Line 264: Line 269:
}
}
if(item.el.attr("data-invisible") == "true")
if(item.el.attr("data-invisible") == "true") {
{
                item.el.hide();
item.el.hide();
return ;
return ;
}
}
Line 287: Line 291:
});
});
function updateLines(limited)
function updateLines(limited = undefined) {
{
//Update height of all items
//Update height of all items
items.forEach(function (item) {
items.forEach(function (item) {
Line 314: Line 317:
$table.on("click", "div.tt div.content", function (e) {
$table.on("click", "div.tt div.content", function (e) {
var $el = $(e.currentTarget).closest(".tt");
            var $el = $(e.currentTarget).closest(".tt");
var $tr = $el.closest("tr");
var id = $el.data('tt-id');
var id = $el.data('tt-id');
var item = index[id];
var item = index[id];


if (item.showChildren === true) {
            if (item.opened === true) {
// hide all children
                // hide all children
item.showChildren = false;
                item.slideUp();
            } else {
                // show direct children
item.slideDown();


/*function hide(parentId) {
                 window.location.hash = '#' + $el.attr("data-tt-id");
var item = index[parentId];
            }
item.children.forEach(function (child) {
if (child.showChildren !== undefined) {
child.showChildren = false;
}
 
$(child.el).closest("tr").addClass("tt-hide");
hide(child.id);
});
}
 
hide(id);*/
var lineUpdateUp = setInterval(function () {
updateLines(item);
                 }, 1);
$("." + $el.attr("data-tt-id")).slideRow("up", 400, function(){clearInterval(lineUpdateUp); updateLines();});
}
else {
// show direct children
item.showChildren = true;
/*item.children.forEach(function (child) {
$(child.el).closest("tr").removeClass("tt-hide");
});*/
window.location.hash = '#' + $el.attr("data-tt-id");
var lineUpdateDown = setInterval(function () {
updateLines(item);
                }, 1);
$("." + $el.attr("data-tt-id")).slideRow("down", 400, function(){clearInterval(lineUpdateDown); updateLines();});
}
updateLines();
updateLines();
});
});
Line 364: Line 341:
if(item.children.length > 0) {
if(item.children.length > 0) {
if (item.el.attr("data-hide") == "true" || (item.parent != undefined && item.el.attr("data-hide") != "false")) {
if (item.el.attr("data-hide") == "true" || (item.parent != undefined && item.el.attr("data-hide") != "false")) {
//item.el.find(".content").click();
                    if (window.location.hash != "#" + item.el.attr("data-tt-id")) {
if(window.location.hash != "#" + item.el.attr("data-tt-id"))
item.opened = false;
{
//item.el.hide();
item.showChildren = false;
$("." + item.el.attr("data-tt-id")).hide();
$("." + item.el.attr("data-tt-id")).hide();
}else{
                    } else {
item.showChildren = true;
                        item.opened = true;
$('html, body').animate({
$('html, body').animate({
scrollTop: item.el.offset().top-100
scrollTop: item.el.offset().top-100
}, 200);
}, 200);
}
//item.el.show();
                    }
}
}
}
}
Confirmedusers, editor, Administrators
886

edits