| 
									
										
										
										
											2014-07-20 03:02:18 +04:00
										 |  |  | /********************************************************************** | 
					
						
							|  |  |  | *  | 
					
						
							|  |  |  | * | 
					
						
							| 
									
										
										
										
											2015-05-21 04:00:28 +03:00
										 |  |  | * Base architecture: | 
					
						
							|  |  |  | * | 
					
						
							|  |  |  | * 	Two trees are maintained: | 
					
						
							|  |  |  | * 		- no-gui | 
					
						
							|  |  |  | * 		- gui | 
					
						
							|  |  |  | * | 
					
						
							|  |  |  | * 	no-gui: | 
					
						
							|  |  |  | * 		aggregates: | 
					
						
							|  |  |  | * 			data | 
					
						
							|  |  |  | * 			images | 
					
						
							|  |  |  | * 		defines universal set of actions to manage and control state | 
					
						
							|  |  |  | * | 
					
						
							|  |  |  | * 	gui: | 
					
						
							|  |  |  | * 		extends no-gui and adds: | 
					
						
							|  |  |  | * 			ribbons | 
					
						
							|  |  |  | * 		extends and defines a set of gui control and state actions | 
					
						
							|  |  |  | * | 
					
						
							| 
									
										
										
										
											2014-07-20 03:02:18 +04:00
										 |  |  | * | 
					
						
							|  |  |  | **********************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-29 19:09:05 +04:00
										 |  |  | define(function(require){ var module = {} | 
					
						
							|  |  |  | console.log('>>> viewer') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-20 03:02:18 +04:00
										 |  |  | //var DEBUG = DEBUG != null ? DEBUG : true
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | var actions = require('lib/actions') | 
					
						
							| 
									
										
										
										
											2014-12-05 00:10:01 +03:00
										 |  |  | var features = require('lib/features') | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | var data = require('data') | 
					
						
							| 
									
										
										
										
											2014-11-07 02:02:55 +03:00
										 |  |  | var images = require('images') | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | var ribbons = require('ribbons') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-20 03:02:18 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-28 03:47:44 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | // helpers...
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | function reloadAfter(force){ | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 	return function(){ | 
					
						
							|  |  |  | 		return function(){ | 
					
						
							|  |  |  | 			// NOTE: this may seem like cheating, but .reload() should
 | 
					
						
							|  |  |  | 			// 		be very efficient, reusing all of the items loaded...
 | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | 			this.reload(force) | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-22 00:33:17 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-06 02:42:16 +03:00
										 |  |  | // XXX make this compatible with multiple images...
 | 
					
						
							| 
									
										
										
										
											2014-11-08 02:48:04 +03:00
										 |  |  | // XXX for muptiple targets this will just do a .reload()...
 | 
					
						
							| 
									
										
										
										
											2014-11-02 03:13:23 +03:00
										 |  |  | function updateImagePosition(actions, target){ | 
					
						
							| 
									
										
										
										
											2014-11-11 17:33:07 +03:00
										 |  |  | 	if(actions.ribbons.getRibbonSet().length == 0){ | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-08 02:48:04 +03:00
										 |  |  | 	target = target || actions.current | 
					
						
							| 
									
										
										
										
											2014-11-02 03:35:26 +03:00
										 |  |  | 	target = target instanceof jQuery  | 
					
						
							|  |  |  | 		? actions.ribbons.getElemGID(target)  | 
					
						
							|  |  |  | 		: target | 
					
						
							| 
									
										
										
										
											2014-11-02 03:13:23 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	var source_ribbon = actions.ribbons.getElemGID(actions.ribbons.getRibbon(target)) | 
					
						
							|  |  |  | 	var source_order = actions.data.getImageOrder(target) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return function(){ | 
					
						
							|  |  |  | 		actions.ribbons.preventTransitions() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-08 02:48:04 +03:00
										 |  |  | 		// XXX hack...
 | 
					
						
							|  |  |  | 		if(target.constructor === Array){ | 
					
						
							|  |  |  | 			actions.reload() | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 03:13:23 +03:00
										 |  |  | 		var target_ribbon = actions.data.getRibbon(target) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// nothing changed...
 | 
					
						
							|  |  |  | 		if(source_ribbon == target_ribbon  | 
					
						
							|  |  |  | 				&& actions.data.getImageOrder(target) == source_order){ | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 15:13:49 +03:00
										 |  |  | 		// place image at position...
 | 
					
						
							| 
									
										
										
										
											2014-11-02 03:13:23 +03:00
										 |  |  | 		var to = actions.data.getImage(target, 'next') | 
					
						
							|  |  |  | 		if(to != null){ | 
					
						
							|  |  |  | 			actions.ribbons.placeImage(target, to, 'before') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2014-11-02 15:13:49 +03:00
										 |  |  | 			// place image after position...
 | 
					
						
							| 
									
										
										
										
											2014-11-02 03:13:23 +03:00
										 |  |  | 			to = actions.data.getImage(target, 'prev') | 
					
						
							|  |  |  | 			if(to != null){ | 
					
						
							|  |  |  | 				actions.ribbons.placeImage(target, to, 'after') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// new ribbon...
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				to = actions.data.getRibbon(target) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if(actions.ribbons.getRibbon(to).length == 0){ | 
					
						
							|  |  |  | 					actions.ribbons.placeRibbon(to, actions.data.getRibbonOrder(target)) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				actions.ribbons.placeImage(target, to) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if(actions.data.getImages(source_ribbon).length == 0){ | 
					
						
							|  |  |  | 			actions.ribbons.getRibbon(source_ribbon).remove() | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		actions.focusImage() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		actions.ribbons.restoreTransitions(true) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-19 19:30:38 +03:00
										 |  |  | // mode can be:
 | 
					
						
							|  |  |  | // 	"ribbon"	- next marked in current ribbon (default)
 | 
					
						
							|  |  |  | // 	"all"		- next marked in sequence
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // XXX add support for tag lists...
 | 
					
						
							|  |  |  | function makeTagWalker(direction, dfl_tag){ | 
					
						
							|  |  |  | 	var meth = direction == 'next' ? 'nextImage' : 'prevImage' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return function(tag, mode){ | 
					
						
							|  |  |  | 		mode = mode == null ? 'all' : mode | 
					
						
							|  |  |  | 		tag = tag || dfl_tag | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// account for no tags or no images tagged...
 | 
					
						
							|  |  |  | 		var lst = this.data.tags != null ? this.data.tags[tag] : [] | 
					
						
							|  |  |  | 		lst = lst || [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if(mode == 'ribbon'){ | 
					
						
							|  |  |  | 			this[meth](this.data.getImages(lst, 'current')) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			this[meth](lst) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-07 19:44:52 +03:00
										 |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ImageGridFeatures = | 
					
						
							|  |  |  | module.ImageGridFeatures = Object.create(features.FeatureSet) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-20 03:02:18 +04:00
										 |  |  | /*********************************************************************/ | 
					
						
							| 
									
										
										
										
											2014-10-08 04:52:41 +04:00
										 |  |  | //
 | 
					
						
							|  |  |  | // XXX Tasks to accomplish here:
 | 
					
						
							|  |  |  | // 	- life-cycle actions/events
 | 
					
						
							|  |  |  | // 		- setup
 | 
					
						
							|  |  |  | // 		- reset
 | 
					
						
							|  |  |  | // 	- "features" and the mechanism to turn them on or off (action-sets)
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-07 19:44:52 +03:00
										 |  |  | var BaseActions =  | 
					
						
							|  |  |  | module.BaseActions =  | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | actions.Actions({ | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 	config: { | 
					
						
							| 
									
										
										
										
											2014-11-28 05:08:03 +03:00
										 |  |  | 		// see .direction for details...
 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 		'steps-to-change-direction': 3, | 
					
						
							| 
									
										
										
										
											2015-12-03 00:58:43 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// determines the image selection mode when focusing ribbons...
 | 
					
						
							|  |  |  | 		//
 | 
					
						
							|  |  |  | 		// supported modes:
 | 
					
						
							|  |  |  | 		// 	'order'		- select image closest to current in order
 | 
					
						
							|  |  |  | 		// 	'first'		- select first image
 | 
					
						
							|  |  |  | 		// 	'last'		- select last image
 | 
					
						
							|  |  |  | 		// 	'visual'	- select image closest visually
 | 
					
						
							|  |  |  | 		//'ribbon-focus-mode': 'order',
 | 
					
						
							|  |  |  | 		'ribbon-focus-mode': 'visual', | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// basic state...
 | 
					
						
							|  |  |  | 	// NOTE: the setters in the following use the appropriate actions
 | 
					
						
							|  |  |  | 	// 		so to avoid recursion do not use these in the specific 
 | 
					
						
							|  |  |  | 	// 		actions...
 | 
					
						
							| 
									
										
										
										
											2014-11-15 03:17:21 +03:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:18:33 +04:00
										 |  |  | 	// Base ribbon...
 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 	get base(){ | 
					
						
							|  |  |  | 		return this.data == null ? null : this.data.base | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	set base(value){ | 
					
						
							|  |  |  | 		this.setBaseRibbon(value) | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:18:33 +04:00
										 |  |  | 	// Current image...
 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 	get current(){ | 
					
						
							|  |  |  | 		return this.data == null ? null : this.data.current | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	set current(value){ | 
					
						
							|  |  |  | 		this.focusImage(value) | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:18:33 +04:00
										 |  |  | 	// Current ribbon...
 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 	get currentRibbon(){ | 
					
						
							|  |  |  | 		return this.data == null ? null : this.data.getRibbon() | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	set currentRibbon(value){ | 
					
						
							|  |  |  | 		this.focusRibbon(value) | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:18:33 +04:00
										 |  |  | 	// Default direction...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// This can be 'left' or 'right', other values are ignored.
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// The system has inertial direction change, after >N steps of 
 | 
					
						
							|  |  |  | 	// movement in one direction it takes N steps to reverse the default
 | 
					
						
							|  |  |  | 	// direction.
 | 
					
						
							|  |  |  | 	// The number of steps (N) is set in:
 | 
					
						
							|  |  |  | 	// 		.config['steps-to-change-direction']
 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 	//
 | 
					
						
							|  |  |  | 	// NOTE: to force direction change append a '!' to the direction.
 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:18:33 +04:00
										 |  |  | 	// 		e.g. X.direction = 'left!'
 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 	get direction(){ | 
					
						
							|  |  |  | 		return this._direction >= 0 ? 'right' | 
					
						
							|  |  |  | 			: this._direction < 0 ? 'left' | 
					
						
							|  |  |  | 			: 'right' | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	set direction(value){ | 
					
						
							|  |  |  | 		// force direction change...
 | 
					
						
							|  |  |  | 		if(value.slice(-1) == '!'){ | 
					
						
							|  |  |  | 			this._direction = value == 'left!' ? -1 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:18:33 +04:00
										 |  |  | 				: value == 'right!' ? 0 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 				: this._direction | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// 'update' direction...
 | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			value = value == 'left' ? -1  | 
					
						
							| 
									
										
										
										
											2014-10-11 17:18:33 +04:00
										 |  |  | 				: value == 'right' ? 1 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 				: 0 | 
					
						
							|  |  |  | 			var d = (this._direction || 0) + value | 
					
						
							|  |  |  | 			var s = this.config['steps-to-change-direction'] | 
					
						
							|  |  |  | 			s = s < 1 ? 1 : s | 
					
						
							|  |  |  | 			// cap the direction value between -s and s-1...
 | 
					
						
							|  |  |  | 			// NOTE: we use s-1 instead of s as 0/null is a positive 
 | 
					
						
							|  |  |  | 			// 		direction...
 | 
					
						
							|  |  |  | 			d = d >= s ? s-1 : d | 
					
						
							|  |  |  | 			d = d < -s ? -s : d | 
					
						
							|  |  |  | 			this._direction = d | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-10-11 17:18:33 +04:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 	// basic life-cycle actions...
 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:18:33 +04:00
										 |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2014-12-08 13:04:09 +03:00
										 |  |  | 	// XXX do we need to call .syncTags(..) here???
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	load: ['File|Interface/', | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 		function(d){ | 
					
						
							| 
									
										
										
										
											2014-11-07 02:02:55 +03:00
										 |  |  | 			this.images = images.Images(d.images) | 
					
						
							| 
									
										
										
										
											2014-11-14 21:57:55 +03:00
										 |  |  | 			this.data = data.Data(d.data) | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	clear: ['File|Interface/', | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 		function(){ | 
					
						
							|  |  |  | 			delete this.data | 
					
						
							| 
									
										
										
										
											2014-12-08 13:04:09 +03:00
										 |  |  | 			delete this.images | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 21:57:55 +03:00
										 |  |  | 	// XXX should this be here???
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	loadURLs: ['File/Load a URL list', | 
					
						
							| 
									
										
										
										
											2015-12-06 06:21:37 +03:00
										 |  |  | 		function(lst, base){ | 
					
						
							| 
									
										
										
										
											2015-12-05 07:50:04 +03:00
										 |  |  | 			this.clear() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-06 06:21:37 +03:00
										 |  |  | 			this.images = images.Images.fromArray(lst, base) | 
					
						
							| 
									
										
										
										
											2014-11-16 04:40:32 +03:00
										 |  |  | 			this.data = data.Data.fromArray(this.images.keys()) | 
					
						
							| 
									
										
										
										
											2014-11-14 21:57:55 +03:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-17 01:21:14 +03:00
										 |  |  | 	// XXX experimental...
 | 
					
						
							|  |  |  | 	// 		...the bad thing about this is that we can not extend this,
 | 
					
						
							|  |  |  | 	// 		adding new items to the resulting structure...
 | 
					
						
							| 
									
										
										
										
											2014-11-17 04:24:07 +03:00
										 |  |  | 	// XXX is this the correct way to go???
 | 
					
						
							|  |  |  | 	// 		...can we save simple attribute values???
 | 
					
						
							| 
									
										
										
										
											2015-09-15 03:38:30 +03:00
										 |  |  | 	json: ['File/Dump state as JSON object', | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 		'This will collect JSON data from every available attribute ' | 
					
						
							| 
									
										
										
										
											2014-11-17 18:10:09 +03:00
										 |  |  | 			+'supporting the .dumpJSON() method.', | 
					
						
							| 
									
										
										
										
											2015-12-05 04:38:15 +03:00
										 |  |  | 		function(mode){ | 
					
						
							| 
									
										
										
										
											2014-11-17 04:24:07 +03:00
										 |  |  | 			var res = {} | 
					
						
							|  |  |  | 			for(var k in this){ | 
					
						
							| 
									
										
										
										
											2015-12-05 04:38:15 +03:00
										 |  |  | 				// dump the base crop state...
 | 
					
						
							|  |  |  | 				if(k == 'data' && this.crop_stack && this.crop_stack.length > 0){ | 
					
						
							|  |  |  | 					res[k] = this.crop_stack[0].dumpJSON() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// dump current state...
 | 
					
						
							|  |  |  | 				} else if(this[k] != null && this[k].dumpJSON != null){ | 
					
						
							| 
									
										
										
										
											2014-11-17 04:24:07 +03:00
										 |  |  | 					res[k] = this[k].dumpJSON() | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-11-17 01:21:14 +03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-11-17 04:24:07 +03:00
										 |  |  | 			return res | 
					
						
							| 
									
										
										
										
											2014-11-17 01:21:14 +03:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 	// basic navigation...
 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:18:33 +04:00
										 |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	focusImage: ['Navigate/Focus image', | 
					
						
							| 
									
										
										
										
											2014-10-19 22:32:33 +04:00
										 |  |  | 		function(img, list){ | 
					
						
							|  |  |  | 			this.data.focusImage(img, list) | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-12-03 00:58:43 +03:00
										 |  |  | 	// Focuses a ribbon by selecting an image in it...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// modes supported:
 | 
					
						
							|  |  |  | 	// 	'order'			- focus closest image to current in order
 | 
					
						
							|  |  |  | 	// 	'first'/'last'	- focus first/last image in ribbon
 | 
					
						
							|  |  |  | 	// 	'visual'		- focus visually closest to current image
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// NOTE: default mode is set in .config.ribbon-focus-mode
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	focusRibbon: ['Navigate/Focus Ribbon', | 
					
						
							| 
									
										
										
										
											2015-12-03 00:58:43 +03:00
										 |  |  | 		function(target, mode){ | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 			var data = this.data | 
					
						
							|  |  |  | 			var r = data.getRibbon(target) | 
					
						
							| 
									
										
										
										
											2014-10-13 00:18:26 +04:00
										 |  |  | 			if(r == null){ | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			var c = data.getRibbonOrder() | 
					
						
							|  |  |  | 			var i = data.getRibbonOrder(r) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-03 00:58:43 +03:00
										 |  |  | 			mode = mode || this.config['ribbon-focus-mode'] || 'order' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-13 00:18:26 +04:00
										 |  |  | 			// NOTE: we are not changing the direction here based on 
 | 
					
						
							|  |  |  | 			// 		this.direction as swap will confuse the user...
 | 
					
						
							|  |  |  | 			var direction = c < i ? 'before' : 'after' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-03 00:58:43 +03:00
										 |  |  | 			// closest image in order...
 | 
					
						
							|  |  |  | 			if(mode == 'order'){ | 
					
						
							|  |  |  | 				var t = data.getImage(r, direction) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// if there are no images in the requied direction, try the 
 | 
					
						
							|  |  |  | 				// other way...
 | 
					
						
							|  |  |  | 				t = t == null ? data.getImage(r, direction == 'before' ? 'after' : 'before') : t | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// first/last image...
 | 
					
						
							|  |  |  | 			} else if(mode == 'first' || mode == 'last'){ | 
					
						
							|  |  |  | 				var t = data.getImage(mode, r) | 
					
						
							| 
									
										
										
										
											2014-10-13 00:18:26 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-03 00:58:43 +03:00
										 |  |  | 			// visually closest image...
 | 
					
						
							|  |  |  | 			//} else if(mode == 'visual'){
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				var ribbons = this.ribbons | 
					
						
							|  |  |  | 				var t = ribbons.getImageByPosition('current', r) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if(t.length > 1){ | 
					
						
							|  |  |  | 					t = t.eq(direction == 'before' ? 0 : 1) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				t = ribbons.getElemGID(t) | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			this.focusImage(t, r) | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	setBaseRibbon: ['Edit/Set base ribbon', | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 		function(target){ this.data.setBase(target) }], | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-24 04:51:35 +04:00
										 |  |  | 	// shorthands...
 | 
					
						
							|  |  |  | 	// XXX do we reset direction on these???
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	firstImage: ['Navigate/First image in current ribbon', | 
					
						
							| 
									
										
										
										
											2014-10-22 13:11:26 +04:00
										 |  |  | 		function(all){ this.focusImage(all == null ? 'first' : 0) }], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	lastImage: ['Navigate/Last image in current ribbon', | 
					
						
							| 
									
										
										
										
											2014-10-22 13:11:26 +04:00
										 |  |  | 		function(all){ this.focusImage(all == null ? 'last' : -1) }], | 
					
						
							| 
									
										
										
										
											2014-11-26 04:15:02 +03:00
										 |  |  | 	// XXX these break if image at first/last position are not loaded (crop, group, ...)
 | 
					
						
							|  |  |  | 	// XXX do we actually need these???
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	firstGlobalImage: ['Navigate/First globally image', | 
					
						
							| 
									
										
										
										
											2014-10-22 13:11:26 +04:00
										 |  |  | 		function(){ this.firstImage(true) }], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	lastGlobalImage: ['Navigate/Last globally image', | 
					
						
							| 
									
										
										
										
											2014-10-22 13:11:26 +04:00
										 |  |  | 		function(){ this.lastImage(true) }], | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-19 19:30:38 +03:00
										 |  |  | 	// XXX skip unloaded images...
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	prevImage: ['Navigate/Previous image', | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 		function(a){  | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 			// keep track of traverse direction...
 | 
					
						
							|  |  |  | 			this.direction = 'left' | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if(typeof(a) == typeof(123)){ | 
					
						
							|  |  |  | 				// XXX should this force direction change???
 | 
					
						
							|  |  |  | 				this.focusImage(this.data.getImage('current', -a) | 
					
						
							|  |  |  | 						// go to the first image if it's closer than s...
 | 
					
						
							|  |  |  | 						|| this.data.getImage('first')) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				this.focusImage('prev', a)  | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	nextImage: ['Navigate/Next image', | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 		function(a){  | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 			// keep track of traverse direction...
 | 
					
						
							|  |  |  | 			this.direction = 'right' | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if(typeof(a) == typeof(123)){ | 
					
						
							|  |  |  | 				// XXX should this force direction change???
 | 
					
						
							|  |  |  | 				this.focusImage(this.data.getImage('current', a) | 
					
						
							|  |  |  | 						// go to the first image if it's closer than s...
 | 
					
						
							|  |  |  | 						|| this.data.getImage('last')) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				this.focusImage('next', a)  | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-19 19:30:38 +03:00
										 |  |  | 	// XXX skip unloaded images...
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	prevImageInOrder: ['Navigate/Previous image in order', | 
					
						
							| 
									
										
										
										
											2014-11-19 19:30:38 +03:00
										 |  |  | 		function(){ this.prevImage(this.data.getImages(this.data.order)) }], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	nextImageInOrder: ['Navigate/Next image in order', | 
					
						
							| 
									
										
										
										
											2014-11-19 19:30:38 +03:00
										 |  |  | 		function(){ this.nextImage(this.data.getImages(this.data.order)) }], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// XXX should these be here???
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	prevTagged: ['Navigate/Previous image tagged with tag', | 
					
						
							| 
									
										
										
										
											2014-11-19 19:30:38 +03:00
										 |  |  | 		makeTagWalker('prev')], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	nextTagged: ['Navigate/Next image tagged with tag', | 
					
						
							| 
									
										
										
										
											2014-11-19 19:30:38 +03:00
										 |  |  | 		makeTagWalker('next')], | 
					
						
							| 
									
										
										
										
											2014-10-19 22:32:33 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	firstRibbon: ['Navigate/First ribbon', | 
					
						
							| 
									
										
										
										
											2014-10-21 21:17:44 +04:00
										 |  |  | 		function(){ this.focusRibbon('first') }], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	lastRibbon: ['Navigate/Last ribbon', | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 		function(){ this.focusRibbon('last') }], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	prevRibbon: ['Navigate/Previous ribbon', | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 		function(){ this.focusRibbon('before') }], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	nextRibbon: ['Navigate/Next ribbon', | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 		function(){ this.focusRibbon('after') }], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-12 03:14:29 +04:00
										 |  |  | 	// basic ribbon editing...
 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 	//
 | 
					
						
							|  |  |  | 	// NOTE: for all of these, current/ribbon image is a default...
 | 
					
						
							| 
									
										
										
										
											2014-10-19 00:41:50 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// XXX to be used for things like mark/place and dragging...
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	shiftImageTo: ['Edit|Sort/', | 
					
						
							| 
									
										
										
										
											2014-10-19 00:41:50 +04:00
										 |  |  | 		function(target, to){ | 
					
						
							|  |  |  | 			// XXX
 | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-10-18 17:32:41 +04:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	shiftImageUp: ['Edit/Shift image up', | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 		'If implicitly shifting current image (i.e. no arguments), focus ' | 
					
						
							|  |  |  | 			+'will shift to the next or previous image in the current ' | 
					
						
							|  |  |  | 			+'ribbon depending on current direction.', | 
					
						
							|  |  |  | 		function(target){  | 
					
						
							| 
									
										
										
										
											2014-10-19 00:41:50 +04:00
										 |  |  | 			// by default we need to focus another image in the same ribbon...
 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 			if(target == null){ | 
					
						
							|  |  |  | 				var direction = this.direction == 'right' ? 'next' : 'prev' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				var cur = this.data.getImage() | 
					
						
							|  |  |  | 				var next = this.data.getImage(direction) | 
					
						
							| 
									
										
										
										
											2014-10-12 03:14:29 +04:00
										 |  |  | 				next = next == null  | 
					
						
							|  |  |  | 					? this.data.getImage(direction == 'next' ? 'prev' : 'next')  | 
					
						
							|  |  |  | 					: next | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				this.data.shiftImageUp(cur) | 
					
						
							|  |  |  | 				this.focusImage(next) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// if a specific target is given, just shift it...
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				this.data.shiftImageUp(target) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	shiftImageDown: ['Edit/Shift image down', | 
					
						
							| 
									
										
										
										
											2014-10-11 17:18:33 +04:00
										 |  |  | 		'If implicitly shifting current image (i.e. no arguments), focus ' | 
					
						
							|  |  |  | 			+'will shift to the next or previous image in the current ' | 
					
						
							|  |  |  | 			+'ribbon depending on current direction.', | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 		function(target){  | 
					
						
							| 
									
										
										
										
											2014-10-19 00:41:50 +04:00
										 |  |  | 			// by default we need to focus another image in the same ribbon...
 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 			if(target == null){ | 
					
						
							|  |  |  | 				var direction = this.direction == 'right' ? 'next' : 'prev' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				var cur = this.data.getImage() | 
					
						
							|  |  |  | 				var next = this.data.getImage(direction) | 
					
						
							| 
									
										
										
										
											2014-10-12 03:14:29 +04:00
										 |  |  | 				next = next == null  | 
					
						
							|  |  |  | 					? this.data.getImage(direction == 'next' ? 'prev' : 'next')  | 
					
						
							|  |  |  | 					: next | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				this.data.shiftImageDown(cur) | 
					
						
							|  |  |  | 				this.focusImage(next) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// if a specific target is given, just shift it...
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				this.data.shiftImageDown(target) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	shiftImageUpNewRibbon: ['Edit/Shift image up to a new empty ribbon', | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 		function(target){ | 
					
						
							|  |  |  | 			this.data.newRibbon(target) | 
					
						
							|  |  |  | 			this.shiftImageUp(target) | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	shiftImageDownNewRibbon: ['Edit/Shift image down to a new empty ribbon', | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 		function(target){ | 
					
						
							|  |  |  | 			this.data.newRibbon(target, 'below') | 
					
						
							| 
									
										
										
										
											2014-10-12 04:52:44 +04:00
										 |  |  | 			this.shiftImageDown(target) | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	shiftImageLeft: ['Edit|Sort/Shift image left', | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 		function(target){  | 
					
						
							|  |  |  | 			if(target == null){ | 
					
						
							|  |  |  | 				this.direction = 'left' | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			this.data.shiftImageLeft(target)  | 
					
						
							|  |  |  | 			this.focusImage() | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	shiftImageRight: ['Edit|Sort/Shift image right', | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 		function(target){  | 
					
						
							|  |  |  | 			if(target == null){ | 
					
						
							|  |  |  | 				this.direction = 'right' | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-10-12 03:14:29 +04:00
										 |  |  | 			this.data.shiftImageRight(target)  | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 			this.focusImage() | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	shiftRibbonUp: ['Edit/Shift ribbon up', | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 		function(target){  | 
					
						
							|  |  |  | 			this.data.shiftRibbonUp(target)  | 
					
						
							|  |  |  | 			// XXX is this the right way to go/???
 | 
					
						
							|  |  |  | 			this.focusImage() | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	shiftRibbonDown: ['Edit/Shift ribbon down', | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 		function(target){  | 
					
						
							|  |  |  | 			this.data.shiftRibbonDown(target) | 
					
						
							|  |  |  | 			// XXX is this the right way to go/???
 | 
					
						
							|  |  |  | 			this.focusImage() | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-01-07 17:42:09 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// these operate on the current image...
 | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	travelImageUp: ['Edit/Travel with the current image up (Shift up and keep focus)', | 
					
						
							| 
									
										
										
										
											2015-01-07 17:42:09 +03:00
										 |  |  | 		function(target){ | 
					
						
							|  |  |  | 			target = target || this.current | 
					
						
							|  |  |  | 			this.shiftImageUp(target) | 
					
						
							|  |  |  | 			this.focusImage(target) | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	travelImageDown: ['Edit/Travel with the current image down (Shift down and keep focus)', | 
					
						
							| 
									
										
										
										
											2015-01-07 17:42:09 +03:00
										 |  |  | 		function(target){ | 
					
						
							|  |  |  | 			target = target || this.current | 
					
						
							|  |  |  | 			this.shiftImageDown(target) | 
					
						
							|  |  |  | 			this.focusImage(target) | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-12 03:14:29 +04:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	reverseImages: ['Edit|Sort/Reverse image order', | 
					
						
							| 
									
										
										
										
											2014-10-13 00:18:26 +04:00
										 |  |  | 		function(){ this.data.reverseImages() }], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	reverseRibbons: ['Edit|Sort/Reverse ribbon order', | 
					
						
							| 
									
										
										
										
											2014-10-18 04:36:47 +04:00
										 |  |  | 		function(){ this.data.reverseRibbons() }], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-03 05:27:47 +03:00
										 |  |  | 	// XXX align to ribbon...
 | 
					
						
							| 
									
										
										
										
											2014-10-12 03:14:29 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-18 04:26:52 +04:00
										 |  |  | 	// XXX this also requires images...
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	sortImages: ['Sort/', | 
					
						
							| 
									
										
										
										
											2014-11-27 06:38:17 +03:00
										 |  |  | 		function(method){  | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-10-12 03:14:29 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// basic image editing...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2014-11-07 02:02:55 +03:00
										 |  |  | 	// XXX should we have .rotate(..) and .flip(..) generic actions???
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	rotateCW: ['Image|Edit/',  | 
					
						
							| 
									
										
										
										
											2014-11-15 18:48:45 +03:00
										 |  |  | 		function(target){  | 
					
						
							|  |  |  | 			if(this.images != null){ | 
					
						
							|  |  |  | 				this.images.rotateImage(this.data.getImage(target), 'cw') | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	rotateCCW: ['Image|Edit/',  | 
					
						
							| 
									
										
										
										
											2014-11-15 18:48:45 +03:00
										 |  |  | 		function(target){  | 
					
						
							|  |  |  | 			if(this.images != null){ | 
					
						
							|  |  |  | 				this.images.rotateImage(this.data.getImage(target), 'ccw') | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	flipVertical: ['Image|Edit/', | 
					
						
							| 
									
										
										
										
											2014-11-15 18:48:45 +03:00
										 |  |  | 		function(target){  | 
					
						
							|  |  |  | 			if(this.images != null){ | 
					
						
							|  |  |  | 				this.images.flipImage(this.data.getImage(target), 'vertical') | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	flipHorizontal: ['Image|Edit/', | 
					
						
							| 
									
										
										
										
											2014-11-15 18:48:45 +03:00
										 |  |  | 		function(target){  | 
					
						
							|  |  |  | 			if(this.images != null){ | 
					
						
							|  |  |  | 				this.images.flipImage(this.data.getImage(target), 'horizontal') | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-10-12 03:14:29 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-08 03:45:04 +03:00
										 |  |  | 	// tags...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// XXX mark updated...
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	tag: ['Tag/Tag image(s)', | 
					
						
							| 
									
										
										
										
											2014-12-08 03:45:04 +03:00
										 |  |  | 		function(tags, gids){ | 
					
						
							|  |  |  | 			gids = gids || this.current | 
					
						
							|  |  |  | 			gids = gids.constructor !== Array ? [gids] : gids | 
					
						
							|  |  |  | 			tags = tags.constructor !== Array ? [tags] : tags | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// data...
 | 
					
						
							|  |  |  | 			this.data.tag(tags, gids) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// images...
 | 
					
						
							|  |  |  | 			var images = this.images | 
					
						
							|  |  |  | 			gids.forEach(function(gid){ | 
					
						
							|  |  |  | 				var img = images[gid] | 
					
						
							|  |  |  | 				if(img == null){ | 
					
						
							|  |  |  | 					img = images[gid] = {} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				if(img.tags == null){ | 
					
						
							|  |  |  | 					img.tags = [] | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				img.tags = img.tags.concat(tags).unique() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// XXX mark updated...
 | 
					
						
							|  |  |  | 			}) | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	// XXX mark updated...
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	untag: ['Tag/Untag image(s)', | 
					
						
							| 
									
										
										
										
											2014-12-08 03:45:04 +03:00
										 |  |  | 		function(tags, gids){ | 
					
						
							|  |  |  | 			gids = gids || this.current | 
					
						
							|  |  |  | 			gids = gids.constructor !== Array ? [gids] : gids | 
					
						
							|  |  |  | 			tags = tags.constructor !== Array ? [tags] : tags | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// data...
 | 
					
						
							|  |  |  | 			this.data.untag(tags, gids) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// images...
 | 
					
						
							|  |  |  | 			var images = this.images | 
					
						
							|  |  |  | 			gids.forEach(function(gid){ | 
					
						
							|  |  |  | 				var img = images[gid] | 
					
						
							|  |  |  | 				if(img == null || img.tags == null){ | 
					
						
							|  |  |  | 					return | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				img.tags = img.tags.filter(function(tag){ return tags.indexOf(tag) < 0 }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if(img.tags.length == 0){ | 
					
						
							|  |  |  | 					delete img.tags | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// XXX mark updated...
 | 
					
						
							|  |  |  | 			}) | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-12-08 13:04:09 +03:00
										 |  |  | 	// Sync tags...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// 	Sync both ways...
 | 
					
						
							|  |  |  | 	//	.syncTags()
 | 
					
						
							|  |  |  | 	//	.syncTags('both')
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	//	Sync from .data
 | 
					
						
							|  |  |  | 	//	.syncTags('data')
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	//	Sync from .images
 | 
					
						
							|  |  |  | 	//	.syncTags('images')
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	//	Sync from <images> object
 | 
					
						
							|  |  |  | 	//	.syncTags(<images>)
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// NOTE: mode is data.tagsToImages(..) / data.tagsFromImages(..) 
 | 
					
						
							|  |  |  | 	// 		compatible...
 | 
					
						
							|  |  |  | 	// NOTE: setting source to 'both' and mode to 'reset' is the same as
 | 
					
						
							|  |  |  | 	// 		'images' and 'reset' as all .data tags will be lost on first 
 | 
					
						
							|  |  |  | 	// 		pass...
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	syncTags: ['Tag/Synchoronize tags between data and images', | 
					
						
							| 
									
										
										
										
											2014-12-08 13:04:09 +03:00
										 |  |  | 		function(source, mode){ | 
					
						
							|  |  |  | 			// can't do anything if either .data or .images are not 
 | 
					
						
							|  |  |  | 			// defined...
 | 
					
						
							|  |  |  | 			if(this.data == null || this.images == null){ | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			source = source || 'both' | 
					
						
							|  |  |  | 			mode = mode || 'merge' | 
					
						
							|  |  |  | 			images = this.images | 
					
						
							|  |  |  | 			if(typeof(source) != typeof('str')){ | 
					
						
							|  |  |  | 				images = source | 
					
						
							|  |  |  | 				source = 'images' | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if(source == 'data' || source == 'both'){ | 
					
						
							|  |  |  | 				this.data.tagsToImages(images, mode) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			if(source == 'images' || source == 'both'){ | 
					
						
							|  |  |  | 				this.data.tagsFromImages(images, mode) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-12-08 03:45:04 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-12 03:14:29 +04:00
										 |  |  | 	// crop...
 | 
					
						
							| 
									
										
										
										
											2014-10-13 00:18:26 +04:00
										 |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	crop: ['Crop/Crop image list', | 
					
						
							| 
									
										
										
										
											2014-10-22 01:05:59 +04:00
										 |  |  | 		function(list, flatten){  | 
					
						
							|  |  |  | 			list = list || this.data.order | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 			if(this.crop_stack == null){ | 
					
						
							|  |  |  | 				this.crop_stack = [] | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			this.crop_stack.push(this.data) | 
					
						
							| 
									
										
										
										
											2014-11-24 07:58:19 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if(list instanceof data.Data){ | 
					
						
							|  |  |  | 				this.data = list  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				this.data = this.data.crop(list, flatten) | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	uncrop: ['Crop/Uncrop ribbons', | 
					
						
							| 
									
										
										
										
											2014-10-24 17:18:54 +04:00
										 |  |  | 		function(level, restore_current, keep_crop_order){ | 
					
						
							| 
									
										
										
										
											2014-10-22 01:05:59 +04:00
										 |  |  | 			level = level || 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var cur = this.current | 
					
						
							| 
									
										
										
										
											2014-10-24 17:18:54 +04:00
										 |  |  | 			var order = this.data.order | 
					
						
							| 
									
										
										
										
											2014-10-22 01:05:59 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 			if(this.crop_stack == null){ | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-22 01:05:59 +04:00
										 |  |  | 			// uncrop all...
 | 
					
						
							|  |  |  | 			if(level == 'all'){ | 
					
						
							|  |  |  | 				this.data = this.crop_stack[0] | 
					
						
							|  |  |  | 				this.crop_stack = [] | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-22 01:05:59 +04:00
										 |  |  | 			// get the element at level and drop the tail...
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				this.data = this.crop_stack.splice(-level, this.crop_stack.length)[0] | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-22 01:05:59 +04:00
										 |  |  | 			// by default set the current from the crop...
 | 
					
						
							|  |  |  | 			if(!restore_current){ | 
					
						
							|  |  |  | 				this.data.focusImage(cur) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-24 17:18:54 +04:00
										 |  |  | 			// restore order from the crop...
 | 
					
						
							|  |  |  | 			if(keep_crop_order){ | 
					
						
							|  |  |  | 				this.data.order = order | 
					
						
							| 
									
										
										
										
											2015-11-07 21:48:59 +03:00
										 |  |  | 				this.data.updateImagePositions() | 
					
						
							| 
									
										
										
										
											2014-10-24 17:18:54 +04:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// purge the stack...
 | 
					
						
							| 
									
										
										
										
											2014-10-22 01:05:59 +04:00
										 |  |  | 			if(this.crop_stack.length == 0){ | 
					
						
							|  |  |  | 				delete this.crop_stack | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	uncropAll: ['Crop/Uncrop all', | 
					
						
							| 
									
										
										
										
											2014-10-22 01:05:59 +04:00
										 |  |  | 		function(restore_current){ this.uncrop('all', restore_current) }], | 
					
						
							| 
									
										
										
										
											2014-10-24 17:25:38 +04:00
										 |  |  | 	// XXX see if we need to do this on this level??
 | 
					
						
							|  |  |  | 	// 		...might be a good idea to do this in data...
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	uncropAndKeepOrder: ['Crop|Edit/Uncrop and keep crop image order', | 
					
						
							| 
									
										
										
										
											2014-10-24 17:18:54 +04:00
										 |  |  | 		function(level, restore_current){ this.uncrop(level, restore_current, true) }], | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 	// XXX same as uncrop but will also try and merge changes...
 | 
					
						
							| 
									
										
										
										
											2014-10-24 17:25:38 +04:00
										 |  |  | 	// 		- the order is simple and already done above...
 | 
					
						
							|  |  |  | 	// 		- I think that levels should be relative to images, the 
 | 
					
						
							|  |  |  | 	// 		  only problem here is how to deal with new ribbons...
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	mergeCrop: ['Crop|Edit/Merge crop', | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 		function(){ | 
					
						
							|  |  |  | 			// XXX
 | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-10-22 01:23:56 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-24 17:25:38 +04:00
										 |  |  | 	// XXX save a crop (catalog)...
 | 
					
						
							|  |  |  | 	// XXX
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	cropRibbon: ['Crop/Crop current ribbon', | 
					
						
							| 
									
										
										
										
											2014-10-22 01:23:56 +04:00
										 |  |  | 		function(ribbon, flatten){ | 
					
						
							| 
									
										
										
										
											2015-07-29 19:37:51 +03:00
										 |  |  | 			if(typeof(ribbon) == typeof(true)){ | 
					
						
							|  |  |  | 				flatten = ribbon | 
					
						
							|  |  |  | 				ribbon = null | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-10-22 01:23:56 +04:00
										 |  |  | 			ribbon = ribbon || 'current' | 
					
						
							|  |  |  | 			this.crop(this.data.getImages(ribbon), flatten) | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	cropRibbonAndAbove: ['Crop/Crop current and above ribbons', | 
					
						
							| 
									
										
										
										
											2014-10-22 01:23:56 +04:00
										 |  |  | 		function(ribbon, flatten){ | 
					
						
							| 
									
										
										
										
											2015-07-29 19:37:51 +03:00
										 |  |  | 			if(typeof(ribbon) == typeof(true)){ | 
					
						
							|  |  |  | 				flatten = ribbon | 
					
						
							|  |  |  | 				ribbon = null | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-10-22 01:23:56 +04:00
										 |  |  | 			ribbon = ribbon || this.data.getRibbon() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var data = this.data | 
					
						
							|  |  |  | 			var that = this | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var i = data.ribbon_order.indexOf(ribbon) | 
					
						
							|  |  |  | 			var ribbons = data.ribbon_order.slice(0, i) | 
					
						
							|  |  |  | 			var images = ribbons | 
					
						
							|  |  |  | 				.reduce(function(a, b){  | 
					
						
							|  |  |  | 						return data.getImages(a).concat(data.getImages(b))  | 
					
						
							|  |  |  | 					}, data.getImages(ribbon)) | 
					
						
							|  |  |  | 				.compact() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			this.crop(data.getImages(images), flatten) | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-11-19 19:30:38 +03:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	// XXX should this be here???
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	cropTagged: ['Tag|Crop/Crop tagged images', | 
					
						
							| 
									
										
										
										
											2014-11-19 19:30:38 +03:00
										 |  |  | 		function(tags, mode, flatten){ | 
					
						
							|  |  |  | 			var selector = mode == 'any' ? 'getTaggedByAny' : 'getTaggedByAll' | 
					
						
							|  |  |  | 			this.crop(this.data[selector](tags), flatten) | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-11-24 07:58:19 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// grouping...
 | 
					
						
							| 
									
										
										
										
											2014-11-25 16:58:08 +03:00
										 |  |  | 	// XXX need to tell .images about this...
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	group: ['Group|Edit/Group images',  | 
					
						
							| 
									
										
										
										
											2014-11-24 07:58:19 +03:00
										 |  |  | 		function(gids, group){ this.data.group(gids, group) }], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	ungroup: ['Group|Edit/Ungroup images',  | 
					
						
							| 
									
										
										
										
											2014-11-24 07:58:19 +03:00
										 |  |  | 		function(gids, group){ this.data.ungroup(gids, group) }], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// direction can be:
 | 
					
						
							|  |  |  | 	// 	'next'
 | 
					
						
							|  |  |  | 	// 	'prev'
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	groupTo: ['Group|Edit/Group to',  | 
					
						
							| 
									
										
										
										
											2014-11-24 07:58:19 +03:00
										 |  |  | 		function(target, direction){ | 
					
						
							|  |  |  | 			target = this.data.getImage(target) | 
					
						
							|  |  |  | 			var other = this.data.getImage(target, direction == 'next' ? 1 : -1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// we are start/end of ribbon...
 | 
					
						
							|  |  |  | 			if(other == null){ | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			// add into an existing group...
 | 
					
						
							|  |  |  | 			if(this.data.isGroup(other)){ | 
					
						
							|  |  |  | 				this.group(target, other) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// new group...
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				this.group([target, other]) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	// shorthands to .groupTo(..)
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	groupBack: ['Group|Edit/Group target image with the image or group before it',  | 
					
						
							| 
									
										
										
										
											2014-11-24 07:58:19 +03:00
										 |  |  | 		function(target){ this.groupTo(target, 'prev') }], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	groupForward: ['Group|Edit/Group target image with the image or group after it',  | 
					
						
							| 
									
										
										
										
											2014-11-24 07:58:19 +03:00
										 |  |  | 		function(target){ this.groupTo(target, 'next') }], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// NOTE: this will only group loaded images...
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	groupMarked: ['Group|Mark/Group loaded marked images',  | 
					
						
							| 
									
										
										
										
											2014-11-24 07:58:19 +03:00
										 |  |  | 		function(){ this.group(this.data.getImages(this.data.getTaggedByAny('marked'))) }], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	expandGroup: ['Group/Expand group',  | 
					
						
							| 
									
										
										
										
											2014-11-24 07:58:19 +03:00
										 |  |  | 		function(target){ this.data.expandGroup(target || this.current) }], | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	collapseGroup: ['Group/Collapse group',  | 
					
						
							| 
									
										
										
										
											2014-11-24 07:58:19 +03:00
										 |  |  | 		function(target){ this.data.collapseGroup(target || this.current) }], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	cropGroup: ['Crop|Group/Crop group',  | 
					
						
							| 
									
										
										
										
											2014-11-24 07:58:19 +03:00
										 |  |  | 		function(target){ this.crop(this.data.cropGroup(target || this.current)) }], | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-07 19:44:52 +03:00
										 |  |  | var Base = | 
					
						
							|  |  |  | module.Base = ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: 'ImageGrid base', | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-07 19:44:52 +03:00
										 |  |  | 	tag: 'base', | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-07 19:44:52 +03:00
										 |  |  | 	actions: BaseActions, | 
					
						
							|  |  |  | }) | 
					
						
							| 
									
										
										
										
											2014-11-28 03:57:10 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | //---------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ViewerActions =  | 
					
						
							|  |  |  | module.ViewerActions =  | 
					
						
							|  |  |  | actions.Actions({ | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 	config: { | 
					
						
							|  |  |  | 		// The maximum screen width allowed when zooming...
 | 
					
						
							|  |  |  | 		'max-screen-images': 30, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// A step (multiplier) used by .zoomIn()/.zoomOut() actions.
 | 
					
						
							|  |  |  | 		// NOTE: this is rounded to the nearest whole screen width in images
 | 
					
						
							|  |  |  | 		// 		and current fit-overflow added.
 | 
					
						
							|  |  |  | 		'zoom-step': 1.2, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// added to odd number of images to fit to indicate scroll ability...
 | 
					
						
							|  |  |  | 		// ...this effectively sets the closest distance an image can be from
 | 
					
						
							|  |  |  | 		// the viewer edge...
 | 
					
						
							|  |  |  | 		'fit-overflow': 0.2, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		// limit key repeat to one per N milliseconds.
 | 
					
						
							|  |  |  | 		//
 | 
					
						
							|  |  |  | 		// Set this to -1 or null to run keys without any limitations.
 | 
					
						
							|  |  |  | 		// XXX at this point the keyboard is setup in ui.js, need to 
 | 
					
						
							|  |  |  | 		// 		move to a more logical spot...
 | 
					
						
							|  |  |  | 		'max-key-repeat-rate': 0, | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2014-11-28 03:57:10 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-17 18:10:09 +03:00
										 |  |  | 	// Images...
 | 
					
						
							| 
									
										
										
										
											2015-11-14 04:48:55 +03:00
										 |  |  | 	// XXX this seems like a hack...
 | 
					
						
							|  |  |  | 	// 		...should this be here???
 | 
					
						
							| 
									
										
										
										
											2014-11-15 03:17:21 +03:00
										 |  |  | 	get images(){ | 
					
						
							|  |  |  | 		return this.ribbons != null ? this.ribbons.images : null | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	// NOTE: if ribbons are null this will have no effect...
 | 
					
						
							|  |  |  | 	set images(value){ | 
					
						
							|  |  |  | 		if(this.ribbons != null){ | 
					
						
							|  |  |  | 			this.ribbons.images = value | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-29 18:50:04 +03:00
										 |  |  | 	get screenwidth(){ | 
					
						
							|  |  |  | 		return this.ribbons != null ? this.ribbons.getScreenWidthImages() : null | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	set screenwidth(n){ | 
					
						
							|  |  |  | 		this.fitImage(n) | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 	load: [ | 
					
						
							|  |  |  | 		function(data){ | 
					
						
							|  |  |  | 			return function(){ | 
					
						
							| 
									
										
										
										
											2014-11-14 21:57:55 +03:00
										 |  |  | 				// recycle the viewer if one is not given specifically...
 | 
					
						
							|  |  |  | 				var viewer = data.viewer | 
					
						
							|  |  |  | 				viewer = viewer == null && this.ribbons != null  | 
					
						
							|  |  |  | 					? this.ribbons.viewer  | 
					
						
							|  |  |  | 					: viewer | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-24 17:19:53 +03:00
										 |  |  | 				// XXX do we need to recycle the ribbons???
 | 
					
						
							|  |  |  | 				if(this.ribbons != null){ | 
					
						
							|  |  |  | 					this.ribbons.clear() | 
					
						
							| 
									
										
										
										
											2014-11-14 21:57:55 +03:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | 				// NOTE: this is done unconditionally to avoid manually 
 | 
					
						
							|  |  |  | 				// 		setting images and other stuff in the future...
 | 
					
						
							| 
									
										
										
										
											2014-11-24 17:19:53 +03:00
										 |  |  | 				this.ribbons = ribbons.Ribbons(viewer, this.images) | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-24 17:19:53 +03:00
										 |  |  | 				// XXX is this correct???
 | 
					
						
							|  |  |  | 				this.ribbons.__image_updaters = [this.updateImage.bind(this)] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-28 13:22:54 +03:00
										 |  |  | 				this.reload() | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-11-08 16:18:20 +03:00
										 |  |  | 	// NOTE: this will pass the .ribbons.updateData(..) a custom ribbon 
 | 
					
						
							| 
									
										
										
										
											2015-07-31 19:00:29 +03:00
										 |  |  | 	// 		updater if one is defined here as .updateRibbon(target) action
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// XXX HACK: two sins:
 | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | 	// 		- actions.updateRibbon(..) and ribbons.updateRibbon(..)
 | 
					
						
							|  |  |  | 	// 		  are NOT signature compatible...
 | 
					
						
							|  |  |  | 	// 		- we depend on the internals of a custom add-on feature
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	reload: ['Interface/Reload viewer', | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | 		function(force){ | 
					
						
							| 
									
										
										
										
											2014-10-28 13:02:56 +03:00
										 |  |  | 			this.ribbons.preventTransitions() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | 			// NOTE: this essentially sets the update threshold to 0...
 | 
					
						
							|  |  |  | 			// XXX this should be a custom arg...
 | 
					
						
							|  |  |  | 			force = force ? 0 : null | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-29 18:50:04 +03:00
										 |  |  | 			return function(){ | 
					
						
							| 
									
										
										
										
											2014-11-08 16:18:20 +03:00
										 |  |  | 				// see if we've got a custom ribbon updater...
 | 
					
						
							|  |  |  | 				var that = this | 
					
						
							|  |  |  | 				var settings = this.updateRibbon != null  | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | 					// XXX this should be: { updateRibbon: this.updateRibbon.bind(this) }
 | 
					
						
							|  |  |  | 					? { updateRibbon: function(_, ribbon){  | 
					
						
							| 
									
										
										
										
											2015-07-31 19:00:29 +03:00
										 |  |  | 							return that.updateRibbon(ribbon, null, null, force)  | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | 						} } | 
					
						
							| 
									
										
										
										
											2014-11-08 16:18:20 +03:00
										 |  |  | 					: null | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				this.ribbons.updateData(this.data, settings) | 
					
						
							| 
									
										
										
										
											2015-07-31 19:00:29 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				this | 
					
						
							|  |  |  | 					// XXX should this be here???
 | 
					
						
							|  |  |  | 					.refresh() | 
					
						
							|  |  |  | 					.focusImage() | 
					
						
							| 
									
										
										
										
											2014-10-28 13:02:56 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-29 18:50:04 +03:00
										 |  |  | 				this.ribbons.restoreTransitions() | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-10-12 04:52:44 +04:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-12-08 19:11:53 +03:00
										 |  |  | 	// NOTE: this will trigger .updateImage hooks...
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	refresh: ['Interface/Refresh images without reloading', | 
					
						
							| 
									
										
										
										
											2014-12-08 19:11:53 +03:00
										 |  |  | 		function(gids){ | 
					
						
							|  |  |  | 			gids = gids || '*' | 
					
						
							|  |  |  | 			this.ribbons.updateImage(gids) | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 	clear: [ | 
					
						
							| 
									
										
										
										
											2014-11-14 21:57:55 +03:00
										 |  |  | 		function(){ this.ribbons.clear() }], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	loadURLs: [ | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 		function(){ | 
					
						
							| 
									
										
										
										
											2014-11-14 21:57:55 +03:00
										 |  |  | 			return function(){ | 
					
						
							|  |  |  | 				// recycle the viewer if one is not given specifically...
 | 
					
						
							|  |  |  | 				var viewer = this.ribbons != null  | 
					
						
							|  |  |  | 					? this.ribbons.viewer  | 
					
						
							|  |  |  | 					: viewer | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if(this.ribbons == null){ | 
					
						
							| 
									
										
										
										
											2014-11-15 03:17:21 +03:00
										 |  |  | 					this.ribbons = ribbons.Ribbons(viewer, this.images) | 
					
						
							| 
									
										
										
										
											2014-11-21 23:53:55 +03:00
										 |  |  | 					// XXX is this correct???
 | 
					
						
							|  |  |  | 					this.ribbons.__image_updaters = [this.updateImage.bind(this)] | 
					
						
							| 
									
										
										
										
											2014-11-14 21:57:55 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					this.ribbons.clear() | 
					
						
							| 
									
										
										
										
											2014-11-14 22:17:17 +03:00
										 |  |  | 					this.ribbons.images = this.images | 
					
						
							| 
									
										
										
										
											2014-11-14 21:57:55 +03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				this.reload() | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 21:57:55 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | 	// This is called by .ribbons, the goal is to use it to hook into 
 | 
					
						
							|  |  |  | 	// image updating from features and extensions...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2014-12-08 19:11:53 +03:00
										 |  |  | 	// NOTE: not intended for calling manually, use .refresh(..) instead...
 | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | 	//
 | 
					
						
							|  |  |  | 	// XXX experimental...
 | 
					
						
							|  |  |  | 	// 		...need this to get triggered by .ribbons
 | 
					
						
							|  |  |  | 	// 		at this point manually triggering this will not do anything...
 | 
					
						
							| 
									
										
										
										
											2014-12-08 19:11:53 +03:00
										 |  |  | 	// XXX problem: need to either redesign this or distinguish from 
 | 
					
						
							|  |  |  | 	// 		other actions as I keep calling it expecting results...
 | 
					
						
							|  |  |  | 	// XXX hide from user action list...
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	updateImage: ['Interface/Update image (This will do nothing)', | 
					
						
							| 
									
										
										
										
											2014-12-08 19:18:47 +03:00
										 |  |  | 		'This will be called by .refresh(..) and intended for use as an ' | 
					
						
							|  |  |  | 			+'trigger for handlers, and not as a callable acation.', | 
					
						
							|  |  |  | 		function(gid, image){ }], | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// General UI stuff...
 | 
					
						
							|  |  |  | 	// NOTE: this is applicable to all uses...
 | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	toggleTheme: ['Interface/Toggle viewer theme',  | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | 		CSSClassToggler( | 
					
						
							|  |  |  | 			function(){ return this.ribbons.viewer },  | 
					
						
							|  |  |  | 			[ | 
					
						
							|  |  |  | 				'gray',  | 
					
						
							|  |  |  | 				'dark',  | 
					
						
							|  |  |  | 				'light' | 
					
						
							|  |  |  | 			]) ], | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	setEmptyMsg: ['Interface/Set message to be displayed when nothing is loaded.', | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | 		function(msg, help){ this.ribbons.setEmptyMsg(msg, help) }], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 	// align modes...
 | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | 	// XXX these should also affect up/down navigation...
 | 
					
						
							|  |  |  | 	// 		...navigate by proximity (closest to center) rather than by
 | 
					
						
							|  |  |  | 	// 		order...
 | 
					
						
							|  |  |  | 	// XXX skip off-screen ribbons (???)
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	alignByOrder: ['Interface/Align ribbons by image order', | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 		function(target){ | 
					
						
							|  |  |  | 			var ribbons = this.ribbons | 
					
						
							|  |  |  | 			var data = this.data | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// XXX handle raw dom elements...
 | 
					
						
							|  |  |  | 			var gid = target instanceof jQuery  | 
					
						
							|  |  |  | 				? ribbons.getElemGID(target) | 
					
						
							|  |  |  | 				: data.getImage(target) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// align current ribbon...
 | 
					
						
							| 
									
										
										
										
											2014-11-06 14:25:09 +03:00
										 |  |  | 			// NOTE: the ordering of calls here makes it simpler to load
 | 
					
						
							|  |  |  | 			// 		data into ribbons based on target gid... i.e. first
 | 
					
						
							|  |  |  | 			// 		we know the section we need then align it vertically...
 | 
					
						
							| 
									
										
										
										
											2014-10-29 23:38:27 +03:00
										 |  |  | 			this | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 				.centerImage(gid) | 
					
						
							| 
									
										
										
										
											2014-11-06 14:25:09 +03:00
										 |  |  | 				.centerRibbon(gid) | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-15 18:48:45 +03:00
										 |  |  | 			// if we are going fast we might skip an update... 
 | 
					
						
							|  |  |  | 			if(this._align_timeout != null){ | 
					
						
							|  |  |  | 				clearTimeout(this._align_timeout) | 
					
						
							|  |  |  | 				this._align_timeout = null | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-11-14 22:17:17 +03:00
										 |  |  | 			var that = this | 
					
						
							| 
									
										
										
										
											2014-11-15 18:48:45 +03:00
										 |  |  | 			this._align_timeout = setTimeout(function(){ | 
					
						
							|  |  |  | 				this._align_timeout = null | 
					
						
							| 
									
										
										
										
											2014-11-14 22:17:17 +03:00
										 |  |  | 				// align other ribbons...
 | 
					
						
							|  |  |  | 				var ribbon = data.getRibbon(gid) | 
					
						
							|  |  |  | 				for(var r in data.ribbons){ | 
					
						
							|  |  |  | 					// skip the current ribbon...
 | 
					
						
							|  |  |  | 					if(r == ribbon){ | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 						continue | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2014-11-14 22:17:17 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-15 18:48:45 +03:00
										 |  |  | 					// XXX skip off-screen ribbons... (???)
 | 
					
						
							| 
									
										
										
										
											2014-11-14 22:17:17 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					// center...
 | 
					
						
							|  |  |  | 					// XXX is there a 'last' special case here???
 | 
					
						
							|  |  |  | 					var t = data.getImage(gid, r) | 
					
						
							|  |  |  | 					if(t == null){ | 
					
						
							|  |  |  | 						var f = data.getImage('first', r) | 
					
						
							|  |  |  | 						// nothing found -- empty ribbon?
 | 
					
						
							|  |  |  | 						if(f == null){ | 
					
						
							|  |  |  | 							continue | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 						that.centerImage(f, 'before') | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						that.centerImage(t, 'after') | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-11-15 18:48:45 +03:00
										 |  |  | 			}, 50) | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	alignByFirst: ['Interface/Aling ribbons except current to first image', | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 		function(target){ | 
					
						
							|  |  |  | 			var ribbons = this.ribbons | 
					
						
							|  |  |  | 			var data = this.data | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// XXX handle raw dom elements...
 | 
					
						
							|  |  |  | 			var gid = target instanceof jQuery  | 
					
						
							|  |  |  | 				? ribbons.getElemGID(target) | 
					
						
							|  |  |  | 				: data.getImage(target) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// align current ribbon...
 | 
					
						
							| 
									
										
										
										
											2014-10-29 23:38:27 +03:00
										 |  |  | 			this | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 				.centerRibbon(gid) | 
					
						
							|  |  |  | 				.centerImage(gid) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 22:17:17 +03:00
										 |  |  | 			var that = this | 
					
						
							|  |  |  | 			//setTimeout(function(){
 | 
					
						
							|  |  |  | 				// align other ribbons...
 | 
					
						
							|  |  |  | 				var ribbon = data.getRibbon(gid) | 
					
						
							|  |  |  | 				for(var r in data.ribbons){ | 
					
						
							|  |  |  | 					// skip the current ribbon...
 | 
					
						
							|  |  |  | 					if(r == ribbon){ | 
					
						
							|  |  |  | 						continue | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 22:17:17 +03:00
										 |  |  | 					// XXX skip off-screen ribbons...
 | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 22:17:17 +03:00
										 |  |  | 					// XXX see if we need to do some loading...
 | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 22:17:17 +03:00
										 |  |  | 					// center...
 | 
					
						
							|  |  |  | 					var f = data.getImage('first', r) | 
					
						
							|  |  |  | 					// nothing found -- empty ribbon?
 | 
					
						
							|  |  |  | 					if(f == null){ | 
					
						
							|  |  |  | 						continue | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					that.centerImage(f, 'before') | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-11-14 22:17:17 +03:00
										 |  |  | 			//}, 0)
 | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-11-06 02:53:00 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 	// NOTE: this will align only a single image...
 | 
					
						
							| 
									
										
										
										
											2014-10-29 23:38:27 +03:00
										 |  |  | 	// XXX do we need these low level primitives here???
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	centerImage: ['Interface/Center an image in ribbon horizontally', | 
					
						
							| 
									
										
										
										
											2014-10-29 23:38:27 +03:00
										 |  |  | 		function(target, align){ | 
					
						
							|  |  |  | 			target = target instanceof jQuery  | 
					
						
							|  |  |  | 				? this.ribbons.getElemGID(target) | 
					
						
							|  |  |  | 				: target | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// align current ribbon...
 | 
					
						
							|  |  |  | 			this.ribbons.centerImage(target, align) | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	centerRibbon: ['Interface/Center a ribbon vertically', | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 		function(target){ | 
					
						
							|  |  |  | 			target = target instanceof jQuery  | 
					
						
							|  |  |  | 				? this.ribbons.getElemGID(target) | 
					
						
							|  |  |  | 				: target | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// align current ribbon...
 | 
					
						
							| 
									
										
										
										
											2014-10-29 23:38:27 +03:00
										 |  |  | 			this.ribbons.centerRibbon(target) | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 	focusImage: [ | 
					
						
							| 
									
										
										
										
											2014-10-19 22:32:33 +04:00
										 |  |  | 		function(target, list){ | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 			var ribbons = this.ribbons | 
					
						
							|  |  |  | 			var data = this.data | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 			// NOTE: we do not need to do anything in the alternative 
 | 
					
						
							|  |  |  | 			// 		case as it's done in data/Client, so we'll just 
 | 
					
						
							|  |  |  | 			// 		peek there later...
 | 
					
						
							| 
									
										
										
										
											2014-10-19 22:32:33 +04:00
										 |  |  | 			if(data == null){ | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 				target = ribbons.focusImage(target) | 
					
						
							|  |  |  | 				var gid = ribbons.getElemGID(target) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-19 22:32:33 +04:00
										 |  |  | 			return function(){ | 
					
						
							|  |  |  | 				if(data != null){ | 
					
						
							|  |  |  | 					// use the data for all the heavy lifting...
 | 
					
						
							|  |  |  | 					// NOTE: this will prevent sync errors...
 | 
					
						
							|  |  |  | 					var gid = data.getImage() | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 					target = ribbons.focusImage(gid) | 
					
						
							| 
									
										
										
										
											2014-10-19 22:32:33 +04:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-10-19 22:32:33 +04:00
										 |  |  | 	setBaseRibbon: [ | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 		function(target){ | 
					
						
							|  |  |  | 			var r = this.data.getRibbon(target) | 
					
						
							|  |  |  | 			r =  r == null ? this.ribbons.getRibbon(target) : r | 
					
						
							|  |  |  | 			this.ribbons.setBaseRibbon(r) | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-10-08 04:52:41 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-17 18:10:09 +03:00
										 |  |  | 	// NOTE: these prioritize whole images, i.e. each image will at least
 | 
					
						
							|  |  |  | 	// 		once be fully shown.
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	prevScreen: ['Navigate/Screen width back', | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 		function(){ | 
					
						
							| 
									
										
										
										
											2014-11-17 18:10:09 +03:00
										 |  |  | 			// NOTE: the 0.2 is added to compensate for alignment/scaling
 | 
					
						
							|  |  |  | 			// 		errors -- 2.99 images wide counts as 3 while 2.5 as 2.
 | 
					
						
							| 
									
										
										
										
											2014-11-24 04:02:01 +03:00
										 |  |  | 			var w = Math.floor(this.ribbons.getScreenWidthImages() + 0.2) | 
					
						
							|  |  |  | 			w += (w % 2) - 1 | 
					
						
							|  |  |  | 			this.prevImage(w) | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	nextScreen: ['Navigate/Screen width forward', | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 		function(){ | 
					
						
							| 
									
										
										
										
											2014-11-24 04:02:01 +03:00
										 |  |  | 			var w = Math.floor(this.ribbons.getScreenWidthImages() + 0.2) | 
					
						
							|  |  |  | 			w += (w % 2) - 1 | 
					
						
							|  |  |  | 			this.nextImage(w) | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-13 00:18:26 +04:00
										 |  |  | 	// zooming...
 | 
					
						
							| 
									
										
										
										
											2014-10-18 17:32:41 +04:00
										 |  |  | 	//
 | 
					
						
							|  |  |  | 	// Zooming is done by multiplying the current scale by config['zoom-step']
 | 
					
						
							|  |  |  | 	// and rounding to nearest discrete number of images to fit on screen.
 | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	zoomIn: ['Zoom/Zoom in', | 
					
						
							| 
									
										
										
										
											2014-10-18 17:32:41 +04:00
										 |  |  | 		function(){  | 
					
						
							|  |  |  | 			this.ribbons.setOrigin() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			//var n = Math.round(this.ribbons.getScreenWidthImages())-1
 | 
					
						
							| 
									
										
										
										
											2014-11-28 03:57:10 +03:00
										 |  |  | 			var d = this.config['zoom-step'] || 1.2 | 
					
						
							| 
									
										
										
										
											2014-10-18 17:32:41 +04:00
										 |  |  | 			var s = a.ribbons.getScale() * d | 
					
						
							|  |  |  | 			var n = Math.floor(this.ribbons.getScreenWidthImages(s)) | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 			this.fitImage(n <= 0 ? 1 : n) | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	zoomOut: ['Zoom/Zoom out', | 
					
						
							| 
									
										
										
										
											2014-10-18 17:32:41 +04:00
										 |  |  | 		function(){  | 
					
						
							|  |  |  | 			this.ribbons.setOrigin() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			//var n = Math.round(this.ribbons.getScreenWidthImages())+1
 | 
					
						
							| 
									
										
										
										
											2014-11-28 03:57:10 +03:00
										 |  |  | 			var d = this.config['zoom-step'] || 1.2 | 
					
						
							| 
									
										
										
										
											2014-10-18 17:32:41 +04:00
										 |  |  | 			var s = a.ribbons.getScale() / d | 
					
						
							|  |  |  | 			var n = Math.ceil(this.ribbons.getScreenWidthImages(s)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var max = this.config['max-screen-images'] | 
					
						
							|  |  |  | 			this.fitImage(n > max ? max : n) | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-10-13 00:18:26 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	fitOrig: ['Zoom/Fit to original scale', | 
					
						
							| 
									
										
										
										
											2014-10-13 06:33:22 +04:00
										 |  |  | 		function(){  | 
					
						
							|  |  |  | 			this.ribbons.setScale(1)  | 
					
						
							| 
									
										
										
										
											2014-12-08 19:18:47 +03:00
										 |  |  | 			this.refresh() | 
					
						
							| 
									
										
										
										
											2014-10-13 06:33:22 +04:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-10-13 00:18:26 +04:00
										 |  |  | 	// NOTE: if this gets a count argument it will fit count images, 
 | 
					
						
							|  |  |  | 	// 		default is one.
 | 
					
						
							| 
									
										
										
										
											2014-11-28 03:57:10 +03:00
										 |  |  | 	// NOTE: this will add .config['fit-overflow'] to odd counts if no 
 | 
					
						
							|  |  |  | 	// 		overflow if passed.
 | 
					
						
							|  |  |  | 	// 		...this is done to add ability to control scroll indication.
 | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	fitImage: ['Zoom/Fit image', | 
					
						
							| 
									
										
										
										
											2014-11-28 03:57:10 +03:00
										 |  |  | 		function(count, overflow){ | 
					
						
							|  |  |  | 			if(count != null){ | 
					
						
							|  |  |  | 				overflow = overflow == false ? 0 : overflow | 
					
						
							|  |  |  | 				var o = overflow != null ? overflow  | 
					
						
							|  |  |  | 					: count % 2 != 1 ? 0 | 
					
						
							|  |  |  | 					: (this.config['fit-overflow'] || 0) | 
					
						
							|  |  |  | 				count += o | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-10-13 00:18:26 +04:00
										 |  |  | 			this.ribbons.fitImage(count) | 
					
						
							| 
									
										
										
										
											2014-12-08 19:18:47 +03:00
										 |  |  | 			this.refresh() | 
					
						
							| 
									
										
										
										
											2014-10-13 00:18:26 +04:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	fitMax: ['Zoom/Fit the maximum number of images', | 
					
						
							| 
									
										
										
										
											2014-10-18 17:32:41 +04:00
										 |  |  | 		function(){ this.fitImage(this.config['max-screen-images']) }], | 
					
						
							| 
									
										
										
										
											2014-10-13 00:18:26 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-05 01:09:06 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 	// XXX the question with these is how to make these relatively 
 | 
					
						
							|  |  |  | 	// 		similar across platforms...
 | 
					
						
							| 
									
										
										
										
											2014-11-28 05:08:03 +03:00
										 |  |  | 	// 		...for this we need to get display dpi...
 | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	fitSmall: ['Zoom/Show small image', | 
					
						
							| 
									
										
										
										
											2014-10-13 00:18:26 +04:00
										 |  |  | 		function(){  }], | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	fitNormal: ['Zoom/Show normal image', | 
					
						
							| 
									
										
										
										
											2014-10-13 00:18:26 +04:00
										 |  |  | 		function(){  }], | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	fitScreen: ['Zoom/Fit image to screen', | 
					
						
							| 
									
										
										
										
											2014-10-13 00:18:26 +04:00
										 |  |  | 		function(){  }], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	fitRibbon: ['Zoom/Fit ribbon vertically', | 
					
						
							| 
									
										
										
										
											2014-11-05 01:09:06 +03:00
										 |  |  | 		function(count){ | 
					
						
							|  |  |  | 			this.ribbons.fitRibbon(count) | 
					
						
							| 
									
										
										
										
											2014-12-08 19:18:47 +03:00
										 |  |  | 			this.refresh() | 
					
						
							| 
									
										
										
										
											2014-11-05 01:09:06 +03:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 03:13:23 +03:00
										 |  |  | 	// NOTE: these work by getting the target position from .data...
 | 
					
						
							|  |  |  | 	shiftImageTo: [  | 
					
						
							|  |  |  | 		function(target){ return updateImagePosition(this, target) }], | 
					
						
							|  |  |  | 	shiftImageUp: [  | 
					
						
							|  |  |  | 		function(target){ return updateImagePosition(this, target) }], | 
					
						
							|  |  |  | 	shiftImageDown: [ | 
					
						
							|  |  |  | 		function(target){ return updateImagePosition(this, target) }], | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 	shiftImageLeft: [ | 
					
						
							| 
									
										
										
										
											2014-11-08 02:48:04 +03:00
										 |  |  | 		function(target){  | 
					
						
							|  |  |  | 			this.ribbons.placeImage(target, -1)  | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 	shiftImageRight: [ | 
					
						
							| 
									
										
										
										
											2014-10-12 03:14:29 +04:00
										 |  |  | 		function(target){ | 
					
						
							| 
									
										
										
										
											2014-11-08 02:48:04 +03:00
										 |  |  | 			this.ribbons.placeImage(target, 1)  | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-07 17:42:09 +03:00
										 |  |  | 	// XXX how should these animate???
 | 
					
						
							|  |  |  | 	travelImageUp: [ | 
					
						
							|  |  |  | 		function(){ | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	travelImageDown: [ | 
					
						
							|  |  |  | 		function(){ | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 	shiftRibbonUp: [ | 
					
						
							| 
									
										
										
										
											2014-10-12 03:14:29 +04:00
										 |  |  | 		function(target){ | 
					
						
							| 
									
										
										
										
											2014-10-18 04:26:52 +04:00
										 |  |  | 			target = this.ribbons.getRibbon(target) | 
					
						
							|  |  |  | 			var i = this.ribbons.getRibbonOrder(target) | 
					
						
							|  |  |  | 			if(i > 0){ | 
					
						
							|  |  |  | 				this.ribbons.placeRibbon(target, i-1) | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-10-11 17:08:17 +04:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 	shiftRibbonDown: [ | 
					
						
							| 
									
										
										
										
											2014-10-12 03:14:29 +04:00
										 |  |  | 		function(target){ | 
					
						
							| 
									
										
										
										
											2014-10-18 04:26:52 +04:00
										 |  |  | 			target = this.ribbons.getRibbon(target) | 
					
						
							|  |  |  | 			var i = this.ribbons.getRibbonOrder(target) | 
					
						
							|  |  |  | 			if(i < this.data.ribbon_order.length-1){ | 
					
						
							|  |  |  | 				this.ribbons.placeRibbon(target, i+1) | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-10-13 00:18:26 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 	reverseImages: [ reloadAfter() ], | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | 	reverseRibbons: [ reloadAfter() ], | 
					
						
							| 
									
										
										
										
											2014-10-13 00:18:26 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-13 06:33:22 +04:00
										 |  |  | 	// basic image editing...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2014-10-22 13:11:26 +04:00
										 |  |  | 	// XXX should we have .rotate(..) and .flip(..) generic actions???
 | 
					
						
							| 
									
										
										
										
											2014-10-13 06:33:22 +04:00
										 |  |  | 	rotateCW: [  | 
					
						
							| 
									
										
										
										
											2014-10-18 04:26:52 +04:00
										 |  |  | 		function(target){ this.ribbons.rotateCW(target) }], | 
					
						
							| 
									
										
										
										
											2014-10-13 06:33:22 +04:00
										 |  |  | 	rotateCCW: [  | 
					
						
							| 
									
										
										
										
											2014-10-18 04:26:52 +04:00
										 |  |  | 		function(target){ this.ribbons.rotateCCW(target) }], | 
					
						
							| 
									
										
										
										
											2014-10-13 06:33:22 +04:00
										 |  |  | 	flipVertical: [  | 
					
						
							| 
									
										
										
										
											2014-11-06 02:42:16 +03:00
										 |  |  | 		function(target){ this.ribbons.flipVertical(target, 'view') }], | 
					
						
							| 
									
										
										
										
											2014-10-13 06:33:22 +04:00
										 |  |  | 	flipHorizontal: [ | 
					
						
							| 
									
										
										
										
											2014-11-06 02:42:16 +03:00
										 |  |  | 		function(target){ this.ribbons.flipHorizontal(target, 'view') }], | 
					
						
							| 
									
										
										
										
											2014-10-20 16:38:26 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-06 02:50:20 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-08 03:45:04 +03:00
										 |  |  | 	// tags...
 | 
					
						
							|  |  |  | 	tag: [  | 
					
						
							|  |  |  | 		function(tags, gids){  | 
					
						
							|  |  |  | 			gids = gids != null && gids.constructor !== Array ? [gids] : gids | 
					
						
							|  |  |  | 			return function(){ | 
					
						
							| 
									
										
										
										
											2014-12-08 19:18:47 +03:00
										 |  |  | 				//this.ribbons.updateImage(gids) 
 | 
					
						
							|  |  |  | 				this.refresh(gids) | 
					
						
							| 
									
										
										
										
											2014-12-08 03:45:04 +03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	untag: [ | 
					
						
							|  |  |  | 		function(tags, gids){  | 
					
						
							|  |  |  | 			gids = gids != null && gids.constructor !== Array ? [gids] : gids | 
					
						
							|  |  |  | 			return function(){ | 
					
						
							| 
									
										
										
										
											2014-12-08 19:18:47 +03:00
										 |  |  | 				//this.ribbons.updateImage(gids) 
 | 
					
						
							|  |  |  | 				this.refresh(gids) | 
					
						
							| 
									
										
										
										
											2014-12-08 03:45:04 +03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | 	// group stuff...
 | 
					
						
							|  |  |  | 	group: [ reloadAfter(true) ], | 
					
						
							|  |  |  | 	ungroup: [ reloadAfter(true) ], | 
					
						
							|  |  |  | 	groupTo: [ reloadAfter(true) ], | 
					
						
							|  |  |  | 	groupMarked: [ reloadAfter(true) ], | 
					
						
							|  |  |  | 	expandGroup: [ reloadAfter(true) ], | 
					
						
							|  |  |  | 	collapseGroup: [ reloadAfter(true) ], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-07 21:08:12 +03:00
										 |  |  | 	// XXX BUG? reloadAfter() here does not remove some images...
 | 
					
						
							|  |  |  | 	crop: [ reloadAfter(true) ], | 
					
						
							| 
									
										
										
										
											2015-07-31 19:00:29 +03:00
										 |  |  | 	// XXX BUG? reloadAfter() produces an align error...
 | 
					
						
							|  |  |  | 	uncrop: [ reloadAfter(true) ], | 
					
						
							| 
									
										
										
										
											2014-11-24 18:16:56 +03:00
										 |  |  | 	// XXX might be a good idea to do this in a new viewer in an overlay...
 | 
					
						
							| 
									
										
										
										
											2014-11-24 07:58:19 +03:00
										 |  |  | 	cropGroup: [ reloadAfter() ], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-29 18:50:04 +03:00
										 |  |  | 	// XXX experimental: not sure if this is the right way to go...
 | 
					
						
							|  |  |  | 	// XXX make this play nice with crops...
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	toggleRibbonList: ['Interface/Toggle ribbons as images view', | 
					
						
							| 
									
										
										
										
											2014-10-29 18:50:04 +03:00
										 |  |  | 		function(){ | 
					
						
							|  |  |  | 			if(this._full_data == null){ | 
					
						
							|  |  |  | 				// XXX do a better name here...
 | 
					
						
							|  |  |  | 				this._full_data = this.data | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// generate the view...
 | 
					
						
							|  |  |  | 				this.data = this.data.cropRibbons() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				var data = this._full_data | 
					
						
							|  |  |  | 				delete this._full_data | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// restore...
 | 
					
						
							|  |  |  | 				this.data = data.mergeRibbonCrop(this.data) | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-12-08 19:11:53 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			this.reload() | 
					
						
							| 
									
										
										
										
											2014-10-29 18:50:04 +03:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-11-21 23:53:55 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-11 06:33:49 +04:00
										 |  |  | }) | 
					
						
							| 
									
										
										
										
											2014-07-20 03:02:18 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | var Viewer = | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | module.Viewer = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 	title: 'Graphical User Interface', | 
					
						
							| 
									
										
										
										
											2014-07-20 03:02:18 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 	tag: 'ui', | 
					
						
							| 
									
										
										
										
											2014-07-20 03:02:18 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-07 19:44:52 +03:00
										 |  |  | 	depends: ['base'], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 	actions: ViewerActions, | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// check if we are running in a UI context...
 | 
					
						
							|  |  |  | 	// NOTE: this will prevent loading of any features dependant on the 
 | 
					
						
							|  |  |  | 	// 		UI in a non UI context...
 | 
					
						
							|  |  |  | 	isApplicable: function(){  | 
					
						
							|  |  |  | 		return typeof(window) == typeof({})  | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | }) | 
					
						
							| 
									
										
										
										
											2014-11-11 03:07:14 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-06 02:46:43 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-21 05:19:39 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-21 16:16:20 +03:00
										 |  |  | // XXX is this the right level for this???
 | 
					
						
							|  |  |  | // 		...data seems to be a better candidate...
 | 
					
						
							| 
									
										
										
										
											2015-05-21 05:19:39 +03:00
										 |  |  | // XXX would be great to add a mechanism define how to reverse actions...
 | 
					
						
							|  |  |  | // 		...one way to do this at this point is to revert to last state
 | 
					
						
							|  |  |  | // 		and re-run the journal until the desired event...
 | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | // XXX need to define a clear journaling strategy in the lines of:
 | 
					
						
							|  |  |  | // 		- save state clears journal and adds a state load action
 | 
					
						
							|  |  |  | // 		- .load(..) clears journal
 | 
					
						
							|  |  |  | // XXX needs careful testing...
 | 
					
						
							| 
									
										
										
										
											2015-05-21 05:19:39 +03:00
										 |  |  | var Journal =  | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | module.Journal = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	title: 'Action Journal', | 
					
						
							| 
									
										
										
										
											2015-05-21 05:19:39 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'system-journal', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-07 19:44:52 +03:00
										 |  |  | 	depends: ['base'], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-21 05:19:39 +03:00
										 |  |  | 	actions: actions.Actions({ | 
					
						
							|  |  |  | 		// XXX might be good to add some kind of metadata to journal...
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 		journalPush: ['Journal/Add an item to journal', | 
					
						
							| 
									
										
										
										
											2015-05-21 05:19:39 +03:00
										 |  |  | 			function(){ | 
					
						
							|  |  |  | 				if(this.journal == null){ | 
					
						
							|  |  |  | 					this.journal = [] | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				//console.log('ACTION:', action, args2array(arguments))
 | 
					
						
							|  |  |  | 				this.journal.push(args2array(arguments)) | 
					
						
							|  |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 		clearJournal: ['Journal/Clear the action journal', | 
					
						
							| 
									
										
										
										
											2015-05-21 05:19:39 +03:00
										 |  |  | 			function(){ | 
					
						
							|  |  |  | 				if(this.journal){ | 
					
						
							|  |  |  | 					delete this.journal | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 		runJournal: ['Journal/Run journal', | 
					
						
							|  |  |  | 			function(journal){ | 
					
						
							|  |  |  | 				var that = this | 
					
						
							|  |  |  | 				journal.forEach(function(e){ | 
					
						
							|  |  |  | 					// load state...
 | 
					
						
							|  |  |  | 					that.focusImage(e[0]) | 
					
						
							|  |  |  | 					// run action...
 | 
					
						
							|  |  |  | 					that[e[1]].apply(that, e[2]) | 
					
						
							|  |  |  | 				}) | 
					
						
							|  |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2015-05-21 05:19:39 +03:00
										 |  |  | 	}), | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// log state, action and its args... 
 | 
					
						
							|  |  |  | 	// XXX need to drop journal on save...
 | 
					
						
							|  |  |  | 	// XXX rotate/truncate journal???
 | 
					
						
							|  |  |  | 	// XXX need to check that all the listed actions are clean -- i.e.
 | 
					
						
							|  |  |  | 	// 		running the journal will produce the same results as user 
 | 
					
						
							|  |  |  | 	// 		actions that generated the journal.
 | 
					
						
							|  |  |  | 	// XXX would be good if we could know the name of the action in the 
 | 
					
						
							|  |  |  | 	// 		handler, thus enabling us to define a single handler rather
 | 
					
						
							|  |  |  | 	// 		than generating a custom handler per action...
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 				'clear', | 
					
						
							|  |  |  | 				'load', | 
					
						
							|  |  |  | 				'loadURLs', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				'setBaseRibbon', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				'shiftImageTo', | 
					
						
							|  |  |  | 				'shiftImageUp', | 
					
						
							|  |  |  | 				'shiftImageDown', | 
					
						
							|  |  |  | 				'shiftImageLeft', | 
					
						
							|  |  |  | 				'shiftImageRight', | 
					
						
							|  |  |  | 				'shiftRibbonUp', | 
					
						
							|  |  |  | 				'shiftRibbonDown', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				'rotateCW', | 
					
						
							|  |  |  | 				'rotateCCW', | 
					
						
							|  |  |  | 				'flipHorizontal', | 
					
						
							|  |  |  | 				'flipVertical', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				'sortImages', | 
					
						
							|  |  |  | 				'reverseImages', | 
					
						
							|  |  |  | 				'reverseRibbons', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				'crop', | 
					
						
							|  |  |  | 				'uncrop', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				'tag',  | 
					
						
							|  |  |  | 				'untag', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				'group', | 
					
						
							|  |  |  | 				'ungroup', | 
					
						
							|  |  |  | 				'expandGroup', | 
					
						
							|  |  |  | 				'collapseGroup', | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				'runJournal', | 
					
						
							| 
									
										
										
										
											2015-05-21 05:19:39 +03:00
										 |  |  | 			].map(function(action){ | 
					
						
							|  |  |  | 				return [ | 
					
						
							|  |  |  | 					action,  | 
					
						
							|  |  |  | 					function(){ | 
					
						
							|  |  |  | 						this.journalPush( | 
					
						
							|  |  |  | 							this.current,  | 
					
						
							|  |  |  | 							action,  | 
					
						
							|  |  |  | 							args2array(arguments)) | 
					
						
							|  |  |  | 					}] | 
					
						
							|  |  |  | 			}),  | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 03:35:26 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2014-11-27 06:38:17 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | // NOTE: this is split out to an action so as to enable ui elements to 
 | 
					
						
							|  |  |  | // 		adapt to ribbon size changes...
 | 
					
						
							| 
									
										
										
										
											2014-11-27 06:38:17 +03:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2014-11-24 07:58:19 +03:00
										 |  |  | // XXX try a strategy: load more in the direction of movement by an offset...
 | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | // XXX updateRibbon(..) is not signature compatible with data.updateRibbon(..)
 | 
					
						
							| 
									
										
										
										
											2014-11-11 17:33:07 +03:00
										 |  |  | var PartialRibbonsActions = actions.Actions({ | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 	config: { | 
					
						
							|  |  |  | 		// number of screen widths to load...
 | 
					
						
							|  |  |  | 		'ribbon-size-screens': 7, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// number of screen widths to edge to trigger reload...
 | 
					
						
							|  |  |  | 		'ribbon-resize-threshold': 1.5, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// timeout before a non-forced ribbon size update happens after
 | 
					
						
							|  |  |  | 		// the action...
 | 
					
						
							|  |  |  | 		// NOTE: if set to null, the update will be sync...
 | 
					
						
							|  |  |  | 		'ribbon-update-timeout': 120, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// how many non-adjacent images to preload...
 | 
					
						
							|  |  |  | 		'preload-radius': 5, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// sources to preload...
 | 
					
						
							|  |  |  | 		'preload-sources': ['bookmark', 'selected'], | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-23 22:00:19 +03:00
										 |  |  | 	// NOTE: this will not work from chrome when loading from a local fs...
 | 
					
						
							|  |  |  | 	// XXX experimental...
 | 
					
						
							| 
									
										
										
										
											2015-11-28 04:55:51 +03:00
										 |  |  | 	startCacheWorker: ['Interface/', | 
					
						
							| 
									
										
										
										
											2015-11-23 22:00:19 +03:00
										 |  |  | 		function(){ | 
					
						
							|  |  |  | 			// a worker is started already...
 | 
					
						
							|  |  |  | 			if(this.cacheWorker != null){ | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var b = new Blob([[ | 
					
						
							|  |  |  | 				'addEventListener(\'message\', function(e) {', | 
					
						
							|  |  |  | 				'	var urls = e.data', | 
					
						
							|  |  |  | 				'	urls = urls.constructor !== Array ? [urls] : urls', | 
					
						
							|  |  |  | 				'	var l = urls.length', | 
					
						
							|  |  |  | 				'	urls.forEach(function(url){', | 
					
						
							|  |  |  | 				'		var xhr = new XMLHttpRequest()', | 
					
						
							|  |  |  | 				'		xhr.responseType = \'blob\'', | 
					
						
							|  |  |  | 				/* | 
					
						
							|  |  |  | 				'		xhr.onload = xhr.onerror = function(){', | 
					
						
							|  |  |  | 				'			l -= 1', | 
					
						
							|  |  |  | 				'			if(l <= 0){', | 
					
						
							|  |  |  | 				'				postMessage({status: \'done.\', urls: urls})', | 
					
						
							|  |  |  | 				'			}', | 
					
						
							|  |  |  | 				'		}', | 
					
						
							|  |  |  | 				*/ | 
					
						
							|  |  |  | 				'		xhr.open(\'GET\', url, true)', | 
					
						
							|  |  |  | 				'		xhr.send()', | 
					
						
							|  |  |  | 				'	})', | 
					
						
							|  |  |  | 				'}, false)', | 
					
						
							|  |  |  | 			].join('\n')]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var url = URL.createObjectURL(b) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			this.cacheWorker = new Worker(url) | 
					
						
							|  |  |  | 			this.cacheWorker.url = url | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-11-28 04:55:51 +03:00
										 |  |  | 	stopCacheWorker: ['Interface/', | 
					
						
							| 
									
										
										
										
											2015-11-23 22:00:19 +03:00
										 |  |  | 		function(){ | 
					
						
							|  |  |  | 			if(this.cacheWorker){ | 
					
						
							|  |  |  | 				this.cacheWorker.terminate() | 
					
						
							|  |  |  | 				URL.revokeObjectURL(this.cacheWorker.url) | 
					
						
							|  |  |  | 				delete this.cacheWorker | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-19 18:59:15 +03:00
										 |  |  | 	// Pre-load images...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// Sources supported:
 | 
					
						
							|  |  |  | 	// 	<tag>			- pre-load images tagged with <tag> 
 | 
					
						
							|  |  |  | 	// 					  (default: ['bookmark', 'selected']) 
 | 
					
						
							|  |  |  | 	// 	<ribbon-gid>	- pre-cache from a specific ribbon
 | 
					
						
							|  |  |  | 	// 	'ribbon'		- pre-cache from current ribbon
 | 
					
						
							|  |  |  | 	// 	'order'			- pre-cache from images in order
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2015-11-23 22:00:19 +03:00
										 |  |  | 	// NOTE: workers when loaded from file:// in a browser context 
 | 
					
						
							|  |  |  | 	// 		will not have access to local images...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// XXX need a clear strategy to run this...
 | 
					
						
							|  |  |  | 	// XXX might be a good idea to make the worker queue the lists...
 | 
					
						
							|  |  |  | 	// 		...this will need careful prioritization logic...
 | 
					
						
							|  |  |  | 	// 			- avoid loading the same url too often
 | 
					
						
							|  |  |  | 	// 			- load the most probable urls first
 | 
					
						
							|  |  |  | 	// 				- next targets
 | 
					
						
							|  |  |  | 	// 					- next/prev
 | 
					
						
							|  |  |  | 	// 						.preCacheJumpTargets(target, 'ribbon', this.screenwidth)
 | 
					
						
							|  |  |  | 	// 					- next/prev marked/bookmarked/order
 | 
					
						
							|  |  |  | 	// 						.preCacheJumpTargets(target, 'marked')
 | 
					
						
							|  |  |  | 	// 						.preCacheJumpTargets(target, 'bookmarked')
 | 
					
						
							|  |  |  | 	// 						.preCacheJumpTargets(target, 'order')
 | 
					
						
							|  |  |  | 	// 					- next/prev screen
 | 
					
						
							|  |  |  | 	// 						.preCacheJumpTargets(target, 'ribbon',
 | 
					
						
							|  |  |  | 	// 							this.config['preload-radius'] * this.screenwidth)
 | 
					
						
							|  |  |  | 	// 					- next/prev ribbon
 | 
					
						
							|  |  |  | 	// 						.preCacheJumpTargets(target, this.data.getRibbon(target, 1))
 | 
					
						
							|  |  |  | 	// 						.preCacheJumpTargets(target, this.data.getRibbon(target, -1))
 | 
					
						
							|  |  |  | 	// 				- next blocks
 | 
					
						
							|  |  |  | 	// 					- what resize ribbon does...
 | 
					
						
							|  |  |  | 	// XXX coordinate this with .resizeRibbon(..)
 | 
					
						
							| 
									
										
										
										
											2015-11-19 18:59:15 +03:00
										 |  |  | 	// XXX make this support an explicit list of gids....
 | 
					
						
							| 
									
										
										
										
											2015-11-18 06:16:04 +03:00
										 |  |  | 	// XXX should this be here???
 | 
					
						
							|  |  |  | 	preCacheJumpTargets: ['Interface/Pre-cache potential jump target images', | 
					
						
							| 
									
										
										
										
											2015-11-19 18:59:15 +03:00
										 |  |  | 		function(target, sources, radius, size){ | 
					
						
							| 
									
										
										
										
											2015-11-18 06:16:04 +03:00
										 |  |  | 			target = target instanceof jQuery  | 
					
						
							|  |  |  | 				? this.ribbons.getElemGID(target) | 
					
						
							|  |  |  | 				// 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')) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-19 18:59:15 +03:00
										 |  |  | 			sources = sources || this.config['preload-sources'] || ['bookmark', 'selected'] | 
					
						
							|  |  |  | 			sources = sources.constructor !== Array ? [sources] : sources | 
					
						
							|  |  |  | 			radius = radius || this.config['preload-radius'] || 9 | 
					
						
							| 
									
										
										
										
											2015-11-18 06:16:04 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			var that = this | 
					
						
							| 
									
										
										
										
											2015-11-19 18:59:15 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-23 22:00:19 +03:00
										 |  |  | 			// get preview...
 | 
					
						
							| 
									
										
										
										
											2015-11-19 18:59:15 +03:00
										 |  |  | 			var _getPreview = function(c){ | 
					
						
							| 
									
										
										
										
											2015-11-23 22:00:19 +03:00
										 |  |  | 				return that.images[c]  | 
					
						
							|  |  |  | 					&& that.images.getBestPreview(c, size, true).url | 
					
						
							| 
									
										
										
										
											2015-11-19 18:59:15 +03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-23 22:00:19 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// get a stet of paths...
 | 
					
						
							| 
									
										
										
										
											2015-11-19 18:59:15 +03:00
										 |  |  | 			// NOTE: we are also ordering the resulting gids by their 
 | 
					
						
							|  |  |  | 			// 		distance from target...
 | 
					
						
							|  |  |  | 			var _get = function(i, lst, source, radius, oddity, step){ | 
					
						
							|  |  |  | 				var found = oddity | 
					
						
							|  |  |  | 				var max = source.length  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				for(var j = i+step; (step > 0 && j < max) || (step < 0 && j >= 0); j += step){ | 
					
						
							|  |  |  | 					var c = source[j] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					if(c == null || that.images[c] == null){ | 
					
						
							|  |  |  | 						continue | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// build the URL...
 | 
					
						
							|  |  |  | 					lst[found] = _getPreview(c) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					found += 2 | 
					
						
							|  |  |  | 					if(found >= radius*2){ | 
					
						
							|  |  |  | 						break | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-23 22:00:19 +03:00
										 |  |  | 			// run the actual preload...
 | 
					
						
							|  |  |  | 			var _run = function(){ | 
					
						
							| 
									
										
										
										
											2015-11-19 18:59:15 +03:00
										 |  |  | 				sources.forEach(function(tag){ | 
					
						
							| 
									
										
										
										
											2015-11-19 18:36:05 +03:00
										 |  |  | 					// order...
 | 
					
						
							|  |  |  | 					if(tag == 'order'){ | 
					
						
							|  |  |  | 						var source = that.data.order | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// current ribbon...
 | 
					
						
							|  |  |  | 					}else if(tag == 'ribbon'){ | 
					
						
							|  |  |  | 						var source = that.data.ribbons[that.data.getRibbon()] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// ribbon-gid...
 | 
					
						
							|  |  |  | 					} else if(tag in that.data.ribbons){ | 
					
						
							|  |  |  | 						var source = that.data.ribbons[tag] | 
					
						
							|  |  |  | 				 | 
					
						
							| 
									
										
										
										
											2015-11-18 06:16:04 +03:00
										 |  |  | 					// nothing tagged then nothing to do...
 | 
					
						
							| 
									
										
										
										
											2015-11-19 18:36:05 +03:00
										 |  |  | 					} else if(that.data.tags == null  | 
					
						
							| 
									
										
										
										
											2015-11-18 06:16:04 +03:00
										 |  |  | 							|| that.data.tags[tag] == null  | 
					
						
							|  |  |  | 							|| that.data.tags[tag].length == 0){ | 
					
						
							|  |  |  | 						return  | 
					
						
							| 
									
										
										
										
											2015-11-19 18:36:05 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					// tag...
 | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						var source = that.data.tags[tag] | 
					
						
							| 
									
										
										
										
											2015-11-18 06:16:04 +03:00
										 |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					size = size || that.ribbons.getVisibleImageSize()  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					var i = that.data.order.indexOf(target) | 
					
						
							|  |  |  | 					var lst = [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// get the list of URLs before and after current...
 | 
					
						
							| 
									
										
										
										
											2015-11-19 18:59:15 +03:00
										 |  |  | 					_get(i ,lst, source, radius, 0, 1) | 
					
						
							|  |  |  | 					_get(i, lst, source, radius, 1, -1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// get target preview in case the target is not loaded...
 | 
					
						
							|  |  |  | 					var p = _getPreview(that.data.getImage(target)) | 
					
						
							|  |  |  | 					p && lst.splice(0, 0, p) | 
					
						
							| 
									
										
										
										
											2015-11-18 06:16:04 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-23 22:00:19 +03:00
										 |  |  | 					// web worker...
 | 
					
						
							|  |  |  | 					if(that.cacheWorker != null){ | 
					
						
							|  |  |  | 						that.cacheWorker.postMessage(lst) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// async inline...
 | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						// do the actual preloading...
 | 
					
						
							|  |  |  | 						lst.forEach(function(url){ | 
					
						
							|  |  |  | 							var img = new Image() | 
					
						
							|  |  |  | 							img.src = url | 
					
						
							|  |  |  | 						}) | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2015-11-18 06:16:04 +03:00
										 |  |  | 				}) | 
					
						
							| 
									
										
										
										
											2015-11-23 22:00:19 +03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if(that.cacheWorker != null){ | 
					
						
							|  |  |  | 				_run() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				setTimeout(_run, 0) | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-11-18 06:16:04 +03:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-25 16:58:08 +03:00
										 |  |  | 	// NOTE: this will force sync resize if one of the following is true:
 | 
					
						
							|  |  |  | 	// 		- the target is not loaded
 | 
					
						
							| 
									
										
										
										
											2015-07-31 19:00:29 +03:00
										 |  |  | 	// 		- we are less than screen width from the edge
 | 
					
						
							| 
									
										
										
										
											2014-11-25 16:58:08 +03:00
										 |  |  | 	// 		- threshold is set to 0
 | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | 	// XXX this is not signature compatible with data.updateRibbon(..)
 | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	updateRibbon: ['Interface/Update partial ribbon size',  | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | 		function(target, w, size, threshold){ | 
					
						
							| 
									
										
										
										
											2014-10-29 23:38:27 +03:00
										 |  |  | 			target = target instanceof jQuery  | 
					
						
							|  |  |  | 				? this.ribbons.getElemGID(target) | 
					
						
							| 
									
										
										
										
											2015-07-31 19:00:29 +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')) | 
					
						
							| 
									
										
										
										
											2014-10-29 23:38:27 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			w = w || this.screenwidth | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-10 02:44:53 +03:00
										 |  |  | 			// get config data and normalize...
 | 
					
						
							|  |  |  | 			size = (size  | 
					
						
							|  |  |  | 				|| this.config['ribbon-size-screens']  | 
					
						
							|  |  |  | 				|| 5) * w | 
					
						
							| 
									
										
										
										
											2014-11-25 15:56:59 +03:00
										 |  |  | 			threshold = threshold == 0 ? threshold | 
					
						
							|  |  |  | 				: (threshold  | 
					
						
							|  |  |  | 					|| this.config['ribbon-resize-threshold']  | 
					
						
							|  |  |  | 					|| 1) * w | 
					
						
							| 
									
										
										
										
											2014-10-29 23:38:27 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-25 16:33:25 +03:00
										 |  |  | 			var timeout = this.config['ribbon-update-timeout'] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-29 23:38:27 +03:00
										 |  |  | 			// next/prev loaded... 
 | 
					
						
							| 
									
										
										
										
											2015-07-31 19:00:29 +03:00
										 |  |  | 			var img = this.ribbons.getImage(target) | 
					
						
							|  |  |  | 			var nl = img.nextAll('.image:not(.clone)').length | 
					
						
							|  |  |  | 			var pl = img.prevAll('.image:not(.clone)').length | 
					
						
							| 
									
										
										
										
											2014-10-29 23:38:27 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// next/prev available...
 | 
					
						
							| 
									
										
										
										
											2014-11-21 17:11:13 +03:00
										 |  |  | 			// NOTE: we subtract 1 to remove the current and make these 
 | 
					
						
							|  |  |  | 			// 		compatible with: nl, pl
 | 
					
						
							|  |  |  | 			var na = this.data.getImages(target, size, 'after').length - 1 | 
					
						
							|  |  |  | 			var pa = this.data.getImages(target, size, 'before').length - 1 | 
					
						
							| 
									
										
										
										
											2014-11-08 16:18:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// do the update...
 | 
					
						
							| 
									
										
										
										
											2015-07-31 19:00:29 +03:00
										 |  |  | 			// no threshold means force load...
 | 
					
						
							| 
									
										
										
										
											2014-11-25 16:58:08 +03:00
										 |  |  | 			if(threshold == 0  | 
					
						
							|  |  |  | 					// the target is not loaded...
 | 
					
						
							| 
									
										
										
										
											2015-07-31 19:00:29 +03:00
										 |  |  | 					//|| this.ribbons.getImage(target).length == 0
 | 
					
						
							|  |  |  | 					|| img.length == 0 | 
					
						
							| 
									
										
										
										
											2014-11-25 16:58:08 +03:00
										 |  |  | 					// passed hard threshold on the right...
 | 
					
						
							|  |  |  | 					|| (nl < w && na > nl)  | 
					
						
							|  |  |  | 					// passed hard threshold on the left...
 | 
					
						
							|  |  |  | 					|| (pl < w && pa > pl)){ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-24 04:02:01 +03:00
										 |  |  | 				this.resizeRibbon(target, size) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// do a late resize...
 | 
					
						
							| 
									
										
										
										
											2014-11-19 19:30:38 +03:00
										 |  |  | 			// loaded more than we need (crop?)...
 | 
					
						
							| 
									
										
										
										
											2014-11-24 04:02:01 +03:00
										 |  |  | 			} else if(na + pa < nl + pl | 
					
						
							| 
									
										
										
										
											2014-10-29 23:38:27 +03:00
										 |  |  | 					// passed threshold on the right...
 | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 					|| (nl < threshold && na > nl)  | 
					
						
							| 
									
										
										
										
											2014-10-29 23:38:27 +03:00
										 |  |  | 					// passed threshold on the left...
 | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 					|| (pl < threshold && pa > pl)  | 
					
						
							| 
									
										
										
										
											2014-10-29 23:38:27 +03:00
										 |  |  | 					// loaded more than we need by threshold...
 | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 					|| nl + pl + 1 > size + threshold){ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-24 04:02:01 +03:00
										 |  |  | 				return function(){ | 
					
						
							| 
									
										
										
										
											2014-11-25 16:33:25 +03:00
										 |  |  | 					// sync update...
 | 
					
						
							|  |  |  | 					if(timeout == null){ | 
					
						
							|  |  |  | 						this.resizeRibbon(target, size) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// async update...
 | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						// XXX need to check if we are too close to the edge...
 | 
					
						
							|  |  |  | 						var that = this | 
					
						
							|  |  |  | 						//setTimeout(function(){ that.resizeRibbon(target, size) }, 0)
 | 
					
						
							|  |  |  | 						if(this.__update_timeout){ | 
					
						
							|  |  |  | 							clearTimeout(this.__update_timeout) | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 						this.__update_timeout = setTimeout(function(){  | 
					
						
							| 
									
										
										
										
											2015-07-31 19:00:29 +03:00
										 |  |  | 							delete that.__update_timeout | 
					
						
							| 
									
										
										
										
											2014-11-25 16:33:25 +03:00
										 |  |  | 							that.resizeRibbon(target, size)  | 
					
						
							|  |  |  | 						}, timeout) | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2014-11-24 04:02:01 +03:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-07-31 19:00:29 +03:00
										 |  |  | 	// XXX do we handle off-screen ribbons here???
 | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	resizeRibbon: ['Interface/Resize ribbon to n images', | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 		function(target, size){ | 
					
						
							|  |  |  | 			size = size  | 
					
						
							|  |  |  | 				|| (this.config['ribbon-size-screens'] * this.screenwidth) | 
					
						
							|  |  |  | 				|| (5 * this.screenwidth) | 
					
						
							| 
									
										
										
										
											2014-11-23 15:33:43 +03:00
										 |  |  | 			var data = this.data | 
					
						
							|  |  |  | 			var ribbons = this.ribbons | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// NOTE: we can't get ribbon via target directly here as
 | 
					
						
							|  |  |  | 			// 		the target might not be loaded...
 | 
					
						
							| 
									
										
										
										
											2014-11-23 15:33:43 +03:00
										 |  |  | 			var r_gid = data.getRibbon(target) | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-03 03:01:51 +03:00
										 |  |  | 			if(r_gid == null){ | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 			// localize transition prevention... 
 | 
					
						
							| 
									
										
										
										
											2015-07-31 19:00:29 +03:00
										 |  |  | 			// NOTE: for the initial load this may be empty...
 | 
					
						
							| 
									
										
										
										
											2014-11-23 15:33:43 +03:00
										 |  |  | 			var r = ribbons.getRibbon(r_gid) | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-31 19:00:29 +03:00
										 |  |  | 			// XXX do we need to for example ignore unloaded (r.length == 0)
 | 
					
						
							|  |  |  | 			// 		ribbons here, for example not load ribbons too far off 
 | 
					
						
							|  |  |  | 			// 		screen??
 | 
					
						
							| 
									
										
										
										
											2015-11-03 03:01:51 +03:00
										 |  |  | 			 | 
					
						
							| 
									
										
										
										
											2015-07-31 19:00:29 +03:00
										 |  |  | 			ribbons | 
					
						
							|  |  |  | 				.preventTransitions(r) | 
					
						
							|  |  |  | 				.updateRibbon( | 
					
						
							|  |  |  | 					data.getImages(target, size),  | 
					
						
							|  |  |  | 					r_gid, | 
					
						
							|  |  |  | 					target) | 
					
						
							|  |  |  | 				.restoreTransitions(r, true) | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | 		}] | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 03:13:23 +03:00
										 |  |  | // NOTE: I do not fully understand it yet, but PartialRibbons must be 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | // 		setup BEFORE RibbonAlignToFirst, otherwise the later will break
 | 
					
						
							|  |  |  | // 		on shifting an image to a new ribbon...
 | 
					
						
							|  |  |  | // 			To reproduce:
 | 
					
						
							|  |  |  | // 				- setupe RibbonAlignToFirst first
 | 
					
						
							|  |  |  | // 				- go to top ribbon
 | 
					
						
							|  |  |  | // 				- shift image up
 | 
					
						
							| 
									
										
										
										
											2014-11-10 02:44:53 +03:00
										 |  |  | // 		XXX The two should be completely independent.... (???)
 | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | var PartialRibbons =  | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | module.PartialRibbons = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 	title: 'Partial Ribbons', | 
					
						
							|  |  |  | 	doc: 'Maintains partially loaded ribbons, this enables very lage ' | 
					
						
							|  |  |  | 		+'image sets to be hadled eficiently.', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 20:05:12 +03:00
										 |  |  | 	// NOTE: partial ribbons needs to be setup first...
 | 
					
						
							|  |  |  | 	// 		...the reasons why things break otherwise is not too clear.
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 	priority: 'high', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | 	tag: 'ui-partial-ribbons', | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 	depends: ['ui'], | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 	actions: PartialRibbonsActions, | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['focusImage.pre centerImage.pre',  | 
					
						
							| 
									
										
										
										
											2014-11-21 23:53:55 +03:00
										 |  |  | 			function(target, list){ | 
					
						
							|  |  |  | 				// 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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-08 16:18:20 +03:00
										 |  |  | 				this.updateRibbon(target) | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2015-11-18 06:16:04 +03:00
										 |  |  | 		['focusImage.post',  | 
					
						
							| 
									
										
										
										
											2015-12-05 04:38:15 +03:00
										 |  |  | 			function(res, target){ | 
					
						
							| 
									
										
										
										
											2015-11-18 06:16:04 +03:00
										 |  |  | 				this.preCacheJumpTargets(target) | 
					
						
							|  |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 		['fitImage.pre',  | 
					
						
							|  |  |  | 			function(n){ | 
					
						
							| 
									
										
										
										
											2014-11-08 16:18:20 +03:00
										 |  |  | 				this.updateRibbon('current', n || 1) | 
					
						
							| 
									
										
										
										
											2015-11-18 06:16:04 +03:00
										 |  |  | 				//this.preCacheJumpTargets()
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			}], | 
					
						
							|  |  |  | 		['fitRibbon.pre',  | 
					
						
							|  |  |  | 			function(n){ | 
					
						
							| 
									
										
										
										
											2014-11-06 14:25:09 +03:00
										 |  |  | 				n = n || 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// convert target height in ribbons to width in images...
 | 
					
						
							|  |  |  | 				// NOTE: this does not account for compensation that 
 | 
					
						
							| 
									
										
										
										
											2014-11-08 16:18:20 +03:00
										 |  |  | 				// 		.updateRibbon(..) makes for fitting whole image
 | 
					
						
							| 
									
										
										
										
											2014-11-06 14:25:09 +03:00
										 |  |  | 				// 		counts, this is a small enough error so as not
 | 
					
						
							|  |  |  | 				// 		to waste time on...
 | 
					
						
							|  |  |  | 				var s = this.ribbons.getScale() | 
					
						
							|  |  |  | 				var h = this.ribbons.getScreenHeightRibbons() | 
					
						
							|  |  |  | 				var w = this.ribbons.getScreenWidthImages() | 
					
						
							|  |  |  | 				var nw = w / (h/n) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-08 16:18:20 +03:00
										 |  |  | 				this.updateRibbon('current', nw) | 
					
						
							| 
									
										
										
										
											2015-11-18 06:16:04 +03:00
										 |  |  | 				//this.preCacheJumpTargets()
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			}], | 
					
						
							|  |  |  | 	], | 
					
						
							| 
									
										
										
										
											2014-10-29 23:38:27 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 03:35:26 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2014-11-27 06:38:17 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 17:33:07 +03:00
										 |  |  | var SingleImageActions = actions.Actions({ | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 	config: { | 
					
						
							| 
									
										
										
										
											2015-11-29 21:25:30 +03:00
										 |  |  | 		// NOTE: these will get overwritten if/when the user changes the scale...
 | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 		'single-image-scale': null, | 
					
						
							|  |  |  | 		'ribbon-scale': null, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	toggleSingleImage: ['Interface/Toggle single image view',  | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 		// XXX this is wrong!!!
 | 
					
						
							|  |  |  | 		CSSClassToggler( | 
					
						
							|  |  |  | 			function(){ return this.ribbons.viewer },  | 
					
						
							|  |  |  | 			'single-image-mode') ], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 17:33:07 +03:00
										 |  |  | // helper...
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | // XXX should this be an action???
 | 
					
						
							|  |  |  | function updateImageProportions(){ | 
					
						
							|  |  |  | 	// XXX
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-10 02:44:53 +03:00
										 |  |  | // XXX an ideal case would be:
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // A)
 | 
					
						
							| 
									
										
										
										
											2014-11-10 04:15:18 +03:00
										 |  |  | //       viewer
 | 
					
						
							|  |  |  | //      +---------------+
 | 
					
						
							|  |  |  | //      |     image     |   - small image
 | 
					
						
							|  |  |  | //      |     +---+     |   - square image block
 | 
					
						
							|  |  |  | //      |     |   |     |   - smaller than this the block is always square
 | 
					
						
							|  |  |  | //      |     +---+     |   - we just change scale
 | 
					
						
							|  |  |  | //      |               |
 | 
					
						
							|  |  |  | //      +---------------+
 | 
					
						
							| 
									
										
										
										
											2014-11-10 02:44:53 +03:00
										 |  |  | //
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // B)
 | 
					
						
							| 
									
										
										
										
											2014-11-10 04:15:18 +03:00
										 |  |  | //       viewer
 | 
					
						
							|  |  |  | //      +---------------+
 | 
					
						
							|  |  |  | //      | +-----------+ |   - bigger image
 | 
					
						
							|  |  |  | //      | | image     | |   - block close to viewer proportion
 | 
					
						
							|  |  |  | //      | |    <-->   | |   - image block growing parallel to viewer
 | 
					
						
							|  |  |  | //      | |           | |     longer side
 | 
					
						
							|  |  |  | //      | +-----------+ |   - this stage is not affected specific by image
 | 
					
						
							|  |  |  | //      +---------------+     proportions and can be done in bulk
 | 
					
						
							| 
									
										
										
										
											2014-11-10 02:44:53 +03:00
										 |  |  | //
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // C)
 | 
					
						
							| 
									
										
										
										
											2014-11-10 04:15:18 +03:00
										 |  |  | //       viewer
 | 
					
						
							|  |  |  | //      +---------------+
 | 
					
						
							|  |  |  | //      | image         |   - image block same size as viewer
 | 
					
						
							|  |  |  | //      |               |   - need to account for chrome
 | 
					
						
							|  |  |  | //      |               |
 | 
					
						
							|  |  |  | //      |               |
 | 
					
						
							|  |  |  | //      |               |
 | 
					
						
							|  |  |  | //      +---------------+
 | 
					
						
							| 
									
										
										
										
											2014-11-10 02:44:53 +03:00
										 |  |  | //
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // D)
 | 
					
						
							| 
									
										
										
										
											2014-11-10 04:15:18 +03:00
										 |  |  | //       image
 | 
					
						
							|  |  |  | //      + - - - - - - - +
 | 
					
						
							|  |  |  | //      .               .
 | 
					
						
							|  |  |  | //      +---------------+
 | 
					
						
							|  |  |  | //      | viewer        |   - image bigger than viewer in one dimension
 | 
					
						
							|  |  |  | //      |       ^       |   - block grows to fit image proportions
 | 
					
						
							|  |  |  | //      |       |       |   - need to account for individual image 
 | 
					
						
							|  |  |  | //      |       v       |     proportions
 | 
					
						
							|  |  |  | //      |               |   - drag enabled
 | 
					
						
							|  |  |  | //      +---------------+
 | 
					
						
							|  |  |  | //      .               .
 | 
					
						
							|  |  |  | //      + - - - - - - - +
 | 
					
						
							| 
									
										
										
										
											2014-11-10 02:44:53 +03:00
										 |  |  | //
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // E) 
 | 
					
						
							| 
									
										
										
										
											2014-11-10 04:15:18 +03:00
										 |  |  | //     image
 | 
					
						
							|  |  |  | //    + - - - - - - - - - +
 | 
					
						
							|  |  |  | //    .                   .
 | 
					
						
							|  |  |  | //    . +---------------+ .
 | 
					
						
							|  |  |  | //    . | viewer        | . - image bigger than viewer 
 | 
					
						
							|  |  |  | //    . |               | . - image block same proportion as image
 | 
					
						
							|  |  |  | //    . |               | . - we just change scale
 | 
					
						
							|  |  |  | //    . |               | . - drag enabled
 | 
					
						
							|  |  |  | //    . |               | .
 | 
					
						
							|  |  |  | //    . +---------------+ .
 | 
					
						
							|  |  |  | //    .                   .
 | 
					
						
							|  |  |  | //    + - - - - - - - - - +
 | 
					
						
							| 
									
										
										
										
											2014-11-10 02:44:53 +03:00
										 |  |  | //
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | var SingleImageView = | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | module.SingleImageView = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2014-11-11 17:33:07 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 	tag: 'ui-single-image-view', | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 	depends: ['ui'], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 	actions: SingleImageActions, | 
					
						
							| 
									
										
										
										
											2014-11-09 19:39:57 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 	handlers:[ | 
					
						
							| 
									
										
										
										
											2014-11-28 05:08:03 +03:00
										 |  |  | 		['fitImage.post', | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			function(){  | 
					
						
							| 
									
										
										
										
											2014-11-09 19:39:57 +03:00
										 |  |  | 				// singe image mode -- set image proportions...
 | 
					
						
							|  |  |  | 				if(this.toggleSingleImage('?') == 'on'){ | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 					updateImageProportions.call(this) | 
					
						
							| 
									
										
										
										
											2014-11-09 19:39:57 +03:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 		// XXX this uses .screenwidth for scale, is this the right way to go?
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 		['toggleSingleImage.post',  | 
					
						
							|  |  |  | 			function(){  | 
					
						
							| 
									
										
										
										
											2014-11-09 19:39:57 +03:00
										 |  |  | 				// singe image mode -- set image proportions...
 | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 				if(this.toggleSingleImage('?') == 'on'){ | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 					updateImageProportions.call(this) | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 					// update scale...
 | 
					
						
							|  |  |  | 					var w = this.screenwidth | 
					
						
							|  |  |  | 					this.config['ribbon-scale'] = w | 
					
						
							|  |  |  | 					this.screenwidth = this.config['single-image-scale'] || w | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-09 19:39:57 +03:00
										 |  |  | 				// ribbon mode -- restore original image size...
 | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2014-11-15 18:48:45 +03:00
										 |  |  | 					this.ribbons.viewer.find('.image:not(.clone)').css({ | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 						width: '', | 
					
						
							|  |  |  | 						height: '' | 
					
						
							|  |  |  | 					}) | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					// update scale...
 | 
					
						
							|  |  |  | 					var w = this.screenwidth | 
					
						
							|  |  |  | 					this.config['single-image-scale'] = w | 
					
						
							|  |  |  | 					this.screenwidth = this.config['ribbon-scale'] || w | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			}], | 
					
						
							|  |  |  | 	], | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 03:35:26 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2015-12-03 00:58:43 +03:00
										 |  |  | // These feature glue traverse and ribbon alignment...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // XXX manual align needs more work...
 | 
					
						
							|  |  |  | var AutoAlignRibbons =  | 
					
						
							|  |  |  | module.AutoAlignRibbons = ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-ribbon-auto-align', | 
					
						
							|  |  |  | 	depends: ['ui'], | 
					
						
							|  |  |  | 	exclusive: ['ui-ribbon-align'], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	config: { | 
					
						
							|  |  |  | 		// Control image selection and optionally ribbon alignment...
 | 
					
						
							|  |  |  | 		//
 | 
					
						
							|  |  |  | 		// NOTE: this only supports the following modes:
 | 
					
						
							|  |  |  | 		// 		- 'visual'
 | 
					
						
							|  |  |  | 		// 		- 'order'
 | 
					
						
							|  |  |  | 		// 		- 'fisrt'
 | 
					
						
							|  |  |  | 		// 		- 'manual'
 | 
					
						
							|  |  |  | 		// NOTE: if 'ribbon-align-mode' is not null this can be set to 
 | 
					
						
							|  |  |  | 		// 		any mode without restriction.
 | 
					
						
							|  |  |  | 		//'ribbon-focus-mode': 'order',
 | 
					
						
							|  |  |  | 		'ribbon-focus-mode': 'visual', | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		// control ribbon alignment...
 | 
					
						
							|  |  |  | 		//
 | 
					
						
							|  |  |  | 		// NOTE: when this is null then 'ribbon-focus-mode' will be used...
 | 
					
						
							|  |  |  | 		// NOTE: this supports the same modes as 'ribbon-focus-mode'...
 | 
					
						
							|  |  |  | 		'ribbon-align-mode': null, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['focusImage.post',  | 
					
						
							|  |  |  | 			function(){  | 
					
						
							|  |  |  | 				var mode = this.config['ribbon-align-mode']  | 
					
						
							|  |  |  | 					|| this.config['ribbon-focus-mode'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if(mode == 'visual' || mode == 'order'){ | 
					
						
							|  |  |  | 					this.alignByOrder()  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				} else if(mode == 'first'){ | 
					
						
							|  |  |  | 					this.alignByFirst() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// manual...
 | 
					
						
							|  |  |  | 				// XXX is this correct???
 | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					this | 
					
						
							|  |  |  | 						.centerRibbon() | 
					
						
							|  |  |  | 						.centerImage() | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | // XXX should .alignByOrder(..) be a feature-specific action or global 
 | 
					
						
							|  |  |  | // 		as it is now???
 | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | var AlignRibbonsToImageOrder =  | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | module.AlignRibbonsToImageOrder = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2014-11-11 17:33:07 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 	tag: 'ui-ribbon-align-to-order', | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 	depends: ['ui'], | 
					
						
							| 
									
										
										
										
											2014-12-06 02:46:43 +03:00
										 |  |  | 	exclusive: ['ui-ribbon-align'], | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-03 00:58:43 +03:00
										 |  |  | 	config: { | 
					
						
							|  |  |  | 		//'ribbon-focus-mode': 'order',
 | 
					
						
							|  |  |  | 		'ribbon-focus-mode': 'visual', | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['focusImage.post', function(){ this.alignByOrder() }] | 
					
						
							|  |  |  | 	], | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | var AlignRibbonsToFirstImage =  | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | module.AlignRibbonsToFirstImage = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2014-11-11 17:33:07 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 	tag: 'ui-ribbon-align-to-first', | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 	depends: ['ui'], | 
					
						
							| 
									
										
										
										
											2014-12-06 02:46:43 +03:00
										 |  |  | 	exclusive: ['ui-ribbon-align'], | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-03 00:58:43 +03:00
										 |  |  | 	config: { | 
					
						
							|  |  |  | 		'ribbon-focus-mode': 'first', | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['focusImage.post', function(){ this.alignByFirst() }], | 
					
						
							|  |  |  | 	], | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-03 00:58:43 +03:00
										 |  |  | // XXX needs more work...
 | 
					
						
							|  |  |  | // XXX need to save position in some way, ad on each load the same 
 | 
					
						
							|  |  |  | // 		initial state will get loaded...
 | 
					
						
							|  |  |  | // 		...also would need an initial state...
 | 
					
						
							|  |  |  | var ManualAlignRibbons =  | 
					
						
							|  |  |  | module.ManualAlignRibbons = ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-ribbon-manual-align', | 
					
						
							|  |  |  | 	depends: ['ui'], | 
					
						
							|  |  |  | 	exclusive: ['ui-ribbon-align'], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	config: { | 
					
						
							|  |  |  | 		'ribbon-focus-mode': 'visual', | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['focusImage.post', function(){  | 
					
						
							|  |  |  | 			this | 
					
						
							|  |  |  | 				.centerRibbon() | 
					
						
							|  |  |  | 				.centerImage() | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 03:35:26 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | //---------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2014-11-27 06:38:17 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-08 02:48:04 +03:00
										 |  |  | // XXX at this point this does not support target lists...
 | 
					
						
							| 
									
										
										
										
											2015-12-05 01:19:06 +03:00
										 |  |  | // XXX shift up/down to new ribbon is not too correct...
 | 
					
						
							| 
									
										
										
										
											2014-10-22 01:23:56 +04:00
										 |  |  | var ShiftAnimation = | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | module.ShiftAnimation = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2014-11-11 17:33:07 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 	tag: 'ui-animation', | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 	depends: ['ui'], | 
					
						
							| 
									
										
										
										
											2014-10-13 17:32:19 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 	handlers: [ | 
					
						
							| 
									
										
										
										
											2015-12-05 01:19:06 +03:00
										 |  |  | 		//['shiftImageUp.pre shiftImageDown.pre '
 | 
					
						
							|  |  |  | 		//		+'travelImageUp.pre travelImageDown.pre', 
 | 
					
						
							|  |  |  | 		['shiftImageUp.pre shiftImageDown.pre', | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			function(target){ | 
					
						
							|  |  |  | 				// XXX do not do target lists...
 | 
					
						
							| 
									
										
										
										
											2014-11-12 05:47:50 +03:00
										 |  |  | 				if(target != null && target.constructor === Array  | 
					
						
							|  |  |  | 						// do not animate in single image mode...
 | 
					
						
							|  |  |  | 						&& this.toggleSingleImage('?') == 'on'){ | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 					return | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				var s = this.ribbons.makeShadow(target, true) | 
					
						
							|  |  |  | 				return function(){ s() } | 
					
						
							|  |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 		// NOTE: this will keep the shadow in place -- the shadow will not
 | 
					
						
							|  |  |  | 		// 		go to the mountain, the mountain will come to the shadow ;)
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 		['shiftImageLeft.pre shiftImageRight.pre',  | 
					
						
							|  |  |  | 			function(target){ | 
					
						
							|  |  |  | 				// XXX do not do target lists...
 | 
					
						
							| 
									
										
										
										
											2014-11-12 05:47:50 +03:00
										 |  |  | 				if(target != null && target.constructor === Array | 
					
						
							|  |  |  | 						// do not animate in single image mode...
 | 
					
						
							|  |  |  | 						&& this.toggleSingleImage('?') == 'on'){ | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 					return | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				var s = this.ribbons.makeShadow(target) | 
					
						
							|  |  |  | 				return function(){ s() } | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 	], | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | }) | 
					
						
							| 
									
										
										
										
											2014-10-13 06:33:22 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 03:35:26 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | //---------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2014-11-27 06:38:17 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 17:33:07 +03:00
										 |  |  | var BoundsIndicatorsActions = actions.Actions({ | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	flashIndicator: ['Interface/Flash an indicator', | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 		function(direction){ | 
					
						
							| 
									
										
										
										
											2014-11-11 17:33:07 +03:00
										 |  |  | 			if(this.ribbons.getRibbonSet().length == 0){ | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			var cls = { | 
					
						
							|  |  |  | 				// shift up/down...
 | 
					
						
							|  |  |  | 				up: '.up-indicator', | 
					
						
							|  |  |  | 				down: '.down-indicator', | 
					
						
							|  |  |  | 				// hit start/end/top/bottom of view...
 | 
					
						
							|  |  |  | 				start: '.start-indicator', | 
					
						
							|  |  |  | 				end: '.end-indicator', | 
					
						
							|  |  |  | 				top: '.top-indicator', | 
					
						
							|  |  |  | 				bottom: '.bottom-indicator', | 
					
						
							|  |  |  | 			}[direction] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var indicator = this.ribbons.viewer.find(cls) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if(indicator.length == 0){ | 
					
						
							|  |  |  | 				indicator = $('<div>') | 
					
						
							|  |  |  | 					.addClass(cls.replace('.', '') +' '+ this.tag) | 
					
						
							|  |  |  | 					.appendTo(this.ribbons.viewer) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			return indicator | 
					
						
							|  |  |  | 				// NOTE: this needs to be visible in all cases and key press 
 | 
					
						
							|  |  |  | 				// 		rhythms... 
 | 
					
						
							|  |  |  | 				.show() | 
					
						
							|  |  |  | 				.delay(100) | 
					
						
							|  |  |  | 				.fadeOut(300) | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 17:33:07 +03:00
										 |  |  | // helper...
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | function didAdvance(indicator){ | 
					
						
							|  |  |  | 	return function(){ | 
					
						
							|  |  |  | 		var img = this.data.current | 
					
						
							|  |  |  | 		return function(){ | 
					
						
							|  |  |  | 			if(img == this.data.current){ | 
					
						
							|  |  |  | 				this.flashIndicator(indicator) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | var BoundsIndicators =  | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | module.BoundsIndicators = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2014-11-11 17:33:07 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 	tag: 'ui-bounds-indicators', | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 	depends: ['ui'], | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 	actions: BoundsIndicatorsActions, | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		// basic navigation...
 | 
					
						
							|  |  |  | 		['nextImage.pre lastImage.pre', didAdvance('end')], | 
					
						
							|  |  |  | 		['prevImage.pre firstImage.pre', didAdvance('start')], | 
					
						
							|  |  |  | 		['nextRibbon.pre lastRibbon.pre', didAdvance('bottom')], | 
					
						
							|  |  |  | 		['prevRibbon.pre firstRibbon.pre', didAdvance('top')], | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 		// vertical shifting...
 | 
					
						
							|  |  |  | 		['shiftImageUp.pre', | 
					
						
							|  |  |  | 			function(target){  | 
					
						
							|  |  |  | 				target = target || this.current | 
					
						
							|  |  |  | 				var r = this.data.getRibbonOrder(target) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				var l = this.data.getImages(r).length | 
					
						
							|  |  |  | 				var l0 = this.data.getImages(0).length | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				return function(){ | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 					// when shifting last image of top ribbon (i.e. length == 1)
 | 
					
						
							|  |  |  | 					// up the state essentially will not change...
 | 
					
						
							|  |  |  | 					if((r == 0 && l == 1)  | 
					
						
							|  |  |  | 							// we are shifting to a new empty ribbon...
 | 
					
						
							|  |  |  | 							|| (r == 1 && l == 1 && l0 == 0)){ | 
					
						
							|  |  |  | 						this.flashIndicator('top') | 
					
						
							|  |  |  | 					} else {	 | 
					
						
							|  |  |  | 						this.flashIndicator('up') | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			}], | 
					
						
							|  |  |  | 		['shiftImageDown.pre', | 
					
						
							|  |  |  | 			function(target){  | 
					
						
							|  |  |  | 				target = target || this.current | 
					
						
							|  |  |  | 				var r0 = this.data.getRibbonOrder(target) | 
					
						
							|  |  |  | 				var l = this.data.getImages(r0).length | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 				return function(){ | 
					
						
							|  |  |  | 					var r1 = this.data.getRibbonOrder(target) | 
					
						
							|  |  |  | 					if(r0 == r1 && r0 == this.data.ribbon_order.length-1 && l == 1){ | 
					
						
							|  |  |  | 						this.flashIndicator('bottom') | 
					
						
							|  |  |  | 					} else { | 
					
						
							|  |  |  | 						this.flashIndicator('down')  | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// horizontal shifting...
 | 
					
						
							|  |  |  | 		['shiftImageLeft.pre', | 
					
						
							|  |  |  | 			function(target){  | 
					
						
							|  |  |  | 				if(target == null  | 
					
						
							|  |  |  | 						//&& actions.data.getImageOrder('ribbon') == 0){
 | 
					
						
							|  |  |  | 						&& this.data.getImage('prev') == null){ | 
					
						
							|  |  |  | 					this.flashIndicator('start') | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 		['shiftImageRight.pre', | 
					
						
							|  |  |  | 			function(target){  | 
					
						
							|  |  |  | 				if(target == null  | 
					
						
							|  |  |  | 						&& this.data.getImage('next') == null){ | 
					
						
							|  |  |  | 					this.flashIndicator('end') | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 	], | 
					
						
							| 
									
										
										
										
											2014-10-22 05:49:11 +04:00
										 |  |  | }) | 
					
						
							| 
									
										
										
										
											2014-10-21 20:29:11 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 03:35:26 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | //---------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2014-11-27 06:38:17 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 17:33:07 +03:00
										 |  |  | var CurrentImageIndicatorActions = actions.Actions({ | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 	config: { | 
					
						
							|  |  |  | 		'current-image-border': 3, | 
					
						
							|  |  |  | 		'current-image-min-border': 2, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		'current-image-border-timeout': 200, | 
					
						
							|  |  |  | 		'current-image-shift-timeout': 200, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		'current-image-indicator-fadein': 500, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		'current-image-indicator-hide-timeout': 250, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// this can be:
 | 
					
						
							|  |  |  | 		// 	'hide'			- simply hide on next/prev screen action
 | 
					
						
							|  |  |  | 		// 					  and show on focus image.
 | 
					
						
							|  |  |  | 		// 	'hide-show'		- hide on fast scroll through screens and 
 | 
					
						
							|  |  |  | 		// 					  show when slowing down.
 | 
					
						
							|  |  |  | 		'current-image-indicator-screen-nav-mode': 'hide', | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	updateCurrentImageIndicator: ['Interface/Update current image indicator', | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 		function(target, update_border){ | 
					
						
							| 
									
										
										
										
											2014-11-11 17:33:07 +03:00
										 |  |  | 			var ribbon_set = this.ribbons.getRibbonSet() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if(ribbon_set.length == 0){ | 
					
						
							|  |  |  | 				return this | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			var scale = this.ribbons.getScale() | 
					
						
							|  |  |  | 			var cur = this.ribbons.getImage(target) | 
					
						
							|  |  |  | 			var ribbon = this.ribbons.getRibbon(target) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var marker = ribbon.find('.current-marker') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// get config...
 | 
					
						
							|  |  |  | 			var border = this.config['current-image-border'] | 
					
						
							|  |  |  | 			var min_border = this.config['current-image-min-border'] | 
					
						
							|  |  |  | 			var border_timeout = this.config['current-image-border-timeout'] | 
					
						
							|  |  |  | 			var fadein = this.config['current-image-indicator-fadein'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// no marker found -- either in different ribbon or not created yet...
 | 
					
						
							|  |  |  | 			if(marker.length == 0){ | 
					
						
							|  |  |  | 				// get marker globally...
 | 
					
						
							|  |  |  | 				marker = this.ribbons.viewer.find('.current-marker') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-15 18:48:45 +03:00
										 |  |  | 				// no marker exists -- create a marker...
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 				if(marker.length == 0){ | 
					
						
							|  |  |  | 					var marker = $('<div/>') | 
					
						
							| 
									
										
										
										
											2014-11-24 04:02:01 +03:00
										 |  |  | 						.addClass('current-marker ui-current-image-indicator') | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 						.css({ | 
					
						
							|  |  |  | 							opacity: '0', | 
					
						
							|  |  |  | 							top: '0px', | 
					
						
							|  |  |  | 							left: '0px', | 
					
						
							|  |  |  | 						}) | 
					
						
							|  |  |  | 						.appendTo(ribbon) | 
					
						
							|  |  |  | 						.animate({ | 
					
						
							|  |  |  | 							'opacity': 1 | 
					
						
							|  |  |  | 						}, fadein) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// add marker to current ribbon...
 | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					marker.appendTo(ribbon) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-11-03 06:05:31 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			// NOTE: we will update only the attrs that need to be updated...
 | 
					
						
							|  |  |  | 			var css = {} | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			var w = cur.outerWidth(true) | 
					
						
							|  |  |  | 			var h = cur.outerHeight(true) | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			// keep size same as the image...
 | 
					
						
							|  |  |  | 			if(marker.outerWidth() != w || marker.outerHeight() != h){ | 
					
						
							|  |  |  | 				css.width = w | 
					
						
							|  |  |  | 				css.height = h | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			// update border...
 | 
					
						
							|  |  |  | 			if(update_border !== false){ | 
					
						
							|  |  |  | 				var border = Math.max(min_border, border / scale) | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 				// set border right away...
 | 
					
						
							|  |  |  | 				if(update_border == 'before'){ | 
					
						
							|  |  |  | 					css.borderWidth = border | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 				// set border with a delay...
 | 
					
						
							| 
									
										
										
										
											2014-12-07 14:07:10 +03:00
										 |  |  | 				// NOTE: this is to prevent the ugly border resize before
 | 
					
						
							|  |  |  | 				// 		the scale on scale down animation starts...
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 				} else { | 
					
						
							|  |  |  | 					setTimeout(function(){  | 
					
						
							|  |  |  | 						marker.css({ borderWidth: border })  | 
					
						
							|  |  |  | 					}, border_timeout) | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			css.left = cur[0].offsetLeft | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			marker.css(css) | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | }) | 
					
						
							| 
									
										
										
										
											2014-11-09 18:54:53 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | var CurrentImageIndicator =  | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | module.CurrentImageIndicator = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2014-11-11 17:33:07 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 17:33:07 +03:00
										 |  |  | 	tag: 'ui-current-image-indicator', | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 	depends: ['ui'], | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 17:33:07 +03:00
										 |  |  | 	actions: CurrentImageIndicatorActions, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		// move marker to current image...
 | 
					
						
							| 
									
										
										
										
											2014-11-24 04:02:01 +03:00
										 |  |  | 		['focusImage.post', | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			function(){ this.updateCurrentImageIndicator() }], | 
					
						
							|  |  |  | 		// prevent animations when focusing ribbons...
 | 
					
						
							|  |  |  | 		['focusRibbon.pre', | 
					
						
							|  |  |  | 			function(){ | 
					
						
							|  |  |  | 				var m = this.ribbons.viewer.find('.current-marker') | 
					
						
							|  |  |  | 				this.ribbons.preventTransitions(m) | 
					
						
							|  |  |  | 				return function(){ | 
					
						
							|  |  |  | 					this.ribbons.restoreTransitions(m) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 		// this is here to compensate for position change on ribbon 
 | 
					
						
							|  |  |  | 		// resize...
 | 
					
						
							| 
									
										
										
										
											2014-12-01 15:59:33 +03:00
										 |  |  | 		// NOTE: hide/show of indicator on resize appears to have solved
 | 
					
						
							|  |  |  | 		// 		the jumpy animation issue.
 | 
					
						
							|  |  |  | 		// 		this might cause some blinking on slow resizes (visible 
 | 
					
						
							|  |  |  | 		// 		only on next/prev screen)... 
 | 
					
						
							|  |  |  | 		// 		...still not sure why .preventTransitions(m) did not
 | 
					
						
							|  |  |  | 		// 		do the job.
 | 
					
						
							|  |  |  | 		['resizeRibbon.pre', | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			function(target, s){ | 
					
						
							|  |  |  | 				var m = this.ribbons.viewer.find('.current-marker') | 
					
						
							| 
									
										
										
										
											2014-11-15 18:48:45 +03:00
										 |  |  | 				// only update if marker exists and we are in current ribbon...
 | 
					
						
							|  |  |  | 				if(m.length != 0 && this.currentRibbon == this.data.getRibbon(target)){ | 
					
						
							| 
									
										
										
										
											2014-12-01 15:59:33 +03:00
										 |  |  | 					//this.ribbons.preventTransitions(m)
 | 
					
						
							|  |  |  | 					m.hide() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					return function(){ | 
					
						
							|  |  |  | 						this.updateCurrentImageIndicator(target, false) | 
					
						
							|  |  |  | 						//this.ribbons.restoreTransitions(m, true)
 | 
					
						
							| 
									
										
										
										
											2014-12-07 14:07:10 +03:00
										 |  |  | 						m | 
					
						
							|  |  |  | 							.show() | 
					
						
							|  |  |  | 							// NOTE: keeping display in inline style will
 | 
					
						
							|  |  |  | 							// 		prevent the element from being hidden
 | 
					
						
							|  |  |  | 							// 		by css...
 | 
					
						
							|  |  |  | 							.css({display: ''}) | 
					
						
							| 
									
										
										
										
											2014-12-01 15:59:33 +03:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 		// Change border size in the appropriate spot in the animation:
 | 
					
						
							|  |  |  | 		// 	- before animation when scaling up
 | 
					
						
							|  |  |  | 		// 	- after when scaling down
 | 
					
						
							|  |  |  | 		// This is done to make the visuals consistent...
 | 
					
						
							| 
									
										
										
										
											2014-12-01 15:59:33 +03:00
										 |  |  | 		['fitImage.pre fitRibbon.pre', | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			function(w1){  | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | 				var w0 = this.screenwidth | 
					
						
							|  |  |  | 				w1 = w1 || 1 | 
					
						
							|  |  |  | 				return function(){ | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 					this.updateCurrentImageIndicator(null, w0 > w1 ? 'before' : 'after')  | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 			}], | 
					
						
							|  |  |  | 		['shiftImageLeft.pre shiftImageRight.pre', | 
					
						
							|  |  |  | 			function(){ | 
					
						
							|  |  |  | 				this.ribbons.viewer.find('.current-marker').hide() | 
					
						
							|  |  |  | 				if(this._current_image_indicator_timeout != null){ | 
					
						
							|  |  |  | 					clearTimeout(this._current_image_indicator_timeout) | 
					
						
							|  |  |  | 					delete this._current_image_indicator_timeout | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				return function(){ | 
					
						
							|  |  |  | 					var ribbons = this.ribbons | 
					
						
							|  |  |  | 					var fadein = this.config['current-image-indicator-fadein'] | 
					
						
							|  |  |  | 					this._current_image_indicator_timeout = setTimeout(function(){  | 
					
						
							|  |  |  | 						ribbons.viewer.find('.current-marker').fadeIn(fadein) | 
					
						
							|  |  |  | 					}, this.config['current-image-shift-timeout']) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2014-12-04 20:05:12 +03:00
										 |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var CurrentImageIndicatorHideOnFastScreenNav =  | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | module.CurrentImageIndicatorHideOnFastScreenNav = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2014-12-04 20:05:12 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-current-image-indicator-hide-on-fast-screen-nav', | 
					
						
							| 
									
										
										
										
											2014-12-01 15:59:33 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 20:05:12 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 	depends: [ | 
					
						
							|  |  |  | 		'ui', | 
					
						
							|  |  |  | 		'ui-current-image-indicator' | 
					
						
							|  |  |  | 	], | 
					
						
							| 
									
										
										
										
											2014-12-04 20:05:12 +03:00
										 |  |  | 	exclusive: ['ui-current-image-indicator-hide'], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							| 
									
										
										
										
											2014-12-04 05:09:19 +03:00
										 |  |  | 		// hide indicator on screen next/prev...
 | 
					
						
							|  |  |  | 		//
 | 
					
						
							| 
									
										
										
										
											2014-12-01 23:57:01 +03:00
										 |  |  | 		// XXX experimental -- not sure if we need this...
 | 
					
						
							| 
									
										
										
										
											2014-12-04 04:42:30 +03:00
										 |  |  | 		// XXX need to think about the trigger mechanics here and make 
 | 
					
						
							|  |  |  | 		// 		them more natural...
 | 
					
						
							| 
									
										
										
										
											2014-12-01 15:59:33 +03:00
										 |  |  | 		['prevScreen.pre nextScreen.pre', | 
					
						
							|  |  |  | 			function(){  | 
					
						
							|  |  |  | 				var m = this.ribbons.viewer.find('.current-marker') | 
					
						
							| 
									
										
										
										
											2014-12-01 23:57:01 +03:00
										 |  |  | 				var t = this.config['current-image-indicator-hide-timeout'] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-01 15:59:33 +03:00
										 |  |  | 				var cur = this.current | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				return function(){ | 
					
						
							|  |  |  | 					var that = this | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// delay fadeout...
 | 
					
						
							| 
									
										
										
										
											2014-12-01 23:57:01 +03:00
										 |  |  | 					if(cur != this.current  | 
					
						
							|  |  |  | 							&& m.css('opacity') == 1 | 
					
						
							|  |  |  | 							&& this.__current_indicator_t0 == null){ | 
					
						
							| 
									
										
										
										
											2014-12-01 15:59:33 +03:00
										 |  |  | 						this.__current_indicator_t0 = setTimeout(function(){ | 
					
						
							|  |  |  | 							delete that.__current_indicator_t0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							m.css({ opacity: 0 }) | 
					
						
							|  |  |  | 						}, t) | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-01 23:57:01 +03:00
										 |  |  | 					// cancel/delay previous fadein...
 | 
					
						
							| 
									
										
										
										
											2014-12-01 15:59:33 +03:00
										 |  |  | 					if(this.__current_indicator_t1 != null){ | 
					
						
							|  |  |  | 						clearTimeout(this.__current_indicator_t1) | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-01 23:57:01 +03:00
										 |  |  | 					// cancel fadeout and do fadein...
 | 
					
						
							| 
									
										
										
										
											2014-12-01 15:59:33 +03:00
										 |  |  | 					this.__current_indicator_t1 = setTimeout(function(){ | 
					
						
							|  |  |  | 						delete that.__current_indicator_t1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						// cancel fadeout...
 | 
					
						
							|  |  |  | 						if(that.__current_indicator_t0 != null){ | 
					
						
							|  |  |  | 							clearTimeout(that.__current_indicator_t0) | 
					
						
							|  |  |  | 							delete that.__current_indicator_t0 | 
					
						
							|  |  |  | 						}  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						// show...
 | 
					
						
							| 
									
										
										
										
											2014-12-01 23:57:01 +03:00
										 |  |  | 						m.animate({ opacity: '1' }) | 
					
						
							| 
									
										
										
										
											2014-12-01 15:59:33 +03:00
										 |  |  | 					}, t-50) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2014-12-04 20:05:12 +03:00
										 |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var CurrentImageIndicatorHideOnScreenNav =  | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | module.CurrentImageIndicatorHideOnScreenNav = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2014-12-04 20:05:12 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-current-image-indicator-hide-on-screen-nav', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 05:09:19 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 	depends: [ | 
					
						
							|  |  |  | 		'ui', | 
					
						
							|  |  |  | 		'ui-current-image-indicator' | 
					
						
							|  |  |  | 	], | 
					
						
							| 
									
										
										
										
											2014-12-04 20:05:12 +03:00
										 |  |  | 	exclusive: ['ui-current-image-indicator-hide'], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		// 	this does the following:
 | 
					
						
							| 
									
										
										
										
											2014-12-04 05:09:19 +03:00
										 |  |  | 		// 		- hide on screen jump
 | 
					
						
							|  |  |  | 		// 		- show on any other action
 | 
					
						
							| 
									
										
										
										
											2014-12-04 20:05:12 +03:00
										 |  |  | 		//
 | 
					
						
							| 
									
										
										
										
											2014-12-04 05:09:19 +03:00
										 |  |  | 		// NOTE: we use .pre events here to see if we have moved...
 | 
					
						
							|  |  |  | 		['prevScreen.post nextScreen.post', | 
					
						
							|  |  |  | 			function(){  | 
					
						
							|  |  |  | 				var m = this.ribbons.viewer.find('.current-marker') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				m.css({ opacity: 0 }) | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 		['focusImage.post', | 
					
						
							|  |  |  | 			function(){  | 
					
						
							|  |  |  | 				var m = this.ribbons.viewer.find('.current-marker') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				m.css({ opacity: '' }) | 
					
						
							|  |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2014-11-11 06:14:34 +03:00
										 |  |  | 	], | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 03:35:26 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | //---------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2014-11-27 06:38:17 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | // XXX
 | 
					
						
							|  |  |  | var ImageStateIndicator =  | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | module.ImageStateIndicator = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2014-11-11 17:33:07 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | 	tag: 'ui-image-state-indicator', | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 	depends: ['ui'], | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 03:35:26 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2014-11-27 06:38:17 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | // XXX
 | 
					
						
							|  |  |  | var GlobalStateIndicator =  | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | module.GlobalStateIndicator = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2014-11-11 17:33:07 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | 	tag: 'ui-global-state-indicator', | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 	depends: ['ui'], | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 03:35:26 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-12 04:53:13 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							|  |  |  | // XXX revise names...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // widgets...
 | 
					
						
							|  |  |  | var browse = require('lib/widget/browse') | 
					
						
							|  |  |  | var overlay = require('lib/widget/overlay') | 
					
						
							| 
									
										
										
										
											2015-09-19 01:43:38 +03:00
										 |  |  | var drawer = require('lib/widget/drawer') | 
					
						
							| 
									
										
										
										
											2015-09-12 04:53:13 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-22 23:55:49 +03:00
										 |  |  | // This will wrap the actions adding a contextual .preventClosing() method, 
 | 
					
						
							|  |  |  | // if called it will prevent the list from closing on open event and give 
 | 
					
						
							|  |  |  | // the user control over when to close the base list...
 | 
					
						
							| 
									
										
										
										
											2015-11-07 23:34:08 +03:00
										 |  |  | //
 | 
					
						
							|  |  |  | // XXX this may be a source for race conditions...
 | 
					
						
							|  |  |  | // 		scenario:
 | 
					
						
							|  |  |  | // 			- an action is run while a menu runs a state changing action
 | 
					
						
							|  |  |  | //			- state restoration will overwrite the effects fo the BG action
 | 
					
						
							| 
									
										
										
										
											2015-11-09 22:48:13 +03:00
										 |  |  | // XXX .preventClosing(..) mechanism needs revision...
 | 
					
						
							|  |  |  | // 		...might be a better idea to add a permanent action to work with 
 | 
					
						
							|  |  |  | // 		modal overlays and to define strict rules under which such overlays 
 | 
					
						
							|  |  |  | // 		operate, like:
 | 
					
						
							|  |  |  | // 			- only the top overlay is active and can receive events
 | 
					
						
							|  |  |  | // 			- an overlay is closed on open event
 | 
					
						
							|  |  |  | // 			- an overlay can be prevented from closing only while handling
 | 
					
						
							|  |  |  | // 				an open event
 | 
					
						
							|  |  |  | // 			- an overlay can close itself or the previous overlay during
 | 
					
						
							|  |  |  | // 				its open event
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // 		Proposed API:
 | 
					
						
							|  |  |  | // 			getOverlay(context) 
 | 
					
						
							|  |  |  | // 				-> overlay object
 | 
					
						
							|  |  |  | // 				-> null
 | 
					
						
							|  |  |  | // 					returns an overlay controller for a given container
 | 
					
						
							|  |  |  | // 					NOTE: if no overlay is open this returns null
 | 
					
						
							|  |  |  | //					NOTE: this might be implemented as an action.
 | 
					
						
							|  |  |  | //					NOTE: this returns an object that represents only 
 | 
					
						
							|  |  |  | //						the top overlay
 | 
					
						
							|  |  |  | //					NOTE: this should either extend the overlay client
 | 
					
						
							|  |  |  | //						or encapsulate it (preferred), providing a method to access 
 | 
					
						
							|  |  |  | //						it (something like: .client prop or 
 | 
					
						
							|  |  |  | //						.getCleint() method)...
 | 
					
						
							|  |  |  | // 			.preventClosing()
 | 
					
						
							|  |  |  | // 				prevent closing of an overlay after this open event is
 | 
					
						
							|  |  |  | // 				handled
 | 
					
						
							|  |  |  | // 			.close()
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2015-11-13 03:45:02 +03:00
										 |  |  | //		XXX need a way to prevent closing ONLY if action is run FROM the
 | 
					
						
							|  |  |  | //			list...
 | 
					
						
							|  |  |  | //			...the current solution does not have this problem...
 | 
					
						
							| 
									
										
										
										
											2015-11-09 22:48:13 +03:00
										 |  |  | //
 | 
					
						
							| 
									
										
										
										
											2015-09-12 04:53:13 +03:00
										 |  |  | var makeActionLister = function(list, filter, pre_order){ | 
					
						
							|  |  |  | 	pre_order = typeof(filter) == typeof(true) ? filter : pre_order | 
					
						
							|  |  |  | 	filter = typeof(filter) == typeof(true) ? null : filter | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return function(path){ | 
					
						
							| 
									
										
										
										
											2015-09-22 23:55:49 +03:00
										 |  |  | 		var that = this | 
					
						
							|  |  |  | 		var paths = this.getPath() | 
					
						
							| 
									
										
										
										
											2015-09-12 04:53:13 +03:00
										 |  |  | 		var actions = {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// pre-order the main categories...
 | 
					
						
							|  |  |  | 		if(pre_order){ | 
					
						
							|  |  |  | 			this.config['action-category-order'].forEach(function(k){ | 
					
						
							|  |  |  | 				actions[k] = null | 
					
						
							|  |  |  | 			}) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-22 23:55:49 +03:00
										 |  |  | 		var closingPrevented = false | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-12 04:53:13 +03:00
										 |  |  | 		// build the action list...
 | 
					
						
							|  |  |  | 		Object.keys(paths).forEach(function(k){ | 
					
						
							|  |  |  | 			var n = paths[k][0] | 
					
						
							|  |  |  | 			var k = filter ? filter(k, n) : k | 
					
						
							| 
									
										
										
										
											2015-09-22 23:55:49 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-22 22:50:18 +03:00
										 |  |  | 			// pass args to listers...
 | 
					
						
							|  |  |  | 			if(k.slice(-1) == '*'){ | 
					
						
							|  |  |  | 				actions[k] = function(){ | 
					
						
							| 
									
										
										
										
											2015-09-22 23:55:49 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-09 22:48:13 +03:00
										 |  |  | 					// XXX this may cause race conditions as we are 
 | 
					
						
							|  |  |  | 					// 		splitting the state in two and then 
 | 
					
						
							|  |  |  | 					// 		overwriting one...
 | 
					
						
							| 
									
										
										
										
											2015-09-22 23:55:49 +03:00
										 |  |  | 					var a = Object.create(that) | 
					
						
							|  |  |  | 					a.preventClosing = function(){  | 
					
						
							|  |  |  | 						closingPrevented = true  | 
					
						
							|  |  |  | 						return o | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-07 22:32:24 +03:00
										 |  |  | 					var res = a[n].apply(a, arguments) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// cleanup -- restore data that was updated by action...
 | 
					
						
							|  |  |  | 					// NOTE: we do not need to worry about partial 
 | 
					
						
							|  |  |  | 					// 		updates as they are done in place...
 | 
					
						
							|  |  |  | 					Object.keys(a).forEach(function(n){ | 
					
						
							|  |  |  | 						if(n != 'preventClosing'){ | 
					
						
							|  |  |  | 							that[n] = a[n] | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					return res | 
					
						
							| 
									
										
										
										
											2015-09-22 22:50:18 +03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			// ignore args of actions...
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				actions[k] = function(){ | 
					
						
							| 
									
										
										
										
											2015-09-22 23:55:49 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-09 22:48:13 +03:00
										 |  |  | 					// XXX this may cause race conditions as we are 
 | 
					
						
							|  |  |  | 					// 		splitting the state in two and then 
 | 
					
						
							|  |  |  | 					// 		overwriting one...
 | 
					
						
							| 
									
										
										
										
											2015-09-22 23:55:49 +03:00
										 |  |  | 					var a = Object.create(that) | 
					
						
							|  |  |  | 					a.preventClosing = function(){  | 
					
						
							|  |  |  | 						closingPrevented = true  | 
					
						
							|  |  |  | 						return o | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-07 22:32:24 +03:00
										 |  |  | 					var res = a[n]() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// cleanup -- restore data that was updated by action...
 | 
					
						
							|  |  |  | 					// NOTE: we do not need to worry about partial 
 | 
					
						
							|  |  |  | 					// 		updates as they are done in place...
 | 
					
						
							|  |  |  | 					Object.keys(a).forEach(function(n){ | 
					
						
							|  |  |  | 						if(n != 'preventClosing'){ | 
					
						
							|  |  |  | 							that[n] = a[n] | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					return res | 
					
						
							| 
									
										
										
										
											2015-09-22 22:50:18 +03:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2015-09-12 04:53:13 +03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-28 05:31:38 +03:00
										 |  |  | 		// XXX get the correct parent...
 | 
					
						
							|  |  |  | 		var o = overlay.Overlay(that.ribbons.viewer,  | 
					
						
							| 
									
										
										
										
											2015-09-12 04:53:13 +03:00
										 |  |  | 			list(null, actions, path) | 
					
						
							| 
									
										
										
										
											2015-09-22 22:50:18 +03:00
										 |  |  | 				.open(function(evt){  | 
					
						
							| 
									
										
										
										
											2015-09-22 23:55:49 +03:00
										 |  |  | 					if(!closingPrevented){ | 
					
						
							|  |  |  | 						o.close()  | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					closingPrevented = false | 
					
						
							| 
									
										
										
										
											2015-09-22 22:50:18 +03:00
										 |  |  | 				})) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// XXX DEBUG
 | 
					
						
							| 
									
										
										
										
											2015-11-07 22:14:19 +03:00
										 |  |  | 		//window.LIST = o.client
 | 
					
						
							| 
									
										
										
										
											2015-09-12 04:53:13 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return this | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ActionTreeActions = actions.Actions({ | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 	config: { | 
					
						
							|  |  |  | 		'action-category-order': [ | 
					
						
							|  |  |  | 			'File', | 
					
						
							|  |  |  | 			'Edit', | 
					
						
							|  |  |  | 			'Navigate', | 
					
						
							|  |  |  | 		], | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-09 22:48:13 +03:00
										 |  |  | 	// XXX move this to a generic modal overlay feature...
 | 
					
						
							|  |  |  | 	getOverlay: ['Interface/Get overlay object', | 
					
						
							| 
									
										
										
										
											2015-11-13 03:45:02 +03:00
										 |  |  | 		function(o){ | 
					
						
							|  |  |  | 			return overlay.getOverlay(o || this.viewer) | 
					
						
							| 
									
										
										
										
											2015-11-09 22:48:13 +03:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-12 04:53:13 +03:00
										 |  |  | 	browseActions: ['Interface/Browse actions', | 
					
						
							|  |  |  | 		makeActionLister(browse.makePathList, true)], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	listActions:['Interface/List actions', | 
					
						
							|  |  |  | 		makeActionLister(browse.makeList,  | 
					
						
							|  |  |  | 			// format the doc to: <name> (<category>, ..)
 | 
					
						
							|  |  |  | 			// NOTE: this a bit naive...
 | 
					
						
							|  |  |  | 			function(k){  | 
					
						
							|  |  |  | 				var l = k.split(/[\\\/\|]/) | 
					
						
							|  |  |  | 				var a = l.pop() | 
					
						
							|  |  |  | 				return a +' ('+ l.join(', ') +')' | 
					
						
							|  |  |  | 			})], | 
					
						
							| 
									
										
										
										
											2015-09-19 01:43:38 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-22 23:55:49 +03:00
										 |  |  | 	// XXX this is just a test...
 | 
					
						
							| 
									
										
										
										
											2015-10-02 17:32:13 +03:00
										 |  |  | 	embededListerTest: ['Interface|Test/Lister test (embeded)/*', | 
					
						
							| 
									
										
										
										
											2015-09-22 22:50:18 +03:00
										 |  |  | 		function(path, make){ | 
					
						
							|  |  |  | 			make('a/') | 
					
						
							|  |  |  | 			make('b/') | 
					
						
							|  |  |  | 			make('c/') | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-10-02 17:32:13 +03:00
										 |  |  | 	floatingListerTest: ['Interface|Test/Lister test (floating)...', | 
					
						
							| 
									
										
										
										
											2015-09-22 22:50:18 +03:00
										 |  |  | 		function(path){ | 
					
						
							| 
									
										
										
										
											2015-09-22 23:55:49 +03:00
										 |  |  | 			var parent = this.preventClosing ? this.preventClosing() : null | 
					
						
							| 
									
										
										
										
											2015-09-22 22:50:18 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// we got an argument and can exit...
 | 
					
						
							|  |  |  | 			if(path){ | 
					
						
							|  |  |  | 				console.log('PATH:', path) | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// load the UI...
 | 
					
						
							|  |  |  | 			var that = this | 
					
						
							|  |  |  | 			var list = function(path, make){ | 
					
						
							|  |  |  | 				 | 
					
						
							|  |  |  | 				make('a/') | 
					
						
							|  |  |  | 				make('b/') | 
					
						
							|  |  |  | 				make('c/') | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-28 05:31:38 +03:00
										 |  |  | 			var o = overlay.Overlay(this.ribbons.viewer,  | 
					
						
							| 
									
										
										
										
											2015-09-22 22:50:18 +03:00
										 |  |  | 				browse.makePathList(null, { | 
					
						
							|  |  |  | 					'a/*': list, | 
					
						
							|  |  |  | 					'b/*': list, | 
					
						
							|  |  |  | 					'c/*': list, | 
					
						
							|  |  |  | 				}) | 
					
						
							|  |  |  | 					.open(function(evt, path){  | 
					
						
							|  |  |  | 						o.close()  | 
					
						
							| 
									
										
										
										
											2015-09-22 23:55:49 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 						// close the parent ui...
 | 
					
						
							|  |  |  | 						parent  | 
					
						
							|  |  |  | 							&& parent.close  | 
					
						
							|  |  |  | 							&& parent.close() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-22 22:50:18 +03:00
										 |  |  | 						that.floatingListerTest(path) | 
					
						
							|  |  |  | 					})) | 
					
						
							| 
									
										
										
										
											2015-09-22 23:55:49 +03:00
										 |  |  | 					.close(function(){ | 
					
						
							|  |  |  | 						parent  | 
					
						
							|  |  |  | 							&& parent.focus  | 
					
						
							|  |  |  | 							&& parent.focus() | 
					
						
							|  |  |  | 					}) | 
					
						
							| 
									
										
										
										
											2015-09-22 22:50:18 +03:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-11-28 05:31:38 +03:00
										 |  |  | 	// XXX use this.ribbons.viewer as base...
 | 
					
						
							| 
									
										
										
										
											2015-11-15 02:31:31 +03:00
										 |  |  | 	drawerTest: ['Interface|Test/Drawer widget test', | 
					
						
							| 
									
										
										
										
											2015-09-19 01:43:38 +03:00
										 |  |  | 		function(){ | 
					
						
							| 
									
										
										
										
											2015-11-28 05:31:38 +03:00
										 |  |  | 			// XXX use this.ribbons.viewer as base...
 | 
					
						
							| 
									
										
										
										
											2015-09-19 01:43:38 +03:00
										 |  |  | 			drawer.Drawer($('body'),  | 
					
						
							|  |  |  | 				$('<div>') | 
					
						
							|  |  |  | 					.css({ | 
					
						
							|  |  |  | 						position: 'relative', | 
					
						
							|  |  |  | 						background: 'white', | 
					
						
							|  |  |  | 						height: '300px', | 
					
						
							|  |  |  | 					}) | 
					
						
							|  |  |  | 					.append($('<h1>') | 
					
						
							|  |  |  | 						.text('Drawer test...')) | 
					
						
							|  |  |  | 					.append($('<p>') | 
					
						
							| 
									
										
										
										
											2015-09-22 23:55:49 +03:00
										 |  |  | 						.text('With some text.')), | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					focusable: true, | 
					
						
							|  |  |  | 				}) | 
					
						
							| 
									
										
										
										
											2015-09-19 01:43:38 +03:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-11-15 02:31:31 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// XXX needs cleanup...
 | 
					
						
							|  |  |  | 	// XXX need a clean constructor strategy -- this and ui.js are a mess...
 | 
					
						
							| 
									
										
										
										
											2015-11-28 05:31:38 +03:00
										 |  |  | 	// XXX use this.ribbons.viewer as base...
 | 
					
						
							|  |  |  | 	// XXX BUG: when using this.ribbons.viewer as base some actions leak
 | 
					
						
							|  |  |  | 	// 		between the two viewers...
 | 
					
						
							| 
									
										
										
										
											2015-11-15 02:31:31 +03:00
										 |  |  | 	showTaggedInDrawer: ['Interface|Test/Show tagged in drawer', | 
					
						
							|  |  |  | 		function(tag){ | 
					
						
							|  |  |  | 			tag = tag || 'bookmark' | 
					
						
							|  |  |  | 			var that = this | 
					
						
							|  |  |  | 			var H = '200px' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var viewer = $('<div class="viewer">') | 
					
						
							|  |  |  | 				.css({ | 
					
						
							|  |  |  | 					height: H, | 
					
						
							|  |  |  | 					background: 'black', | 
					
						
							|  |  |  | 				}) | 
					
						
							| 
									
										
										
										
											2015-11-28 05:31:38 +03:00
										 |  |  | 			// XXX use this.ribbons.viewer as base...
 | 
					
						
							|  |  |  | 			// XXX when using viewer zoom and other stuff get leaked...
 | 
					
						
							| 
									
										
										
										
											2015-11-15 02:31:31 +03:00
										 |  |  | 			var widget = drawer.Drawer($('body'),  | 
					
						
							|  |  |  | 				$('<div>') | 
					
						
							|  |  |  | 					.css({ | 
					
						
							|  |  |  | 						position: 'relative', | 
					
						
							|  |  |  | 						height: H, | 
					
						
							|  |  |  | 					}) | 
					
						
							|  |  |  | 					.append(viewer), | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					focusable: true, | 
					
						
							|  |  |  | 				}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var data = this.data.crop(a.data.getTaggedByAll(tag), true) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var b = actions.Actions() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// used switch experimental actions on (set to true) or off (unset or false)...
 | 
					
						
							|  |  |  | 			//a.experimental = true
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// setup actions...
 | 
					
						
							|  |  |  | 			ImageGridFeatures.setup(b, [ | 
					
						
							|  |  |  | 				'viewer-testing', | 
					
						
							|  |  |  | 			]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// setup the viewer...
 | 
					
						
							|  |  |  | 			// XXX for some reason if we load this with data and images
 | 
					
						
							|  |  |  | 			// 		the images will not show up...
 | 
					
						
							|  |  |  | 			b.load({ | 
					
						
							|  |  |  | 					viewer: viewer, | 
					
						
							|  |  |  | 				}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// load some testing data...
 | 
					
						
							|  |  |  | 			// NOTE: we can (and do) load this in parts...
 | 
					
						
							|  |  |  | 			b | 
					
						
							|  |  |  | 				.load({ | 
					
						
							|  |  |  | 					data: data, | 
					
						
							|  |  |  | 					images: this.images,  | 
					
						
							|  |  |  | 				}) | 
					
						
							|  |  |  | 				// this is needed when loading legacy sources that do not have tags
 | 
					
						
							|  |  |  | 				// synced...
 | 
					
						
							|  |  |  | 				// do not do for actual data...
 | 
					
						
							|  |  |  | 				//.syncTags()
 | 
					
						
							|  |  |  | 				.setEmptyMsg('No images bookmarked...') | 
					
						
							|  |  |  | 				.fitImage(1) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// link navigation...
 | 
					
						
							|  |  |  | 				.on('focusImage', function(){ | 
					
						
							|  |  |  | 					that.focusImage(this.current) | 
					
						
							|  |  |  | 				}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// XXX setup keyboard...
 | 
					
						
							|  |  |  | 			var keyboard = require('lib/keyboard') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// XXX move this to the .config...
 | 
					
						
							|  |  |  | 			var kb = { | 
					
						
							|  |  |  | 				'Basic Control': { | 
					
						
							|  |  |  | 					pattern: '*', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					Home: { | 
					
						
							|  |  |  | 						default: 'firstImage!', | 
					
						
							|  |  |  | 					}, | 
					
						
							|  |  |  | 					End: { | 
					
						
							|  |  |  | 						default: 'lastImage!', | 
					
						
							|  |  |  | 					}, | 
					
						
							|  |  |  | 					Left: { | 
					
						
							|  |  |  | 						default: 'prevImage!', | 
					
						
							|  |  |  | 						ctrl: 'prevScreen!', | 
					
						
							|  |  |  | 						// XXX need to prevent default on mac + browser...
 | 
					
						
							|  |  |  | 						meta: 'prevScreen!', | 
					
						
							|  |  |  | 					}, | 
					
						
							|  |  |  | 					PgUp: 'prevScreen!', | 
					
						
							|  |  |  | 					PgDown: 'nextScreen!', | 
					
						
							|  |  |  | 					Right: { | 
					
						
							|  |  |  | 						default: 'nextImage!', | 
					
						
							|  |  |  | 						ctrl: 'nextScreen!', | 
					
						
							|  |  |  | 						// XXX need to prevent default on mac + browser...
 | 
					
						
							|  |  |  | 						meta: 'nextScreen!', | 
					
						
							|  |  |  | 					}, | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			widget.dom | 
					
						
							|  |  |  | 				// XXX
 | 
					
						
							|  |  |  | 				.keydown( | 
					
						
							|  |  |  | 					keyboard.dropRepeatingkeys( | 
					
						
							|  |  |  | 						keyboard.makeKeyboardHandler( | 
					
						
							|  |  |  | 							kb, | 
					
						
							|  |  |  | 							function(k){ | 
					
						
							|  |  |  | 								window.DEBUG && console.log(k) | 
					
						
							|  |  |  | 							}, | 
					
						
							|  |  |  | 							b),  | 
					
						
							|  |  |  | 						function(){  | 
					
						
							|  |  |  | 							return that.config['max-key-repeat-rate'] | 
					
						
							|  |  |  | 						})) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// XXX STUB
 | 
					
						
							|  |  |  | 			window.b = b | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			return b | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	showBookmarkedInDrawer: ['Interface|Test/Show bookmarked in drawer', | 
					
						
							|  |  |  | 		function(){ this.showTaggedInDrawer('bookmark') }], | 
					
						
							|  |  |  | 	showSelectedInDrawer: ['Interface|Test/Show selected in drawer', | 
					
						
							|  |  |  | 		function(){ this.showTaggedInDrawer('selected') }], | 
					
						
							| 
									
										
										
										
											2015-09-12 04:53:13 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ActionTree =  | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | module.ActionTree = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2015-09-12 04:53:13 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-action-tree', | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 	depends: ['ui'], | 
					
						
							| 
									
										
										
										
											2015-09-12 04:53:13 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	actions: ActionTreeActions, | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-02 03:35:26 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | // XXX console / log / status bar
 | 
					
						
							| 
									
										
										
										
											2014-11-03 06:43:23 +03:00
										 |  |  | // XXX title bar
 | 
					
						
							| 
									
										
										
										
											2014-11-02 00:15:27 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-28 05:08:03 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // XXX experimental...
 | 
					
						
							|  |  |  | // 		...not sure if this is the right way to go...
 | 
					
						
							|  |  |  | // XXX need to get the minimal size and not the width as results will 
 | 
					
						
							|  |  |  | // 		depend on viewer format...
 | 
					
						
							|  |  |  | var AutoSingleImage =  | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | module.AutoSingleImage = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2014-11-28 05:08:03 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'auto-single-image', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-29 21:25:30 +03:00
										 |  |  | 	// NOTE: this feature has no actions defined but needs the config...
 | 
					
						
							| 
									
										
										
										
											2014-11-28 05:08:03 +03:00
										 |  |  | 	config: { | 
					
						
							|  |  |  | 		'auto-single-image-in': 2, | 
					
						
							|  |  |  | 		'auto-single-image-out': 7, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['fitImage.pre', | 
					
						
							|  |  |  | 			function(count){ | 
					
						
							|  |  |  | 				count = count || 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				if(this.toggleSingleImage('?') == 'off'  | 
					
						
							|  |  |  | 						&& count < this.config['auto-single-image-in'] | 
					
						
							|  |  |  | 						&& count < this.screenwidth){ | 
					
						
							|  |  |  | 					this.toggleSingleImage() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				} else if(this.toggleSingleImage('?') == 'on'  | 
					
						
							|  |  |  | 						&& count >= this.config['auto-single-image-out'] | 
					
						
							|  |  |  | 						&& count > this.screenwidth){ | 
					
						
							|  |  |  | 					this.toggleSingleImage() | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-19 06:49:03 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2014-11-19 19:30:38 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-21 17:11:13 +03:00
										 |  |  | // XXX should we rename this to "select"???
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-20 21:45:06 +03:00
										 |  |  | // target can be:
 | 
					
						
							|  |  |  | // 		'all'
 | 
					
						
							|  |  |  | // 		'loaded'
 | 
					
						
							|  |  |  | // 		'ribbon'	- current ribbon
 | 
					
						
							|  |  |  | // 		ribbon		- specific ribbon (gid)
 | 
					
						
							|  |  |  | // 		Array
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // XXX make this a real toggler... ???
 | 
					
						
							|  |  |  | function makeTagTogglerAction(tag){ | 
					
						
							|  |  |  | 	return function(target, action){ | 
					
						
							|  |  |  | 		if(target == '?' || target == 'on' || target == 'off'){ | 
					
						
							|  |  |  | 			var x = action | 
					
						
							|  |  |  | 			action = target | 
					
						
							|  |  |  | 			target = x | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		target = target || 'current' | 
					
						
							|  |  |  | 		target = target == 'all'  | 
					
						
							|  |  |  | 				|| target == 'loaded'  | 
					
						
							|  |  |  | 				|| target in this.data.ribbons  | 
					
						
							|  |  |  | 					? this.data.getImages(target) | 
					
						
							|  |  |  | 			: target == 'ribbon' ? this.data.getImages('current') | 
					
						
							|  |  |  | 			: target | 
					
						
							|  |  |  | 		target = target.constructor !== Array ? [target] : target | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-08 03:45:04 +03:00
										 |  |  | 		// on...
 | 
					
						
							|  |  |  | 		if(action == 'on'){ | 
					
						
							|  |  |  | 			this.tag(tag, target) | 
					
						
							|  |  |  | 			var res = 'on' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// off...
 | 
					
						
							|  |  |  | 		} else if(action == 'off'){ | 
					
						
							|  |  |  | 			this.untag(tag, target) | 
					
						
							|  |  |  | 			var res = 'off' | 
					
						
							| 
									
										
										
										
											2014-11-20 21:45:06 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-08 03:45:04 +03:00
										 |  |  | 		// next...
 | 
					
						
							|  |  |  | 		} else if(action != '?'){ | 
					
						
							|  |  |  | 			var res = [] | 
					
						
							| 
									
										
										
										
											2014-11-20 21:45:06 +03:00
										 |  |  | 			var that = this | 
					
						
							|  |  |  | 			target.forEach(function(t){ | 
					
						
							| 
									
										
										
										
											2014-12-08 03:45:04 +03:00
										 |  |  | 				if(that.data.getTags(t).indexOf(tag) < 0){ | 
					
						
							|  |  |  | 					that.tag(tag, t) | 
					
						
							|  |  |  | 					res.push('on') | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					that.untag(tag, t) | 
					
						
							|  |  |  | 					res.push('off') | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-11-20 21:45:06 +03:00
										 |  |  | 			}) | 
					
						
							| 
									
										
										
										
											2014-12-08 03:45:04 +03:00
										 |  |  | 			res = res.length == 1 ? res[0] : res | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// ?
 | 
					
						
							|  |  |  | 		} else if(action == '?'){ | 
					
						
							|  |  |  | 			var res = this.data.toggleTag(tag, target, '?') | 
					
						
							|  |  |  | 			res = res.length == 1 ? res[0] : res | 
					
						
							| 
									
										
										
										
											2014-11-20 21:45:06 +03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-11-19 22:26:59 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-20 21:45:06 +03:00
										 |  |  | 		return res  | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-11-19 06:49:03 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-08 17:37:29 +03:00
										 |  |  | // XXX .toggleMarkBlock(..) not done yet...
 | 
					
						
							| 
									
										
										
										
											2014-11-20 21:45:06 +03:00
										 |  |  | var ImageMarkActions = actions.Actions({ | 
					
						
							| 
									
										
										
										
											2014-11-21 17:11:13 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-21 23:53:55 +03:00
										 |  |  | 	// a shorthand...
 | 
					
						
							| 
									
										
										
										
											2014-11-21 17:11:13 +03:00
										 |  |  | 	// NOTE: this will return a copy...
 | 
					
						
							|  |  |  | 	get marked(){ | 
					
						
							|  |  |  | 		if(this.data == null  | 
					
						
							|  |  |  | 				|| this.data.tags == null | 
					
						
							|  |  |  | 				|| !('selected' in this.data.tags)){ | 
					
						
							|  |  |  | 			return [] | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return this.data.tags['selected'].slice() | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Common use-cases:
 | 
					
						
							|  |  |  | 	// 	Toggle mark on current image
 | 
					
						
							|  |  |  | 	// 	.toggleMark()
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// 	Mark current ribbon
 | 
					
						
							|  |  |  | 	// 	.toggleMark('ribbon', 'on')
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// 	Unmark all loaded images
 | 
					
						
							|  |  |  | 	// 	.toggleMark('loaded', 'off')
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// 	Invert marks on current ribbon
 | 
					
						
							|  |  |  | 	// 	.toggleMark('ribbon')
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	toggleMark: ['Mark/Toggle image mark', | 
					
						
							| 
									
										
										
										
											2014-11-20 21:45:06 +03:00
										 |  |  | 		makeTagTogglerAction('selected')], | 
					
						
							| 
									
										
										
										
											2014-11-21 17:11:13 +03:00
										 |  |  | 	// XXX
 | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	toggleMarkBlock: ['Mark/Toggle block marks', | 
					
						
							| 
									
										
										
										
											2014-11-20 21:45:06 +03:00
										 |  |  | 		'A block is a set of adjacent images either marked on unmarked ' | 
					
						
							|  |  |  | 			+'in the same way', | 
					
						
							| 
									
										
										
										
											2014-11-20 05:08:47 +03:00
										 |  |  | 		function(target){ | 
					
						
							|  |  |  | 			var cur = this.toggleMark(target, '?') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// get all the next/prev gids until we get a state other than cur...
 | 
					
						
							| 
									
										
										
										
											2014-11-19 22:26:59 +03:00
										 |  |  | 			// XXX
 | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	markTagged: ['Mark/Mark images by tags', | 
					
						
							| 
									
										
										
										
											2014-11-19 22:26:59 +03:00
										 |  |  | 		function(tags, mode){ | 
					
						
							|  |  |  | 			var selector = mode == 'any' ? 'getTaggedByAny' : 'getTaggedByAll' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var that = this | 
					
						
							|  |  |  | 			this.data[selector](tags).forEach(function(gid){ | 
					
						
							|  |  |  | 				that.toggleMark(gid, 'on') | 
					
						
							|  |  |  | 			}) | 
					
						
							| 
									
										
										
										
											2014-11-19 06:49:03 +03:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-19 19:30:38 +03:00
										 |  |  | 	// XXX do we need first/last marked???
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	prevMarked: ['Mark|Navigate/Previous marked image', | 
					
						
							| 
									
										
										
										
											2014-11-19 19:30:38 +03:00
										 |  |  | 		function(mode){ this.prevTagged('selected', mode) }], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	nextMarked: ['Mark|Navigate/Next marked image', | 
					
						
							| 
									
										
										
										
											2014-11-19 19:30:38 +03:00
										 |  |  | 		function(mode){ this.nextTagged('selected', mode) }], | 
					
						
							| 
									
										
										
										
											2014-11-19 06:49:03 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-05 16:07:35 +03:00
										 |  |  | 	cropMarked: ['Mark|Crop/Crop marked images', | 
					
						
							| 
									
										
										
										
											2014-11-19 19:30:38 +03:00
										 |  |  | 		function(flatten){ this.cropTagged('selected', 'any', flatten) }], | 
					
						
							| 
									
										
										
										
											2014-11-19 06:49:03 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-08 17:37:29 +03:00
										 |  |  | // NOTE: this is usable without ribbons...
 | 
					
						
							| 
									
										
										
										
											2014-11-19 06:49:03 +03:00
										 |  |  | var ImageMarks =  | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | module.ImageMarks = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2014-11-19 06:49:03 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'image-marks', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-07 19:44:52 +03:00
										 |  |  | 	depends: ['base'], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-19 06:49:03 +03:00
										 |  |  | 	actions: ImageMarkActions, | 
					
						
							| 
									
										
										
										
											2014-11-21 17:11:13 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							| 
									
										
										
										
											2014-11-21 23:53:55 +03:00
										 |  |  | 		// XXX is this the right way to go???
 | 
					
						
							| 
									
										
										
										
											2015-12-05 05:19:46 +03:00
										 |  |  | 		['updateImage', function(_, gid, img){ | 
					
						
							| 
									
										
										
										
											2014-12-08 17:37:29 +03:00
										 |  |  | 			// update only when ribbons are preset... 
 | 
					
						
							|  |  |  | 			if(this.ribbons != null){ | 
					
						
							|  |  |  | 				if(this.toggleMark(gid, '?') == 'on'){ | 
					
						
							|  |  |  | 					this.ribbons.toggleImageMark(gid, 'selected', 'on') | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					this.ribbons.toggleImageMark(gid, 'selected', 'off') | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-11-21 23:53:55 +03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2014-11-21 17:11:13 +03:00
										 |  |  | 	], | 
					
						
							| 
									
										
										
										
											2014-11-19 06:49:03 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //---------------------------------------------------------------------
 | 
					
						
							|  |  |  | var ImageBookmarkActions = actions.Actions({ | 
					
						
							| 
									
										
										
										
											2014-11-21 17:11:13 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-21 23:53:55 +03:00
										 |  |  | 	// a shorthand...
 | 
					
						
							| 
									
										
										
										
											2014-11-21 17:11:13 +03:00
										 |  |  | 	// NOTE: this will return a copy...
 | 
					
						
							|  |  |  | 	get bookmarked(){ | 
					
						
							|  |  |  | 		if(this.data == null  | 
					
						
							|  |  |  | 				|| this.data.tags == null | 
					
						
							|  |  |  | 				|| !('bookmark' in this.data.tags)){ | 
					
						
							|  |  |  | 			return [] | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return this.data.tags['bookmark'].slice() | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	toggleBookmark: ['Bookmark/Toggle image bookmark', | 
					
						
							| 
									
										
										
										
											2014-11-20 21:45:06 +03:00
										 |  |  | 		makeTagTogglerAction('bookmark')], | 
					
						
							| 
									
										
										
										
											2014-11-19 22:26:59 +03:00
										 |  |  | 	// action can be:
 | 
					
						
							|  |  |  | 	// 	'on'	- toggle all on
 | 
					
						
							|  |  |  | 	// 	'off'	- toggle all off
 | 
					
						
							|  |  |  | 	// 	'next'	- toggle each image to next state
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	toggleBookmarkOnMarked: ['Bookmark|Mark/Toggle bookmark on maked images', | 
					
						
							| 
									
										
										
										
											2014-11-19 22:26:59 +03:00
										 |  |  | 		function(action){  | 
					
						
							| 
									
										
										
										
											2014-11-20 21:45:06 +03:00
										 |  |  | 			return this.toggleBookmark(this.data.getTaggedByAny('selected'), action)  | 
					
						
							| 
									
										
										
										
											2014-11-19 22:26:59 +03:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	prevBookmarked: ['Bookmark|Navigate/Previous bookmarked image', | 
					
						
							| 
									
										
										
										
											2014-11-21 23:53:55 +03:00
										 |  |  | 		function(mode){ this.prevTagged('bookmark', mode) }], | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	nextBookmarked: ['Bookmark|Navigate/Next bookmarked image', | 
					
						
							| 
									
										
										
										
											2014-11-21 23:53:55 +03:00
										 |  |  | 		function(mode){ this.nextTagged('bookmark', mode) }], | 
					
						
							| 
									
										
										
										
											2014-11-19 22:26:59 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-09 17:24:41 +03:00
										 |  |  | 	cropBookmarked: ['Bookmark|Crop/Crop bookmarked images', | 
					
						
							| 
									
										
										
										
											2014-11-21 23:53:55 +03:00
										 |  |  | 		function(flatten){ this.cropTagged('bookmark', 'any', flatten) }], | 
					
						
							| 
									
										
										
										
											2014-11-19 06:49:03 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-08 17:37:29 +03:00
										 |  |  | // NOTE: this is usable without ribbons...
 | 
					
						
							| 
									
										
										
										
											2014-11-19 06:49:03 +03:00
										 |  |  | var ImageBookmarks =  | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | module.ImageBookmarks = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2014-11-19 06:49:03 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'image-bookmarks', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-07 19:44:52 +03:00
										 |  |  | 	depends: ['base'], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-19 06:49:03 +03:00
										 |  |  | 	actions: ImageBookmarkActions, | 
					
						
							| 
									
										
										
										
											2014-11-19 19:30:38 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-21 23:53:55 +03:00
										 |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		// XXX is this the right way to go???
 | 
					
						
							| 
									
										
										
										
											2015-12-05 05:19:46 +03:00
										 |  |  | 		['updateImage', function(_, gid, img){ | 
					
						
							| 
									
										
										
										
											2014-12-08 17:37:29 +03:00
										 |  |  | 			// update only when ribbons are preset... 
 | 
					
						
							|  |  |  | 			if(this.ribbons != null){ | 
					
						
							|  |  |  | 				if(this.toggleBookmark(gid, '?') == 'on'){ | 
					
						
							|  |  |  | 					this.ribbons.toggleImageMark(gid, 'bookmark', 'on') | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					this.ribbons.toggleImageMark(gid, 'bookmark', 'off') | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2014-11-21 23:53:55 +03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	], | 
					
						
							| 
									
										
										
										
											2014-11-19 06:49:03 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 20:21:45 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2014-12-06 02:46:43 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | var AppControlActions = actions.Actions({ | 
					
						
							|  |  |  | 	// XXX revise these...
 | 
					
						
							| 
									
										
										
										
											2015-11-26 02:34:23 +03:00
										 |  |  | 	close: ['File|Interface/Close viewer', | 
					
						
							| 
									
										
										
										
											2014-12-06 02:46:43 +03:00
										 |  |  | 		function(){ | 
					
						
							|  |  |  | 			// XXX should we do anything else here like auto-save???
 | 
					
						
							|  |  |  | 			window.close()  | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-15 02:57:31 +03:00
										 |  |  | 	toggleFullScreen: ['Interface/Toggle full screen mode', | 
					
						
							| 
									
										
										
										
											2014-12-06 02:46:43 +03:00
										 |  |  | 		function(){ | 
					
						
							|  |  |  | 			// XXX where should toggleFullscreenMode(..) be defined...
 | 
					
						
							|  |  |  | 			toggleFullscreenMode()  | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-09-15 02:57:31 +03:00
										 |  |  | 	showDevTools: ['Interface|Development/Show Dev Tools', | 
					
						
							| 
									
										
										
										
											2014-12-06 02:46:43 +03:00
										 |  |  | 		function(){ | 
					
						
							|  |  |  | 			if(window.showDevTools != null){ | 
					
						
							|  |  |  | 				showDevTools()  | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // XXX this needs a better .isApplicable(..)
 | 
					
						
							|  |  |  | var AppControl =  | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | module.AppControl = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2014-12-06 02:46:43 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'app-control', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	actions: AppControlActions, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// XXX test if in:
 | 
					
						
							|  |  |  | 	// 	- chrome app
 | 
					
						
							|  |  |  | 	// 	- nw
 | 
					
						
							|  |  |  | 	// 	- mobile
 | 
					
						
							|  |  |  | 	isApplicable: function(){ | 
					
						
							|  |  |  | 		return window.nodejs != null | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //---------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2015-11-29 22:00:00 +03:00
										 |  |  | // fs reader/loader...
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-06 02:46:43 +03:00
										 |  |  | // XXX at this point this is a stub...
 | 
					
						
							| 
									
										
										
										
											2015-11-14 04:48:55 +03:00
										 |  |  | if(window.nodejs != null){ | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 	var glob = requirejs('glob') | 
					
						
							| 
									
										
										
										
											2015-12-06 23:09:41 +03:00
										 |  |  | 	var file = requirejs('./file') | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // NOTE: we are not using node's path module as we need this to work in
 | 
					
						
							|  |  |  | // 		all contexts, not only node... (???)
 | 
					
						
							|  |  |  | // 		XXX currently this is only used in node-specific modules and in 
 | 
					
						
							|  |  |  | // 			images...
 | 
					
						
							|  |  |  | // XXX make this standard...
 | 
					
						
							|  |  |  | var normalizePath =  | 
					
						
							|  |  |  | module.normalizePath = | 
					
						
							|  |  |  | function(path){ | 
					
						
							|  |  |  | 	return path | 
					
						
							|  |  |  | 		// normalize the slashes...
 | 
					
						
							|  |  |  | 		.replace(/(\/)/g, '/') | 
					
						
							|  |  |  | 		// remove duplicate '/'
 | 
					
						
							|  |  |  | 		.replace(/(\/)\1+/g, '/') | 
					
						
							|  |  |  | 		// remove trailing '/'
 | 
					
						
							|  |  |  | 		.replace(/\/+$/, '') | 
					
						
							|  |  |  | 		// take care of .
 | 
					
						
							|  |  |  | 		.replace(/\/\.\//g, '/') | 
					
						
							|  |  |  | 		.replace(/\/\.$/, '') | 
					
						
							|  |  |  | 		// take care of ..
 | 
					
						
							|  |  |  | 		.replace(/\/[^\/]+\/\.\.\//g, '/') | 
					
						
							|  |  |  | 		.replace(/\/[^\/]+\/\.\.$/, '') | 
					
						
							| 
									
										
										
										
											2015-11-14 04:48:55 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-15 01:25:04 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 07:50:04 +03:00
										 |  |  | // XXX revise base path mechanics...
 | 
					
						
							|  |  |  | // 		.base_path
 | 
					
						
							|  |  |  | // 		.loaded_paths
 | 
					
						
							| 
									
										
										
										
											2015-11-14 04:48:55 +03:00
										 |  |  | var FileSystemLoaderActions = actions.Actions({ | 
					
						
							| 
									
										
										
										
											2015-12-05 01:19:06 +03:00
										 |  |  | 	config: { | 
					
						
							| 
									
										
										
										
											2015-12-06 06:21:37 +03:00
										 |  |  | 		'index-dir': '.ImageGrid', | 
					
						
							| 
									
										
										
										
											2015-12-05 01:19:06 +03:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2015-12-05 05:19:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-06 06:21:37 +03:00
										 |  |  | 	// NOTE: these will remove the trailing '/' (or '\') unless the path
 | 
					
						
							|  |  |  | 	// 		is root...
 | 
					
						
							|  |  |  | 	// 		...this is mainly to facilitate better browse support, i.e.
 | 
					
						
							|  |  |  | 	// 		to open the dir (open parent + select current) and not 
 | 
					
						
							|  |  |  | 	// 		within the dir
 | 
					
						
							| 
									
										
										
										
											2015-12-05 05:19:46 +03:00
										 |  |  | 	// XXX need to revise these...
 | 
					
						
							| 
									
										
										
										
											2015-12-05 07:37:13 +03:00
										 |  |  | 	// XXX should there be a loaded path and a requested path???
 | 
					
						
							| 
									
										
										
										
											2015-12-06 06:21:37 +03:00
										 |  |  | 	get base_path(){ | 
					
						
							|  |  |  | 		var b = this._base_path | 
					
						
							|  |  |  | 		if(b && b != '/' && b != '\\'){ | 
					
						
							| 
									
										
										
										
											2015-12-06 23:09:41 +03:00
										 |  |  | 			b = normalizePath(b) | 
					
						
							| 
									
										
										
										
											2015-12-06 06:21:37 +03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		return b | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	// XXX use .loadPath(..)
 | 
					
						
							|  |  |  | 	set base_path(value){ | 
					
						
							|  |  |  | 		if(value != '/' && value != '\\'){ | 
					
						
							| 
									
										
										
										
											2015-12-06 23:09:41 +03:00
										 |  |  | 			value = normalizePath(value) | 
					
						
							| 
									
										
										
										
											2015-12-06 06:21:37 +03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		this._base_path = value | 
					
						
							|  |  |  | 		this.loadIndex(value) | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2015-12-05 05:19:46 +03:00
										 |  |  | 	loaded_paths: null, | 
					
						
							| 
									
										
										
										
											2015-12-06 06:21:37 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-29 04:14:46 +03:00
										 |  |  | 	// NOTE: when passed no path this will not do anything...
 | 
					
						
							|  |  |  | 	// XXX should this set something like .path???
 | 
					
						
							|  |  |  | 	// 		...and how should this be handled when merging indexes or
 | 
					
						
							|  |  |  | 	//		viewing multiple/clustered indexes???
 | 
					
						
							| 
									
										
										
										
											2015-12-05 01:19:06 +03:00
										 |  |  | 	// XXX add a symmetric equivalent to .prepareIndexForWrite(..) so as 
 | 
					
						
							|  |  |  | 	// 		to enable features to load their data...
 | 
					
						
							| 
									
										
										
										
											2015-11-29 04:14:46 +03:00
										 |  |  | 	// XXX look inside...
 | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 	loadIndex: ['File/Load index', | 
					
						
							| 
									
										
										
										
											2015-11-16 11:31:15 +03:00
										 |  |  | 		function(path, logger){ | 
					
						
							| 
									
										
										
										
											2015-11-14 04:48:55 +03:00
										 |  |  | 			var that = this | 
					
						
							| 
									
										
										
										
											2015-11-14 20:51:22 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-29 04:14:46 +03:00
										 |  |  | 			if(path == null){ | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-15 01:25:04 +03:00
										 |  |  | 			// XXX get a logger...
 | 
					
						
							| 
									
										
										
										
											2015-11-28 04:55:51 +03:00
										 |  |  | 			logger = logger || this.logger | 
					
						
							| 
									
										
										
										
											2015-11-15 01:25:04 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 05:19:46 +03:00
										 |  |  | 			// XXX make this load incrementally (i.e. and EventEmitter
 | 
					
						
							|  |  |  | 			// 		a-la glob)....
 | 
					
						
							| 
									
										
										
										
											2015-12-05 01:19:06 +03:00
										 |  |  | 			file.loadIndex(path, this.config['index-dir'], logger) | 
					
						
							| 
									
										
										
										
											2015-11-16 11:31:15 +03:00
										 |  |  | 				.then(function(res){ | 
					
						
							| 
									
										
										
										
											2015-11-14 20:51:22 +03:00
										 |  |  | 					// XXX if res is empty load raw...
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-28 04:55:51 +03:00
										 |  |  | 					// XXX use the logger...
 | 
					
						
							|  |  |  | 					//console.log('FOUND INDEXES:', Object.keys(res).length)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// skip nested paths...
 | 
					
						
							|  |  |  | 					// XXX make this optional...
 | 
					
						
							|  |  |  | 					// XXX this is best done BEFORE we load all the 
 | 
					
						
							|  |  |  | 					// 		indexes, e.g. in .loadIndex(..)
 | 
					
						
							|  |  |  | 					var paths = Object.keys(res) | 
					
						
							|  |  |  | 					var skipped = [] | 
					
						
							|  |  |  | 					paths.forEach(function(p){ | 
					
						
							|  |  |  | 						// already removed...
 | 
					
						
							|  |  |  | 						if(skipped.indexOf(p) >= 0){ | 
					
						
							|  |  |  | 							return | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2015-11-15 01:25:04 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-28 04:55:51 +03:00
										 |  |  | 						paths | 
					
						
							|  |  |  | 							// get all paths that fully contain p...
 | 
					
						
							|  |  |  | 							.filter(function(o){ | 
					
						
							|  |  |  | 								return o != p && o.indexOf(p) == 0 | 
					
						
							|  |  |  | 							}) | 
					
						
							|  |  |  | 							// drop all longer paths...
 | 
					
						
							|  |  |  | 							.forEach(function(e){ | 
					
						
							|  |  |  | 								skipped.push(e) | 
					
						
							|  |  |  | 								delete res[e] | 
					
						
							|  |  |  | 							}) | 
					
						
							|  |  |  | 					}) | 
					
						
							|  |  |  | 					//console.log('SKIPPING NESTED:', skipped.length)
 | 
					
						
							| 
									
										
										
										
											2015-11-14 04:48:55 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-28 04:55:51 +03:00
										 |  |  | 					var index | 
					
						
							| 
									
										
										
										
											2015-12-05 05:19:46 +03:00
										 |  |  | 					var base_path | 
					
						
							|  |  |  | 					var loaded = [] | 
					
						
							| 
									
										
										
										
											2015-11-28 04:55:51 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					// NOTE: res may contain multiple indexes...
 | 
					
						
							|  |  |  | 					for(var k in res){ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						// skip empty indexes...
 | 
					
						
							|  |  |  | 						// XXX should we rebuild  or list here???
 | 
					
						
							|  |  |  | 						if(res[k].data == null || res[k].images == null){ | 
					
						
							|  |  |  | 							continue | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						var part = file.buildIndex(res[k], k) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						// load the first index...
 | 
					
						
							|  |  |  | 						if(index == null){ | 
					
						
							|  |  |  | 							// XXX use the logger...
 | 
					
						
							|  |  |  | 							//console.log('LOADING:', k, res)
 | 
					
						
							|  |  |  | 							logger && logger.emit('base index', k, res) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							index = part | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						// merge indexes...
 | 
					
						
							|  |  |  | 						// XXX need to skip sub-indexes in the same sub-tree...
 | 
					
						
							|  |  |  | 						// 		...skip any path that fully contains an 
 | 
					
						
							|  |  |  | 						// 		already loaded path..
 | 
					
						
							|  |  |  | 						// XXX load data in chunks rather than merge...
 | 
					
						
							|  |  |  | 						} else { | 
					
						
							|  |  |  | 							//console.log('MERGING:', k, part)
 | 
					
						
							|  |  |  | 							logger && logger.emit('merge index', k, res) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							// merge...
 | 
					
						
							|  |  |  | 							// XXX this appears to lose bookmarks and other tags...
 | 
					
						
							|  |  |  | 							index.data.join(part.data) | 
					
						
							|  |  |  | 							index.images.join(part.images) | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 07:37:13 +03:00
										 |  |  | 						loaded.push(k) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-28 04:55:51 +03:00
										 |  |  | 						// XXX do a better merge and remove this...
 | 
					
						
							| 
									
										
										
										
											2015-12-05 05:19:46 +03:00
										 |  |  | 						// 		...we either need to lazy-load clustered indexes
 | 
					
						
							|  |  |  | 						// 		or merge, in both cases base_path should reflet
 | 
					
						
							|  |  |  | 						// 		the fact that we have multiple indexes...
 | 
					
						
							| 
									
										
										
										
											2015-11-28 04:55:51 +03:00
										 |  |  | 						break | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					logger && logger.emit('load index', index) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 05:19:46 +03:00
										 |  |  | 					that.loaded_paths = loaded | 
					
						
							| 
									
										
										
										
											2015-12-05 07:37:13 +03:00
										 |  |  | 					// XXX should we get the requested path or the base path currently loaded
 | 
					
						
							|  |  |  | 					//that.base_path = loaded.length == 1 ? loaded[0] : path
 | 
					
						
							| 
									
										
										
										
											2015-12-06 06:21:37 +03:00
										 |  |  | 					that._base_path = loaded.length == 1 ? loaded[0] : path | 
					
						
							| 
									
										
										
										
											2015-12-05 07:37:13 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-28 04:55:51 +03:00
										 |  |  | 					that.load(index) | 
					
						
							| 
									
										
										
										
											2015-11-14 04:48:55 +03:00
										 |  |  | 				}) | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 	// XXX use the logger...
 | 
					
						
							|  |  |  | 	// XXX add a recursive option...
 | 
					
						
							|  |  |  | 	// 		...might also be nice to add sub-dirs to ribbons...
 | 
					
						
							|  |  |  | 	loadImages: ['File/Load images', | 
					
						
							|  |  |  | 		function(path, logger){ | 
					
						
							|  |  |  | 			if(path == null){ | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var that = this | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-06 23:09:41 +03:00
										 |  |  | 			glob(path + '/*+(jpg|png)') | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 				.on('end', function(lst){  | 
					
						
							| 
									
										
										
										
											2015-12-06 23:09:41 +03:00
										 |  |  | 					that.loadURLs(lst | 
					
						
							|  |  |  | 						.map(function(p){ return normalizePath(p) }), path) | 
					
						
							| 
									
										
										
										
											2015-12-05 07:50:04 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					// XXX not sure if this is the way to go...
 | 
					
						
							| 
									
										
										
										
											2015-12-06 06:21:37 +03:00
										 |  |  | 					that._base_path = path  | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 				}) | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// XXX auto-detect format or let the user chose...
 | 
					
						
							| 
									
										
										
										
											2015-12-01 03:05:05 +03:00
										 |  |  | 	loadPath: ['File/Load path (STUB)', | 
					
						
							| 
									
										
										
										
											2015-12-06 06:21:37 +03:00
										 |  |  | 		function(path, logger){ | 
					
						
							|  |  |  | 			// XXX check if this.config['index-dir'] exists, if yes then
 | 
					
						
							|  |  |  | 			// 		.loadIndex(..) else .loadImages(..)
 | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-06 23:09:41 +03:00
										 |  |  | 	// XXX merging does not work (something wrong with .data.join(..))
 | 
					
						
							|  |  |  | 	// XXX revise logger...
 | 
					
						
							|  |  |  | 	loadNewImages: ['File/Load new images', | 
					
						
							|  |  |  | 		function(path, logger){ | 
					
						
							|  |  |  | 			path = path || this.base_path | 
					
						
							|  |  |  | 			logger = logger || this.logger | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			if(path == null){ | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var that = this | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// cache the loaded images...
 | 
					
						
							|  |  |  | 			var loaded = this.images.map(function(gid, img){ return img.path }) | 
					
						
							|  |  |  | 			var base_pattern = RegExp('^'+path) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// find images...
 | 
					
						
							|  |  |  | 			glob(path + '/*+(jpg|png)') | 
					
						
							|  |  |  | 				.on('end', function(lst){  | 
					
						
							|  |  |  | 					// create a new images chunk...
 | 
					
						
							|  |  |  | 					lst = lst | 
					
						
							|  |  |  | 						// filter out loaded images...
 | 
					
						
							|  |  |  | 						.filter(function(p){ | 
					
						
							|  |  |  | 							return loaded.indexOf( | 
					
						
							|  |  |  | 								normalizePath(p) | 
					
						
							|  |  |  | 									// remove the base path if it exists...
 | 
					
						
							|  |  |  | 									.replace(base_pattern, '') | 
					
						
							|  |  |  | 									// normalize the leading './'
 | 
					
						
							|  |  |  | 									.replace(/^[\/\\]+/, './')) < 0 | 
					
						
							|  |  |  | 						}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// nothing new...
 | 
					
						
							|  |  |  | 					if(lst.length == 0){ | 
					
						
							|  |  |  | 						// XXX
 | 
					
						
							|  |  |  | 						logger && logger.emit('loaded', []) | 
					
						
							|  |  |  | 						return | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// XXX
 | 
					
						
							|  |  |  | 					logger && logger.emit('queued', lst) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					var new_images = images.Images.fromArray(lst, path) | 
					
						
							|  |  |  | 					var gids = new_images.keys() | 
					
						
							|  |  |  | 					var new_data = that.data.constructor.fromArray(gids) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// merge with index...
 | 
					
						
							|  |  |  | 					// NOTE: we are prepending new images to the start...
 | 
					
						
							|  |  |  | 					// NOTE: all ribbon gids will change here...
 | 
					
						
							|  |  |  | 					var cur = that.data.current | 
					
						
							|  |  |  | 					// XXX this does not seem to work...
 | 
					
						
							|  |  |  | 					that.data = new_data.join(that.data) | 
					
						
							|  |  |  | 					that.data.current = cur | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					that.images.join(new_images) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					that.reload() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// XXX report that we are done...
 | 
					
						
							|  |  |  | 					logger && logger.emit('loaded', lst) | 
					
						
							|  |  |  | 				}) | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-12-05 05:19:46 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	clear: [function(){ | 
					
						
							| 
									
										
										
										
											2015-12-06 06:21:37 +03:00
										 |  |  | 		delete this._base_path | 
					
						
							| 
									
										
										
										
											2015-12-05 07:37:13 +03:00
										 |  |  | 		delete this.loaded_paths | 
					
						
							| 
									
										
										
										
											2015-12-05 05:19:46 +03:00
										 |  |  | 	}], | 
					
						
							| 
									
										
										
										
											2015-11-29 03:42:55 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-01 03:05:05 +03:00
										 |  |  | // XXX add load history to this...
 | 
					
						
							|  |  |  | // 		...might be good to add a generic history feature and use that...
 | 
					
						
							| 
									
										
										
										
											2015-11-29 04:14:46 +03:00
										 |  |  | // XXX is this a good name???
 | 
					
						
							| 
									
										
										
										
											2015-11-29 03:42:55 +03:00
										 |  |  | var FileSystemLoader =  | 
					
						
							|  |  |  | module.FileSystemLoader = ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							| 
									
										
										
										
											2015-11-28 18:15:12 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-29 03:42:55 +03:00
										 |  |  | 	tag: 'fs-loader', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	actions: FileSystemLoaderActions, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	isApplicable: function(){ | 
					
						
							|  |  |  | 		return window.nodejs != null | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | //---------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 01:45:39 +03:00
										 |  |  | // XXX would need to delay the original action while the user is 
 | 
					
						
							|  |  |  | // 		browsing...
 | 
					
						
							| 
									
										
										
										
											2015-11-29 22:00:00 +03:00
										 |  |  | var makeBrowseProxy = function(action){ | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 	return function(path, logger){ | 
					
						
							|  |  |  | 		var that = this | 
					
						
							|  |  |  | 		if(path == null){ | 
					
						
							|  |  |  | 			// XXX should we set a start path here to current???
 | 
					
						
							|  |  |  | 			return this.browsePath(path,  | 
					
						
							|  |  |  | 				function(path){  | 
					
						
							|  |  |  | 					return that[action](path, logger)  | 
					
						
							|  |  |  | 				}) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-29 03:42:55 +03:00
										 |  |  | var FileSystemLoaderUIActions = actions.Actions({ | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 	config: { | 
					
						
							| 
									
										
										
										
											2015-11-29 21:25:30 +03:00
										 |  |  | 		// list of loaders to complete .browsePath(..) action
 | 
					
						
							|  |  |  | 		//
 | 
					
						
							|  |  |  | 		// NOTE: these will be displayed in the same order as they appear
 | 
					
						
							|  |  |  | 		// 		in the list.
 | 
					
						
							|  |  |  | 		// NOTE: the first one is auto-selected.
 | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 		'path-loaders': [ | 
					
						
							|  |  |  | 			'loadIndex', | 
					
						
							|  |  |  | 			'loadImages', | 
					
						
							| 
									
										
										
										
											2015-12-01 03:05:05 +03:00
										 |  |  | 			//'loadPath',
 | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 		], | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-29 04:14:46 +03:00
										 |  |  | 	// XXX BUG: for some reason this when run from .browseActions(..) or
 | 
					
						
							|  |  |  | 	// 		any other Browse, loads incorrectly while when called 
 | 
					
						
							|  |  |  | 	// 		directly is OK...
 | 
					
						
							| 
									
										
										
										
											2015-11-29 21:25:30 +03:00
										 |  |  | 	// XXX for some reason the path list blinks (.update()???) when sub 
 | 
					
						
							|  |  |  | 	// 		menu is shown...
 | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 	// XXX should the loader list be nested or open in overlay (as-is now)???
 | 
					
						
							| 
									
										
										
										
											2015-11-28 18:15:12 +03:00
										 |  |  | 	browsePath: ['File/Browse file system...', | 
					
						
							|  |  |  | 		function(base, callback){ | 
					
						
							|  |  |  | 			var that = this | 
					
						
							|  |  |  | 			var parent = this.preventClosing ? this.preventClosing() : null | 
					
						
							| 
									
										
										
										
											2015-12-05 07:55:08 +03:00
										 |  |  | 			base = base || this.base_path || '/' | 
					
						
							| 
									
										
										
										
											2015-11-28 18:15:12 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			var o = overlay.Overlay(this.ribbons.viewer,  | 
					
						
							|  |  |  | 				require('./lib/widget/browse-walk').makeWalk(null, base, false, false) | 
					
						
							|  |  |  | 					// path selected...
 | 
					
						
							|  |  |  | 					.open(function(evt, path){  | 
					
						
							| 
									
										
										
										
											2015-11-29 21:25:30 +03:00
										 |  |  | 						var item = o.client.selected | 
					
						
							| 
									
										
										
										
											2015-11-28 18:15:12 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 						// single loader...
 | 
					
						
							|  |  |  | 						if(callback && callback.constructor === Function){ | 
					
						
							|  |  |  | 							// close self and parent...
 | 
					
						
							|  |  |  | 							o.close()  | 
					
						
							|  |  |  | 							parent  | 
					
						
							|  |  |  | 								&& parent.close  | 
					
						
							|  |  |  | 								&& parent.close() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-28 18:15:12 +03:00
										 |  |  | 							callback(path) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 						// list of loaders...
 | 
					
						
							| 
									
										
										
										
											2015-11-28 18:15:12 +03:00
										 |  |  | 						} else { | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 							// user-provided list...
 | 
					
						
							|  |  |  | 							if(callback){ | 
					
						
							|  |  |  | 								var loaders = callback | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							// build the loaders list from .config...
 | 
					
						
							|  |  |  | 							} else { | 
					
						
							|  |  |  | 								var loaders = {} | 
					
						
							|  |  |  | 								that.config['path-loaders'].forEach(function(m){ | 
					
						
							| 
									
										
										
										
											2015-11-29 21:25:30 +03:00
										 |  |  | 									loaders[that.getDoc(m)[m][0].split('/').pop()] = function(){  | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 										return that[m](path)  | 
					
						
							|  |  |  | 									} | 
					
						
							|  |  |  | 								}) | 
					
						
							|  |  |  | 							} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							// show user the list...
 | 
					
						
							|  |  |  | 							var so = overlay.Overlay(that.ribbons.viewer,  | 
					
						
							|  |  |  | 								browse.makeList(null, loaders) | 
					
						
							|  |  |  | 									// close self and parent...
 | 
					
						
							|  |  |  | 									.open(function(){ | 
					
						
							|  |  |  | 										so.close() | 
					
						
							|  |  |  | 										o.close()  | 
					
						
							|  |  |  | 									})) | 
					
						
							|  |  |  | 									// closed menu...
 | 
					
						
							|  |  |  | 									.close(function(){ | 
					
						
							|  |  |  | 										o.focus() | 
					
						
							| 
									
										
										
										
											2015-11-29 21:25:30 +03:00
										 |  |  | 										o.client.select(item) | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 									}) | 
					
						
							| 
									
										
										
										
											2015-11-29 21:25:30 +03:00
										 |  |  | 							// select top element...
 | 
					
						
							| 
									
										
										
										
											2015-11-29 20:46:15 +03:00
										 |  |  | 							so.client.select(0) | 
					
						
							| 
									
										
										
										
											2015-11-28 18:15:12 +03:00
										 |  |  | 						} | 
					
						
							|  |  |  | 					})) | 
					
						
							|  |  |  | 					// we closed the browser...
 | 
					
						
							|  |  |  | 					.close(function(){ | 
					
						
							|  |  |  | 						parent  | 
					
						
							|  |  |  | 							&& parent.focus  | 
					
						
							|  |  |  | 							&& parent.focus() | 
					
						
							|  |  |  | 					}) | 
					
						
							|  |  |  | 		}], | 
					
						
							| 
									
										
										
										
											2015-11-29 22:00:00 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// NOTE: if no path is passed (null) these behave just like .browsePath(..)
 | 
					
						
							|  |  |  | 	// 		with the appropriate callback otherwise it will just load 
 | 
					
						
							|  |  |  | 	// 		the given path (no UI) while .browsePath(..) will load the 
 | 
					
						
							|  |  |  | 	// 		UI in all cases but will treat the given path as a base path 
 | 
					
						
							|  |  |  | 	// 		to start from.
 | 
					
						
							|  |  |  | 	// XXX should passing no path to this start browsing from the current
 | 
					
						
							|  |  |  | 	// 		path or from the root?
 | 
					
						
							|  |  |  | 	loadIndex: [makeBrowseProxy('loadIndex')], | 
					
						
							|  |  |  | 	loadImages: [makeBrowseProxy('loadImages')], | 
					
						
							| 
									
										
										
										
											2015-11-14 04:48:55 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-29 04:14:46 +03:00
										 |  |  | // XXX is this a good name???
 | 
					
						
							| 
									
										
										
										
											2015-11-29 03:42:55 +03:00
										 |  |  | var FileSystemLoaderUI =  | 
					
						
							|  |  |  | module.FileSystemLoaderUI = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2014-12-04 20:21:45 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-29 03:42:55 +03:00
										 |  |  | 	tag: 'fs-loader-ui', | 
					
						
							|  |  |  | 	depends: ['fs-loader'], | 
					
						
							| 
									
										
										
										
											2015-11-14 04:48:55 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-29 03:42:55 +03:00
										 |  |  | 	actions: FileSystemLoaderUIActions, | 
					
						
							| 
									
										
										
										
											2014-12-04 20:21:45 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-29 22:00:00 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							|  |  |  | // fs writer...
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 01:19:06 +03:00
										 |  |  | var FileSystemWriterActions = actions.Actions({ | 
					
						
							|  |  |  | 	config: { | 
					
						
							| 
									
										
										
										
											2015-12-05 01:45:39 +03:00
										 |  |  | 		//'index-filename-template': '${DATE}-${KEYWORD}.${EXT}',
 | 
					
						
							| 
									
										
										
										
											2015-12-05 01:19:06 +03:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// This is here so as other features can participate in index
 | 
					
						
							|  |  |  | 	// preparation...
 | 
					
						
							|  |  |  | 	// There are several stages features can control the output format:
 | 
					
						
							|  |  |  | 	// 	1) .json() action
 | 
					
						
							|  |  |  | 	// 		- use this for global high level serialization format
 | 
					
						
							|  |  |  | 	// 		- the output of this is .load(..) compatible
 | 
					
						
							|  |  |  | 	// 	2) .prepareIndex(..) action
 | 
					
						
							|  |  |  | 	// 		- use this for file system write preparation
 | 
					
						
							|  |  |  | 	// 		- this directly affects the index structure
 | 
					
						
							| 
									
										
										
										
											2015-12-05 05:19:46 +03:00
										 |  |  | 	//
 | 
					
						
							|  |  |  | 	// This will get the base index, ignoring the cropped state.
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// Returns:
 | 
					
						
							|  |  |  | 	// 	{
 | 
					
						
							|  |  |  | 	// 		// This is the original json object, either the one passed as
 | 
					
						
							|  |  |  | 	// 		// an argument or the one returned by .json('base')
 | 
					
						
							|  |  |  | 	// 		raw: <original-json>,
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// 		// this is the prepared object, the one that is going to be
 | 
					
						
							|  |  |  | 	// 		// saved.
 | 
					
						
							|  |  |  | 	// 		prepared: <prepared-json>,
 | 
					
						
							|  |  |  | 	// 	}
 | 
					
						
							| 
									
										
										
										
											2015-12-06 06:21:37 +03:00
										 |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2015-12-05 01:19:06 +03:00
										 |  |  | 	prepareIndexForWrite: ['File/Prepare index for writing', | 
					
						
							|  |  |  | 		function(json){ | 
					
						
							| 
									
										
										
										
											2015-12-05 05:19:46 +03:00
										 |  |  | 			json = json || this.json('base') | 
					
						
							|  |  |  | 			return { | 
					
						
							|  |  |  | 				raw: json, | 
					
						
							|  |  |  | 				prepared: file.prepareIndex(json), | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-12-05 01:19:06 +03:00
										 |  |  | 		}], | 
					
						
							|  |  |  | 	// XXX get real base path...
 | 
					
						
							| 
									
										
										
										
											2015-12-05 01:45:39 +03:00
										 |  |  | 	saveIndex: ['File/Save index', | 
					
						
							| 
									
										
										
										
											2015-12-05 01:19:06 +03:00
										 |  |  | 		function(path, logger){ | 
					
						
							| 
									
										
										
										
											2015-12-05 01:45:39 +03:00
										 |  |  | 			// XXX this is a stub to make this compatible with makeBrowseProxy(..)
 | 
					
						
							|  |  |  | 			// 		...we do need a default here...
 | 
					
						
							|  |  |  | 			if(path == null){ | 
					
						
							|  |  |  | 				return | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2015-12-05 07:37:13 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// XXX get a logger...
 | 
					
						
							|  |  |  | 			logger = logger || this.logger | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 01:19:06 +03:00
										 |  |  | 			// XXX get real base path...
 | 
					
						
							| 
									
										
										
										
											2015-12-05 07:50:04 +03:00
										 |  |  | 			//path = path || this.base_path +'/'+ this.config['index-dir']
 | 
					
						
							| 
									
										
										
										
											2015-12-05 01:19:06 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			file.writeIndex( | 
					
						
							| 
									
										
										
										
											2015-12-05 05:19:46 +03:00
										 |  |  | 				this.prepareIndexForWrite().prepared,  | 
					
						
							| 
									
										
										
										
											2015-12-06 06:21:37 +03:00
										 |  |  | 				// XXX should we check if index dir is present in path???
 | 
					
						
							|  |  |  | 				//path, 
 | 
					
						
							|  |  |  | 				path +'/'+ this.config['index-dir'],  | 
					
						
							| 
									
										
										
										
											2015-12-05 01:19:06 +03:00
										 |  |  | 				this.config['index-filename-template'],  | 
					
						
							|  |  |  | 				logger || this.logger) | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// XXX same as ctrl-shif-s in gen3
 | 
					
						
							|  |  |  | 	exportView: ['File/Export current view', | 
					
						
							|  |  |  | 		function(){ | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	// XXX export current state as a full loadable index
 | 
					
						
							| 
									
										
										
										
											2015-12-06 06:21:37 +03:00
										 |  |  | 	// XXX might be interesting to unify this and .exportView(..)
 | 
					
						
							|  |  |  | 	// XXX local collections???
 | 
					
						
							| 
									
										
										
										
											2015-12-05 01:19:06 +03:00
										 |  |  | 	exportCollection: ['File/Export as collection', | 
					
						
							| 
									
										
										
										
											2015-12-06 06:21:37 +03:00
										 |  |  | 		function(path, logger){ | 
					
						
							|  |  |  | 			var json = this.json() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// get all loaded gids...
 | 
					
						
							|  |  |  | 			var gids = [] | 
					
						
							|  |  |  | 			for(var r in json.data.ribbons){ | 
					
						
							|  |  |  | 				this.data.makeSparseImages(json.data.ribbons[r], gids) | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			gids = gids.compact() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// build .images with loaded images...
 | 
					
						
							|  |  |  | 			// XXX list of previews should be configurable (max size)
 | 
					
						
							|  |  |  | 			var images = {} | 
					
						
							|  |  |  | 			gids.forEach(function(gid){ | 
					
						
							|  |  |  | 				var img = json.images[gid] | 
					
						
							|  |  |  | 				if(img){ | 
					
						
							|  |  |  | 					images[gid] = json.images[gid] | 
					
						
							|  |  |  | 					// remove un-needed previews...
 | 
					
						
							|  |  |  | 					// XXX
 | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// prepare and save index to target path...
 | 
					
						
							|  |  |  | 			json.data.order = gids | 
					
						
							|  |  |  | 			json.images = images | 
					
						
							|  |  |  | 			// XXX should we check if index dir is present in path???
 | 
					
						
							|  |  |  | 			path = path +'/'+ this.config['index-dir'] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			file.writeIndex( | 
					
						
							|  |  |  | 				this.prepareIndexForWrite(json).prepared,  | 
					
						
							|  |  |  | 				path,  | 
					
						
							|  |  |  | 				this.config['index-filename-template'],  | 
					
						
							|  |  |  | 				logger || this.logger) | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 			// copy previews for the loaded images...
 | 
					
						
							|  |  |  | 			// XXX should also optionally populate the base dir and nested favs...
 | 
					
						
							|  |  |  | 			var base_dir = this.base_dir | 
					
						
							|  |  |  | 			gids.forEach(function(gid){ | 
					
						
							|  |  |  | 				json.images[gid].base_path = path | 
					
						
							|  |  |  | 				var previews = json.images[gid].preview | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				for(var res in previews){ | 
					
						
							|  |  |  | 					// XXX copy from .base_dir +'/'+ preview_path to path +'/'+ preview_path
 | 
					
						
							|  |  |  | 					// XXX
 | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}) | 
					
						
							| 
									
										
										
										
											2015-12-05 01:19:06 +03:00
										 |  |  | 		}], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var FileSystemWriter =  | 
					
						
							|  |  |  | module.FileSystemWriter = ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'fs-writer', | 
					
						
							|  |  |  | 	// NOTE: this is mostly because of the base path handling...
 | 
					
						
							|  |  |  | 	depends: ['fs-loader'], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	actions: FileSystemWriterActions, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	isApplicable: function(){ | 
					
						
							|  |  |  | 		return window.nodejs != null | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-29 22:00:00 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 01:45:39 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							|  |  |  | // XXX add writer UI feature...
 | 
					
						
							|  |  |  | // 		- save as.. (browser)
 | 
					
						
							|  |  |  | // 		- save if not base path present (browser)
 | 
					
						
							|  |  |  | var FileSystemWriterUIActions = actions.Actions({ | 
					
						
							|  |  |  | 	// XXX add ability to create dirs...
 | 
					
						
							|  |  |  | 	saveIndex: [makeBrowseProxy('saveIndex')], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var FileSystemWriterUI =  | 
					
						
							|  |  |  | module.FileSystemWriterUI = ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'fs-writer-ui', | 
					
						
							|  |  |  | 	depends: [ | 
					
						
							|  |  |  | 		'fs-writer',  | 
					
						
							|  |  |  | 		'fs-loader-ui', | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	actions: FileSystemWriterUIActions, | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-29 22:00:00 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-09 16:34:14 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							|  |  |  | // Meta features...
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // XXX need to make a set of basic configurations:
 | 
					
						
							|  |  |  | // 		- commandline		- everything but no UI
 | 
					
						
							|  |  |  | // 		- viewer-minimal	- basic browser compatible viewer
 | 
					
						
							|  |  |  | // 		- viewer			- full viewer
 | 
					
						
							|  |  |  | // 		- editor			- editing capability
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | ImageGridFeatures.Feature('viewer-testing', [ | 
					
						
							| 
									
										
										
										
											2015-11-07 19:44:52 +03:00
										 |  |  | 	'base', | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 	'ui', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-09 16:34:14 +03:00
										 |  |  | 	// features...
 | 
					
						
							| 
									
										
										
										
											2015-12-03 00:58:43 +03:00
										 |  |  | 	'ui-ribbon-auto-align', | 
					
						
							|  |  |  | 	//'ui-ribbon-align-to-order',
 | 
					
						
							|  |  |  | 	//'ui-ribbon-align-to-first',
 | 
					
						
							|  |  |  | 	//'ui-ribbon-manual-align',
 | 
					
						
							| 
									
										
										
										
											2014-12-09 16:34:14 +03:00
										 |  |  | 	'ui-single-image-view', | 
					
						
							|  |  |  | 	'ui-partial-ribbons', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	'image-marks', | 
					
						
							|  |  |  | 	'image-bookmarks', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	'fs-loader', | 
					
						
							| 
									
										
										
										
											2015-11-29 03:42:55 +03:00
										 |  |  | 		'fs-loader-ui', | 
					
						
							| 
									
										
										
										
											2015-12-05 05:19:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-05 01:19:06 +03:00
										 |  |  | 	'fs-writer', | 
					
						
							| 
									
										
										
										
											2015-12-05 01:45:39 +03:00
										 |  |  | 		'fs-writer-ui', | 
					
						
							| 
									
										
										
										
											2015-11-29 04:14:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-09 16:34:14 +03:00
										 |  |  | 	'app-control', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// chrome...
 | 
					
						
							|  |  |  | 	'ui-animation', | 
					
						
							|  |  |  | 	'ui-bounds-indicators', | 
					
						
							|  |  |  | 	'ui-current-image-indicator', | 
					
						
							|  |  |  | 		// NOTE: only one of these can be set...
 | 
					
						
							|  |  |  | 		'ui-current-image-indicator-hide-on-fast-screen-nav', | 
					
						
							|  |  |  | 		//'ui-current-image-indicator-hide-on-screen-nav',
 | 
					
						
							|  |  |  | 	'ui-image-state-indicator', | 
					
						
							|  |  |  | 	'ui-global-state-indicator', | 
					
						
							| 
									
										
										
										
											2015-09-12 04:53:13 +03:00
										 |  |  | 	'ui-action-tree', | 
					
						
							| 
									
										
										
										
											2014-12-09 16:34:14 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// experimental and optional features...
 | 
					
						
							|  |  |  | 	//'auto-single-image',
 | 
					
						
							| 
									
										
										
										
											2015-05-21 05:19:39 +03:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	// XXX not yet fully tested...
 | 
					
						
							|  |  |  | 	'system-journal', | 
					
						
							| 
									
										
										
										
											2014-12-09 16:34:14 +03:00
										 |  |  | ]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | ImageGridFeatures.Feature('viewer-minimal', [ | 
					
						
							| 
									
										
										
										
											2015-11-07 19:44:52 +03:00
										 |  |  | 	'base', | 
					
						
							| 
									
										
										
										
											2015-11-02 21:06:42 +03:00
										 |  |  | 	'ui', | 
					
						
							| 
									
										
										
										
											2014-12-09 16:34:14 +03:00
										 |  |  | 	'ui-ribbon-align-to-order', | 
					
						
							|  |  |  | 	'ui-animation', | 
					
						
							|  |  |  | 	'ui-bounds-indicators', | 
					
						
							|  |  |  | 	'ui-current-image-indicator', | 
					
						
							|  |  |  | 		'ui-current-image-indicator-hide-on-fast-screen-nav', | 
					
						
							|  |  |  | 		//'ui-current-image-indicator-hide-on-screen-nav',
 | 
					
						
							| 
									
										
										
										
											2015-09-12 04:53:13 +03:00
										 |  |  | 	'ui-action-tree', | 
					
						
							| 
									
										
										
										
											2014-12-09 16:34:14 +03:00
										 |  |  | ]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | ImageGridFeatures.Feature('viewer', [ | 
					
						
							| 
									
										
										
										
											2014-12-09 16:34:14 +03:00
										 |  |  | 	'viewer-minimal', | 
					
						
							|  |  |  | ]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | ImageGridFeatures.Feature('viewer-partial', [ | 
					
						
							| 
									
										
										
										
											2014-12-09 16:34:14 +03:00
										 |  |  | 	'viewer', | 
					
						
							|  |  |  | 	'ui-partial-ribbons', | 
					
						
							|  |  |  | ]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-08 13:04:09 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ExperimentActions = actions.Actions({ | 
					
						
							|  |  |  | 	/* trying an argument mutation method... (FAILED: arguments is mutable) | 
					
						
							|  |  |  | 	argumentMutation: [ | 
					
						
							|  |  |  | 		function(a, b){ | 
					
						
							|  |  |  | 			console.log('ACTIONS ARGS:', a, b) | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	*/ | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var ExperimentFeature =  | 
					
						
							| 
									
										
										
										
											2015-11-05 02:27:26 +03:00
										 |  |  | module.ExperimentFeature = ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2014-12-08 13:04:09 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'experiments', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	isApplicable: function(actions){ | 
					
						
							|  |  |  | 		return actions.experimental | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	actions: ExperimentActions, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		/* trying an argument mutation method... (FAILED: arguments is mutable) | 
					
						
							|  |  |  | 		['argumentMutation.pre',  | 
					
						
							|  |  |  | 			function(a, b){ | 
					
						
							|  |  |  | 				console.log('EVENT ARGS:', a, b) | 
					
						
							|  |  |  | 				arguments[0] += 1 | 
					
						
							|  |  |  | 				arguments[1] += 1 | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 		*/ | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-20 03:02:18 +04:00
										 |  |  | /********************************************************************** | 
					
						
							|  |  |  | * vim:set ts=4 sw=4 :                                                */ | 
					
						
							| 
									
										
										
										
											2014-07-29 19:09:05 +04:00
										 |  |  | return module }) |