mirror of
				https://github.com/flynx/ImageGrid.git
				synced 2025-10-31 11:20:09 +00:00 
			
		
		
		
	tweaking...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
		
							parent
							
								
									28fac49755
								
							
						
					
					
						commit
						dcdd78489c
					
				| @ -691,6 +691,7 @@ core.ImageGridFeatures.Feature({ | |||||||
| 
 | 
 | ||||||
| 				var img = images.Images(json.images) | 				var img = images.Images(json.images) | ||||||
| 
 | 
 | ||||||
|  | 				// this is needed for loading multiple indexes...
 | ||||||
| 				if(base_path){ | 				if(base_path){ | ||||||
| 					d.base_path = base_path | 					d.base_path = base_path | ||||||
| 					// XXX STUB remove ASAP... 
 | 					// XXX STUB remove ASAP... 
 | ||||||
| @ -704,6 +705,7 @@ core.ImageGridFeatures.Feature({ | |||||||
| 					// 			2) add/remove on load/save (approach below)
 | 					// 			2) add/remove on load/save (approach below)
 | ||||||
| 					// 				+ less to do in real time
 | 					// 				+ less to do in real time
 | ||||||
| 					// 				- more processing on load/save
 | 					// 				- more processing on load/save
 | ||||||
|  | 					//console.warn('STUB: setting image .base_path in .prepareJSONForLoad(..)')
 | ||||||
| 					img.forEach(function(_, img){ img.base_path = base_path }) | 					img.forEach(function(_, img){ img.base_path = base_path }) | ||||||
| 				} | 				} | ||||||
| 
 | 
 | ||||||
|  | |||||||
| @ -60,6 +60,9 @@ module.COLLECTION_TRANSFER_CHANGES = [ | |||||||
| ] | ] | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
|  | 
 | ||||||
|  | //---------------------------------------------------------------------
 | ||||||
|  | 
 | ||||||
| // XXX undo...
 | // XXX undo...
 | ||||||
| var CollectionActions = actions.Actions({ | var CollectionActions = actions.Actions({ | ||||||
| 	config: { | 	config: { | ||||||
| @ -1331,7 +1334,8 @@ module.Collection = core.ImageGridFeatures.Feature({ | |||||||
| 				// 		simplify lazy-loading of the collection 
 | 				// 		simplify lazy-loading of the collection 
 | ||||||
| 				// 		index...
 | 				// 		index...
 | ||||||
| 				if(changes && (changes === true || changes.collections)){ | 				if(changes && (changes === true || changes.collections)){ | ||||||
| 					var index = res.index['collection-index'] = {} | 					//var index = res.index['collection-index'] = {}
 | ||||||
|  | 					var index = res.index['collections'] = {} | ||||||
| 					// NOTE: we do not need to use .collection_order here
 | 					// NOTE: we do not need to use .collection_order here
 | ||||||
| 					// 		as .json(..) returns the collections in the 
 | 					// 		as .json(..) returns the collections in the 
 | ||||||
| 					// 		correct order...
 | 					// 		correct order...
 | ||||||
| @ -1400,9 +1404,10 @@ module.Collection = core.ImageGridFeatures.Feature({ | |||||||
| 				// collection index...
 | 				// collection index...
 | ||||||
| 				var collections = {} | 				var collections = {} | ||||||
| 				var collections_index = {} | 				var collections_index = {} | ||||||
| 				var index = json['collection-index'] | 				//var index = json['collection-index']
 | ||||||
|  | 				var index = json['collections'] | ||||||
| 				index | 				index | ||||||
| 					&& index.forEach(function(gid){ | 					&& Object.keys(index).forEach(function(gid){ | ||||||
| 						var title = index[gid] | 						var title = index[gid] | ||||||
| 						var path = 'collections/'+ gid | 						var path = 'collections/'+ gid | ||||||
| 
 | 
 | ||||||
| @ -1415,6 +1420,12 @@ module.Collection = core.ImageGridFeatures.Feature({ | |||||||
| 						} | 						} | ||||||
| 					}) | 					}) | ||||||
| 
 | 
 | ||||||
|  | 				if(Object.keys(collections).length > 0){ | ||||||
|  | 					//console.log('!!!!!', collections)
 | ||||||
|  | 					// XXX this breaks loading...
 | ||||||
|  | 					//res.collections = collections
 | ||||||
|  | 				} | ||||||
|  | 
 | ||||||
| 				// group collection data...
 | 				// group collection data...
 | ||||||
| 				// XXX would be nice to have a mechanism to pass info to 
 | 				// XXX would be nice to have a mechanism to pass info to 
 | ||||||
| 				// 		the loader on what paths to load without actually 
 | 				// 		the loader on what paths to load without actually 
 | ||||||
| @ -1691,7 +1702,7 @@ module.CollectionTags = core.ImageGridFeatures.Feature({ | |||||||
| 					// skip loaded collections that are already Data objects...
 | 					// skip loaded collections that are already Data objects...
 | ||||||
| 					// XXX not sure about this...
 | 					// XXX not sure about this...
 | ||||||
| 					.filter(function(title){ | 					.filter(function(title){ | ||||||
| 						return !(json.collections[title] instanceof data.Data) }) | 						return !(json.collections[title].data instanceof data.Data) }) | ||||||
| 					// do the loading...
 | 					// do the loading...
 | ||||||
| 					.forEach(function(title){ | 					.forEach(function(title){ | ||||||
| 						var c = that.collections[title] | 						var c = that.collections[title] | ||||||
|  | |||||||
| @ -340,10 +340,23 @@ var LocationActions = actions.Actions({ | |||||||
| 		}}], | 		}}], | ||||||
| 	load: [function(){ | 	load: [function(){ | ||||||
| 		return function(_, data){ | 		return function(_, data){ | ||||||
|  | 			var that = this | ||||||
|  | 
 | ||||||
| 			// NOTE: we are setting this after the load because the 
 | 			// NOTE: we are setting this after the load because the 
 | ||||||
| 			// 		loader may .clear() the viewer, thus clearing the
 | 			// 		loader may .clear() the viewer, thus clearing the
 | ||||||
| 			// 		.location too...
 | 			// 		.location too...
 | ||||||
| 			this.__location = data.location | 			var l = this.__location = data.location | ||||||
|  | 
 | ||||||
|  | 			// set default image .base_path
 | ||||||
|  | 			// XXX not sure we need this...
 | ||||||
|  | 			data.location | ||||||
|  | 				&& Object.keys(this.images || {}).forEach(function(gid){ | ||||||
|  | 					var img = that.images[gid] | ||||||
|  | 
 | ||||||
|  | 					if(img.base_path == null){ | ||||||
|  | 						img.base_path = l.path | ||||||
|  | 					} | ||||||
|  | 				}) | ||||||
| 		}}], | 		}}], | ||||||
| 	clone: [function(){ | 	clone: [function(){ | ||||||
| 		return function(res){ | 		return function(res){ | ||||||
|  | |||||||
| @ -278,6 +278,8 @@ function(list, from_date, logger){ | |||||||
| 					var k = s[1] | 					var k = s[1] | ||||||
| 					var d = s[2] == 'diff' | 					var d = s[2] == 'diff' | ||||||
| 
 | 
 | ||||||
|  | 					k = d ? k : s.slice(1).join('-') | ||||||
|  | 
 | ||||||
| 					// new keyword...
 | 					// new keyword...
 | ||||||
| 					if(index[k] == null){ | 					if(index[k] == null){ | ||||||
| 						index[k] = [[d, n]] | 						index[k] = [[d, n]] | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user