mirror of
				https://github.com/flynx/PortableMag.git
				synced 2025-10-30 19:40:12 +00:00 
			
		
		
		
	more code cleanup and minor refactoring...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
		
							parent
							
								
									37c73c0559
								
							
						
					
					
						commit
						eb8f33060c
					
				
							
								
								
									
										172
									
								
								magazine.js
									
									
									
									
									
								
							
							
						
						
									
										172
									
								
								magazine.js
									
									
									
									
									
								
							| @ -3,20 +3,27 @@ | |||||||
| 
 | 
 | ||||||
| var DEBUG = true | var DEBUG = true | ||||||
| 
 | 
 | ||||||
| /* this is needed only for live resize... */ | // number of pages to display in ribbon...
 | ||||||
| var PAGES_VISIBLE = 1 |  | ||||||
| var PAGES_IN_RIBBON = 6 | var PAGES_IN_RIBBON = 6 | ||||||
| 
 | 
 | ||||||
|  | // if true, expand a page to fit the whole view in single page mode...
 | ||||||
|  | var FIT_PAGE_TO_VIEW = false | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| /*********************************************************************/ | /*********************************************************************/ | ||||||
|  | // toggles .dragging CSS class on the viewer while dragging is in 
 | ||||||
|  | // progress.
 | ||||||
|  | // NOTE: this is used mostly for styling and drag assisting...
 | ||||||
| togglePageDragging = createCSSClassToggler( | togglePageDragging = createCSSClassToggler( | ||||||
| 	'.viewer', | 	'.viewer', | ||||||
| 	'dragging') | 	'dragging') | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| var FIT_PAGE_TO_VIEW = false | // toggle between the two main modes:
 | ||||||
| 
 | // 	- single page mode (.page-view-mode)
 | ||||||
|  | // 	- thumbnail/ribbon mode
 | ||||||
| togglePageView = createCSSClassToggler( | togglePageView = createCSSClassToggler( | ||||||
| 	'.viewer',  | 	'.viewer',  | ||||||
| 	'page-view-mode', | 	'page-view-mode', | ||||||
| @ -24,20 +31,86 @@ togglePageView = createCSSClassToggler( | |||||||
| 	// post-change callback...
 | 	// post-change callback...
 | ||||||
| 	function(){ | 	function(){ | ||||||
| 		if(togglePageView('?') == 'on'){ | 		if(togglePageView('?') == 'on'){ | ||||||
| 			PAGES_VISIBLE = 1 | 			fitNPages(1) | ||||||
| 			fitNPages(PAGES_VISIBLE) |  | ||||||
| 		} else { | 		} else { | ||||||
| 			PAGES_VISIBLE = PAGES_IN_RIBBON | 			fitNPages(PAGES_IN_RIBBON) | ||||||
| 			fitNPages(PAGES_VISIBLE) |  | ||||||
| 		} | 		} | ||||||
| 	}) | 	}) | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | /********************************************************* helpers ***/ | ||||||
|  | 
 | ||||||
| function getPageScale(){ | function getPageScale(){ | ||||||
| 	return getElementScale($('.scaler')) | 	return getElementScale($('.scaler')) | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
|  | function getPageNumber(page){ | ||||||
|  | 	if(page == null){ | ||||||
|  | 		page = $('.current.page') | ||||||
|  | 	} | ||||||
|  | 	return $('.page').index(page)  | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | /************************************************** event handlers ***/ | ||||||
|  | 
 | ||||||
|  | function swipeHandler(evt, phase, direction, distance, duration, fingers){ | ||||||
|  | 	var pages = $('.page') | ||||||
|  | 	var cur = $('.current.page') | ||||||
|  | 	var n = pages.index(cur) | ||||||
|  | 	var scale = getPageScale() | ||||||
|  | 	var mag = $('.magazine') | ||||||
|  | 
 | ||||||
|  | 	if(phase=='move' && (direction=='left' || direction=='right')){ | ||||||
|  | 		mag.addClass('unanimated') | ||||||
|  | 		if(direction == 'left'){ | ||||||
|  | 			$('.magazine').css({left: -n*cur.width()-distance/scale}) | ||||||
|  | 		} else if(direction == 'right') { | ||||||
|  | 			$('.magazine').css({left: -n*cur.width()+distance/scale}) | ||||||
|  | 		} | ||||||
|  | 		setTimeout(function(){mag.removeClass('unanimated')}, 5) | ||||||
|  | 
 | ||||||
|  | 	} else if(phase == 'start') { | ||||||
|  | 		togglePageDragging('on') | ||||||
|  | 
 | ||||||
|  | 	} else if(phase == 'cancel') { | ||||||
|  | 		togglePageDragging('off') | ||||||
|  | 		setCurrentPage() | ||||||
|  | 
 | ||||||
|  | 	} else if(phase =='end' ) { | ||||||
|  | 		togglePageDragging('off') | ||||||
|  | 		// see which page is closer to the middle of the screen and set it...
 | ||||||
|  | 		// do this based on how much we dragged...
 | ||||||
|  | 		var p = Math.ceil((distance/scale)/cur.width()) | ||||||
|  | 
 | ||||||
|  | 		// prev page...
 | ||||||
|  | 		if(direction == 'right') { | ||||||
|  | 			// two+ fingers moves to closest article...
 | ||||||
|  | 			if(fingers >= 2){ | ||||||
|  | 				prevArticle() | ||||||
|  | 			} else { | ||||||
|  | 				setCurrentPage(Math.max(n-p, 0)) | ||||||
|  | 			} | ||||||
|  | 		// next page...
 | ||||||
|  | 		} else if(direction == 'left'){ | ||||||
|  | 			// two+ fingers moves to closest article...
 | ||||||
|  | 			if(fingers >= 2){ | ||||||
|  | 				nextArticle() | ||||||
|  | 			} else { | ||||||
|  | 				setCurrentPage(Math.min(n+p, pages.length-1)) | ||||||
|  | 			} | ||||||
|  | 		} | ||||||
|  | 	} | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | /********************************************************** layout ***/ | ||||||
|  | 
 | ||||||
| // XXX for some magical reason this is not called...
 | // XXX for some magical reason this is not called...
 | ||||||
| function fitNPages(n, fit_to_content){ | function fitNPages(n, fit_to_content){ | ||||||
| 	if(n == null){ | 	if(n == null){ | ||||||
| @ -101,55 +174,8 @@ function fitNPages(n, fit_to_content){ | |||||||
| } | } | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| function swipeHandler(evt, phase, direction, distance, duration, fingers){ |  | ||||||
| 	var pages = $('.page') |  | ||||||
| 	var cur = $('.current.page') |  | ||||||
| 	var n = pages.index(cur) |  | ||||||
| 	var scale = getPageScale() |  | ||||||
| 	var mag = $('.magazine') |  | ||||||
| 
 |  | ||||||
| 	if( phase=='move' && (direction=='left' || direction=='right') ){ |  | ||||||
| 		mag.addClass('unanimated') |  | ||||||
| 		if (direction == 'left'){ |  | ||||||
| 			$('.magazine').css({left: -n*cur.width()-distance/scale}) |  | ||||||
| 		} else if (direction == 'right') { |  | ||||||
| 			$('.magazine').css({left: -n*cur.width()+distance/scale}) |  | ||||||
| 		} |  | ||||||
| 		setTimeout(function(){mag.removeClass('unanimated')}, 5) |  | ||||||
| 
 |  | ||||||
| 	} else if ( phase == 'start') { |  | ||||||
| 		togglePageDragging('on') |  | ||||||
| 
 |  | ||||||
| 	} else if ( phase == 'cancel') { |  | ||||||
| 		togglePageDragging('off') |  | ||||||
| 		setCurrentPage() |  | ||||||
| 
 |  | ||||||
| 	} else if ( phase =='end' ) { |  | ||||||
| 		togglePageDragging('off') |  | ||||||
| 		// see which page is closer to the middle of the screen and set it...
 |  | ||||||
| 		// do this based on how much we dragged...
 |  | ||||||
| 		var p = Math.ceil((distance/scale)/cur.width()) |  | ||||||
| 
 |  | ||||||
| 		// prev page...
 |  | ||||||
| 		if(direction == 'right') { |  | ||||||
| 			// two+ fingers moves to closest article...
 |  | ||||||
| 			if(fingers >= 2){ |  | ||||||
| 				prevArticle() |  | ||||||
| 			} else { |  | ||||||
| 				setCurrentPage(Math.max(n-p, 0)) |  | ||||||
| 			} |  | ||||||
| 		// next page...
 |  | ||||||
| 		} else if (direction == 'left'){ |  | ||||||
| 			// two+ fingers moves to closest article...
 |  | ||||||
| 			if(fingers >= 2){ |  | ||||||
| 				nextArticle() |  | ||||||
| 			} else { |  | ||||||
| 				setCurrentPage(Math.min(n+p, pages.length-1)) |  | ||||||
| 			} |  | ||||||
| 		} |  | ||||||
| 	} |  | ||||||
| } |  | ||||||
| 
 | 
 | ||||||
|  | /********************************************************* actions ***/ | ||||||
| 
 | 
 | ||||||
| function setCurrentPage(n, W){ | function setCurrentPage(n, W){ | ||||||
| 	if(n == null){ | 	if(n == null){ | ||||||
| @ -175,11 +201,13 @@ function setCurrentPage(n, W){ | |||||||
| 	return cur | 	return cur | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| function getPageNumber(page){ | 
 | ||||||
| 	if(page == null){ | 
 | ||||||
| 		page = $('.current.page') | function goToMagazineCover(){ | ||||||
|  | 	setCurrentPage(0) | ||||||
| } | } | ||||||
| 	return $('.page').index(page)  | function goToArticleCover(){ | ||||||
|  | 	setCurrentPage($('.current.page').parents('.article').children('.page').first()) | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| @ -197,15 +225,6 @@ function prevPage(){ | |||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| function goToMagazineCover(){ |  | ||||||
| 	setCurrentPage(0) |  | ||||||
| } |  | ||||||
| function goToArticleCover(){ |  | ||||||
| 	setCurrentPage($('.current.page').parents('.article').children('.page').first()) |  | ||||||
| } |  | ||||||
| 
 |  | ||||||
| 
 |  | ||||||
| 
 |  | ||||||
| function nextArticle(){ | function nextArticle(){ | ||||||
| 	var cur = $('.current.page').parents('.article') | 	var cur = $('.current.page').parents('.article') | ||||||
| 	// we are at the magazine cover...
 | 	// we are at the magazine cover...
 | ||||||
| @ -238,7 +257,8 @@ function prevArticle(){ | |||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| /*********************************************************************/ | /*********************************************************** state ***/ | ||||||
|  | 
 | ||||||
| // XXX make these magazine-specific...
 | // XXX make these magazine-specific...
 | ||||||
| // XXX BUG: if the hash url part coresponds to a real anchor the browser 
 | // XXX BUG: if the hash url part coresponds to a real anchor the browser 
 | ||||||
| // 		shifts the page, need to disable this...
 | // 		shifts the page, need to disable this...
 | ||||||
| @ -327,6 +347,8 @@ function saveURLState(){ | |||||||
| 	return n | 	return n | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
| // local storage state managers...
 | // local storage state managers...
 | ||||||
| function loadStorageState(){ | function loadStorageState(){ | ||||||
| 	return parseInt($.jStorage.get('current_page', 0)) | 	return parseInt($.jStorage.get('current_page', 0)) | ||||||
| @ -335,6 +357,8 @@ function saveStorageState(){ | |||||||
| 	$.jStorage.set('current_page', getPageNumber()) | 	$.jStorage.set('current_page', getPageNumber()) | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
| // generic state managers...
 | // generic state managers...
 | ||||||
| function loadState(){ | function loadState(){ | ||||||
| 	var n = loadURLState() | 	var n = loadURLState() | ||||||
| @ -350,20 +374,26 @@ function saveState(){ | |||||||
| } | } | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| /*********************************************************************/ | 
 | ||||||
|  | /********************************************************** editor ***/ | ||||||
| 
 | 
 | ||||||
| // XXX create magazine...
 | // XXX create magazine...
 | ||||||
| function createMagazine(){ | function createMagazine(){ | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
| // XXX create article (magazine, title, position)...
 | // XXX create article (magazine, title, position)...
 | ||||||
| function createArticle(magazine, title){ | function createArticle(magazine, title){ | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
| // XXX create page (article, template, position)...
 | // XXX create page (article, template, position)...
 | ||||||
| function createPage(article, template){ | function createPage(article, template){ | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
|  | 
 | ||||||
| /*********************************************************************/ | /*********************************************************************/ | ||||||
| // vim:set ts=4 sw=4 :
 | // vim:set ts=4 sw=4 :
 | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user