From e98d47e3ce9b7a4f3e2cb0e0b74861e8b14875bf Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Thu, 18 Dec 2014 15:21:48 -0800 Subject: [PATCH 01/12] Fixed erroneous "undefined" asserts --- src/world.js | 4 ++-- test/demo/collections/main.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/world.js b/src/world.js index 9e67a1c1..79967d5a 100644 --- a/src/world.js +++ b/src/world.js @@ -104,7 +104,7 @@ $.extend( $.World.prototype, $.EventSource.prototype, /** @lends OpenSeadragon.W * @returns {OpenSeadragon.TiledImage} The item at the specified index. */ getItemAt: function( index ) { - $.console.assert(index !== 'undefined', "[World.getItemAt] index is required"); + $.console.assert(index !== undefined, "[World.getItemAt] index is required"); return this._items[ index ]; }, @@ -133,7 +133,7 @@ $.extend( $.World.prototype, $.EventSource.prototype, /** @lends OpenSeadragon.W */ setItemIndex: function( item, index ) { $.console.assert(item, "[World.setItemIndex] item is required"); - $.console.assert(index !== 'undefined', "[World.setItemIndex] index is required"); + $.console.assert(index !== undefined, "[World.setItemIndex] index is required"); var oldIndex = this.getIndexOfItem( item ); diff --git a/test/demo/collections/main.js b/test/demo/collections/main.js index 51f91c83..792f7c12 100644 --- a/test/demo/collections/main.js +++ b/test/demo/collections/main.js @@ -6,7 +6,7 @@ init: function() { var self = this; - var testInitialOpen = false; + var testInitialOpen = true; var testOverlays = false; var testMargins = false; var testNavigator = true; @@ -21,7 +21,7 @@ // referenceStripScroll: 'vertical', navPrevNextWrap: false, preserveViewport: false, - collectionMode: true, + // collectionMode: true, // collectionRows: 3, // collectionLayout: 'vertical', // collectionTileSize: 10, From f1610425bcadc8c4c2920a0be99d8bc31cc663af Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Fri, 19 Dec 2014 13:57:08 -0800 Subject: [PATCH 02/12] Navigator now updates when items are moved --- src/navigator.js | 43 +++++++++++++++++++++++++++-------- test/demo/collections/main.js | 2 +- 2 files changed, 35 insertions(+), 10 deletions(-) diff --git a/src/navigator.js b/src/navigator.js index bea23ddd..8f234248 100644 --- a/src/navigator.js +++ b/src/navigator.js @@ -245,14 +245,10 @@ $.Navigator = function( options ){ }); viewer.world.addHandler("remove-item", function(event) { - var count = _this.world.getItemCount(); - var item; - for (var i = 0; i < count; i++) { - item = _this.world.getItemAt(i); - if (item._originalForNavigator === event.item) { - _this.world.removeItem(item); - break; - } + var theirItem = event.item; + var myItem = _this._getMatchingItem(theirItem); + if (myItem) { + _this.world.removeItem(myItem); } }); @@ -343,16 +339,45 @@ $.extend( $.Navigator.prototype, $.EventSource.prototype, $.Viewer.prototype, /* // overrides Viewer.addTiledImage addTiledImage: function(options) { + var _this = this; + var original = options.originalTiledImage; delete options.original; var optionsClone = $.extend({}, options, { success: function(event) { - event.item._originalForNavigator = original; + var myItem = event.item; + myItem._originalForNavigator = original; + _this._matchBounds(myItem, original, true); + + original.addHandler('bounds-change', function() { + _this._matchBounds(myItem, original); + }); } }); return $.Viewer.prototype.addTiledImage.apply(this, [optionsClone]); + }, + + // private + _getMatchingItem: function(theirItem) { + var count = this.world.getItemCount(); + var item; + for (var i = 0; i < count; i++) { + item = this.world.getItemAt(i); + if (item._originalForNavigator === theirItem) { + return item; + } + } + + return null; + }, + + // private + _matchBounds: function(myItem, theirItem, immediately) { + var bounds = theirItem.getBounds(); + myItem.setPosition(bounds.getTopLeft(), immediately); + myItem.setWidth(bounds.width, immediately); } }); diff --git a/test/demo/collections/main.js b/test/demo/collections/main.js index cc18a064..173aa2e6 100644 --- a/test/demo/collections/main.js +++ b/test/demo/collections/main.js @@ -9,7 +9,7 @@ var testInitialOpen = true; var testOverlays = false; var testMargins = false; - var testNavigator = false; + var testNavigator = true; var margins; var config = { From ce8b0358ffa11c2223b25108541ec33ef8a88e92 Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Fri, 19 Dec 2014 15:21:57 -0800 Subject: [PATCH 03/12] Test for item positions + navigator --- test/modules/navigator.js | 46 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 45 insertions(+), 1 deletion(-) diff --git a/test/modules/navigator.js b/test/modules/navigator.js index 8ee325e2..7799f06d 100644 --- a/test/modules/navigator.js +++ b/test/modules/navigator.js @@ -1,4 +1,4 @@ -/* global QUnit, module, Util, $, console, test, asyncTest, start, ok, equal */ +/* global QUnit, module, Util, $, console, test, asyncTest, start, ok, equal, propEqual */ (function () { var debug = false, @@ -799,4 +799,48 @@ viewer.addHandler('open', openHandler1); }); + + asyncTest('Item positions including collection mode', function() { + var navAddCount = 0; + + viewer = OpenSeadragon({ + id: 'example', + prefixUrl: '/build/openseadragon/images/', + tileSources: ['/test/data/testpattern.dzi', '/test/data/testpattern.dzi'], + springStiffness: 100, // Faster animation = faster tests + showNavigator: true, + collectionMode: true + }); + + var openHandler = function() { + viewer.removeHandler('open', openHandler); + viewer.navigator.world.addHandler('add-item', navOpenHandler); + }; + + var navOpenHandler = function(event) { + navAddCount++; + if (navAddCount === 2) { + viewer.navigator.world.removeHandler('add-item', navOpenHandler); + + setTimeout(function() { + // Test initial formation + equal(viewer.navigator.world.getItemCount(), 2, 'navigator has both items'); + for (var i = 0; i < 2; i++) { + propEqual(viewer.navigator.world.getItemAt(i).getBounds(), + viewer.world.getItemAt(i).getBounds(), 'bounds are the same'); + } + + // Try moving one + viewer.world.getItemAt(0).setPosition(new OpenSeadragon.Point(-200, -200)); + propEqual(viewer.navigator.world.getItemAt(0).getBounds(), + viewer.world.getItemAt(0).getBounds(), 'bounds are the same after move'); + + start(); + }, 1); + } + }; + + viewer.addHandler('open', openHandler); + }); + })(); From c9708399a1bcf44c9f28719fb3af9991818fbf50 Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Fri, 19 Dec 2014 15:32:19 -0800 Subject: [PATCH 04/12] Fixed bug with passing single literal tilesource on construction --- src/viewer.js | 2 +- test/demo/collections/main.js | 22 +++++++++++++++++++--- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/src/viewer.js b/src/viewer.js index 00108538..c6b373a4 100644 --- a/src/viewer.js +++ b/src/viewer.js @@ -496,7 +496,7 @@ $.Viewer = function( options ) { } // Open initial tilesources - if ( this.tileSources && this.tileSources.length) { + if (this.tileSources) { this.open( this.tileSources ); } diff --git a/test/demo/collections/main.js b/test/demo/collections/main.js index 173aa2e6..a792131d 100644 --- a/test/demo/collections/main.js +++ b/test/demo/collections/main.js @@ -9,7 +9,7 @@ var testInitialOpen = true; var testOverlays = false; var testMargins = false; - var testNavigator = true; + var testNavigator = false; var margins; var config = { @@ -22,8 +22,8 @@ // referenceStripScroll: 'vertical', navPrevNextWrap: false, preserveViewport: false, - collectionMode: true, - collectionRows: 1, + // collectionMode: true, + // collectionRows: 1, // collectionLayout: 'vertical', // collectionTileSize: 10, // collectionTileMargin: 10, @@ -33,6 +33,20 @@ prefixUrl: "../../../build/openseadragon/images/" }; + var highsmith = { + Image: { + xmlns: "http://schemas.microsoft.com/deepzoom/2008", + Url: "http://openseadragon.github.io/example-images/highsmith/highsmith_files/", + Format: "jpg", + Overlap: "2", + TileSize: "256", + Size: { + Height: "9221", + Width: "7026" + } + } + }; + if (testInitialOpen) { config.tileSources = [ { @@ -55,6 +69,8 @@ height: 1 } ]; + + // config.tileSources = highsmith; } if (testOverlays) { From c6b1efe85d33009533ce1782eebfab1615df2ab1 Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Fri, 19 Dec 2014 15:55:24 -0800 Subject: [PATCH 05/12] Added pause and "add more" buttons to animation demo --- test/demo/item-animation.html | 52 +++++++++++++++++++++++++++++++---- 1 file changed, 46 insertions(+), 6 deletions(-) diff --git a/test/demo/item-animation.html b/test/demo/item-animation.html index a6cbf3a6..254458a6 100644 --- a/test/demo/item-animation.html +++ b/test/demo/item-animation.html @@ -14,12 +14,18 @@ margin: 0; } + .controls { + position: absolute; + right: 10px; + top: 10px; + } + - + diff --git a/test/viewport.js b/test/modules/viewport.js similarity index 100% rename from test/viewport.js rename to test/modules/viewport.js diff --git a/test/test.html b/test/test.html index 65f0d5b3..f1f1716c 100644 --- a/test/test.html +++ b/test/test.html @@ -30,7 +30,7 @@ - +