fixed (mostly) a mojor bug -- turned out to be trivial but very vague...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2015-07-31 19:00:29 +03:00
parent 4802eb0514
commit c5a3ca2bf5
3 changed files with 48 additions and 34 deletions

View File

@ -1174,11 +1174,16 @@ var RibbonsPrototype = {
// place holder for overloading...
updateRibbon: function(gids, ribbon, reference, force){
var that = this
var place = false
// get/create the ribbon...
var r = this.getRibbon(ribbon)
if(r.length == 0){
// no such ribbon exists, then create and append it...
r = this.placeRibbon(ribbon, this.viewer.find(RIBBON).length)
place = true
// no such ribbon exists, then create and append it in the end...
// NOTE: this effectively makes the update offline and pushes
// the new ribbon on the dom in one go...
r = this.createRibbon(ribbon)
}
var loaded = r.find(IMAGE)
@ -1268,6 +1273,10 @@ var RibbonsPrototype = {
that.updateImage(img)
})
if(place){
this.placeRibbon(r, this.viewer.find(RIBBON).length)
}
return this
},

View File

@ -40,7 +40,7 @@ var mock_data =
module.mock_data = {
varsion: '3.0',
current: 'b',
current: '3',
base: 'r0',
order: [],

View File

@ -848,8 +848,9 @@ actions.Actions(Client, {
}
}],
// NOTE: this will pass the .ribbons.updateData(..) a custom ribbon
// updater if one is defined here as .updateRibbon(target)
// XXX HACK: tow sins:
// updater if one is defined here as .updateRibbon(target) action
//
// XXX HACK: two sins:
// - actions.updateRibbon(..) and ribbons.updateRibbon(..)
// are NOT signature compatible...
// - we depend on the internals of a custom add-on feature
@ -867,14 +868,16 @@ actions.Actions(Client, {
var settings = this.updateRibbon != null
// XXX this should be: { updateRibbon: this.updateRibbon.bind(this) }
? { updateRibbon: function(_, ribbon){
that.updateRibbon(ribbon, null, null, force)
return that.updateRibbon(ribbon, null, null, force)
} }
: null
this.ribbons.updateData(this.data, settings)
// XXX should this be here???
this.refresh()
this.focusImage()
this
// XXX should this be here???
.refresh()
.focusImage()
this.ribbons.restoreTransitions()
}
@ -1266,15 +1269,8 @@ actions.Actions(Client, {
crop: [ reloadAfter() ],
// XXX BUG: this does not align correctly if the current image is in
// a different ribbon relative to the top...
// to repeat:
// - in a three ribbon setup focus an image in the middle ribbon
// - .cropRibbonAndAbove(true) -> single ribbon
// - .uncrop()
// result:
// ribbon vertical alignment will not change.
uncrop: [ reloadAfter() ],
// XXX BUG? reloadAfter() produces an align error...
uncrop: [ reloadAfter(true) ],
// XXX might be a good idea to do this in a new viewer in an overlay...
cropGroup: [ reloadAfter() ],
@ -1410,14 +1406,17 @@ module.Journal = features.Feature(ImageGridFeatures, {
var PartialRibbonsActions = actions.Actions({
// NOTE: this will force sync resize if one of the following is true:
// - the target is not loaded
// - we are less that screen width from the edge
// - we are less than screen width from the edge
// - threshold is set to 0
// XXX this is not signature compatible with data.updateRibbon(..)
updateRibbon: ['Update partial ribbon size',
function(target, w, size, threshold){
target = target instanceof jQuery
? this.ribbons.getElemGID(target)
: this.data.getImage(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'))
w = w || this.screenwidth
@ -1433,8 +1432,9 @@ var PartialRibbonsActions = actions.Actions({
var timeout = this.config['ribbon-update-timeout']
// next/prev loaded...
var nl = this.ribbons.getImage(target).nextAll('.image:not(.clone)').length
var pl = this.ribbons.getImage(target).prevAll('.image:not(.clone)').length
var img = this.ribbons.getImage(target)
var nl = img.nextAll('.image:not(.clone)').length
var pl = img.prevAll('.image:not(.clone)').length
// next/prev available...
// NOTE: we subtract 1 to remove the current and make these
@ -1443,10 +1443,11 @@ var PartialRibbonsActions = actions.Actions({
var pa = this.data.getImages(target, size, 'before').length - 1
// do the update...
// no threshold beans force load...
// no threshold means force load...
if(threshold == 0
// the target is not loaded...
|| this.ribbons.getImage(target).length == 0
//|| this.ribbons.getImage(target).length == 0
|| img.length == 0
// passed hard threshold on the right...
|| (nl < w && na > nl)
// passed hard threshold on the left...
@ -1478,13 +1479,14 @@ var PartialRibbonsActions = actions.Actions({
clearTimeout(this.__update_timeout)
}
this.__update_timeout = setTimeout(function(){
delete this.__update_timeout
delete that.__update_timeout
that.resizeRibbon(target, size)
}, timeout)
}
}
}
}],
// XXX do we handle off-screen ribbons here???
resizeRibbon: ['Resize ribbon to n images',
function(target, size){
size = size
@ -1498,17 +1500,20 @@ var PartialRibbonsActions = actions.Actions({
var r_gid = data.getRibbon(target)
// localize transition prevention...
// NOTE: for the initial load this may be empty...
var r = ribbons.getRibbon(r_gid)
if(r.length > 0){
ribbons
.preventTransitions(r)
.updateRibbon(
data.getImages(target, size),
r_gid,
target)
.restoreTransitions(r, true)
}
// XXX do we need to for example ignore unloaded (r.length == 0)
// ribbons here, for example not load ribbons too far off
// screen??
ribbons
.preventTransitions(r)
.updateRibbon(
data.getImages(target, size),
r_gid,
target)
.restoreTransitions(r, true)
}]
})