354a3341863ed673180724c061ef0f5711f40078
2 * 2008-2014 Benoit Pin - MINES ParisTech
4 * Licence Creative Commons http://creativecommons.org/licenses/by-nc/2.0/
12 var reSelected
= /.*selected.*/;
14 Lightbox = function(grid
, toolbar
) {
17 this.toolbar
= toolbar
;
19 this.toolbarFixed
= false;
20 addListener(window
, 'scroll', function(evt
){self
.windowScrollHandler(evt
);});
22 this.lastCBChecked
= undefined;
23 this.form
= undefined;
24 var parent
= this.grid
.parentNode
;
26 parent
= parent
.parentNode
;
27 if (parent
.tagName
=== 'FORM') {
31 else if (parent
.tagName
=== 'BODY') {
35 addListener(this.grid
, 'click', function(evt
){self
.mouseClickHandler(evt
);});
37 var fm
= this.fm
= new FormManager(this.form
);
38 addListener(this.form
, 'change', function(evt
){self
.onChangeHandler(evt
);});
39 fm
.onBeforeSubmit = function(fm_
, evt
) {return self
.onBeforeSubmit(fm_
, evt
);};
40 fm
.onResponseLoad = function(req
) {return self
.onResponseLoad(req
);};
44 Lightbox
.prototype.windowScrollHandler = function(evt
) {
45 if (this.toolbar
.offsetTop
< window
.scrollY
&& !this.toolbarFixed
) {
46 this.toolbarFixed
= true;
47 this.backThreshold
= this.toolbar
.offsetTop
;
48 this.switchToolBarPositioning(true);
50 else if (this.toolbarFixed
&& window
.scrollY
< this.backThreshold
) {
51 this.toolbarFixed
= false;
52 this.switchToolBarPositioning(false);
56 Lightbox
.prototype.mouseClickHandler = function(evt
) {
57 var target
= getTargetedObject(evt
);
58 if (target
.tagName
=== 'IMG') {
60 var link
= target
.parentNode
;
61 var button
= link
.parentNode
;
62 var slide
= button
.parentNode
;
64 if (link
.tagName
=== 'A') {
65 switch(link
.getAttribute('name')) {
66 case 'add_to_selection':
69 req
= new XMLHttpRequest();
71 req
.open("POST", url
, true);
72 req
.setRequestHeader("Content-Type", "application/x-www-form-urlencoded;charset=utf-8");
75 slide
.className
= 'selected';
77 link
.setAttribute('name', 'remove_to_selection');
78 link
.href
= url
.replace(/(.*\/)add_to_selection$/, '$1remove_to_selection');
79 link
.title
= img
.alt
= 'Retirer de la sélection';
80 button
.className
= "button slide-deselect";
83 case 'remove_to_selection':
86 req
= new XMLHttpRequest();
88 req
.open("POST", url
, true);
89 req
.setRequestHeader("Content-Type", "application/x-www-form-urlencoded;charset=utf-8");
91 slide
.className
= null;
92 link
.setAttribute('name', 'add_to_selection');
93 link
.href
= url
.replace(/(.*\/)remove_to_selection$/, '$1add_to_selection');
94 link
.title
= img
.alt
= 'Ajouter à la sélection';
95 button
.className
= "button slide-select";
100 slide
.widget
= new CartWidget(slide
, link
.href
);
103 case 'hide_for_anonymous':
106 req
= new XMLHttpRequest();
108 req
.open("POST", url
, true);
109 req
.setRequestHeader("Content-Type", "application/x-www-form-urlencoded;charset=utf-8");
111 slide
.className
= 'hidden-slide';
112 link
.setAttribute('name', 'show_for_anonymous');
113 link
.href
= url
.replace(/(.*\/)hideForAnonymous$/, '$1resetHide');
114 link
.title
= img
.alt
= 'Montrer au anonymes';
115 button
.className
= "button slide-show";
118 case 'show_for_anonymous':
121 req
= new XMLHttpRequest();
123 req
.open("POST", url
, true);
124 req
.setRequestHeader("Content-Type", "application/x-www-form-urlencoded;charset=utf-8");
126 slide
.className
= null;
127 link
.setAttribute('name', 'hide_for_anonymous');
128 link
.href
= url
.replace(/(.*\/)resetHide$/, '$1hideForAnonymous');
129 link
.title
= img
.alt
= 'Masquer pour les anonymes';
130 button
.className
= "button slide-hide";
134 } else if(target
.tagName
=== 'INPUT' && target
.type
=== 'checkbox') {
137 cb
.setAttribute('checked', 'checked');
140 cb
.removeAttribute('checked');
142 this.selectCBRange(evt
);
146 Lightbox
.prototype.onChangeHandler = function(evt
) {
147 var target
= getTargetedObject(evt
);
148 if (target
.name
=== 'sort_on') {
149 this.fm
.submitButton
= {'name' : 'set_sorting', 'value' : 'ok'};
154 Lightbox
.prototype.onBeforeSubmit = function(fm
, evt
) {
155 switch(fm
.submitButton
.name
) {
157 this.hideSelection();
162 Lightbox
.prototype.onResponseLoad = function(req
) {
163 switch(req
.responseXML
.documentElement
.nodeName
) {
165 this.deleteSelection();
168 this.showSelection();
171 this.fm
.submitButton
= undefined;
175 Lightbox
.prototype.switchToolBarPositioning = function(fixed
) {
176 var tbs
= this.toolbar
.style
;
178 this.toolbar
.defaultCssText
= this.toolbar
.style
.cssText
;
179 tbs
.width
= String(this.toolbar
.offsetWidth
) + 'px';
180 tbs
.height
= String(this.toolbar
.offsetHeight
) + 'px';
181 tbs
.position
= 'fixed';
183 this.toolbarPlaceholder
= document
.createElement('div');
184 var phs
= this.toolbarPlaceholder
.style
;
185 phs
.cssText
= tbs
.cssText
;
186 phs
.position
= 'relative';
187 this.toolbar
.parentNode
.insertBefore(this.toolbarPlaceholder
, this.toolbar
);
190 this.toolbarPlaceholder
.parentNode
.removeChild(this.toolbarPlaceholder
);
191 tbs
.cssText
= this.toolbar
.defaultCssText
;
196 Lightbox
.prototype.hideSelection = function() {
198 for (i
=0 ; i
<this.form
.elements
.length
; i
++) {
199 e
= this.form
.elements
[i
];
200 if (e
.type
=== 'checkbox' && e
.checked
) {
201 slide
= e
.parentNode
.parentNode
;
202 slide
.classList
.add('zero_opacity');
207 Lightbox
.prototype.showSelection = function() {
209 for (i
=0 ; i
<this.form
.elements
.length
; i
++) {
210 e
= this.form
.elements
[i
];
211 if (e
.type
=== 'checkbox' && e
.checked
) {
212 slide
= e
.parentNode
.parentNode
;
213 slide
.classList
.remove('zero_opacity');
218 Lightbox
.prototype.deleteSelection = function() {
220 for (i
=0 ; i
<this.form
.elements
.length
; i
++) {
221 e
= this.form
.elements
[i
];
222 if (e
.type
=== 'checkbox' && e
.checked
) {
223 slide
= e
.parentNode
.parentNode
;
224 slide
.classList
.add('zero_width');
228 // if you change this, delay you should also change this css rule :
229 // .lightbox span { transition: width 1s
230 setTimeout(function(){self
._removeSelection();}, 1000);
233 Lightbox
.prototype._removeSelection = function() {
236 for (i
=0 ; i
<this.form
.elements
.length
; i
++) {
237 e
= this.form
.elements
[i
];
238 if (e
.type
=== 'checkbox' && e
.checked
) {
239 toRemove
.push(e
.parentNode
.parentNode
);
242 for (i
=0 ; i
<toRemove
.length
; i
++) {
244 slide
.parentNode
.removeChild(slide
);
246 this.cbIndex
= undefined;
249 Lightbox
.prototype.getCBIndex = function(cb
) {
251 // build checkbox index
254 var nodes
= this.grid
.childNodes
;
255 for (i
=0 ; i
<nodes
.length
; i
++) {
257 if (node
.nodeName
=== 'SPAN') {
258 c
= node
.getElementsByTagName('input')[0];
259 c
.index
= this.cbIndex
.length
;
260 this.cbIndex
[this.cbIndex
.length
] = c
;
267 Lightbox
.prototype.selectCBRange = function(evt
) {
268 var target
= getTargetedObject(evt
);
269 evt
= getEventObject(evt
);
270 var shift
= evt
.shiftKey
;
271 if (shift
&& this.lastCBChecked
) {
272 var from = this.getCBIndex(this.lastCBChecked
);
273 var to
= this.getCBIndex(target
);
274 var start
= Math
.min(from, to
);
275 var stop
= Math
.max(from, to
);
277 for (i
=start
; i
<stop
; i
++ ) {
278 this.cbIndex
[i
].setAttribute('checked', 'checked');
281 else if (target
.checked
) {
282 this.lastCBChecked
= target
;
285 this.lastCBChecked
= undefined;
290 var _outlineSelectedSlide
;
291 if (browser
.isGecko
) {
292 _outlineSelectedSlide = function(slide
) {
293 slide
.className
= 'selected';
297 _outlineSelectedSlide = function(slide
) {
298 if (slide
.className
&&
299 !reSelected
.test(slide
.className
)) {
300 slide
.className
= slide
.className
+ ' selected';