2014-07-20 03:02:18 +04:00
|
|
|
/**********************************************************************
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
|
2014-07-29 19:09:05 +04:00
|
|
|
define(function(require){ var module = {}
|
|
|
|
|
console.log('>>> viewer')
|
|
|
|
|
|
2014-07-20 03:02:18 +04:00
|
|
|
//var DEBUG = DEBUG != null ? DEBUG : true
|
|
|
|
|
|
2014-10-11 06:33:49 +04:00
|
|
|
var actions = require('lib/actions')
|
|
|
|
|
|
|
|
|
|
var data = require('data')
|
|
|
|
|
var ribbons = require('ribbons')
|
|
|
|
|
|
2014-07-20 03:02:18 +04:00
|
|
|
|
2014-10-21 20:29:11 +04:00
|
|
|
/*********************************************************************/
|
|
|
|
|
// helpers...
|
|
|
|
|
|
|
|
|
|
var reloadAfter =
|
|
|
|
|
module.reloadAfter =
|
|
|
|
|
function reloadAfter(transitions){
|
|
|
|
|
return function(){
|
|
|
|
|
return function(){
|
|
|
|
|
// NOTE: this may seem like cheating, but .reload() should
|
|
|
|
|
// be very efficient, reusing all of the items loaded...
|
|
|
|
|
this.reload()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2014-07-20 03:02:18 +04:00
|
|
|
/*********************************************************************/
|
2014-10-08 04:52:41 +04:00
|
|
|
//
|
|
|
|
|
// XXX Tasks to accomplish here:
|
|
|
|
|
// - life-cycle actions/events
|
|
|
|
|
// - setup
|
|
|
|
|
// - reset
|
|
|
|
|
// - "features" and the mechanism to turn them on or off (action-sets)
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
|
2014-10-11 06:33:49 +04:00
|
|
|
var Client =
|
|
|
|
|
module.Client =
|
|
|
|
|
actions.Actions({
|
2014-10-11 17:08:17 +04:00
|
|
|
|
2014-10-11 17:18:33 +04:00
|
|
|
// XXX should this be here???
|
2014-10-11 17:08:17 +04:00
|
|
|
config: {
|
|
|
|
|
'steps-to-change-direction': 3,
|
2014-10-18 17:32:41 +04:00
|
|
|
'max-screen-images': 30,
|
|
|
|
|
'zoom-step': 1.2,
|
2014-10-11 17:08:17 +04:00
|
|
|
},
|
|
|
|
|
|
2014-10-11 17:18:33 +04:00
|
|
|
|
2014-10-11 17:08:17 +04:00
|
|
|
// basic state...
|
|
|
|
|
// NOTE: the setters in the following use the appropriate actions
|
|
|
|
|
// so to avoid recursion do not use these in the specific
|
|
|
|
|
// actions...
|
2014-10-11 17:18:33 +04:00
|
|
|
|
|
|
|
|
// Base ribbon...
|
2014-10-11 17:08:17 +04:00
|
|
|
get base(){
|
|
|
|
|
return this.data == null ? null : this.data.base
|
|
|
|
|
},
|
|
|
|
|
set base(value){
|
|
|
|
|
this.setBaseRibbon(value)
|
|
|
|
|
},
|
|
|
|
|
|
2014-10-11 17:18:33 +04:00
|
|
|
// Current image...
|
2014-10-11 17:08:17 +04:00
|
|
|
get current(){
|
|
|
|
|
return this.data == null ? null : this.data.current
|
|
|
|
|
},
|
|
|
|
|
set current(value){
|
|
|
|
|
this.focusImage(value)
|
|
|
|
|
},
|
|
|
|
|
|
2014-10-11 17:18:33 +04:00
|
|
|
// Current ribbon...
|
2014-10-11 17:08:17 +04:00
|
|
|
get currentRibbon(){
|
|
|
|
|
return this.data == null ? null : this.data.getRibbon()
|
|
|
|
|
},
|
|
|
|
|
set currentRibbon(value){
|
|
|
|
|
this.focusRibbon(value)
|
|
|
|
|
},
|
|
|
|
|
|
2014-10-11 17:18:33 +04:00
|
|
|
// Default direction...
|
|
|
|
|
//
|
|
|
|
|
// This can be 'left' or 'right', other values are ignored.
|
|
|
|
|
//
|
|
|
|
|
// The system has inertial direction change, after >N steps of
|
|
|
|
|
// movement in one direction it takes N steps to reverse the default
|
|
|
|
|
// direction.
|
|
|
|
|
// The number of steps (N) is set in:
|
|
|
|
|
// .config['steps-to-change-direction']
|
2014-10-11 17:08:17 +04:00
|
|
|
//
|
|
|
|
|
// NOTE: to force direction change append a '!' to the direction.
|
2014-10-11 17:18:33 +04:00
|
|
|
// e.g. X.direction = 'left!'
|
2014-10-11 17:08:17 +04:00
|
|
|
get direction(){
|
|
|
|
|
return this._direction >= 0 ? 'right'
|
|
|
|
|
: this._direction < 0 ? 'left'
|
|
|
|
|
: 'right'
|
|
|
|
|
},
|
|
|
|
|
set direction(value){
|
|
|
|
|
// force direction change...
|
|
|
|
|
if(value.slice(-1) == '!'){
|
|
|
|
|
this._direction = value == 'left!' ? -1
|
2014-10-11 17:18:33 +04:00
|
|
|
: value == 'right!' ? 0
|
2014-10-11 17:08:17 +04:00
|
|
|
: this._direction
|
|
|
|
|
|
|
|
|
|
// 'update' direction...
|
|
|
|
|
} else {
|
|
|
|
|
value = value == 'left' ? -1
|
2014-10-11 17:18:33 +04:00
|
|
|
: value == 'right' ? 1
|
2014-10-11 17:08:17 +04:00
|
|
|
: 0
|
|
|
|
|
var d = (this._direction || 0) + value
|
|
|
|
|
var s = this.config['steps-to-change-direction']
|
|
|
|
|
s = s < 1 ? 1 : s
|
|
|
|
|
// cap the direction value between -s and s-1...
|
|
|
|
|
// NOTE: we use s-1 instead of s as 0/null is a positive
|
|
|
|
|
// direction...
|
|
|
|
|
d = d >= s ? s-1 : d
|
|
|
|
|
d = d < -s ? -s : d
|
|
|
|
|
this._direction = d
|
|
|
|
|
}
|
2014-10-11 17:18:33 +04:00
|
|
|
},
|
2014-10-11 17:08:17 +04:00
|
|
|
|
|
|
|
|
|
2014-10-11 06:33:49 +04:00
|
|
|
// basic life-cycle actions...
|
2014-10-11 17:18:33 +04:00
|
|
|
//
|
2014-10-11 17:08:17 +04:00
|
|
|
ready: [
|
|
|
|
|
function(){
|
|
|
|
|
// XXX setup empty state...
|
|
|
|
|
}],
|
2014-10-11 06:33:49 +04:00
|
|
|
load: [
|
|
|
|
|
function(d){
|
|
|
|
|
this.data = data.Data(d.data)
|
|
|
|
|
}],
|
|
|
|
|
clear: [
|
|
|
|
|
function(){
|
|
|
|
|
delete this.data
|
|
|
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
2014-10-11 17:08:17 +04:00
|
|
|
// basic navigation...
|
2014-10-11 17:18:33 +04:00
|
|
|
//
|
2014-10-11 06:33:49 +04:00
|
|
|
focusImage: ['Focus image',
|
2014-10-19 22:32:33 +04:00
|
|
|
function(img, list){
|
|
|
|
|
this.data.focusImage(img, list)
|
2014-10-11 06:33:49 +04:00
|
|
|
}],
|
|
|
|
|
focusRibbon: ['Focus Ribbon',
|
|
|
|
|
function(target){
|
|
|
|
|
var data = this.data
|
|
|
|
|
var r = data.getRibbon(target)
|
2014-10-13 00:18:26 +04:00
|
|
|
if(r == null){
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
var c = data.getRibbonOrder()
|
|
|
|
|
var i = data.getRibbonOrder(r)
|
|
|
|
|
|
|
|
|
|
// NOTE: we are not changing the direction here based on
|
|
|
|
|
// this.direction as swap will confuse the user...
|
|
|
|
|
var direction = c < i ? 'before' : 'after'
|
|
|
|
|
|
|
|
|
|
var t = data.getImage(r, direction)
|
|
|
|
|
|
|
|
|
|
// if there are no images in the requied direction, try the
|
|
|
|
|
// other way...
|
|
|
|
|
t = t == null ? data.getImage(r, direction == 'before' ? 'after' : 'before') : t
|
2014-10-11 06:33:49 +04:00
|
|
|
|
|
|
|
|
this.focusImage(t, r)
|
|
|
|
|
}],
|
2014-10-19 22:32:33 +04:00
|
|
|
setBaseRibbon: ['Set base ribbon',
|
2014-10-11 17:08:17 +04:00
|
|
|
function(target){ this.data.setBase(target) }],
|
2014-10-11 06:33:49 +04:00
|
|
|
|
2014-10-24 04:51:35 +04:00
|
|
|
// shorthands...
|
|
|
|
|
// XXX do we reset direction on these???
|
2014-10-11 06:33:49 +04:00
|
|
|
firstImage: ['Focus first image in current ribbon',
|
2014-10-22 13:11:26 +04:00
|
|
|
function(all){ this.focusImage(all == null ? 'first' : 0) }],
|
2014-10-11 06:33:49 +04:00
|
|
|
lastImage: ['Focus last image in current ribbon',
|
2014-10-22 13:11:26 +04:00
|
|
|
function(all){ this.focusImage(all == null ? 'last' : -1) }],
|
|
|
|
|
firstGlobalImage: ['Get first globally image',
|
|
|
|
|
function(){ this.firstImage(true) }],
|
|
|
|
|
lastGlobalImage: ['Get last globally image',
|
|
|
|
|
function(){ this.lastImage(true) }],
|
2014-10-11 06:33:49 +04:00
|
|
|
|
|
|
|
|
prevImage: ['Focus previous image',
|
2014-10-21 20:29:11 +04:00
|
|
|
function(a){
|
2014-10-11 17:08:17 +04:00
|
|
|
// keep track of traverse direction...
|
|
|
|
|
this.direction = 'left'
|
2014-10-21 20:29:11 +04:00
|
|
|
|
|
|
|
|
if(typeof(a) == typeof(123)){
|
|
|
|
|
// XXX should this force direction change???
|
|
|
|
|
this.focusImage(this.data.getImage('current', -a)
|
|
|
|
|
// go to the first image if it's closer than s...
|
|
|
|
|
|| this.data.getImage('first'))
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
this.focusImage('prev', a)
|
|
|
|
|
}
|
2014-10-11 17:08:17 +04:00
|
|
|
}],
|
2014-10-11 06:33:49 +04:00
|
|
|
nextImage: ['Focus next image',
|
2014-10-21 20:29:11 +04:00
|
|
|
function(a){
|
2014-10-11 17:08:17 +04:00
|
|
|
// keep track of traverse direction...
|
|
|
|
|
this.direction = 'right'
|
2014-10-21 20:29:11 +04:00
|
|
|
|
|
|
|
|
if(typeof(a) == typeof(123)){
|
|
|
|
|
// XXX should this force direction change???
|
|
|
|
|
this.focusImage(this.data.getImage('current', a)
|
|
|
|
|
// go to the first image if it's closer than s...
|
|
|
|
|
|| this.data.getImage('last'))
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
this.focusImage('next', a)
|
|
|
|
|
}
|
2014-10-11 17:08:17 +04:00
|
|
|
}],
|
2014-10-11 06:33:49 +04:00
|
|
|
|
2014-10-19 22:32:33 +04:00
|
|
|
prevImageInOrder: ['Focus previous image in order',
|
2014-10-21 20:29:11 +04:00
|
|
|
function(){ this.prevImage(this.data.order) }],
|
2014-10-19 22:32:33 +04:00
|
|
|
nextImageInOrder: ['Focus next image in order',
|
2014-10-21 20:29:11 +04:00
|
|
|
function(){ this.nextImage(this.data.order) }],
|
2014-10-19 22:32:33 +04:00
|
|
|
|
2014-10-22 13:11:26 +04:00
|
|
|
|
2014-10-11 06:33:49 +04:00
|
|
|
firstRibbon: ['Focus previous ribbon',
|
2014-10-21 21:17:44 +04:00
|
|
|
function(){ this.focusRibbon('first') }],
|
2014-10-11 06:33:49 +04:00
|
|
|
lastRibbon: ['Focus next ribbon',
|
|
|
|
|
function(){ this.focusRibbon('last') }],
|
|
|
|
|
prevRibbon: ['Focus previous ribbon',
|
|
|
|
|
function(){ this.focusRibbon('before') }],
|
|
|
|
|
nextRibbon: ['Focus next ribbon',
|
|
|
|
|
function(){ this.focusRibbon('after') }],
|
|
|
|
|
|
2014-10-11 17:08:17 +04:00
|
|
|
|
2014-10-12 03:14:29 +04:00
|
|
|
// basic ribbon editing...
|
2014-10-11 17:08:17 +04:00
|
|
|
//
|
|
|
|
|
// NOTE: for all of these, current/ribbon image is a default...
|
2014-10-19 00:41:50 +04:00
|
|
|
|
|
|
|
|
// XXX to be used for things like mark/place and dragging...
|
|
|
|
|
shiftImageTo: ['',
|
|
|
|
|
function(target, to){
|
|
|
|
|
// XXX
|
|
|
|
|
}],
|
2014-10-18 17:32:41 +04:00
|
|
|
|
2014-10-11 17:08:17 +04:00
|
|
|
shiftImageUp: ['Shift image up',
|
|
|
|
|
'If implicitly shifting current image (i.e. no arguments), focus '
|
|
|
|
|
+'will shift to the next or previous image in the current '
|
|
|
|
|
+'ribbon depending on current direction.',
|
|
|
|
|
function(target){
|
2014-10-19 00:41:50 +04:00
|
|
|
// by default we need to focus another image in the same ribbon...
|
2014-10-11 17:08:17 +04:00
|
|
|
if(target == null){
|
|
|
|
|
var direction = this.direction == 'right' ? 'next' : 'prev'
|
|
|
|
|
|
|
|
|
|
var cur = this.data.getImage()
|
|
|
|
|
var next = this.data.getImage(direction)
|
2014-10-12 03:14:29 +04:00
|
|
|
next = next == null
|
|
|
|
|
? this.data.getImage(direction == 'next' ? 'prev' : 'next')
|
|
|
|
|
: next
|
2014-10-11 17:08:17 +04:00
|
|
|
|
|
|
|
|
this.data.shiftImageUp(cur)
|
|
|
|
|
this.focusImage(next)
|
|
|
|
|
|
|
|
|
|
// if a specific target is given, just shift it...
|
|
|
|
|
} else {
|
|
|
|
|
this.data.shiftImageUp(target)
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
shiftImageDown: ['Shift image down',
|
2014-10-11 17:18:33 +04:00
|
|
|
'If implicitly shifting current image (i.e. no arguments), focus '
|
|
|
|
|
+'will shift to the next or previous image in the current '
|
|
|
|
|
+'ribbon depending on current direction.',
|
2014-10-11 17:08:17 +04:00
|
|
|
function(target){
|
2014-10-19 00:41:50 +04:00
|
|
|
// by default we need to focus another image in the same ribbon...
|
2014-10-11 17:08:17 +04:00
|
|
|
if(target == null){
|
|
|
|
|
var direction = this.direction == 'right' ? 'next' : 'prev'
|
|
|
|
|
|
|
|
|
|
var cur = this.data.getImage()
|
|
|
|
|
var next = this.data.getImage(direction)
|
2014-10-12 03:14:29 +04:00
|
|
|
next = next == null
|
|
|
|
|
? this.data.getImage(direction == 'next' ? 'prev' : 'next')
|
|
|
|
|
: next
|
2014-10-11 17:08:17 +04:00
|
|
|
|
|
|
|
|
this.data.shiftImageDown(cur)
|
|
|
|
|
this.focusImage(next)
|
|
|
|
|
|
|
|
|
|
// if a specific target is given, just shift it...
|
|
|
|
|
} else {
|
|
|
|
|
this.data.shiftImageDown(target)
|
|
|
|
|
}
|
|
|
|
|
}],
|
2014-10-12 03:14:29 +04:00
|
|
|
shiftImageUpNewRibbon: ['Shift image up to a new empty ribbon',
|
2014-10-11 17:08:17 +04:00
|
|
|
function(target){
|
|
|
|
|
this.data.newRibbon(target)
|
|
|
|
|
this.shiftImageUp(target)
|
|
|
|
|
}],
|
2014-10-12 03:14:29 +04:00
|
|
|
shiftImageDownNewRibbon: ['Shift image down to a new empty ribbon',
|
2014-10-11 17:08:17 +04:00
|
|
|
function(target){
|
|
|
|
|
this.data.newRibbon(target, 'below')
|
2014-10-12 04:52:44 +04:00
|
|
|
this.shiftImageDown(target)
|
2014-10-11 17:08:17 +04:00
|
|
|
}],
|
2014-10-12 03:14:29 +04:00
|
|
|
shiftImageLeft: ['Shift image left',
|
2014-10-11 17:08:17 +04:00
|
|
|
function(target){
|
|
|
|
|
if(target == null){
|
|
|
|
|
this.direction = 'left'
|
|
|
|
|
}
|
|
|
|
|
this.data.shiftImageLeft(target)
|
|
|
|
|
this.focusImage()
|
|
|
|
|
}],
|
2014-10-12 03:14:29 +04:00
|
|
|
shiftImageRight: ['Shift image right',
|
2014-10-11 17:08:17 +04:00
|
|
|
function(target){
|
|
|
|
|
if(target == null){
|
|
|
|
|
this.direction = 'right'
|
|
|
|
|
}
|
2014-10-12 03:14:29 +04:00
|
|
|
this.data.shiftImageRight(target)
|
2014-10-11 17:08:17 +04:00
|
|
|
this.focusImage()
|
|
|
|
|
}],
|
|
|
|
|
|
2014-10-12 03:14:29 +04:00
|
|
|
shiftRibbonUp: ['Shift ribbon up',
|
2014-10-11 17:08:17 +04:00
|
|
|
function(target){
|
|
|
|
|
this.data.shiftRibbonUp(target)
|
|
|
|
|
// XXX is this the right way to go/???
|
|
|
|
|
this.focusImage()
|
|
|
|
|
}],
|
2014-10-12 03:14:29 +04:00
|
|
|
shiftRibbonDown: ['Shift ribbon down',
|
2014-10-11 17:08:17 +04:00
|
|
|
function(target){
|
|
|
|
|
this.data.shiftRibbonDown(target)
|
|
|
|
|
// XXX is this the right way to go/???
|
|
|
|
|
this.focusImage()
|
|
|
|
|
}],
|
2014-10-12 03:14:29 +04:00
|
|
|
|
2014-10-18 04:36:47 +04:00
|
|
|
reverseImages: ['Reverse image order',
|
2014-10-13 00:18:26 +04:00
|
|
|
function(){ this.data.reverseImages() }],
|
2014-10-18 04:36:47 +04:00
|
|
|
reverseRibbons: ['Reverse ribbon order',
|
|
|
|
|
function(){ this.data.reverseRibbons() }],
|
|
|
|
|
|
2014-10-12 03:14:29 +04:00
|
|
|
|
2014-10-18 04:26:52 +04:00
|
|
|
// XXX this also requires images...
|
|
|
|
|
sortImages: [
|
|
|
|
|
function(){ }],
|
2014-10-12 03:14:29 +04:00
|
|
|
|
|
|
|
|
// basic image editing...
|
|
|
|
|
//
|
2014-10-18 04:26:52 +04:00
|
|
|
// XXX these are not data stuff... should this be split into a
|
|
|
|
|
// separate images block???
|
2014-10-12 03:14:29 +04:00
|
|
|
rotateCW: [
|
|
|
|
|
function(){ }],
|
|
|
|
|
rotateCCW: [
|
|
|
|
|
function(){ }],
|
|
|
|
|
flipVertical: [
|
|
|
|
|
function(){ }],
|
|
|
|
|
flipHorizontal: [
|
|
|
|
|
function(){ }],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// crop...
|
2014-10-13 00:18:26 +04:00
|
|
|
//
|
2014-10-21 20:29:11 +04:00
|
|
|
crop: [
|
2014-10-22 01:05:59 +04:00
|
|
|
function(list, flatten){
|
|
|
|
|
list = list || this.data.order
|
2014-10-21 20:29:11 +04:00
|
|
|
if(this.crop_stack == null){
|
|
|
|
|
this.crop_stack = []
|
|
|
|
|
}
|
|
|
|
|
this.crop_stack.push(this.data)
|
2014-10-22 01:05:59 +04:00
|
|
|
this.data = this.data.crop(list, flatten)
|
2014-10-21 20:29:11 +04:00
|
|
|
}],
|
2014-10-22 01:05:59 +04:00
|
|
|
uncrop: ['Uncrop ribbons',
|
2014-10-24 17:18:54 +04:00
|
|
|
function(level, restore_current, keep_crop_order){
|
2014-10-22 01:05:59 +04:00
|
|
|
level = level || 1
|
|
|
|
|
|
|
|
|
|
var cur = this.current
|
2014-10-24 17:18:54 +04:00
|
|
|
var order = this.data.order
|
2014-10-22 01:05:59 +04:00
|
|
|
|
2014-10-21 20:29:11 +04:00
|
|
|
if(this.crop_stack == null){
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-22 01:05:59 +04:00
|
|
|
// uncrop all...
|
|
|
|
|
if(level == 'all'){
|
|
|
|
|
this.data = this.crop_stack[0]
|
|
|
|
|
this.crop_stack = []
|
2014-10-21 20:29:11 +04:00
|
|
|
|
2014-10-22 01:05:59 +04:00
|
|
|
// get the element at level and drop the tail...
|
|
|
|
|
} else {
|
|
|
|
|
this.data = this.crop_stack.splice(-level, this.crop_stack.length)[0]
|
2014-10-21 20:29:11 +04:00
|
|
|
}
|
|
|
|
|
|
2014-10-22 01:05:59 +04:00
|
|
|
// by default set the current from the crop...
|
|
|
|
|
if(!restore_current){
|
|
|
|
|
this.data.focusImage(cur)
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-24 17:18:54 +04:00
|
|
|
// restore order from the crop...
|
|
|
|
|
if(keep_crop_order){
|
|
|
|
|
this.data.order = order
|
|
|
|
|
this.data.sortImages()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// purge the stack...
|
2014-10-22 01:05:59 +04:00
|
|
|
if(this.crop_stack.length == 0){
|
|
|
|
|
delete this.crop_stack
|
|
|
|
|
}
|
2014-10-21 20:29:11 +04:00
|
|
|
}],
|
2014-10-22 01:05:59 +04:00
|
|
|
uncropAll: ['',
|
|
|
|
|
function(restore_current){ this.uncrop('all', restore_current) }],
|
2014-10-24 17:25:38 +04:00
|
|
|
// XXX see if we need to do this on this level??
|
|
|
|
|
// ...might be a good idea to do this in data...
|
2014-10-24 17:18:54 +04:00
|
|
|
uncropAndKeepOrder: ['Uncrop and keep crop image order',
|
|
|
|
|
function(level, restore_current){ this.uncrop(level, restore_current, true) }],
|
2014-10-21 20:29:11 +04:00
|
|
|
// XXX same as uncrop but will also try and merge changes...
|
2014-10-24 17:25:38 +04:00
|
|
|
// - the order is simple and already done above...
|
|
|
|
|
// - I think that levels should be relative to images, the
|
|
|
|
|
// only problem here is how to deal with new ribbons...
|
2014-10-21 20:29:11 +04:00
|
|
|
mergeCrop: ['',
|
|
|
|
|
function(){
|
|
|
|
|
// XXX
|
|
|
|
|
}],
|
2014-10-22 01:23:56 +04:00
|
|
|
|
2014-10-24 17:25:38 +04:00
|
|
|
// XXX save a crop (catalog)...
|
|
|
|
|
// XXX
|
|
|
|
|
|
2014-10-22 01:23:56 +04:00
|
|
|
cropRibbon: ['Crop current ribbon',
|
|
|
|
|
function(ribbon, flatten){
|
|
|
|
|
ribbon = ribbon || 'current'
|
|
|
|
|
this.crop(this.data.getImages(ribbon), flatten)
|
|
|
|
|
}],
|
|
|
|
|
cropRibbonAndAbove: ['Crop current and above ribbons',
|
|
|
|
|
function(ribbon, flatten){
|
|
|
|
|
ribbon = ribbon || this.data.getRibbon()
|
|
|
|
|
|
|
|
|
|
var data = this.data
|
|
|
|
|
var that = this
|
|
|
|
|
|
|
|
|
|
var i = data.ribbon_order.indexOf(ribbon)
|
|
|
|
|
var ribbons = data.ribbon_order.slice(0, i)
|
|
|
|
|
var images = ribbons
|
|
|
|
|
.reduce(function(a, b){
|
|
|
|
|
return data.getImages(a).concat(data.getImages(b))
|
|
|
|
|
}, data.getImages(ribbon))
|
|
|
|
|
.compact()
|
|
|
|
|
|
|
|
|
|
this.crop(data.getImages(images), flatten)
|
|
|
|
|
}],
|
2014-10-11 06:33:49 +04:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
2014-10-11 17:08:17 +04:00
|
|
|
|
2014-10-11 06:33:49 +04:00
|
|
|
// XXX do partial loading...
|
|
|
|
|
var Viewer =
|
|
|
|
|
module.Viewer =
|
|
|
|
|
actions.Actions(Client, {
|
2014-10-11 17:08:17 +04:00
|
|
|
|
2014-10-29 18:50:04 +03:00
|
|
|
get screenwidth(){
|
|
|
|
|
return this.ribbons != null ? this.ribbons.getScreenWidthImages() : null
|
|
|
|
|
},
|
|
|
|
|
set screenwidth(n){
|
|
|
|
|
this.fitImage(n)
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
2014-10-11 17:08:17 +04:00
|
|
|
ready: [
|
|
|
|
|
function(){
|
|
|
|
|
// XXX setup empty state...
|
|
|
|
|
}],
|
2014-10-11 06:33:49 +04:00
|
|
|
load: [
|
|
|
|
|
function(data){
|
2014-10-11 17:08:17 +04:00
|
|
|
// recycle the viewer if one is not given specifically...
|
2014-10-11 06:33:49 +04:00
|
|
|
var viewer = data.viewer
|
|
|
|
|
viewer = viewer == null && this.ribbons != null
|
|
|
|
|
? this.ribbons.viewer
|
|
|
|
|
: viewer
|
2014-10-11 17:08:17 +04:00
|
|
|
// XXX do we need to recycle the images???
|
2014-10-11 06:33:49 +04:00
|
|
|
|
2014-10-28 03:37:37 +03:00
|
|
|
// XXX is keeping ribbons here correct???
|
|
|
|
|
if(this.ribbons == null){
|
|
|
|
|
this.ribbons = ribbons.Ribbons(viewer, data.images)
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-11 06:33:49 +04:00
|
|
|
return function(){
|
|
|
|
|
// XXX do a partial load...
|
2014-10-11 17:08:17 +04:00
|
|
|
// XXX
|
|
|
|
|
|
2014-10-28 13:22:54 +03:00
|
|
|
this.reload()
|
2014-10-11 06:33:49 +04:00
|
|
|
}
|
|
|
|
|
}],
|
2014-10-28 13:22:54 +03:00
|
|
|
reload: ['Reload viewer',
|
2014-10-12 04:52:44 +04:00
|
|
|
function(){
|
2014-10-28 13:02:56 +03:00
|
|
|
this.ribbons.preventTransitions()
|
|
|
|
|
|
2014-10-29 18:50:04 +03:00
|
|
|
return function(){
|
|
|
|
|
this.ribbons.updateData(this.data)
|
|
|
|
|
this.focusImage()
|
2014-10-28 13:02:56 +03:00
|
|
|
|
2014-10-29 18:50:04 +03:00
|
|
|
this.ribbons.restoreTransitions()
|
|
|
|
|
}
|
2014-10-12 04:52:44 +04:00
|
|
|
}],
|
2014-10-11 06:33:49 +04:00
|
|
|
clear: [
|
|
|
|
|
// XXX do we need to delete the ribbons???
|
|
|
|
|
function(){
|
|
|
|
|
this.ribbons.clear()
|
|
|
|
|
delete this.ribbons
|
|
|
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
2014-10-22 01:05:59 +04:00
|
|
|
// XXX move this to a viewer window action set
|
2014-10-21 20:29:11 +04:00
|
|
|
close: ['Cloase viewer',
|
|
|
|
|
function(){
|
|
|
|
|
// XXX should we do anything else here like auto-save???
|
|
|
|
|
window.close()
|
|
|
|
|
}],
|
2014-10-22 01:05:59 +04:00
|
|
|
// XXX where should toggleFullscreenMode(..) be defined...
|
2014-10-21 20:29:11 +04:00
|
|
|
toggleFullScreen: ['',
|
|
|
|
|
function(){
|
2014-10-22 01:05:59 +04:00
|
|
|
toggleFullscreenMode()
|
2014-10-21 20:29:11 +04:00
|
|
|
}],
|
|
|
|
|
toggleSingleImage: ['',
|
|
|
|
|
function(){
|
|
|
|
|
// XXX
|
|
|
|
|
}],
|
2014-10-22 01:05:59 +04:00
|
|
|
// XXX revise this...
|
2014-10-21 20:29:11 +04:00
|
|
|
showDevTools: ['',
|
|
|
|
|
function(){
|
2014-10-22 01:05:59 +04:00
|
|
|
if(window.showDevTools != null){
|
|
|
|
|
showDevTools()
|
|
|
|
|
}
|
2014-10-21 20:29:11 +04:00
|
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
2014-10-22 05:49:11 +04:00
|
|
|
// align modes...
|
|
|
|
|
// XXX skip invisible ribbons (???)
|
|
|
|
|
alignByOrder: ['Align ribbons by image order',
|
|
|
|
|
function(target){
|
|
|
|
|
var ribbons = this.ribbons
|
|
|
|
|
var data = this.data
|
|
|
|
|
|
|
|
|
|
// XXX handle raw dom elements...
|
|
|
|
|
var gid = target instanceof jQuery
|
|
|
|
|
? ribbons.getElemGID(target)
|
|
|
|
|
: data.getImage(target)
|
|
|
|
|
|
|
|
|
|
// align current ribbon...
|
2014-10-29 23:38:27 +03:00
|
|
|
this
|
2014-10-22 05:49:11 +04:00
|
|
|
.centerRibbon(gid)
|
|
|
|
|
.centerImage(gid)
|
|
|
|
|
|
|
|
|
|
// align other ribbons...
|
|
|
|
|
var ribbon = data.getRibbon(gid)
|
|
|
|
|
for(var r in data.ribbons){
|
|
|
|
|
// skip the current ribbon...
|
|
|
|
|
if(r == ribbon){
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// XXX skip off-screen ribbons...
|
|
|
|
|
|
|
|
|
|
// center...
|
|
|
|
|
// XXX is there a 'last' special case here???
|
|
|
|
|
var t = data.getImage(gid, r)
|
|
|
|
|
if(t == null){
|
|
|
|
|
var f = data.getImage('first', r)
|
|
|
|
|
// nothing found -- empty ribbon?
|
|
|
|
|
if(f == null){
|
|
|
|
|
continue
|
|
|
|
|
}
|
2014-10-29 23:38:27 +03:00
|
|
|
this.centerImage(f, 'before')
|
2014-10-22 05:49:11 +04:00
|
|
|
} else {
|
2014-10-29 23:38:27 +03:00
|
|
|
this.centerImage(t, 'after')
|
2014-10-22 05:49:11 +04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
// XXX these should also affect up/down navigation...
|
|
|
|
|
// ...navigate by proximity (closest to center) rather than by
|
|
|
|
|
// order...
|
|
|
|
|
alignByFirst: ['Aling ribbons except current to first image',
|
|
|
|
|
function(target){
|
|
|
|
|
var ribbons = this.ribbons
|
|
|
|
|
var data = this.data
|
|
|
|
|
|
|
|
|
|
// XXX handle raw dom elements...
|
|
|
|
|
var gid = target instanceof jQuery
|
|
|
|
|
? ribbons.getElemGID(target)
|
|
|
|
|
: data.getImage(target)
|
|
|
|
|
|
|
|
|
|
// align current ribbon...
|
2014-10-29 23:38:27 +03:00
|
|
|
this
|
2014-10-22 05:49:11 +04:00
|
|
|
.centerRibbon(gid)
|
|
|
|
|
.centerImage(gid)
|
|
|
|
|
|
|
|
|
|
// align other ribbons...
|
|
|
|
|
var ribbon = data.getRibbon(gid)
|
|
|
|
|
for(var r in data.ribbons){
|
|
|
|
|
// skip the current ribbon...
|
|
|
|
|
if(r == ribbon){
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// XXX skip off-screen ribbons...
|
|
|
|
|
|
|
|
|
|
// XXX see if we need to do some loading...
|
|
|
|
|
|
|
|
|
|
// center...
|
|
|
|
|
var f = data.getImage('first', r)
|
|
|
|
|
// nothing found -- empty ribbon?
|
|
|
|
|
if(f == null){
|
|
|
|
|
continue
|
|
|
|
|
}
|
2014-10-29 23:38:27 +03:00
|
|
|
this.centerImage(f, 'before')
|
2014-10-22 05:49:11 +04:00
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
// NOTE: this will align only a single image...
|
2014-10-29 23:38:27 +03:00
|
|
|
// XXX do we need these low level primitives here???
|
|
|
|
|
centerImage: ['Center an image in ribbon horizontally',
|
|
|
|
|
function(target, align){
|
|
|
|
|
target = target instanceof jQuery
|
|
|
|
|
? this.ribbons.getElemGID(target)
|
|
|
|
|
: target
|
|
|
|
|
|
|
|
|
|
// align current ribbon...
|
|
|
|
|
this.ribbons.centerImage(target, align)
|
|
|
|
|
}],
|
|
|
|
|
centerRibbon: ['Center a ribbon vertically',
|
2014-10-22 05:49:11 +04:00
|
|
|
function(target){
|
|
|
|
|
target = target instanceof jQuery
|
|
|
|
|
? this.ribbons.getElemGID(target)
|
|
|
|
|
: target
|
|
|
|
|
|
|
|
|
|
// align current ribbon...
|
2014-10-29 23:38:27 +03:00
|
|
|
this.ribbons.centerRibbon(target)
|
2014-10-22 05:49:11 +04:00
|
|
|
}],
|
|
|
|
|
|
|
|
|
|
// XXX skip invisible ribbons (???)
|
|
|
|
|
// XXX load data chunks...
|
2014-10-11 06:33:49 +04:00
|
|
|
focusImage: [
|
2014-10-19 22:32:33 +04:00
|
|
|
function(target, list){
|
2014-10-11 06:33:49 +04:00
|
|
|
var ribbons = this.ribbons
|
|
|
|
|
var data = this.data
|
|
|
|
|
|
2014-10-22 05:49:11 +04:00
|
|
|
// NOTE: we do not need to do anything in the alternative
|
|
|
|
|
// case as it's done in data/Client, so we'll just
|
|
|
|
|
// peek there later...
|
2014-10-19 22:32:33 +04:00
|
|
|
if(data == null){
|
2014-10-11 06:33:49 +04:00
|
|
|
target = ribbons.focusImage(target)
|
|
|
|
|
var gid = ribbons.getElemGID(target)
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-19 22:32:33 +04:00
|
|
|
return function(){
|
|
|
|
|
if(data != null){
|
|
|
|
|
// use the data for all the heavy lifting...
|
|
|
|
|
// NOTE: this will prevent sync errors...
|
|
|
|
|
var gid = data.getImage()
|
2014-10-11 06:33:49 +04:00
|
|
|
|
2014-10-19 22:32:33 +04:00
|
|
|
// XXX see if we need to do some loading...
|
2014-10-22 05:49:11 +04:00
|
|
|
|
|
|
|
|
target = ribbons.focusImage(gid)
|
2014-10-19 22:32:33 +04:00
|
|
|
}
|
2014-10-22 05:49:11 +04:00
|
|
|
}
|
|
|
|
|
}],
|
|
|
|
|
/*
|
|
|
|
|
// XXX an ideologically different version of .focusImage(..)
|
2014-10-29 18:50:04 +03:00
|
|
|
// This version aligns the ribbons internally while the above
|
|
|
|
|
// version does not align at all, and all alignment is handled
|
|
|
|
|
// by a feature.
|
|
|
|
|
//
|
2014-10-22 05:49:11 +04:00
|
|
|
// The main question here is:
|
|
|
|
|
// should we split out aligning to a feature?
|
|
|
|
|
// The differences/trade-off's in this version:
|
2014-10-22 05:58:31 +04:00
|
|
|
// + less code in total (not by much)
|
|
|
|
|
// 34 action-only vs. 39 total (25 action + 14 feature)
|
2014-10-22 05:49:11 +04:00
|
|
|
// + all in one place
|
|
|
|
|
// + all the logic in one place
|
|
|
|
|
// + usable as-is without any extra "features"
|
2014-10-22 05:58:31 +04:00
|
|
|
// - not customizable without rewriting...
|
2014-10-22 05:49:11 +04:00
|
|
|
// - might be too monolithic (god object?)
|
2014-10-22 13:11:26 +04:00
|
|
|
// ...need to think about it a bit more...
|
2014-10-22 05:49:11 +04:00
|
|
|
focusImage: [
|
|
|
|
|
function(target, list){
|
|
|
|
|
var ribbons = this.ribbons
|
|
|
|
|
var data = this.data
|
2014-10-11 06:33:49 +04:00
|
|
|
|
2014-10-22 05:49:11 +04:00
|
|
|
// NOTE: we do not need to do anything in the alternative
|
|
|
|
|
// case as it's done in data/Client, so we'll just
|
|
|
|
|
// peek there later...
|
|
|
|
|
if(data == null){
|
|
|
|
|
target = ribbons.focusImage(target)
|
|
|
|
|
var gid = ribbons.getElemGID(target)
|
|
|
|
|
}
|
2014-10-19 22:32:33 +04:00
|
|
|
|
2014-10-22 05:49:11 +04:00
|
|
|
return function(){
|
2014-10-19 22:32:33 +04:00
|
|
|
if(data != null){
|
2014-10-22 05:49:11 +04:00
|
|
|
// use the data for all the heavy lifting...
|
|
|
|
|
// NOTE: this will prevent sync errors...
|
|
|
|
|
var gid = data.getImage()
|
|
|
|
|
|
|
|
|
|
// XXX see if we need to do some loading...
|
|
|
|
|
// XXX
|
|
|
|
|
|
|
|
|
|
target = ribbons.focusImage(gid)
|
|
|
|
|
|
|
|
|
|
this.alignByOrder(gid)
|
|
|
|
|
|
|
|
|
|
// align current ribbon...
|
|
|
|
|
} else {
|
|
|
|
|
ribbons
|
|
|
|
|
.centerRibbon(target)
|
|
|
|
|
.centerImage(target)
|
2014-10-11 06:33:49 +04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}],
|
2014-10-22 05:49:11 +04:00
|
|
|
*/
|
|
|
|
|
|
2014-10-19 22:32:33 +04:00
|
|
|
setBaseRibbon: [
|
2014-10-11 17:08:17 +04:00
|
|
|
function(target){
|
|
|
|
|
var r = this.data.getRibbon(target)
|
|
|
|
|
r = r == null ? this.ribbons.getRibbon(target) : r
|
|
|
|
|
this.ribbons.setBaseRibbon(r)
|
|
|
|
|
}],
|
2014-10-08 04:52:41 +04:00
|
|
|
|
2014-10-11 06:33:49 +04:00
|
|
|
prevScreen: ['Focus previous image one screen width away',
|
|
|
|
|
function(){
|
2014-10-21 20:29:11 +04:00
|
|
|
this.prevImage(Math.round(this.ribbons.getScreenWidthImages()))
|
2014-10-11 06:33:49 +04:00
|
|
|
}],
|
|
|
|
|
nextScreen: ['Focus next image one screen width away',
|
|
|
|
|
function(){
|
2014-10-21 20:29:11 +04:00
|
|
|
this.nextImage(Math.round(this.ribbons.getScreenWidthImages()))
|
2014-10-11 17:08:17 +04:00
|
|
|
}],
|
|
|
|
|
|
2014-10-13 00:18:26 +04:00
|
|
|
// zooming...
|
2014-10-18 17:32:41 +04:00
|
|
|
//
|
|
|
|
|
// Zooming is done by multiplying the current scale by config['zoom-step']
|
|
|
|
|
// and rounding to nearest discrete number of images to fit on screen.
|
2014-10-13 00:18:26 +04:00
|
|
|
zoomIn: ['Zoom in',
|
2014-10-18 17:32:41 +04:00
|
|
|
function(){
|
|
|
|
|
this.ribbons.setOrigin()
|
|
|
|
|
|
|
|
|
|
//var n = Math.round(this.ribbons.getScreenWidthImages())-1
|
|
|
|
|
var d = this.config['zoom-step']
|
|
|
|
|
var s = a.ribbons.getScale() * d
|
|
|
|
|
var n = Math.floor(this.ribbons.getScreenWidthImages(s))
|
|
|
|
|
|
|
|
|
|
this.fitImage(n <= 0 ? 1 : n)
|
|
|
|
|
}],
|
2014-10-13 00:18:26 +04:00
|
|
|
zoomOut: ['Zoom out',
|
2014-10-18 17:32:41 +04:00
|
|
|
function(){
|
|
|
|
|
this.ribbons.setOrigin()
|
|
|
|
|
|
|
|
|
|
//var n = Math.round(this.ribbons.getScreenWidthImages())+1
|
|
|
|
|
var d = this.config['zoom-step']
|
|
|
|
|
var s = a.ribbons.getScale() / d
|
|
|
|
|
var n = Math.ceil(this.ribbons.getScreenWidthImages(s))
|
|
|
|
|
|
|
|
|
|
var max = this.config['max-screen-images']
|
|
|
|
|
this.fitImage(n > max ? max : n)
|
|
|
|
|
}],
|
2014-10-13 00:18:26 +04:00
|
|
|
|
|
|
|
|
fitOrig: ['Fit to original scale',
|
2014-10-13 06:33:22 +04:00
|
|
|
function(){
|
|
|
|
|
this.ribbons.setScale(1)
|
|
|
|
|
this.ribbons.updateImage('*')
|
|
|
|
|
}],
|
2014-10-13 00:18:26 +04:00
|
|
|
|
|
|
|
|
// NOTE: if this gets a count argument it will fit count images,
|
|
|
|
|
// default is one.
|
|
|
|
|
fitImage: ['Fit image',
|
|
|
|
|
function(count){
|
|
|
|
|
this.ribbons.fitImage(count)
|
|
|
|
|
this.ribbons.updateImage('*')
|
|
|
|
|
}],
|
|
|
|
|
|
|
|
|
|
fitTwo: ['Fit two images', function(){ this.fitImage(2) }],
|
|
|
|
|
fitThree: ['Fit three images', function(){ this.fitImage(3) }],
|
|
|
|
|
fitFour: ['Fit four images', function(){ this.fitImage(4) }],
|
|
|
|
|
fitFive: ['Fit five images', function(){ this.fitImage(5) }],
|
|
|
|
|
fitSix: ['Fit six images', function(){ this.fitImage(6) }],
|
|
|
|
|
fitSeven: ['Fit seven images', function(){ this.fitImage(7) }],
|
|
|
|
|
fitEight: ['Fit eight images', function(){ this.fitImage(8) }],
|
|
|
|
|
fitNine: ['Fit nine images', function(){ this.fitImage(9) }],
|
2014-10-18 04:44:03 +04:00
|
|
|
fitTen: ['Fit ten images', function(){ this.fitImage(10) }],
|
|
|
|
|
fitEleven: ['Fit eleven images', function(){ this.fitImage(11) }],
|
|
|
|
|
fitTwelve: ['Fit twelve images', function(){ this.fitImage(12) }],
|
2014-10-13 00:18:26 +04:00
|
|
|
|
|
|
|
|
fitMax: ['Fit the maximum number of images',
|
2014-10-18 17:32:41 +04:00
|
|
|
function(){ this.fitImage(this.config['max-screen-images']) }],
|
2014-10-13 00:18:26 +04:00
|
|
|
|
|
|
|
|
// XXX
|
|
|
|
|
fitSmall: ['Show small image',
|
|
|
|
|
function(){ }],
|
|
|
|
|
// XXX
|
|
|
|
|
fitNormal: ['Show normal image',
|
|
|
|
|
function(){ }],
|
|
|
|
|
// XXX
|
|
|
|
|
fitScreen: ['Fit image to screen',
|
|
|
|
|
function(){ }],
|
|
|
|
|
|
|
|
|
|
|
2014-10-19 00:41:50 +04:00
|
|
|
// XXX are these cheating???
|
2014-10-21 20:29:11 +04:00
|
|
|
shiftImageUp: [ reloadAfter() ],
|
|
|
|
|
shiftImageDown: [ reloadAfter() ],
|
2014-10-13 00:18:26 +04:00
|
|
|
|
2014-10-11 17:08:17 +04:00
|
|
|
shiftImageLeft: [
|
2014-10-12 03:14:29 +04:00
|
|
|
function(target){
|
|
|
|
|
this.ribbons.placeImage(target, -1)
|
2014-10-11 17:08:17 +04:00
|
|
|
}],
|
|
|
|
|
shiftImageRight: [
|
2014-10-12 03:14:29 +04:00
|
|
|
function(target){
|
|
|
|
|
this.ribbons.placeImage(target, 1)
|
2014-10-11 17:08:17 +04:00
|
|
|
}],
|
|
|
|
|
|
|
|
|
|
shiftRibbonUp: [
|
2014-10-12 03:14:29 +04:00
|
|
|
function(target){
|
2014-10-18 04:26:52 +04:00
|
|
|
target = this.ribbons.getRibbon(target)
|
|
|
|
|
var i = this.ribbons.getRibbonOrder(target)
|
|
|
|
|
if(i > 0){
|
|
|
|
|
this.ribbons.placeRibbon(target, i-1)
|
|
|
|
|
}
|
2014-10-11 17:08:17 +04:00
|
|
|
}],
|
|
|
|
|
shiftRibbonDown: [
|
2014-10-12 03:14:29 +04:00
|
|
|
function(target){
|
2014-10-18 04:26:52 +04:00
|
|
|
target = this.ribbons.getRibbon(target)
|
|
|
|
|
var i = this.ribbons.getRibbonOrder(target)
|
|
|
|
|
if(i < this.data.ribbon_order.length-1){
|
|
|
|
|
this.ribbons.placeRibbon(target, i+1)
|
|
|
|
|
}
|
2014-10-11 06:33:49 +04:00
|
|
|
}],
|
2014-10-13 00:18:26 +04:00
|
|
|
|
2014-10-21 20:29:11 +04:00
|
|
|
reverseImages: [ reloadAfter() ],
|
|
|
|
|
reverseRibbons: [ reloadAfter(true) ],
|
2014-10-13 00:18:26 +04:00
|
|
|
|
|
|
|
|
|
2014-10-13 06:33:22 +04:00
|
|
|
// basic image editing...
|
|
|
|
|
//
|
2014-10-18 17:32:41 +04:00
|
|
|
// XXX should these call .images.* or should it be done by data...
|
|
|
|
|
// ...I think that data is a better candidate as it should be
|
|
|
|
|
// standalone...
|
2014-10-22 13:11:26 +04:00
|
|
|
// XXX should we have .rotate(..) and .flip(..) generic actions???
|
2014-10-13 06:33:22 +04:00
|
|
|
rotateCW: [
|
2014-10-18 04:26:52 +04:00
|
|
|
function(target){ this.ribbons.rotateCW(target) }],
|
2014-10-13 06:33:22 +04:00
|
|
|
rotateCCW: [
|
2014-10-18 04:26:52 +04:00
|
|
|
function(target){ this.ribbons.rotateCCW(target) }],
|
2014-10-13 06:33:22 +04:00
|
|
|
flipVertical: [
|
2014-10-18 04:26:52 +04:00
|
|
|
function(target){ this.ribbons.flipVertical(target) }],
|
2014-10-13 06:33:22 +04:00
|
|
|
flipHorizontal: [
|
2014-10-18 04:26:52 +04:00
|
|
|
function(target){ this.ribbons.flipHorizontal(target) }],
|
2014-10-20 16:38:26 +04:00
|
|
|
|
2014-10-21 20:29:11 +04:00
|
|
|
crop: [ reloadAfter() ],
|
|
|
|
|
uncrop: [ reloadAfter() ],
|
2014-10-29 18:50:04 +03:00
|
|
|
|
|
|
|
|
// XXX experimental: not sure if this is the right way to go...
|
|
|
|
|
// XXX make this play nice with crops...
|
|
|
|
|
toggleRibbonList: ['Toggle ribbons as images view',
|
|
|
|
|
function(){
|
|
|
|
|
if(this._full_data == null){
|
|
|
|
|
// XXX do a better name here...
|
|
|
|
|
this._full_data = this.data
|
|
|
|
|
|
|
|
|
|
// generate the view...
|
|
|
|
|
this.data = this.data.cropRibbons()
|
|
|
|
|
|
|
|
|
|
this.reload()
|
|
|
|
|
} else {
|
|
|
|
|
var data = this._full_data
|
|
|
|
|
delete this._full_data
|
|
|
|
|
|
|
|
|
|
// restore...
|
|
|
|
|
this.data = data.mergeRibbonCrop(this.data)
|
|
|
|
|
|
|
|
|
|
this.reload()
|
|
|
|
|
}
|
|
|
|
|
}],
|
2014-10-11 06:33:49 +04:00
|
|
|
})
|
2014-07-20 03:02:18 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-10-13 17:32:19 +04:00
|
|
|
/*********************************************************************/
|
|
|
|
|
// XXX do a simple feature framework...
|
|
|
|
|
// ...need something like:
|
|
|
|
|
// Features(['feature_a', 'feature_b'], action).setup()
|
|
|
|
|
|
2014-10-22 05:49:11 +04:00
|
|
|
var FeatureProto =
|
|
|
|
|
module.FeatureProto = {
|
|
|
|
|
tag: null,
|
|
|
|
|
|
|
|
|
|
remove: function(actions){
|
|
|
|
|
return actions.off('*', this.tag)
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// XXX also need a feature registry and global feature setup...
|
|
|
|
|
// something like:
|
|
|
|
|
// Features.setup(actions, [
|
|
|
|
|
// 'feature1',
|
|
|
|
|
// 'feature2',
|
|
|
|
|
// ...
|
|
|
|
|
// ])
|
|
|
|
|
// ...where the feature list can be saved to config...
|
|
|
|
|
// Same should be done for .remove()
|
|
|
|
|
var Feature =
|
|
|
|
|
module.Feature =
|
|
|
|
|
function Feature(obj){
|
2014-10-30 03:27:11 +03:00
|
|
|
obj.__proto__ = FeatureProto
|
2014-10-22 05:49:11 +04:00
|
|
|
return obj
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-10-30 03:27:11 +03:00
|
|
|
// XXX I do not fully understand it yet, but PartialRibbons must be
|
|
|
|
|
// setup BEFORE RibbonAlignToFirst, otherwise the later will break
|
|
|
|
|
// on shifting an image to a new ribbon...
|
|
|
|
|
// To reproduce:
|
|
|
|
|
// - setupe RibbonAlignToFirst first
|
|
|
|
|
// - go to top ribbon
|
|
|
|
|
// - shift image up
|
|
|
|
|
// The two should be completely independent....
|
2014-10-29 23:54:09 +03:00
|
|
|
// XXX need to test and tweak with actual images...
|
2014-10-29 23:38:27 +03:00
|
|
|
var PartialRibbons =
|
|
|
|
|
module.PartialRibbons = Feature({
|
|
|
|
|
tag: 'ui-partial-ribbons',
|
|
|
|
|
|
|
|
|
|
// number of screen widths to load...
|
|
|
|
|
size: 5,
|
|
|
|
|
|
|
|
|
|
// number of screen widths to edge to trigger reload...
|
|
|
|
|
threshold: 1,
|
|
|
|
|
|
|
|
|
|
setup: function(actions){
|
|
|
|
|
var feature = this
|
|
|
|
|
|
|
|
|
|
var updateRibbon = function(target, w){
|
|
|
|
|
target = target instanceof jQuery
|
|
|
|
|
? this.ribbons.getElemGID(target)
|
|
|
|
|
: this.data.getImage(target)
|
|
|
|
|
|
|
|
|
|
w = w || this.screenwidth
|
|
|
|
|
|
|
|
|
|
var s = feature.size * w
|
|
|
|
|
var t = feature.threshold * w
|
|
|
|
|
|
|
|
|
|
// next/prev loaded...
|
|
|
|
|
var nl = this.ribbons.getImage(target).nextAll('.image').length
|
|
|
|
|
var pl = this.ribbons.getImage(target).prevAll('.image').length
|
|
|
|
|
|
|
|
|
|
// next/prev available...
|
|
|
|
|
var na = this.data.getImages(target, s/2, 'after').length - 1
|
|
|
|
|
var pa = this.data.getImages(target, s/2, 'before').length - 1
|
|
|
|
|
|
|
|
|
|
// the target is not loaded...
|
|
|
|
|
if(this.ribbons.getImage(target).length == 0
|
|
|
|
|
// passed threshold on the right...
|
|
|
|
|
|| (nl < t && na > nl)
|
|
|
|
|
// passed threshold on the left...
|
|
|
|
|
|| (pl < t && pa > pl)
|
|
|
|
|
// loaded more than we need by threshold...
|
|
|
|
|
|| nl + pl + 1 > s + t){
|
|
|
|
|
|
|
|
|
|
// NOTE: we can't get ribbon via target directly here as
|
|
|
|
|
// the target might not be loaded...
|
2014-10-30 03:27:11 +03:00
|
|
|
var r_gid = this.data.getRibbon(target)
|
|
|
|
|
|
|
|
|
|
// localize transition prevention...
|
|
|
|
|
var r = this.ribbons.getRibbon(r_gid)
|
|
|
|
|
|
|
|
|
|
if(r.length > 0){
|
|
|
|
|
this.ribbons
|
|
|
|
|
.preventTransitions(r)
|
|
|
|
|
.updateRibbon(
|
|
|
|
|
this.data.getImages(target, s),
|
|
|
|
|
r_gid,
|
|
|
|
|
target)
|
|
|
|
|
.restoreTransitions(r, true)
|
|
|
|
|
}
|
2014-10-29 23:38:27 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return actions
|
|
|
|
|
.on('focusImage.pre centerImage.pre', this.tag, function(target){
|
|
|
|
|
return updateRibbon.call(this, target)
|
|
|
|
|
})
|
|
|
|
|
.on('fitImage.pre', this.tag, function(n){
|
|
|
|
|
return updateRibbon.call(this, 'current', n || 1)
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
2014-10-22 05:49:11 +04:00
|
|
|
// XXX need a better name...
|
|
|
|
|
// XXX this should also define up/down navigation behavior...
|
|
|
|
|
var RibbonAlignToOrder =
|
|
|
|
|
module.RibbonAlignToOrder = Feature({
|
|
|
|
|
tag: 'ui-ribbon-align-to-order',
|
|
|
|
|
|
|
|
|
|
setup: function(actions){
|
|
|
|
|
return actions
|
2014-10-29 23:38:27 +03:00
|
|
|
// XXX this can be either pre or post...
|
2014-10-22 05:49:11 +04:00
|
|
|
.on('focusImage.post', this.tag, function(target){
|
|
|
|
|
this.alignByOrder(target)
|
|
|
|
|
})
|
|
|
|
|
// normalize the initial state...
|
|
|
|
|
.focusImage()
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// XXX need a better name...
|
|
|
|
|
var RibbonAlignToFirst =
|
|
|
|
|
module.RibbonAlignToFirst = Feature({
|
|
|
|
|
tag: 'ui-ribbon-align-to-first',
|
|
|
|
|
|
|
|
|
|
setup: function(actions){
|
|
|
|
|
return actions
|
2014-10-29 23:38:27 +03:00
|
|
|
// XXX this can be either pre or post...
|
2014-10-22 05:49:11 +04:00
|
|
|
.on('focusImage.post', this.tag, function(target){
|
|
|
|
|
this.alignByFirst(target)
|
|
|
|
|
})
|
|
|
|
|
// normalize the initial state...
|
|
|
|
|
.focusImage()
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
2014-10-22 01:23:56 +04:00
|
|
|
var ShiftAnimation =
|
2014-10-22 05:49:11 +04:00
|
|
|
module.ShiftAnimation = Feature({
|
2014-10-21 20:29:11 +04:00
|
|
|
tag: 'ui-animation',
|
2014-10-13 17:32:19 +04:00
|
|
|
|
|
|
|
|
setup: function(actions){
|
|
|
|
|
var animate = function(target){
|
|
|
|
|
var s = this.ribbons.makeShadow(target, true)
|
|
|
|
|
return function(){ s() }
|
|
|
|
|
}
|
2014-10-21 20:29:11 +04:00
|
|
|
// NOTE: this will keep the shadow in place -- the shadow will not
|
|
|
|
|
// go to the mountain, the mountain will come to the shadow ;)
|
2014-10-13 17:32:19 +04:00
|
|
|
var noanimate = function(target){
|
|
|
|
|
var s = this.ribbons.makeShadow(target)
|
|
|
|
|
return function(){ s() }
|
|
|
|
|
}
|
|
|
|
|
var tag = this.tag
|
|
|
|
|
return actions
|
|
|
|
|
.on('shiftImageUp.pre', tag, animate)
|
|
|
|
|
.on('shiftImageDown.pre', tag, animate)
|
|
|
|
|
.on('shiftImageLeft.pre', tag, noanimate)
|
|
|
|
|
.on('shiftImageRight.pre', tag, noanimate)
|
|
|
|
|
},
|
2014-10-22 05:49:11 +04:00
|
|
|
})
|
2014-10-13 06:33:22 +04:00
|
|
|
|
|
|
|
|
|
2014-10-22 01:05:59 +04:00
|
|
|
// XXX
|
2014-10-21 20:29:11 +04:00
|
|
|
var CurrentIndicator =
|
2014-10-22 05:49:11 +04:00
|
|
|
module.CurrentIndicator = Feature({
|
2014-10-21 20:29:11 +04:00
|
|
|
tag: 'ui-current-indicator',
|
|
|
|
|
|
|
|
|
|
setup: function(actions){
|
|
|
|
|
},
|
|
|
|
|
remove: function(actions){
|
|
|
|
|
actions.viewer.find('.' + this.tag).remove()
|
|
|
|
|
return actions.off('*', this.tag)
|
|
|
|
|
},
|
2014-10-22 05:49:11 +04:00
|
|
|
})
|
2014-10-21 20:29:11 +04:00
|
|
|
|
|
|
|
|
|
2014-10-29 23:38:27 +03:00
|
|
|
// XXX should we keep actions in a closure (like it is done here) or get
|
|
|
|
|
// them live as in PartialRibbons???
|
2014-10-21 20:29:11 +04:00
|
|
|
var BoundsIndicators =
|
2014-10-22 05:49:11 +04:00
|
|
|
module.BoundsIndicators = Feature({
|
2014-10-21 20:29:11 +04:00
|
|
|
tag: 'ui-bounds-indicators',
|
|
|
|
|
|
|
|
|
|
flashIndicator: function(viewer, direction){
|
|
|
|
|
var cls = {
|
|
|
|
|
// shift up/down...
|
|
|
|
|
up: '.up-indicator',
|
|
|
|
|
down: '.down-indicator',
|
|
|
|
|
// hit start/end/top/bottom of view...
|
|
|
|
|
start: '.start-indicator',
|
|
|
|
|
end: '.end-indicator',
|
|
|
|
|
top: '.top-indicator',
|
|
|
|
|
bottom: '.bottom-indicator',
|
|
|
|
|
}[direction]
|
|
|
|
|
|
|
|
|
|
var indicator = viewer.find(cls)
|
|
|
|
|
|
|
|
|
|
if(indicator.length == 0){
|
|
|
|
|
indicator = $('<div>')
|
|
|
|
|
.addClass(cls.replace('.', '') +' '+ this.tag)
|
|
|
|
|
.appendTo(viewer)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return indicator
|
|
|
|
|
// NOTE: this needs to be visible in all cases and key press
|
|
|
|
|
// rhythms...
|
|
|
|
|
.show()
|
|
|
|
|
.delay(100)
|
|
|
|
|
.fadeOut(300)
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
setup: function(actions){
|
|
|
|
|
var that = this
|
|
|
|
|
|
|
|
|
|
var didAdvance = function(indicator){
|
|
|
|
|
return function(){
|
|
|
|
|
var img = this.data.current
|
|
|
|
|
return function(){
|
|
|
|
|
if(img == this.data.current){
|
|
|
|
|
that.flashIndicator(actions.ribbons.viewer, indicator)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var tag = this.tag
|
|
|
|
|
return actions
|
|
|
|
|
// basic navigation...
|
2014-10-25 03:09:43 +04:00
|
|
|
.on('nextImage.pre lastImage.pre', tag, didAdvance('end'))
|
|
|
|
|
.on('prevImage.pre firstImage.pre', tag, didAdvance('start'))
|
|
|
|
|
.on('nextRibbon.pre lastRibbon.pre', tag, didAdvance('bottom'))
|
|
|
|
|
.on('prevRibbon.pre firstRibbon.pre', tag, didAdvance('top'))
|
2014-10-21 21:17:44 +04:00
|
|
|
|
2014-10-21 20:29:11 +04:00
|
|
|
// vertical shifting...
|
|
|
|
|
.on('shiftImageUp.post', tag,
|
|
|
|
|
function(){
|
|
|
|
|
that.flashIndicator(actions.ribbons.viewer, 'up')
|
|
|
|
|
})
|
|
|
|
|
.on('shiftImageDown.post', tag,
|
|
|
|
|
function(){
|
|
|
|
|
that.flashIndicator(actions.ribbons.viewer, 'down')
|
|
|
|
|
})
|
2014-10-21 21:17:44 +04:00
|
|
|
|
2014-10-21 20:29:11 +04:00
|
|
|
// horizontal shifting...
|
|
|
|
|
.on('shiftImageLeft.pre', tag,
|
|
|
|
|
function(target){
|
|
|
|
|
if(target == null
|
|
|
|
|
//&& actions.data.getImageOrder('ribbon') == 0){
|
|
|
|
|
&& actions.data.getImage('prev') == null){
|
|
|
|
|
that.flashIndicator(actions.ribbons.viewer, 'start')
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.on('shiftImageRight.pre', tag,
|
|
|
|
|
function(target){
|
|
|
|
|
if(target == null
|
|
|
|
|
&& actions.data.getImage('next') == null){
|
|
|
|
|
that.flashIndicator(actions.ribbons.viewer, 'end')
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
remove: function(actions){
|
|
|
|
|
actions.viewer.find('.' + this.tag).remove()
|
|
|
|
|
return actions.off('*', this.tag)
|
|
|
|
|
},
|
2014-10-22 05:49:11 +04:00
|
|
|
})
|
2014-10-21 20:29:11 +04:00
|
|
|
|
|
|
|
|
|
2014-10-13 17:32:19 +04:00
|
|
|
|
2014-07-20 03:02:18 +04:00
|
|
|
/**********************************************************************
|
|
|
|
|
* vim:set ts=4 sw=4 : */
|
2014-07-29 19:09:05 +04:00
|
|
|
return module })
|