mirror of
https://github.com/flynx/ImageGrid.git
synced 2025-10-30 19:00:09 +00:00
preparing to make state indicators configurable...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
parent
1d3fa61984
commit
de8375ad45
@ -2573,10 +2573,47 @@ var ImageStateIndicatorActions = actions.Actions({
|
|||||||
.click(function(){
|
.click(function(){
|
||||||
that['toggle'+elem.capitalize()]()
|
that['toggle'+elem.capitalize()]()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
// XXX custom elements...
|
||||||
|
// format:
|
||||||
|
// {
|
||||||
|
// <key>: <handler>,
|
||||||
|
// <alias>: <key>|<alias>,
|
||||||
|
// ...
|
||||||
|
// }
|
||||||
|
// XXX the handler should take care of it's own updating...
|
||||||
|
// ...will also need a way to drop a handler if
|
||||||
|
// the list changes, otherwise this is a potential
|
||||||
|
// leak...
|
||||||
|
// XXX move other elements into this...
|
||||||
|
// XXX need a better attr name...
|
||||||
|
} else if(that.__state_indicator_elements){
|
||||||
|
var handler = that.__state_indicator_elements[elem]
|
||||||
|
// handle aliases...
|
||||||
|
var seen = []
|
||||||
|
while(typeof(handler) == typeof('str')){
|
||||||
|
seen.push(handler)
|
||||||
|
var handler = that.__state_indicator_elements[handler]
|
||||||
|
// check for loops...
|
||||||
|
if(seen.indexOf(handler) >= 0){
|
||||||
|
console.error('state indicator alias loop detected at:', elem)
|
||||||
|
handler = null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// do the call...
|
||||||
|
if(handler != null){
|
||||||
|
handler.call(that, elem, makeInfoItem, makeExpandingInfoItem)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
global.appendTo(this.ribbons.viewer)
|
global.appendTo(this.ribbons.viewer)
|
||||||
|
|
||||||
|
// init in the correct state...
|
||||||
|
if(this.config['global-state-indicator-mode']){
|
||||||
|
this.toggleStateIndicator(this.config['global-state-indicator-mode'])
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!gid){
|
if(!gid){
|
||||||
@ -2663,12 +2700,14 @@ module.ImageStateIndicator = core.ImageGridFeatures.Feature({
|
|||||||
],
|
],
|
||||||
|
|
||||||
config: {
|
config: {
|
||||||
|
// XXX might be a good idea to add custom components API...
|
||||||
'global-state-indicator-elements': [
|
'global-state-indicator-elements': [
|
||||||
// XXX should index be here or to the right???
|
// XXX should index be here or to the right???
|
||||||
'index',
|
'index',
|
||||||
//'path',
|
//'path',
|
||||||
'gid',
|
'gid',
|
||||||
|
|
||||||
|
// separates left/right aligned elements...
|
||||||
'---',
|
'---',
|
||||||
|
|
||||||
'mark',
|
'mark',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user