| 
									
										
										
										
											2012-06-17 16:46:46 +04:00
										 |  |  | // XXX need a uniform way to address images (filename?)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function setDefaultInitialState(){ | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 	if($('.current.ribbon').length == 0){ | 
					
						
							|  |  |  | 		$('.ribbon').first().addClass('current') | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 	if($('.current.image').length == 0){ | 
					
						
							|  |  |  | 		$('.current.ribbon').children('.image').first().addClass('current') | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-06-17 16:46:46 +04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-17 16:46:46 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function setupKeyboard(){ | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 	$(document) | 
					
						
							|  |  |  | 		.keydown(handleKeys) | 
					
						
							| 
									
										
										
										
											2012-06-17 16:46:46 +04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function setupGestures(){ | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 	$('.viewer') | 
					
						
							|  |  |  | 		// XXX this is flaky and breaks some of my code...
 | 
					
						
							| 
									
										
										
										
											2012-06-13 15:16:43 +04:00
										 |  |  | 		.swipe({ | 
					
						
							|  |  |  | 			swipeLeft: nextImage, | 
					
						
							|  |  |  | 			swipeRight: prevImage, | 
					
						
							| 
									
										
										
										
											2012-06-16 21:52:23 +04:00
										 |  |  | 			swipeUp: shiftImageUp, | 
					
						
							|  |  |  | 			swipeDown: shiftImageDown, | 
					
						
							| 
									
										
										
										
											2012-06-13 15:16:43 +04:00
										 |  |  | 		}) | 
					
						
							| 
									
										
										
										
											2012-06-17 16:46:46 +04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function setupControlElements(){ | 
					
						
							|  |  |  | 	// images...
 | 
					
						
							| 
									
										
										
										
											2012-07-24 15:38:54 +04:00
										 |  |  | 	$(".image").click(setCurrentImage) | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-17 16:46:46 +04:00
										 |  |  | 	// buttons...
 | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 	$('.next-image').click(nextImage) | 
					
						
							|  |  |  | 	$('.prev-image').click(prevImage) | 
					
						
							| 
									
										
										
										
											2012-06-16 21:52:23 +04:00
										 |  |  | 	$('.demote').click(shiftImageUp) | 
					
						
							|  |  |  | 	$('.promote').click(shiftImageDown) | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 	$('.toggle-wide').click(toggleWideView) | 
					
						
							|  |  |  | 	$('.toggle-single').click(toggleRibbonView) | 
					
						
							| 
									
										
										
										
											2012-06-17 16:46:46 +04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-16 21:52:23 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | function loadImages(json){ | 
					
						
							|  |  |  | 	var images = json.images | 
					
						
							|  |  |  | 	var ribbon = $('.ribbon').last() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	$('.image').remove() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for(var i = 0; i < images.length; i++){ | 
					
						
							|  |  |  | 		$('<div class="image"></div>') | 
					
						
							|  |  |  | 			.css({ 'background-image': 'url('+images[i]+')' }) | 
					
						
							| 
									
										
										
										
											2012-07-03 03:38:28 +04:00
										 |  |  | 			// set a unique id for each image...
 | 
					
						
							| 
									
										
										
										
											2012-07-14 00:00:16 +04:00
										 |  |  | 			.attr({'id': i}) | 
					
						
							| 
									
										
										
										
											2012-07-24 15:38:54 +04:00
										 |  |  | 			.click(setCurrentImage) | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 			.appendTo(ribbon) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	ribbon.children().first().click() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-16 21:52:23 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-17 16:46:46 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*************************************************** Event Handlers **/ | 
					
						
							| 
									
										
										
										
											2012-07-24 15:38:54 +04:00
										 |  |  | function setCurrentImage(){ | 
					
						
							|  |  |  | 	// set classes...
 | 
					
						
							|  |  |  | 	$('.current').removeClass('current') | 
					
						
							|  |  |  | 	$(this) | 
					
						
							|  |  |  | 		.addClass('current') | 
					
						
							|  |  |  | 		.parents('.ribbon') | 
					
						
							|  |  |  | 			.addClass('current') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// position the field and ribbons...
 | 
					
						
							|  |  |  | 	centerSquare() | 
					
						
							| 
									
										
										
										
											2012-07-24 15:53:34 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-31 17:41:54 +04:00
										 |  |  | 	alignRibbons() | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // center other ribbons relative to current image...
 | 
					
						
							| 
									
										
										
										
											2012-08-01 01:37:58 +04:00
										 |  |  | // XXX only two ribbons are positioned at this point...
 | 
					
						
							| 
									
										
										
										
											2012-07-31 17:41:54 +04:00
										 |  |  | function alignRibbons(){ | 
					
						
							|  |  |  | 	// XXX might be goot to move this to a more generic location...
 | 
					
						
							| 
									
										
										
										
											2012-07-31 17:38:50 +04:00
										 |  |  | 	var id = $('.current.image').attr('id') | 
					
						
							|  |  |  | 	var directions = ['prev', 'next'] | 
					
						
							|  |  |  | 	for(var i in directions){ | 
					
						
							|  |  |  | 		var ribbon = $('.current.ribbon')[directions[i]]('.ribbon') | 
					
						
							|  |  |  | 		if(ribbon.length == 1){ | 
					
						
							|  |  |  | 			var img = getImageBefore(id, ribbon) | 
					
						
							|  |  |  | 			if(img != null){ | 
					
						
							|  |  |  | 				alignRibbon(img, 'before') | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				// there are no images before...
 | 
					
						
							|  |  |  | 				alignRibbon(ribbon.children('.image').first(), 'after') | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-07-24 15:38:54 +04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-17 16:46:46 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-31 17:38:50 +04:00
										 |  |  | // this sets the zooming factor used in manual zooming...
 | 
					
						
							| 
									
										
										
										
											2012-07-31 15:25:05 +04:00
										 |  |  | var ZOOM_FACTOR = 2 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-16 21:52:23 +04:00
										 |  |  | // key configuration...
 | 
					
						
							|  |  |  | // XXX need to make this handle modifiers gracefully...
 | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | var keys = { | 
					
						
							| 
									
										
										
										
											2012-07-31 15:25:05 +04:00
										 |  |  | 	toggleHelp: [72], | 
					
						
							| 
									
										
										
										
											2012-06-08 20:41:14 +04:00
										 |  |  | 	toggleRibbonView: [70], | 
					
						
							| 
									
										
										
										
											2012-07-31 15:25:05 +04:00
										 |  |  | 	close: [27, 88, 67], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// zooming...
 | 
					
						
							|  |  |  | 	zoomIn: [187], | 
					
						
							|  |  |  | 	zoomOut: [189], | 
					
						
							|  |  |  | 	// zoom presets...
 | 
					
						
							|  |  |  | 	zoomOriginal: [48], | 
					
						
							|  |  |  | 	fitOne: [49], | 
					
						
							|  |  |  | 	fitThree: [51], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	first: [36], | 
					
						
							|  |  |  | 	last: [35], | 
					
						
							|  |  |  | 	previous: [37, 80, 188, 8], | 
					
						
							|  |  |  | 	next: [39, 78, 190, 32], | 
					
						
							| 
									
										
										
										
											2012-06-08 20:41:14 +04:00
										 |  |  | 	// these work with ctrl and shift modifiers...
 | 
					
						
							| 
									
										
										
										
											2012-07-31 15:25:05 +04:00
										 |  |  | 	down: [40], | 
					
						
							|  |  |  | 	up: [38], | 
					
						
							| 
									
										
										
										
											2012-06-08 20:41:14 +04:00
										 |  |  | 	// these work with ctrl modifier...
 | 
					
						
							| 
									
										
										
										
											2012-07-31 15:25:05 +04:00
										 |  |  | 	promote: [45], | 
					
						
							|  |  |  | 	demote: [46], | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-31 15:25:05 +04:00
										 |  |  | 	ignore: [16, 17, 18], | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	helpShowOnUnknownKey: true | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-17 16:51:02 +04:00
										 |  |  | // XXX revise...
 | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | function handleKeys(event){ | 
					
						
							|  |  |  | 	var code = event.keyCode, fn = $.inArray; | 
					
						
							| 
									
										
										
										
											2012-07-31 15:25:05 +04:00
										 |  |  | 	var _ = (fn(code, keys.close) >= 0) ? function(){}() | 
					
						
							|  |  |  | 		: (fn(code, keys.first) >= 0) ? firstImage() | 
					
						
							|  |  |  | 		: (fn(code, keys.next) >= 0) ? nextImage() | 
					
						
							|  |  |  | 		: (fn(code, keys.previous) >= 0) ? prevImage() | 
					
						
							|  |  |  | 		: (fn(code, keys.last) >= 0) ? lastImage() | 
					
						
							|  |  |  | 		: (fn(code, keys.promote) >= 0) ? function(){ | 
					
						
							| 
									
										
										
										
											2012-06-08 20:41:14 +04:00
										 |  |  | 			if(event.ctrlKey){ | 
					
						
							| 
									
										
										
										
											2012-06-16 21:40:36 +04:00
										 |  |  | 				createRibbon('next') | 
					
						
							| 
									
										
										
										
											2012-06-08 20:41:14 +04:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-06-16 21:52:23 +04:00
										 |  |  | 			shiftImageDown() | 
					
						
							| 
									
										
										
										
											2012-06-08 20:41:14 +04:00
										 |  |  | 		}() | 
					
						
							| 
									
										
										
										
											2012-07-31 15:25:05 +04:00
										 |  |  | 		: (fn(code, keys.demote) >= 0) ? function(){ | 
					
						
							| 
									
										
										
										
											2012-06-08 20:41:14 +04:00
										 |  |  | 			if(event.ctrlKey){ | 
					
						
							| 
									
										
										
										
											2012-06-16 21:40:36 +04:00
										 |  |  | 				createRibbon('prev') | 
					
						
							| 
									
										
										
										
											2012-06-08 20:41:14 +04:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-06-16 21:52:23 +04:00
										 |  |  | 			shiftImageUp() | 
					
						
							| 
									
										
										
										
											2012-06-08 20:41:14 +04:00
										 |  |  | 		}() | 
					
						
							| 
									
										
										
										
											2012-07-31 15:25:05 +04:00
										 |  |  | 		: (fn(code, keys.down) >= 0) ? function(){ | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 			if(event.shiftKey){ | 
					
						
							|  |  |  | 				if(event.ctrlKey){ | 
					
						
							| 
									
										
										
										
											2012-06-16 21:40:36 +04:00
										 |  |  | 					createRibbon('next') | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2012-06-16 21:52:23 +04:00
										 |  |  | 				shiftImageDown() | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 			} else { | 
					
						
							|  |  |  | 				focusBelowRibbon() | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}() | 
					
						
							| 
									
										
										
										
											2012-07-31 15:25:05 +04:00
										 |  |  | 		: (fn(code, keys.up) >= 0) ? function(){ | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 			if(event.shiftKey){ | 
					
						
							|  |  |  | 				if(event.ctrlKey){ | 
					
						
							| 
									
										
										
										
											2012-06-16 21:40:36 +04:00
										 |  |  | 					createRibbon('prev') | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2012-06-16 21:52:23 +04:00
										 |  |  | 				shiftImageUp() | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 			} else { | 
					
						
							|  |  |  | 				focusAboveRibbon() | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}() | 
					
						
							| 
									
										
										
										
											2012-07-31 15:25:05 +04:00
										 |  |  | 		// zooming...
 | 
					
						
							|  |  |  | 		: (fn(code, keys.zoomIn) >= 0) ? zoomContainerBy(ZOOM_FACTOR) | 
					
						
							|  |  |  | 		: (fn(code, keys.zoomOut) >= 0) ? zoomContainerBy(1/ZOOM_FACTOR) | 
					
						
							|  |  |  | 		// zoom presets...
 | 
					
						
							|  |  |  | 		: (fn(code, keys.zoomOriginal) >= 0) ? setContainerZoom(1) | 
					
						
							|  |  |  | 		: (fn(code, keys.fitOne) >= 0) ? fitImage() | 
					
						
							|  |  |  | 		: (fn(code, keys.fitThree) >= 0) ? fitThreeImages() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 		: (fn(code, keys.toggleRibbonView) >= 0) ? toggleRibbonView() | 
					
						
							| 
									
										
										
										
											2012-07-31 15:25:05 +04:00
										 |  |  | 		: (fn(code, keys.ignore) >= 0) ? false | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 		// XXX
 | 
					
						
							|  |  |  | 		: (keys.helpShowOnUnknownKey) ? function(){alert(code)}() | 
					
						
							|  |  |  | 		: false; | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-16 21:52:23 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-17 16:46:46 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | /************************************************************ Modes **/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-16 22:12:50 +04:00
										 |  |  | // mode switchers...
 | 
					
						
							|  |  |  | function unsetViewerMode(mode){ | 
					
						
							|  |  |  | 	$('.' + mode) | 
					
						
							|  |  |  | 		.removeClass(mode) | 
					
						
							|  |  |  | 			// animation...
 | 
					
						
							| 
									
										
										
										
											2012-06-08 19:35:05 +04:00
										 |  |  | 			.one("webkitTransitionEnd oTransitionEnd msTransitionEnd transitionend", function(){ | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 				$('.current.image').click() | 
					
						
							| 
									
										
										
										
											2012-06-08 19:35:05 +04:00
										 |  |  | 				return true | 
					
						
							|  |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-06-16 22:12:50 +04:00
										 |  |  | function setViewerMode(mode){ | 
					
						
							|  |  |  | 	$('.viewer').not('.' + mode) | 
					
						
							|  |  |  | 		.addClass(mode) | 
					
						
							|  |  |  | 			// animation...
 | 
					
						
							| 
									
										
										
										
											2012-06-08 19:35:05 +04:00
										 |  |  | 			.one("webkitTransitionEnd oTransitionEnd msTransitionEnd transitionend", function(){ | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 				$('.current.image').click() | 
					
						
							| 
									
										
										
										
											2012-06-08 19:35:05 +04:00
										 |  |  | 				return true | 
					
						
							|  |  |  | 			}); | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-06-16 22:12:50 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-17 16:46:46 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-16 22:12:50 +04:00
										 |  |  | // ribbon/single view modes...
 | 
					
						
							| 
									
										
										
										
											2012-08-01 01:37:58 +04:00
										 |  |  | // XXX CSS broken...
 | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | function toggleRibbonView(){ | 
					
						
							|  |  |  | 	if($('.single-image-mode').length > 0){ | 
					
						
							| 
									
										
										
										
											2012-06-16 22:12:50 +04:00
										 |  |  | 		unsetViewerMode('single-image-mode') | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2012-06-16 22:12:50 +04:00
										 |  |  | 		setViewerMode('single-image-mode') | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-16 21:52:23 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-16 22:12:50 +04:00
										 |  |  | // wide view mode toggle...
 | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | function toggleWideView(){ | 
					
						
							|  |  |  | 	if($('.wide-view-mode').length > 0){ | 
					
						
							| 
									
										
										
										
											2012-07-24 16:11:51 +04:00
										 |  |  | 		setContainerZoom(1) | 
					
						
							| 
									
										
										
										
											2012-08-01 01:37:58 +04:00
										 |  |  | 		$('.viewer').removeClass('wide-view-mode') | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		setContainerZoom(0.1) | 
					
						
							|  |  |  | 		$('.viewer').addClass('wide-view-mode') | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-16 21:52:23 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-17 16:46:46 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | /******************************************************* Navigation **/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | // basic navigation...
 | 
					
						
							|  |  |  | function firstImage(){ | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 	$('.current.ribbon').children('.image').first().click() | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | } | 
					
						
							|  |  |  | function prevImage(){ | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 	$('.current.image').prev('.image').click() | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | } | 
					
						
							|  |  |  | function nextImage(){ | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 	$('.current.image').next('.image').click() | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | } | 
					
						
							|  |  |  | function lastImage(){ | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 	$('.current.ribbon').children('.image').last().click() | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-07-14 00:00:16 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | // XXX for the above two functions to be stable we will need to jump up 
 | 
					
						
							|  |  |  | // 		to the next and down to the prev element...
 | 
					
						
							|  |  |  | function focusRibbon(direction){ | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 	var id = $('.current.image').attr('id') | 
					
						
							|  |  |  | 	var prev = getImageBefore(id, $('.current.ribbon')[direction]('.ribbon')) | 
					
						
							| 
									
										
										
										
											2012-07-14 00:00:16 +04:00
										 |  |  | 	if(prev){ | 
					
						
							|  |  |  | 		var next = prev.next() | 
					
						
							| 
									
										
										
										
											2012-07-14 02:26:06 +04:00
										 |  |  | 		// NOTE: direction is accounted for to make the up/down shifts 
 | 
					
						
							|  |  |  | 		// 		 symmetrical in the general case...
 | 
					
						
							|  |  |  | 		if(next.length == 0 || direction == 'next'){ | 
					
						
							| 
									
										
										
										
											2012-07-14 00:00:16 +04:00
										 |  |  | 			prev.click() | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			next.click() | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 		$('.current.ribbon')[direction]('.ribbon').children('.image').first().click() | 
					
						
							| 
									
										
										
										
											2012-07-14 00:00:16 +04:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | function focusAboveRibbon(){ | 
					
						
							| 
									
										
										
										
											2012-07-14 00:00:16 +04:00
										 |  |  | 	focusRibbon('prev') | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | } | 
					
						
							|  |  |  | function focusBelowRibbon(){ | 
					
						
							| 
									
										
										
										
											2012-07-14 00:00:16 +04:00
										 |  |  | 	focusRibbon('next') | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-17 16:46:46 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-14 00:00:16 +04:00
										 |  |  | /********************************************************** Helpers **/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // find an image object after which to position image ID...
 | 
					
						
							|  |  |  | // used for two main tasks:
 | 
					
						
							| 
									
										
										
										
											2012-07-14 02:26:06 +04:00
										 |  |  | // 	- positioning promoted/demoted images
 | 
					
						
							| 
									
										
										
										
											2012-07-14 00:00:16 +04:00
										 |  |  | // 	- centering ribbons
 | 
					
						
							|  |  |  | // returns:
 | 
					
						
							|  |  |  | // 	- null		- empty ribbon or no element greater id should be first
 | 
					
						
							|  |  |  | // 	- element
 | 
					
						
							|  |  |  | // XXX do we need to make ids numbers for this to work?
 | 
					
						
							| 
									
										
										
										
											2012-07-14 02:26:06 +04:00
										 |  |  | // XXX might be better to make this binary search in very large sets of data
 | 
					
						
							| 
									
										
										
										
											2012-08-01 01:22:26 +04:00
										 |  |  | function getImageBefore_lin(id, ribbon){ | 
					
						
							| 
									
										
										
										
											2012-07-14 00:00:16 +04:00
										 |  |  | 	// walk the ribbon till we find two images one with an ID less and 
 | 
					
						
							|  |  |  | 	// another greater that id...
 | 
					
						
							|  |  |  | 	id = parseInt(id) | 
					
						
							|  |  |  | 	var images = ribbon.children('.image') | 
					
						
							| 
									
										
										
										
											2012-08-01 01:22:26 +04:00
										 |  |  | 	var prev = null | 
					
						
							| 
									
										
										
										
											2012-07-14 00:00:16 +04:00
										 |  |  | 	for(var i=0; i < images.length; i++){ | 
					
						
							|  |  |  | 		if(parseInt($(images[i]).attr('id')) > id){ | 
					
						
							|  |  |  | 			return prev | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		prev = $(images[i]) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return prev | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-01 01:22:26 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | // binery search for element just before the id...
 | 
					
						
							|  |  |  | function binarySearch(id, lst, get){ | 
					
						
							|  |  |  | 	if(get == null){ | 
					
						
							|  |  |  | 		get = function(o){return o} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	// empty list...
 | 
					
						
							|  |  |  | 	if(lst.length == 0){ | 
					
						
							|  |  |  | 		return null | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	// current section length
 | 
					
						
							|  |  |  | 	var l = Math.round((lst.length-1)/2) | 
					
						
							|  |  |  | 	// current position...
 | 
					
						
							|  |  |  | 	var i = l | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while(true){ | 
					
						
							|  |  |  | 		var i_id = get(lst[i]) | 
					
						
							|  |  |  | 		// beginning of the array...
 | 
					
						
							|  |  |  | 		if(i == 0){ | 
					
						
							|  |  |  | 			if(id > i_id){ | 
					
						
							|  |  |  | 				return i | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			return null | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		// we got a hit...
 | 
					
						
							|  |  |  | 		if(i_id == id){ | 
					
						
							|  |  |  | 			return i-1 | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		// we are at the end...
 | 
					
						
							|  |  |  | 		if(i == lst.length-1 && id > i_id){ | 
					
						
							|  |  |  | 			return i | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		var ii_id = get(lst[i+1]) | 
					
						
							|  |  |  | 		// test if id is between i and i+1...
 | 
					
						
							|  |  |  | 		if( i_id < id && id < ii_id ){ | 
					
						
							|  |  |  | 			return i | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		// prepare for next iteration...
 | 
					
						
							|  |  |  | 		// NOTE: we saturate the values so we will never get out of bounds.
 | 
					
						
							|  |  |  | 		l = Math.round(l/2) | 
					
						
							|  |  |  | 		if(id < i_id){ | 
					
						
							|  |  |  | 			// lower half...
 | 
					
						
							|  |  |  | 			i = Math.max(0, i-l) | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			// upper half...
 | 
					
						
							|  |  |  | 			i = Math.min(i+l, lst.length-1) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // wrapper around binarySearch.
 | 
					
						
							|  |  |  | // this is here to make binarySearch simpler to test and debug...
 | 
					
						
							|  |  |  | function getImageBefore_bin(id, ribbon){ | 
					
						
							|  |  |  | 	var images = ribbon.children('.image')  | 
					
						
							|  |  |  | 	var i = binarySearch( | 
					
						
							|  |  |  | 					parseInt(id),  | 
					
						
							|  |  |  | 					images,  | 
					
						
							|  |  |  | 					function(o){return parseInt($(o).attr('id'))}) | 
					
						
							|  |  |  | 	if(i == null){ | 
					
						
							|  |  |  | 		return null | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return $(images[i]) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-01 01:37:58 +04:00
										 |  |  | // set the default search...
 | 
					
						
							| 
									
										
										
										
											2012-08-01 01:22:26 +04:00
										 |  |  | var getImageBefore = getImageBefore_bin | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-14 02:26:06 +04:00
										 |  |  | // center a ribbon horizontally...
 | 
					
						
							|  |  |  | // if id exists in ribbon make it the center, else center between the 
 | 
					
						
							|  |  |  | // two images that id came from.
 | 
					
						
							|  |  |  | function centerRibbonHorizontally(id, ribbon){ | 
					
						
							|  |  |  | 	// XXX
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // center the ribbon in the middle of the container vertically...
 | 
					
						
							|  |  |  | function centerRibbonVertically(ribbon){ | 
					
						
							|  |  |  | 	// XXX
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-14 00:00:16 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-17 16:46:46 +04:00
										 |  |  | /********************************************************** Actions **/ | 
					
						
							| 
									
										
										
										
											2012-06-16 21:52:23 +04:00
										 |  |  | // basic actions...
 | 
					
						
							| 
									
										
										
										
											2012-06-17 16:51:02 +04:00
										 |  |  | // NOTE: below 'direction' is meant in the html sence, i.e. next/prev...
 | 
					
						
							| 
									
										
										
										
											2012-06-16 21:52:23 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | // create ribbon above/below helpers...
 | 
					
						
							| 
									
										
										
										
											2012-08-01 01:37:58 +04:00
										 |  |  | // XXX
 | 
					
						
							| 
									
										
										
										
											2012-06-16 21:40:36 +04:00
										 |  |  | function createRibbon(direction){ | 
					
						
							|  |  |  | 	if(direction == 'next'){ | 
					
						
							|  |  |  | 		var insert = 'insertAfter' | 
					
						
							|  |  |  | 	} else if(direction == 'prev') { | 
					
						
							|  |  |  | 		var insert = 'insertBefore' | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		return false | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 	var res = $('<div class="new-ribbon"></div>')[insert]('.current.ribbon') | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 		// HACK: without this, the class change below will not animate...
 | 
					
						
							|  |  |  | 		.show() | 
					
						
							|  |  |  | 		.addClass('ribbon') | 
					
						
							|  |  |  | 		.removeClass('new-ribbon') | 
					
						
							| 
									
										
										
										
											2012-06-16 21:40:36 +04:00
										 |  |  | 	// XXX need to account for increased top when creating a ribbon above...
 | 
					
						
							|  |  |  | 	// 		i.e. shift the content upward...
 | 
					
						
							|  |  |  | 	/* | 
					
						
							|  |  |  | 	if(direction == 'prev'){ | 
					
						
							|  |  |  | 		$('.field').css({ | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 			top: $('.field').position().top - $('.current.ribbon').outerHeight() | 
					
						
							| 
									
										
										
										
											2012-06-16 21:40:36 +04:00
										 |  |  | 		}) | 
					
						
							|  |  |  | 	}*/ | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 	return res | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // XXX sort elements correctly...
 | 
					
						
							| 
									
										
										
										
											2012-06-16 21:24:11 +04:00
										 |  |  | function mergeRibbons(direction){ | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 	$('.current.ribbon')[direction]('.ribbon') | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 			.children() | 
					
						
							|  |  |  | 				.detach() | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 				.insertAfter('.current.image') | 
					
						
							| 
									
										
										
										
											2012-06-16 21:52:23 +04:00
										 |  |  | 	// animate...
 | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 	$('.current.ribbon')[direction]('.ribbon') | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 			.slideUp(function(){ | 
					
						
							|  |  |  | 				$(this).remove() | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 				$('.current.image').click() | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 			}) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-16 21:52:23 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-17 16:46:46 +04:00
										 |  |  | /*************************************************** Editor Actions **/ | 
					
						
							| 
									
										
										
										
											2012-06-16 21:52:23 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | // now the actual modifiers...
 | 
					
						
							| 
									
										
										
										
											2012-06-16 21:24:11 +04:00
										 |  |  | function shiftImage(direction){ | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 	if($('.current.ribbon')[direction]('.ribbon').length == 0){ | 
					
						
							| 
									
										
										
										
											2012-06-16 21:40:36 +04:00
										 |  |  | 		createRibbon(direction) | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-07-14 00:00:16 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// get previous element after which we need to put the current...
 | 
					
						
							|  |  |  | 	var prev_elem = getImageBefore( | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 					$('.current.image').attr('id'),  | 
					
						
							|  |  |  | 					$('.current.ribbon')[direction]('.ribbon')) | 
					
						
							| 
									
										
										
										
											2012-07-14 00:00:16 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// last image in ribbon, merge...
 | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 	if($('.current.ribbon').children('.image').length == 1){ | 
					
						
							| 
									
										
										
										
											2012-06-16 21:24:11 +04:00
										 |  |  | 		mergeRibbons(direction) | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 		img = $('.current.image') | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 		if(img.next('.image').length == 0){ | 
					
						
							|  |  |  | 			prevImage() | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			nextImage() | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-07-14 00:00:16 +04:00
										 |  |  | 		// do the actual move...
 | 
					
						
							|  |  |  | 		if(prev_elem){ | 
					
						
							|  |  |  | 			// insert element after current...
 | 
					
						
							|  |  |  | 			img | 
					
						
							|  |  |  | 				.detach() | 
					
						
							|  |  |  | 				.insertAfter(prev_elem) | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			// empty ribbon or fisrt element...
 | 
					
						
							|  |  |  | 			img | 
					
						
							|  |  |  | 				.detach() | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 				.prependTo($('.current.ribbon')[direction]('.ribbon')) | 
					
						
							| 
									
										
										
										
											2012-07-14 00:00:16 +04:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-06-16 21:24:11 +04:00
										 |  |  | 	// XXX this has to know aout animations...
 | 
					
						
							| 
									
										
										
										
											2012-07-24 14:55:10 +04:00
										 |  |  | 	$('.current.image').click() | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-16 22:12:50 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-16 21:52:23 +04:00
										 |  |  | function shiftImageDown(){ | 
					
						
							| 
									
										
										
										
											2012-06-16 21:24:11 +04:00
										 |  |  | 	return shiftImage('next') | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | // XXX this has problems, when creating a new ribbon this does not settle 
 | 
					
						
							|  |  |  | //	   into a correct spot...
 | 
					
						
							| 
									
										
										
										
											2012-06-16 21:52:23 +04:00
										 |  |  | function shiftImageUp(){ | 
					
						
							| 
									
										
										
										
											2012-06-16 21:24:11 +04:00
										 |  |  | 	return shiftImage('prev') | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-16 22:12:50 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-14 00:00:16 +04:00
										 |  |  | /*********************************************************************/ | 
					
						
							| 
									
										
										
										
											2012-06-08 18:30:54 +04:00
										 |  |  | // vim:set ts=4 sw=4 nowrap :
 |