mirror of
https://github.com/Doodle3D/doodle3d-client.git
synced 2024-11-22 01:07:56 +01:00
simple js lib for managing the folded in/out state of the sidebars on the minimal interface
This commit is contained in:
parent
16c46355f1
commit
23fdaeaaa0
62
js/sidebar.js
Normal file
62
js/sidebar.js
Normal file
@ -0,0 +1,62 @@
|
||||
var sidebarLeft;
|
||||
var sidebarRight;
|
||||
|
||||
function initSidebars() {
|
||||
console.log("f:initSidebars()");
|
||||
|
||||
sidebarLeft = new SideBar();
|
||||
sidebarLeft.init(".leftpanel", "hideleft", function() {
|
||||
$(".leftpanel").show();
|
||||
});
|
||||
|
||||
sidebarRight = new SideBar();
|
||||
sidebarRight.init(".rightpanel", "hideright", function() {
|
||||
$(".rightpanel").show();
|
||||
});
|
||||
}
|
||||
|
||||
function SideBar() {
|
||||
this.initted = false;
|
||||
this.$contentTarg = undefined;
|
||||
this.$sideBtn = undefined;
|
||||
this.contentHidden = false;
|
||||
this.hideClass = "";
|
||||
|
||||
this.init = function(targ, hideClass, callback) {
|
||||
console.log("SideBar >> f:init >> targ: " , $(targ) , ", hideClass: " + hideClass);
|
||||
this.$contentTarg = $(targ);
|
||||
this.hideClass = hideClass;
|
||||
|
||||
this.$contentTarg.addClass(this.hideClass);
|
||||
this.contentHidden = true;
|
||||
|
||||
this.$contentTarg.append("<div class='sidebutton'></div>");
|
||||
this.$sideBtn = $(targ +" .sidebutton");
|
||||
var self = this;
|
||||
|
||||
this.$sideBtn.on('click', function(e) {
|
||||
console.log("sidebutton");
|
||||
self.toggleShowHide();
|
||||
});
|
||||
|
||||
this.initted = true;
|
||||
|
||||
callback();
|
||||
}
|
||||
|
||||
this.toggleShowHide = function() {
|
||||
if (this.contentHidden) {
|
||||
this.contentHidden = false;
|
||||
this.$contentTarg.removeClass(this.hideClass);
|
||||
// self.$sideBtn.addClass("sidebuttonin");
|
||||
this.$sideBtn.addClass("sidebuttonin");
|
||||
} else {
|
||||
this.contentHidden = true;
|
||||
this.$contentTarg.addClass(this.hideClass);
|
||||
// self.$sideBtn.removeClass("sidebuttonin");
|
||||
this.$sideBtn.removeClass("sidebuttonin");
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user