X-Git-Url: https://svn.cri.ensmp.fr/git/Portfolio.git/blobdiff_plain/8c870898f8c5b34896619b4f33be97f0eeb228b6..e5491ffe38299ab5cb183f50fff20b2db10cf1dd:/skins/photo_lightbox_viewer.js?ds=inline

diff --git a/skins/photo_lightbox_viewer.js b/skins/photo_lightbox_viewer.js
index f7afe84..3fc6fd7 100644
--- a/skins/photo_lightbox_viewer.js
+++ b/skins/photo_lightbox_viewer.js
@@ -11,14 +11,45 @@ var Lightbox;
 
 var reSelected = /.*selected.*/;
 
-Lightbox = function(grid) {
+Lightbox = function(grid, toolbar) {
+	var self = this;
 	this.grid = grid;
+	this.toolbar = toolbar;
+	if (toolbar) {
+		this.toolbarFixed = false;
+		addListener(window, 'scroll', function(evt){self.windowScrollHandler(evt);});
+	}
 	this.lastCBChecked = undefined;
-	thisLightbox = this;
-	addListener(this.grid, 'click', function(evt){thisLightbox.mouseClickHandler(evt);});
-	if (!browser.isGecko){
-		addListener(this.grid, 'mouseover', function(evt){thisLightbox.mouseOverHandler(evt);});
-		addListener(this.grid, 'mouseout', function(evt){thisLightbox.mouseOutHandler(evt);});
+	this.form = undefined;
+	var parent = this.grid.parentNode;
+	while(parent) {
+		parent = parent.parentNode;
+		if (parent.tagName === 'FORM') {
+			this.form = parent;
+			break;
+		}
+		else if (parent.tagName === 'BODY') {
+			break;
+		}
+	}
+	addListener(this.grid, 'click', function(evt){self.mouseClickHandler(evt);});
+	if (this.form) {
+		var fm = this.fm = new FormManager(this.form);
+        addListener(this.form, 'change', function(evt){self.onChangeHandler(evt);});
+		fm.onBeforeSubmit = function(fm_, evt) {return self.onBeforeSubmit(fm_, evt);};
+		fm.onResponseLoad = function(req) {return self.onResponseLoad(req);};
+	}
+};
+
+Lightbox.prototype.windowScrollHandler = function(evt) {
+	if (this.toolbar.offsetTop < window.scrollY && !this.toolbarFixed) {
+		this.toolbarFixed = true;
+		this.backThreshold = this.toolbar.offsetTop;
+		this.switchToolBarPositioning(true);
+	}
+	else if (this.toolbarFixed && window.scrollY < this.backThreshold) {
+		this.toolbarFixed = false;
+		this.switchToolBarPositioning(false);
 	}
 };
 
@@ -112,26 +143,108 @@ Lightbox.prototype.mouseClickHandler = function(evt) {
 	}
 };
 
-Lightbox.prototype.mouseOverHandler = function(evt) {
-	var target = getTargetedObject(evt);
-	if (target.tagName==='AREA') {
-		var slide = target.parentNode.parentNode;
-		if(reSelected.test(slide.className)) {
-			slide.className = 'slide_over_selected';}
-		else {
-			slide.className = 'slide_over';}
+Lightbox.prototype.onChangeHandler = function(evt) {
+    var target = getTargetedObject(evt);
+    if (target.name === 'sort_on') {
+        this.fm.submitButton = {'name' : 'set_sorting', 'value' : 'ok'};
+        this.fm.submit(evt);
+    }
+};
+
+Lightbox.prototype.onBeforeSubmit = function(fm, evt) {
+	switch(fm.submitButton.name) {
+		case 'delete' :
+			this.hideSelection();
+			break;
 	}
 };
 
-Lightbox.prototype.mouseOutHandler = function(evt) {
-	var target = getTargetedObject(evt);
-	if (target.tagName==='AREA') {
-		var slide = target.parentNode.parentNode;
-		if(reSelected.test(slide.className)) {
-			slide.className = 'selected';}
-		else {
-			slide.className = undefined;}
+Lightbox.prototype.onResponseLoad = function(req) {
+	switch(req.responseXML.documentElement.nodeName) {
+		case 'deleted' :
+			this.deleteSelection();
+			break;
+		case 'error' :
+			this.showSelection();
+			break;
+        case 'sorted' :
+            this.fm.submitButton = undefined;
+            break;
+	}
+};
+
+Lightbox.prototype.switchToolBarPositioning = function(fixed) {
+	var tbs = this.toolbar.style;
+	if (fixed) {
+		this.toolbar.defaultCssText = this.toolbar.style.cssText;
+		tbs.width = String(this.toolbar.offsetWidth) + 'px';
+		tbs.height = String(this.toolbar.offsetHeight) + 'px';
+		tbs.position = 'fixed';
+		tbs.top = '0';
+		this.toolbarPlaceholder = document.createElement('div');
+		var phs = this.toolbarPlaceholder.style;
+		phs.cssText = tbs.cssText;
+		phs.position = 'relative';
+		this.toolbar.parentNode.insertBefore(this.toolbarPlaceholder, this.toolbar);
+	}
+	else {
+		this.toolbarPlaceholder.parentNode.removeChild(this.toolbarPlaceholder);
+		tbs.cssText = this.toolbar.defaultCssText;
+	}
+};
+
+
+Lightbox.prototype.hideSelection = function() {
+	var i, e, slide;
+	for (i=0 ; i<this.form.elements.length ; i++) {
+		e = this.form.elements[i];
+		if (e.type === 'checkbox' && e.checked) {
+			slide = e.parentNode.parentNode;
+			slide.classList.add('zero_opacity');
+		}
+	}
+};
+
+Lightbox.prototype.showSelection = function() {
+	var i, e, slide;
+	for (i=0 ; i<this.form.elements.length ; i++) {
+		e = this.form.elements[i];
+		if (e.type === 'checkbox' && e.checked) {
+			slide = e.parentNode.parentNode;
+			slide.classList.remove('zero_opacity');
+		}
+	}
+};
+
+Lightbox.prototype.deleteSelection = function() {
+	var i, e, slide;
+	for (i=0 ; i<this.form.elements.length ; i++) {
+		e = this.form.elements[i];
+		if (e.type === 'checkbox' && e.checked) {
+			slide = e.parentNode.parentNode;
+			slide.classList.add('zero_width');
+		}
+	}
+	var self = this;
+	// if you change this, delay you should also change this css ruleƂ :
+	// .lightbox span { transition: width 1s
+	setTimeout(function(){self._removeSelection();}, 1000);
+};
+
+Lightbox.prototype._removeSelection = function() {
+	var i, e, slide;
+	var toRemove = [];
+	for (i=0 ; i<this.form.elements.length ; i++) {
+		e = this.form.elements[i];
+		if (e.type === 'checkbox' && e.checked) {
+			toRemove.push(e.parentNode.parentNode);
+		}
+	}
+	for (i=0 ; i<toRemove.length ; i++) {
+		slide = toRemove[i];
+		slide.parentNode.removeChild(slide);
 	}
+	this.cbIndex = undefined;
 };
 
 Lightbox.prototype.getCBIndex = function(cb) {