| 
									
										
										
										
											2017-03-08 06:12:25 +03:00
										 |  |  | /********************************************************************** | 
					
						
							|  |  |  | *  | 
					
						
							|  |  |  | * | 
					
						
							|  |  |  | * | 
					
						
							|  |  |  | **********************************************************************/ | 
					
						
							|  |  |  | ((typeof define)[0]=='u'?function(f){module.exports=f(require)}:define) | 
					
						
							|  |  |  | (function(require){ var module={} // make module AMD/node compatible...
 | 
					
						
							|  |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var actions = require('lib/actions') | 
					
						
							|  |  |  | var features = require('lib/features') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var core = require('features/core') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-08 06:18:47 +03:00
										 |  |  | var PartialRibbonsActions = actions.Actions({ | 
					
						
							| 
									
										
										
										
											2017-04-18 01:53:21 +03:00
										 |  |  | 	config: { | 
					
						
							| 
									
										
										
										
											2017-04-18 23:15:48 +03:00
										 |  |  | 		// Number of screen widths to load...
 | 
					
						
							| 
									
										
										
										
											2017-04-18 01:53:21 +03:00
										 |  |  | 		'ribbon-size-screens': 7, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-18 23:15:48 +03:00
										 |  |  | 		// Amount of screen widths to keep around the current image...
 | 
					
						
							| 
									
										
										
										
											2017-04-18 01:53:21 +03:00
										 |  |  | 		'ribbon-update-threshold': 1.2, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-18 23:15:48 +03:00
										 |  |  | 		// Oversize multiplier limit when we resize the ribbon down...
 | 
					
						
							| 
									
										
										
										
											2017-04-18 01:53:21 +03:00
										 |  |  | 		'ribbon-resize-threshold': 2, | 
					
						
							| 
									
										
										
										
											2017-04-18 23:15:48 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// Sets size of ribbons in single image mode...
 | 
					
						
							| 
									
										
										
										
											2017-04-19 00:25:52 +03:00
										 |  |  | 		'ribbons-resize-single-image': 21, | 
					
						
							| 
									
										
										
										
											2017-04-20 03:46:35 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// can be:
 | 
					
						
							|  |  |  | 		// 	'hybrid'
 | 
					
						
							|  |  |  | 		// 	'resize'
 | 
					
						
							|  |  |  | 		'ribbons-in-place-update-mode': 'resize', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-25 03:33:28 +03:00
										 |  |  | 		'ribbons-in-place-update-timeout': 100, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// XXX
 | 
					
						
							|  |  |  | 		'ribbon-update-timeout': 120, | 
					
						
							| 
									
										
										
										
											2017-04-18 01:53:21 +03:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-05-04 02:24:41 +03:00
										 |  |  | 	// XXX trigger .alignRibbons(..) in correct spot...
 | 
					
						
							| 
									
										
										
										
											2017-03-08 06:18:47 +03:00
										 |  |  | 	updateRibbon: ['- Interface/Update partial ribbon size',  | 
					
						
							| 
									
										
										
										
											2017-04-20 01:44:04 +03:00
										 |  |  | 		function(target, w, size, threshold, preload){ | 
					
						
							| 
									
										
										
										
											2017-04-17 19:27:25 +03:00
										 |  |  | 			target = target instanceof jQuery  | 
					
						
							| 
									
										
										
										
											2017-05-17 04:53:00 +03:00
										 |  |  | 				? this.ribbons.elemGID(target) | 
					
						
							| 
									
										
										
										
											2017-04-17 19:27:25 +03:00
										 |  |  | 				// NOTE: data.getImage(..) can return null at start or end
 | 
					
						
							|  |  |  | 				// 		of ribbon, thus we need to account for this...
 | 
					
						
							|  |  |  | 				: (this.data.getImage(target) | 
					
						
							|  |  |  | 					|| this.data.getImage(target, 'after')) | 
					
						
							|  |  |  | 			w = w || this.screenwidth | 
					
						
							|  |  |  | 			// get config data and normalize...
 | 
					
						
							|  |  |  | 			size = (size  | 
					
						
							|  |  |  | 				|| this.config['ribbon-size-screens']  | 
					
						
							| 
									
										
										
										
											2017-04-18 01:53:21 +03:00
										 |  |  | 				|| 9) * w | 
					
						
							| 
									
										
										
										
											2017-04-17 19:27:25 +03:00
										 |  |  | 			threshold = threshold == 0 ? threshold | 
					
						
							|  |  |  | 				: (threshold  | 
					
						
							|  |  |  | 					|| this.config['ribbon-resize-threshold']  | 
					
						
							| 
									
										
										
										
											2017-04-18 01:53:21 +03:00
										 |  |  | 					|| 2) | 
					
						
							|  |  |  | 			var update_threshold = (this.config['ribbon-update-threshold'] || 2)  * w | 
					
						
							| 
									
										
										
										
											2017-04-20 01:44:04 +03:00
										 |  |  | 			preload = preload === undefined ? true : preload | 
					
						
							| 
									
										
										
										
											2017-04-17 19:27:25 +03:00
										 |  |  | 			var data = this.data | 
					
						
							|  |  |  | 			var ribbons = this.ribbons | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-20 04:00:28 +03:00
										 |  |  | 			var t = Date.now() | 
					
						
							| 
									
										
										
										
											2017-04-21 14:52:58 +03:00
										 |  |  | 			this.__last_ribbon_update = this.__last_ribbon_update || t | 
					
						
							| 
									
										
										
										
											2017-04-20 04:00:28 +03:00
										 |  |  | 			var timeout = this.config['ribbons-in-place-update-timeout'] | 
					
						
							| 
									
										
										
										
											2017-04-25 03:33:28 +03:00
										 |  |  | 			var	update_timeout = this.config['ribbon-update-timeout'] | 
					
						
							| 
									
										
										
										
											2017-04-20 04:00:28 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 19:27:25 +03:00
										 |  |  | 			// localize transition prevention... 
 | 
					
						
							|  |  |  | 			// NOTE: we can't get ribbon via target directly here as
 | 
					
						
							|  |  |  | 			// 		the target might not be loaded...
 | 
					
						
							|  |  |  | 			var r_gid = data.getRibbon(target) | 
					
						
							|  |  |  | 			if(r_gid == null){ | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			// NOTE: for the initial load this may be empty...
 | 
					
						
							|  |  |  | 			var r = ribbons.getRibbon(r_gid) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-18 01:53:21 +03:00
										 |  |  | 			// next/prev loaded... 
 | 
					
						
							|  |  |  | 			var img = this.ribbons.getImage(target) | 
					
						
							|  |  |  | 			var nl = img.nextAll('.image:not(.clone)').length | 
					
						
							|  |  |  | 			var pl = img.prevAll('.image:not(.clone)').length | 
					
						
							|  |  |  | 			var loaded = nl + pl + 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// next/prev available...
 | 
					
						
							| 
									
										
										
										
											2017-04-18 11:38:28 +03:00
										 |  |  | 			// NOTE: we do not include target in counts...
 | 
					
						
							|  |  |  | 			var gids = this.data.getImages(target, size, 'total') | 
					
						
							|  |  |  | 			var na = gids.slice(gids.indexOf(target)+1).length | 
					
						
							|  |  |  | 			var pa = gids.slice(0, gids.indexOf(target)).length | 
					
						
							| 
									
										
										
										
											2017-04-18 01:53:21 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// full resize...
 | 
					
						
							| 
									
										
										
										
											2017-04-18 23:15:48 +03:00
										 |  |  | 			if(threshold == 0 | 
					
						
							|  |  |  | 					// ribbon not loaded...
 | 
					
						
							|  |  |  | 					|| img.length == 0 | 
					
						
							| 
									
										
										
										
											2017-04-18 01:53:21 +03:00
										 |  |  | 					// ribbon shorter than we expect...
 | 
					
						
							|  |  |  | 					|| (loaded < size && na + pa > loaded) | 
					
						
							| 
									
										
										
										
											2017-04-18 23:15:48 +03:00
										 |  |  | 					// ribbon too long...
 | 
					
						
							| 
									
										
										
										
											2017-04-25 03:33:28 +03:00
										 |  |  | 					|| loaded > size * threshold | 
					
						
							|  |  |  | 					// passed hard threshold -- too close to edge...
 | 
					
						
							|  |  |  | 					|| (nl < w && na > nl) || (pl < w && pa > pl)){ | 
					
						
							|  |  |  | 				//console.log('RESIZE (sync)')
 | 
					
						
							| 
									
										
										
										
											2017-04-18 01:53:21 +03:00
										 |  |  | 				this.resizeRibbon(target, size) | 
					
						
							| 
									
										
										
										
											2017-04-18 23:15:48 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-20 03:46:35 +03:00
										 |  |  | 			// more complex cases...
 | 
					
						
							| 
									
										
										
										
											2017-04-18 11:38:28 +03:00
										 |  |  | 			// passed threshold on the right...
 | 
					
						
							|  |  |  | 			} else if((nl < update_threshold && na > nl)  | 
					
						
							| 
									
										
										
										
											2017-04-18 01:53:21 +03:00
										 |  |  | 					// passed threshold on the left...
 | 
					
						
							|  |  |  | 					|| (pl < update_threshold && pa > pl)  | 
					
						
							|  |  |  | 					// loaded more than we need by threshold...
 | 
					
						
							|  |  |  | 					|| nl + pl + 1 > size + update_threshold){ | 
					
						
							| 
									
										
										
										
											2017-04-25 03:33:28 +03:00
										 |  |  | 				// resize...
 | 
					
						
							| 
									
										
										
										
											2017-04-20 03:46:35 +03:00
										 |  |  | 				if(this.config['ribbons-in-place-update-mode'] == 'resize' | 
					
						
							|  |  |  | 						// no ribbon loaded...
 | 
					
						
							|  |  |  | 						|| r.length == 0  | 
					
						
							|  |  |  | 						// only if we are going slow...
 | 
					
						
							| 
									
										
										
										
											2017-04-20 04:00:28 +03:00
										 |  |  | 						|| (timeout != null  | 
					
						
							| 
									
										
										
										
											2017-04-21 14:52:58 +03:00
										 |  |  | 							&& (t - this.__last_ribbon_update > timeout)) | 
					
						
							| 
									
										
										
										
											2017-04-20 03:46:35 +03:00
										 |  |  | 						// full screen...
 | 
					
						
							|  |  |  | 						|| (this.toggleSingleImage  | 
					
						
							|  |  |  | 							&& this.toggleSingleImage('?') == 'on')){ | 
					
						
							| 
									
										
										
										
											2017-04-25 03:33:28 +03:00
										 |  |  | 					return function(){ | 
					
						
							|  |  |  | 						var that = this | 
					
						
							|  |  |  | 						// sync update...
 | 
					
						
							|  |  |  | 						if(update_timeout == null){ | 
					
						
							|  |  |  | 							//console.log('RESIZE (post)', t-this.__last_ribbon_update)
 | 
					
						
							|  |  |  | 							this.resizeRibbon(target, size) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						// async update...
 | 
					
						
							|  |  |  | 						} else { | 
					
						
							|  |  |  | 							this.__update_timeout | 
					
						
							|  |  |  | 								&& clearTimeout(this.__update_timeout) | 
					
						
							|  |  |  | 							this.__update_timeout = setTimeout(function(){  | 
					
						
							|  |  |  | 								//console.log('RESIZE (timeout)', t-this.__last_ribbon_update)
 | 
					
						
							|  |  |  | 								delete that.__update_timeout | 
					
						
							|  |  |  | 								that.resizeRibbon(target, size)  | 
					
						
							|  |  |  | 							}, update_timeout) | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2017-04-20 01:44:04 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-20 03:46:35 +03:00
										 |  |  | 				// in-place update...
 | 
					
						
							| 
									
										
										
										
											2017-04-21 14:52:58 +03:00
										 |  |  | 				// XXX this is faster than .resizeRibbon(..) but it's not
 | 
					
						
							| 
									
										
										
										
											2017-04-25 03:33:28 +03:00
										 |  |  | 				// 		used unconditionally because I can't get rid of
 | 
					
						
							| 
									
										
										
										
											2017-04-21 14:52:58 +03:00
										 |  |  | 				// 		sync up images being replaced...
 | 
					
						
							|  |  |  | 				// 		...note that .resizeRibbon(..) is substantially 
 | 
					
						
							|  |  |  | 				// 		slower (updates DOM), i.e. introduces a lag, but
 | 
					
						
							|  |  |  | 				// 		the results look OK...
 | 
					
						
							| 
									
										
										
										
											2017-04-25 03:33:28 +03:00
										 |  |  | 				// XXX approaches to try:
 | 
					
						
							|  |  |  | 				// 		- wait for images to preload and only then update...
 | 
					
						
							|  |  |  | 				// 		- preload images in part of a ribbon and when ready update...
 | 
					
						
							|  |  |  | 				// 			...this is like the first but we wait for less images...
 | 
					
						
							| 
									
										
										
										
											2017-04-20 01:44:04 +03:00
										 |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2017-04-21 14:52:58 +03:00
										 |  |  | 					//console.log('UPDATE', t - this.__last_ribbon_update)
 | 
					
						
							| 
									
										
										
										
											2017-04-20 01:44:04 +03:00
										 |  |  | 					var c = gids.indexOf(data.getImage('current', r_gid)) | 
					
						
							|  |  |  | 					var t = gids.indexOf(target) | 
					
						
							| 
									
										
										
										
											2017-04-20 03:46:35 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					ribbons | 
					
						
							| 
									
										
										
										
											2017-04-17 19:27:25 +03:00
										 |  |  | 						.preventTransitions(r) | 
					
						
							| 
									
										
										
										
											2017-04-20 03:46:35 +03:00
										 |  |  | 						.updateRibbonInPlace(gids, r_gid, target) | 
					
						
							| 
									
										
										
										
											2017-04-19 21:39:25 +03:00
										 |  |  | 						.restoreTransitions(r, true) | 
					
						
							| 
									
										
										
										
											2017-04-20 01:44:04 +03:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-04-17 19:27:25 +03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2017-04-20 04:00:28 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-21 14:52:58 +03:00
										 |  |  | 			this.__last_ribbon_update = t  | 
					
						
							| 
									
										
										
										
											2017-03-08 06:18:47 +03:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2017-03-08 06:12:25 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-08 06:18:47 +03:00
										 |  |  | var PartialRibbons =  | 
					
						
							|  |  |  | module.PartialRibbons = core.ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2017-03-08 06:12:25 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-08 06:18:47 +03:00
										 |  |  | 	priority: 'high', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-partial-ribbons-2', | 
					
						
							|  |  |  | 	exclusive: ['ui-partial-ribbons'], | 
					
						
							| 
									
										
										
										
											2017-03-08 06:12:25 +03:00
										 |  |  | 	depends: [ | 
					
						
							| 
									
										
										
										
											2017-03-08 06:18:47 +03:00
										 |  |  | 		'ui', | 
					
						
							| 
									
										
										
										
											2017-03-08 06:12:25 +03:00
										 |  |  | 	], | 
					
						
							| 
									
										
										
										
											2017-04-18 23:15:48 +03:00
										 |  |  | 	suggested: [ | 
					
						
							|  |  |  | 		'ui-partial-ribbons-precache', | 
					
						
							|  |  |  | 	], | 
					
						
							| 
									
										
										
										
											2017-03-08 06:12:25 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-08 06:18:47 +03:00
										 |  |  | 	actions: PartialRibbonsActions,  | 
					
						
							| 
									
										
										
										
											2017-03-08 06:12:25 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-08 06:18:47 +03:00
										 |  |  | 	handlers: [ | 
					
						
							| 
									
										
										
										
											2017-03-08 06:26:23 +03:00
										 |  |  | 		['focusImage.pre centerImage.pre',  | 
					
						
							|  |  |  | 			function(target, list){ | 
					
						
							| 
									
										
										
										
											2017-04-17 19:27:25 +03:00
										 |  |  | 				// NOTE: we have to do this as we are called BEFORE the 
 | 
					
						
							|  |  |  | 				// 		actual focus change happens...
 | 
					
						
							|  |  |  | 				// XXX is there a better way to do this???
 | 
					
						
							|  |  |  | 				target = list != null ? target = this.data.getImage(target, list) : target | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				this.updateRibbon(target) | 
					
						
							| 
									
										
										
										
											2017-03-08 06:26:23 +03:00
										 |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2017-04-18 11:38:28 +03:00
										 |  |  | 		['resizing.post', | 
					
						
							|  |  |  | 			function(_, unit, size){ | 
					
						
							| 
									
										
										
										
											2017-04-18 23:15:48 +03:00
										 |  |  | 				// keep constant size in single image...
 | 
					
						
							|  |  |  | 				if(this.toggleSingleImage && this.toggleSingleImage('?') == 'on'){ | 
					
						
							|  |  |  | 					this.updateRibbon( | 
					
						
							|  |  |  | 						'current',  | 
					
						
							|  |  |  | 						this.config['ribbons-resize-single-image'] || 13) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				} else if(unit == 'scale'){ | 
					
						
							| 
									
										
										
										
											2017-04-18 11:38:28 +03:00
										 |  |  | 					this.updateRibbon('current', this.screenwidth / size || 1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				} else if(unit == 'screenwidth'){ | 
					
						
							|  |  |  | 					this.updateRibbon('current', size || 1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				} else if(unit == 'screenheight'){ | 
					
						
							|  |  |  | 					size = size || 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// convert target height in ribbons to width in images...
 | 
					
						
							|  |  |  | 					// NOTE: this does not account for compensation that 
 | 
					
						
							|  |  |  | 					// 		.updateRibbon(..) makes for fitting whole image
 | 
					
						
							|  |  |  | 					// 		counts, this is a small enough error so as not
 | 
					
						
							|  |  |  | 					// 		to waste time on...
 | 
					
						
							|  |  |  | 					var s = this.ribbons.scale() | 
					
						
							|  |  |  | 					var h = this.ribbons.getScreenHeightRibbons() | 
					
						
							|  |  |  | 					var w = this.ribbons.getScreenWidthImages() | 
					
						
							|  |  |  | 					var nw = w / (h/size) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					this.updateRibbon('current', nw) | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-03-08 06:26:23 +03:00
										 |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2017-03-08 06:18:47 +03:00
										 |  |  | 	], | 
					
						
							| 
									
										
										
										
											2017-03-08 06:12:25 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /********************************************************************** | 
					
						
							|  |  |  | * vim:set ts=4 sw=4 :                               */ return module }) |