| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | /********************************************************************** | 
					
						
							|  |  |  | *  | 
					
						
							|  |  |  | * | 
					
						
							|  |  |  | * | 
					
						
							|  |  |  | **********************************************************************/ | 
					
						
							| 
									
										
										
										
											2016-08-21 02:19:24 +03:00
										 |  |  | ((typeof define)[0]=='u'?function(f){module.exports=f(require)}:define) | 
					
						
							|  |  |  | (function(require){ var module={} // make module AMD/node compatible...
 | 
					
						
							| 
									
										
										
										
											2016-08-20 22:49:36 +03:00
										 |  |  | /*********************************************************************/ | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-14 18:31:10 +03:00
										 |  |  | var keyboard = require('lib/keyboard') | 
					
						
							| 
									
										
										
										
											2016-11-08 17:27:27 +03:00
										 |  |  | var toggler = require('lib/toggler') | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | var actions = require('lib/actions') | 
					
						
							|  |  |  | var features = require('lib/features') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-01 16:12:10 +03:00
										 |  |  | var data = require('imagegrid/data') | 
					
						
							|  |  |  | var images = require('imagegrid/images') | 
					
						
							|  |  |  | var ribbons = require('imagegrid/ribbons') | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | var core = require('features/core') | 
					
						
							|  |  |  | var base = require('features/base') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var widget = require('lib/widget/widget') | 
					
						
							|  |  |  | var browse = require('lib/widget/browse') | 
					
						
							|  |  |  | var overlay = require('lib/widget/overlay') | 
					
						
							|  |  |  | var drawer = require('lib/widget/drawer') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-05 04:48:24 +03:00
										 |  |  | var browseWalk = require('lib/widget/browse-walk') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-14 18:31:10 +03:00
										 |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-08 21:16:33 +03:00
										 |  |  | // Format:
 | 
					
						
							|  |  |  | // 	{
 | 
					
						
							|  |  |  | // 		<button-text>: [
 | 
					
						
							|  |  |  | // 			<class>, // optional
 | 
					
						
							|  |  |  | // 			<info>, // optional
 | 
					
						
							|  |  |  | // 			<code>,
 | 
					
						
							|  |  |  | // 		],
 | 
					
						
							| 
									
										
										
										
											2017-09-06 16:02:29 +03:00
										 |  |  | //
 | 
					
						
							|  |  |  | // 		<button-text>: [
 | 
					
						
							|  |  |  | // 			<class>, // optional
 | 
					
						
							|  |  |  | // 			<info>, // optional
 | 
					
						
							|  |  |  | // 			[
 | 
					
						
							|  |  |  | // 				// primary action (click / tap)...
 | 
					
						
							|  |  |  | // 				<primary>,
 | 
					
						
							|  |  |  | // 				// secondary action (contextmenu -- right-clock / long-tap)...
 | 
					
						
							|  |  |  | // 				<secondary>,
 | 
					
						
							|  |  |  | // 			]
 | 
					
						
							|  |  |  | // 		],
 | 
					
						
							| 
									
										
										
										
											2016-11-08 21:16:33 +03:00
										 |  |  | // 		...
 | 
					
						
							|  |  |  | // 	}
 | 
					
						
							|  |  |  | var makeButtonControls = | 
					
						
							|  |  |  | module.makeButtonControls = | 
					
						
							|  |  |  | function(context, cls, data){ | 
					
						
							| 
									
										
										
										
											2016-11-10 05:18:44 +03:00
										 |  |  | 	cls = cls instanceof Array ? cls : cls.split(/\s+/g) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-08 21:16:33 +03:00
										 |  |  | 	// remove old versions...
 | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 	context.dom.find('.'+ cls.join('.')).remove() | 
					
						
							| 
									
										
										
										
											2016-11-08 21:16:33 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// make container...
 | 
					
						
							|  |  |  | 	var controls = $('<div>') | 
					
						
							| 
									
										
										
										
											2016-11-10 05:18:44 +03:00
										 |  |  | 		.addClass('buttons '+ cls.join('.')) | 
					
						
							| 
									
										
										
										
											2018-03-19 01:42:36 +03:00
										 |  |  | 		.on('mouseover', function(evt){ | 
					
						
							|  |  |  | 			evt = window.event || evt | 
					
						
							|  |  |  | 			var t = $(evt.target) | 
					
						
							| 
									
										
										
										
											2016-11-08 21:16:33 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			var info = t.attr('info') || t.parents('[info]').attr('info') || '' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-09 04:53:42 +03:00
										 |  |  | 			context.showStatusBarInfo | 
					
						
							|  |  |  | 				&& context.showStatusBarInfo(info) | 
					
						
							| 
									
										
										
										
											2016-11-08 21:16:33 +03:00
										 |  |  | 		}) | 
					
						
							| 
									
										
										
										
											2016-11-23 03:16:17 +03:00
										 |  |  | 		.on('mouseout', function(){ | 
					
						
							| 
									
										
										
										
											2016-11-09 04:53:42 +03:00
										 |  |  | 			context.showStatusBarInfo | 
					
						
							|  |  |  | 				&& context.showStatusBarInfo() | 
					
						
							| 
									
										
										
										
											2016-11-08 21:16:33 +03:00
										 |  |  | 		}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// make buttons...
 | 
					
						
							|  |  |  | 	Object.keys(data).forEach(function(k){ | 
					
						
							| 
									
										
										
										
											2016-11-16 04:57:31 +03:00
										 |  |  | 		// spacer...
 | 
					
						
							|  |  |  | 		if(typeof(data[k]) == typeof('str')  | 
					
						
							|  |  |  | 				&& /--+/.test(data[k])){ | 
					
						
							|  |  |  | 			k = ' ' | 
					
						
							|  |  |  | 			var cls = 'spacer' | 
					
						
							|  |  |  | 			var doc = '' | 
					
						
							| 
									
										
										
										
											2017-09-06 16:02:29 +03:00
										 |  |  | 			var click = function(){} | 
					
						
							|  |  |  | 			var menu = function(){} | 
					
						
							| 
									
										
										
										
											2016-11-16 04:57:31 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// normal element...
 | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			var e = data[k].slice() | 
					
						
							| 
									
										
										
										
											2017-09-06 16:02:29 +03:00
										 |  |  | 			var primary = e.pop() | 
					
						
							| 
									
										
										
										
											2018-01-15 03:59:53 +03:00
										 |  |  | 			primary = primary instanceof Array ? primary.slice() : primary | 
					
						
							| 
									
										
										
										
											2017-09-06 16:02:29 +03:00
										 |  |  | 			var secondary = (primary instanceof Array && primary.length > 1) ?  | 
					
						
							|  |  |  | 				primary.pop()  | 
					
						
							|  |  |  | 				: null | 
					
						
							|  |  |  | 			secondary = typeof(secondary) == typeof('str') ? | 
					
						
							| 
									
										
										
										
											2017-11-19 01:01:44 +03:00
										 |  |  | 				keyboard.parseActionCall(secondary, context)  | 
					
						
							| 
									
										
										
										
											2017-09-06 16:02:29 +03:00
										 |  |  | 				: secondary | 
					
						
							|  |  |  | 			primary = primary instanceof Array ? primary.shift() : primary | 
					
						
							|  |  |  | 			primary = typeof(primary) == typeof('str') ? | 
					
						
							| 
									
										
										
										
											2017-11-19 01:01:44 +03:00
										 |  |  | 				keyboard.parseActionCall(primary, context)  | 
					
						
							| 
									
										
										
										
											2017-09-06 16:02:29 +03:00
										 |  |  | 				: primary | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var click = primary instanceof Function ?  | 
					
						
							|  |  |  | 				primary  | 
					
						
							|  |  |  | 				: function(evt){  | 
					
						
							|  |  |  | 					evt.stopPropagation() | 
					
						
							|  |  |  | 					evt.preventDefault() | 
					
						
							|  |  |  | 					context[primary.action].apply(context, primary.arguments) } | 
					
						
							|  |  |  | 			var menu = secondary instanceof Function ? | 
					
						
							|  |  |  | 					secondary | 
					
						
							|  |  |  | 				: secondary ?  | 
					
						
							|  |  |  | 					function(evt){  | 
					
						
							|  |  |  | 						evt.stopPropagation() | 
					
						
							|  |  |  | 						evt.preventDefault() | 
					
						
							|  |  |  | 						context[secondary.action].apply(context, secondary.arguments) } | 
					
						
							|  |  |  | 				: click | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var cls = e[0]  | 
					
						
							|  |  |  | 				|| primary.action  | 
					
						
							|  |  |  | 				|| ''  | 
					
						
							|  |  |  | 			var doc = e[1]  | 
					
						
							|  |  |  | 				|| (primary.doc  | 
					
						
							|  |  |  | 					+ (secondary ? ' / '+ secondary.doc : '')) | 
					
						
							|  |  |  | 				|| e[0]  | 
					
						
							|  |  |  | 				|| '' | 
					
						
							| 
									
										
										
										
											2016-11-16 04:57:31 +03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2016-11-08 21:16:33 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		controls | 
					
						
							|  |  |  | 			.append($('<div>') | 
					
						
							|  |  |  | 				.addClass('button ' + cls) | 
					
						
							|  |  |  | 				.html(k) | 
					
						
							|  |  |  | 				.attr('info', doc) | 
					
						
							| 
									
										
										
										
											2016-11-23 03:16:17 +03:00
										 |  |  | 				.click('click', function(){ | 
					
						
							|  |  |  | 					context.showStatusBarInfo | 
					
						
							|  |  |  | 						&& context.showStatusBarInfo() | 
					
						
							|  |  |  | 				}) | 
					
						
							| 
									
										
										
										
											2017-09-06 16:02:29 +03:00
										 |  |  | 				.click(click) | 
					
						
							|  |  |  | 				.on('contextmenu', menu)) | 
					
						
							| 
									
										
										
										
											2016-11-08 21:16:33 +03:00
										 |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	controls | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 		.appendTo(context.dom) | 
					
						
							| 
									
										
										
										
											2016-11-08 21:16:33 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-10 05:34:15 +03:00
										 |  |  | // XXX write docs:
 | 
					
						
							|  |  |  | // 		- cls can be 
 | 
					
						
							|  |  |  | // 			- a single class (str)
 | 
					
						
							|  |  |  | // 			- space separated multiple classes (str)
 | 
					
						
							|  |  |  | // 			- list of classes
 | 
					
						
							|  |  |  | // 		- if cfg is not given then cls[0] is used for it
 | 
					
						
							|  |  |  | // 		- parent can be an element, a getter function or null (defaults to viewer)
 | 
					
						
							| 
									
										
										
										
											2016-11-10 05:18:44 +03:00
										 |  |  | var makeButtonControlsToggler = | 
					
						
							|  |  |  | module.makeButtonControlsToggler = | 
					
						
							| 
									
										
										
										
											2016-11-10 05:34:15 +03:00
										 |  |  | function(cls, cfg, parent){ | 
					
						
							| 
									
										
										
										
											2016-11-10 05:18:44 +03:00
										 |  |  | 	cls = cls instanceof Array ? cls : cls.split(/\s+/g) | 
					
						
							|  |  |  | 	cfg = cfg || cls[0] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return toggler.Toggler(null, | 
					
						
							|  |  |  | 		function(){  | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 			parent = parent == null ? this.dom | 
					
						
							| 
									
										
										
										
											2016-11-10 05:34:15 +03:00
										 |  |  | 				: parent instanceof Function ? parent.call(this)  | 
					
						
							|  |  |  | 				: parent | 
					
						
							| 
									
										
										
										
											2017-03-28 07:54:24 +03:00
										 |  |  | 			return parent.find('.'+ cls.join('.')).length > 0 ? 'on' : 'off'  | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2016-11-10 05:18:44 +03:00
										 |  |  | 		['off', 'on'], | 
					
						
							|  |  |  | 		function(state){ | 
					
						
							|  |  |  | 			if(state == 'on'){ | 
					
						
							|  |  |  | 				var config = this.config[cfg] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				config  | 
					
						
							|  |  |  | 					&& makeButtonControls(this, cls, config) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 				this.dom.find('.'+ cls.join('.')).remove() | 
					
						
							| 
									
										
										
										
											2016-11-10 05:18:44 +03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-08 21:16:33 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-17 05:02:37 +03:00
										 |  |  | // XXX make the selector more accurate...
 | 
					
						
							|  |  |  | // 		...at this point this will select the first elem with text which
 | 
					
						
							|  |  |  | // 		can be a different elem...
 | 
					
						
							| 
									
										
										
										
											2017-01-15 00:49:19 +03:00
										 |  |  | var editItem = | 
					
						
							|  |  |  | module.editItem = | 
					
						
							|  |  |  | function(list, elem, callback, options){ | 
					
						
							| 
									
										
										
										
											2016-04-17 05:02:37 +03:00
										 |  |  | 	return elem | 
					
						
							| 
									
										
										
										
											2017-01-15 00:49:19 +03:00
										 |  |  | 		.makeEditable(options  | 
					
						
							|  |  |  | 			|| { | 
					
						
							|  |  |  | 				activate: true, | 
					
						
							|  |  |  | 				clear_on_edit: true, | 
					
						
							|  |  |  | 				blur_on_abort: false, | 
					
						
							|  |  |  | 				blur_on_commit: false, | 
					
						
							|  |  |  | 			}) | 
					
						
							| 
									
										
										
										
											2017-01-25 22:22:33 +03:00
										 |  |  | 		.on('edit-commit', callback || function(){}) | 
					
						
							|  |  |  | 		.on('edit-abort edit-commit', function(_, text){ | 
					
						
							| 
									
										
										
										
											2016-04-17 05:02:37 +03:00
										 |  |  | 			list.update() | 
					
						
							|  |  |  | 				// XXX make the selector more accurate...
 | 
					
						
							|  |  |  | 				// 		...at this point this will select the first elem
 | 
					
						
							|  |  |  | 				// 		with text which can be a different elem...
 | 
					
						
							| 
									
										
										
										
											2017-01-15 00:49:19 +03:00
										 |  |  | 				.then(function(){ list.select(elem.text()) }) | 
					
						
							| 
									
										
										
										
											2016-04-17 05:02:37 +03:00
										 |  |  | 		}) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-15 00:49:19 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | //---------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-25 22:22:33 +03:00
										 |  |  | // Edit list in .config...
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This will update value_path in .config with the opened item value.
 | 
					
						
							|  |  |  | // 
 | 
					
						
							| 
									
										
										
										
											2017-01-15 00:49:19 +03:00
										 |  |  | var makeConfigListEditor =  | 
					
						
							|  |  |  | module.makeConfigListEditor = | 
					
						
							| 
									
										
										
										
											2017-11-14 00:13:47 +03:00
										 |  |  | function(actions, path, value_path, options, setup){ | 
					
						
							| 
									
										
										
										
											2017-01-15 00:49:19 +03:00
										 |  |  | 	path = path.split('.') | 
					
						
							|  |  |  | 	var key = path.pop() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-25 22:22:33 +03:00
										 |  |  | 	options = options ? Object.create(options) : {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	var stateValue = function(value){ | 
					
						
							|  |  |  | 		var path = value_path instanceof Function ? | 
					
						
							|  |  |  | 			value_path(value) | 
					
						
							|  |  |  | 			: value_path.split('.') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		var key = path.pop() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-15 00:49:19 +03:00
										 |  |  | 		var target = actions.config | 
					
						
							|  |  |  | 		path.forEach(function(p){ | 
					
						
							|  |  |  | 			target = target[p] = target[p] || {} | 
					
						
							|  |  |  | 		}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-25 22:22:33 +03:00
										 |  |  | 		if(value){ | 
					
						
							|  |  |  | 			target[key] = value | 
					
						
							| 
									
										
										
										
											2017-01-15 00:49:19 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2017-01-25 22:22:33 +03:00
										 |  |  | 			return target[key] | 
					
						
							| 
									
										
										
										
											2017-01-15 00:49:19 +03:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-01-25 22:22:33 +03:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	var save = function(value){ | 
					
						
							|  |  |  | 		stateValue(value) | 
					
						
							|  |  |  | 		dialog.close() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if(value_path  | 
					
						
							|  |  |  | 			&& (options.overflow == null  | 
					
						
							|  |  |  | 				|| options.overflow == 'save')){ | 
					
						
							|  |  |  | 		options.overflow = save | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// set the path...
 | 
					
						
							|  |  |  | 	if(value_path && !options.path){ | 
					
						
							|  |  |  | 		options.path = stateValue() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	var dialog = browse.makeListEditor(function(lst){ | 
					
						
							|  |  |  | 			var target = actions.config | 
					
						
							|  |  |  | 			path.forEach(function(p){ | 
					
						
							|  |  |  | 				target = target[p] = target[p] || {} | 
					
						
							|  |  |  | 			}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// get...
 | 
					
						
							|  |  |  | 			if(lst === undefined){ | 
					
						
							|  |  |  | 				return target[key] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// set...
 | 
					
						
							|  |  |  | 			} else { | 
					
						
							|  |  |  | 				target[key] = lst | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		}, options) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	value_path | 
					
						
							|  |  |  | 		&& dialog.open(function(){ | 
					
						
							|  |  |  | 			save(dialog.selected) | 
					
						
							|  |  |  | 		}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-14 00:13:47 +03:00
										 |  |  | 	setup | 
					
						
							|  |  |  | 		&& setup.call(dialog, dialog) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-25 22:22:33 +03:00
										 |  |  | 	return dialog | 
					
						
							| 
									
										
										
										
											2016-04-14 18:31:10 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-25 22:22:33 +03:00
										 |  |  | // Wrapper around makeListEditor(..) enabling it to be used as an event
 | 
					
						
							|  |  |  | // item handler...
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // For example this returns a function directly usable as list item event
 | 
					
						
							|  |  |  | // handler...
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // NOTE: this will select the element in the parent dialog via it's first 
 | 
					
						
							|  |  |  | // 		.text element...
 | 
					
						
							| 
									
										
										
										
											2016-04-16 03:41:45 +03:00
										 |  |  | var makeNestedConfigListEditor =  | 
					
						
							|  |  |  | module.makeNestedConfigListEditor = | 
					
						
							| 
									
										
										
										
											2017-11-14 00:13:47 +03:00
										 |  |  | function(actions, list, list_key, value_key, options, setup){ | 
					
						
							| 
									
										
										
										
											2016-04-18 03:05:48 +03:00
										 |  |  | 	options = options || {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-16 03:41:45 +03:00
										 |  |  | 	return function(){ | 
					
						
							|  |  |  | 		var txt = $(this).find('.text').first().text() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		var dfl_options = { | 
					
						
							| 
									
										
										
										
											2017-01-25 22:22:33 +03:00
										 |  |  | 			path: value_key instanceof Function ? | 
					
						
							|  |  |  | 				value_key() | 
					
						
							|  |  |  | 				: actions.config[value_key], | 
					
						
							| 
									
										
										
										
											2016-04-16 03:41:45 +03:00
										 |  |  | 			// NOTE: this is called when adding a new value and 
 | 
					
						
							|  |  |  | 			// 		list maximum length is reached...
 | 
					
						
							| 
									
										
										
										
											2017-01-25 22:22:33 +03:00
										 |  |  | 			overflow: 'save',  | 
					
						
							| 
									
										
										
										
											2016-04-16 03:41:45 +03:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		options.__proto__ = dfl_options | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-14 00:13:47 +03:00
										 |  |  | 		var o = makeConfigListEditor(actions, list_key, value_key, options, setup) | 
					
						
							| 
									
										
										
										
											2017-01-25 22:22:33 +03:00
										 |  |  | 			// update parent menu...
 | 
					
						
							|  |  |  | 			.open(function(){ | 
					
						
							|  |  |  | 				list  | 
					
						
							|  |  |  | 					&& list.update() | 
					
						
							|  |  |  | 						.then(function(){  | 
					
						
							|  |  |  | 							txt != '' | 
					
						
							|  |  |  | 								&& list.select(txt)  | 
					
						
							|  |  |  | 						}) | 
					
						
							|  |  |  | 			}) | 
					
						
							| 
									
										
										
										
											2016-06-06 18:46:23 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		actions.Overlay(o) | 
					
						
							| 
									
										
										
										
											2017-01-25 22:22:33 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return o | 
					
						
							| 
									
										
										
										
											2016-04-16 03:41:45 +03:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-14 18:31:10 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | // Dialogs and containers...
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-30 16:58:00 +03:00
										 |  |  | // Mark an action as a container...
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // NOTE: the marked action must comply with the container protocol
 | 
					
						
							|  |  |  | // 		(see: makeUIContainer(..) for more info)
 | 
					
						
							|  |  |  | var uiContainer = | 
					
						
							|  |  |  | module.uiContainer = function(func){ | 
					
						
							|  |  |  | 	func.__container__ = true | 
					
						
							|  |  |  | 	return func | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Make a container constructor wrapper...
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This will:
 | 
					
						
							|  |  |  | // 	- mark the action as a container
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // The container will:
 | 
					
						
							|  |  |  | // 	- trigger the client's close event on close
 | 
					
						
							|  |  |  | //
 | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | // XXX not sure how the click is handled here...
 | 
					
						
							| 
									
										
										
										
											2016-04-30 16:58:00 +03:00
										 |  |  | // XXX pass options???
 | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | var makeUIContainer = | 
					
						
							|  |  |  | module.makeUIContainer = function(make){ | 
					
						
							| 
									
										
										
										
											2016-04-30 16:58:00 +03:00
										 |  |  | 	return uiContainer(function(){ | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 		var that = this | 
					
						
							| 
									
										
										
										
											2016-04-30 16:58:00 +03:00
										 |  |  | 		var o = make.apply(this, arguments) | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-30 20:14:39 +03:00
										 |  |  | 		o | 
					
						
							|  |  |  | 			// notify the client that we are closing...
 | 
					
						
							| 
									
										
										
										
											2017-01-30 05:37:55 +03:00
										 |  |  | 			.close(function(evt, mode){ o.client.trigger('close', mode) }) | 
					
						
							| 
									
										
										
										
											2016-04-30 20:14:39 +03:00
										 |  |  | 			.client | 
					
						
							|  |  |  | 				// NOTE: strictly this is the responsibility of the client
 | 
					
						
							|  |  |  | 				// 		but it is less error prone to just in case also do
 | 
					
						
							|  |  |  | 				// 		this here...
 | 
					
						
							| 
									
										
										
										
											2017-05-11 16:36:38 +03:00
										 |  |  | 				.on('close', function(evt){  | 
					
						
							|  |  |  | 					evt.stopPropagation()  | 
					
						
							|  |  |  | 					that.modal ?  | 
					
						
							|  |  |  | 						that.modal.focus() | 
					
						
							|  |  |  | 						// NOTE: this fixes a bug where the UI loses focus
 | 
					
						
							|  |  |  | 						// 		and keys are no longer tracked...
 | 
					
						
							|  |  |  | 						// 		XXX is this the right way to go???
 | 
					
						
							|  |  |  | 						// 			To reproduce:
 | 
					
						
							| 
									
										
										
										
											2017-05-11 17:37:44 +03:00
										 |  |  | 						// 			- comment this line and .focus() in return...
 | 
					
						
							|  |  |  | 						// 			- alt-F
 | 
					
						
							|  |  |  | 						// 			- /load	-> serach
 | 
					
						
							|  |  |  | 						// 			- Enter	-> loads demo data but the viewer
 | 
					
						
							|  |  |  | 						// 						is in a state where the window
 | 
					
						
							|  |  |  | 						// 						is in focus but keys are not 
 | 
					
						
							|  |  |  | 						// 						tracked...
 | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 						: that.dom.focus() | 
					
						
							| 
									
										
										
										
											2017-05-11 16:36:38 +03:00
										 |  |  | 				}) | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 				// Compensate for click focusing the parent dialog when
 | 
					
						
							|  |  |  | 				// a child is created...
 | 
					
						
							|  |  |  | 				// XXX is this the right way to go???
 | 
					
						
							| 
									
										
										
										
											2016-06-08 18:10:39 +03:00
										 |  |  | 				.on('click', function(evt){  | 
					
						
							|  |  |  | 					that.modal && that.modal.focus() }) | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		return o | 
					
						
							| 
									
										
										
										
											2017-05-11 16:36:38 +03:00
										 |  |  | 			// focus the new dialog...
 | 
					
						
							|  |  |  | 			// NOTE: fixes the same bug as .client.on('close', ...) above, 
 | 
					
						
							|  |  |  | 			// 		see note for that...
 | 
					
						
							|  |  |  | 			.focus() | 
					
						
							| 
									
										
										
										
											2016-04-30 16:58:00 +03:00
										 |  |  | 	}) | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-30 16:58:00 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Mark action as a dialog...
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | var uiDialog = | 
					
						
							|  |  |  | module.uiDialog = function(func){ | 
					
						
							|  |  |  | 	func.__dialog__ = true | 
					
						
							|  |  |  | 	return func | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Make a dialog constructor wrapper...
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // 	Make a dialog action...
 | 
					
						
							|  |  |  | // 	 makeUIDialog(constructor)
 | 
					
						
							|  |  |  | // 	 makeUIDialog(constructor, ...)
 | 
					
						
							|  |  |  | // 		-> dialog
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //	Make a dialog action with a specific default container...
 | 
					
						
							|  |  |  | // 	 makeUIDialog(container, constructor)
 | 
					
						
							|  |  |  | // 	 makeUIDialog(container, constructor, ...)
 | 
					
						
							|  |  |  | // 		-> dialog
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // This dialog will:
 | 
					
						
							|  |  |  | // 	- consume the first action argument if it's a container name to 
 | 
					
						
							|  |  |  | // 		override the default container...
 | 
					
						
							|  |  |  | // 	- if no container defined explicitly the default container is used
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // NOTE: arguments after the constructor will be passed to the container.
 | 
					
						
							|  |  |  | //
 | 
					
						
							|  |  |  | // XXX do we need a means to reuse containers, e.g. ??? 
 | 
					
						
							| 
									
										
										
										
											2017-12-26 05:50:29 +03:00
										 |  |  | // XXX need to revise this API as passing a container title ONLY works
 | 
					
						
							|  |  |  | // 		for actions explicitly created with makeUIDialog(..) and not 
 | 
					
						
							|  |  |  | // 		extended/overloaded...
 | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | var makeUIDialog = | 
					
						
							| 
									
										
										
										
											2016-04-30 16:58:00 +03:00
										 |  |  | module.makeUIDialog = function(a, b){ | 
					
						
							|  |  |  | 	var args = [].slice.call(arguments) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// container name (optional)...
 | 
					
						
							|  |  |  | 	var dfl = typeof(args[0]) == typeof('str') ? | 
					
						
							|  |  |  | 			args.shift() | 
					
						
							|  |  |  | 			: null | 
					
						
							|  |  |  | 	// constructor...
 | 
					
						
							|  |  |  | 	var make = args.shift() | 
					
						
							|  |  |  | 	// rest of the args to be passed to the container...
 | 
					
						
							|  |  |  | 	var cargs = args | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return uiDialog(function(){ | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | 		var args = [].slice.call(arguments) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-30 16:58:00 +03:00
										 |  |  | 		// see if the first arg is a container spec...
 | 
					
						
							| 
									
										
										
										
											2017-07-09 16:46:11 +03:00
										 |  |  | 		var container = !(args[0] instanceof Array) && this.isUIContainer(args[0]) ? | 
					
						
							| 
									
										
										
										
											2016-04-30 16:58:00 +03:00
										 |  |  | 			args.shift() | 
					
						
							|  |  |  | 			: (dfl || this.config['ui-default-container'] || 'Overlay') | 
					
						
							| 
									
										
										
										
											2016-04-30 07:02:20 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-26 04:53:17 +03:00
										 |  |  | 		var dialog = make.apply(this, args) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if(!dialog){ | 
					
						
							|  |  |  | 			return dialog | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-30 16:58:00 +03:00
										 |  |  | 		return this[container].apply(this,  | 
					
						
							| 
									
										
										
										
											2017-01-26 04:53:17 +03:00
										 |  |  | 				[dialog].concat(cargs)) | 
					
						
							| 
									
										
										
										
											2016-04-30 16:58:00 +03:00
										 |  |  | 			.client | 
					
						
							|  |  |  | 	}) | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-07 16:15:18 +03:00
										 |  |  | var makeDrawer = function(direction){ | 
					
						
							|  |  |  | 	return makeUIContainer(function(dialog, options){ | 
					
						
							| 
									
										
										
										
											2016-05-08 15:58:22 +03:00
										 |  |  | 		var that = this | 
					
						
							| 
									
										
										
										
											2017-01-13 06:55:43 +03:00
										 |  |  | 		options = options || {} | 
					
						
							|  |  |  | 		var parent = options.parentElement  | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 		parent = parent ? $(parent) : this.dom  | 
					
						
							| 
									
										
										
										
											2016-05-07 16:15:18 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		options.direction = direction || 'bottom' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-08 14:43:13 +03:00
										 |  |  | 		var d = drawer.Drawer(parent, dialog, options) | 
					
						
							|  |  |  | 			// focus top modal on exit...
 | 
					
						
							|  |  |  | 			.on('close', function(){ | 
					
						
							|  |  |  | 				var o = that.modal | 
					
						
							|  |  |  | 				o && o.focus()	 | 
					
						
							|  |  |  | 			}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-07 16:15:18 +03:00
										 |  |  | 		// we need to clear other ui elements, like the status bar...
 | 
					
						
							|  |  |  | 		// XXX is this the right way to go???
 | 
					
						
							|  |  |  | 		d.dom.css({ | 
					
						
							|  |  |  | 			'z-index': 5000, | 
					
						
							|  |  |  | 		}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return d | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-09 01:39:06 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-09 04:46:59 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							|  |  |  | // Higher level dialog action constructors...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Make list editor dialog...
 | 
					
						
							|  |  |  | // 
 | 
					
						
							|  |  |  | // 	makeListEditorDialog(list[, options])
 | 
					
						
							|  |  |  | // 		-> action
 | 
					
						
							|  |  |  | // 
 | 
					
						
							|  |  |  | // 	makeListEditorDialog(function[, options])
 | 
					
						
							|  |  |  | // 		-> action
 | 
					
						
							|  |  |  | // 
 | 
					
						
							|  |  |  | // 
 | 
					
						
							|  |  |  | // Example:
 | 
					
						
							|  |  |  | // 	someAction: [
 | 
					
						
							|  |  |  | // 		makeListEditorDialog(
 | 
					
						
							|  |  |  | // 			// list of items to edit or list getter function...
 | 
					
						
							|  |  |  | // 			// NOTE: this is edited in place...
 | 
					
						
							|  |  |  | // 			[ 'item', .. ] | function(){ .. }, 
 | 
					
						
							|  |  |  | // 			// options compatible with browse's Items.EditableList(..)
 | 
					
						
							|  |  |  | // 			{ .. })],
 | 
					
						
							|  |  |  | // 			
 | 
					
						
							|  |  |  | // XXX should these replace the makeConfigListEditor/makeNestedConfigListEditor???
 | 
					
						
							|  |  |  | var makeListEditorDialog = | 
					
						
							|  |  |  | module.makeListEditorDialog = | 
					
						
							| 
									
										
										
										
											2017-09-16 18:11:07 +03:00
										 |  |  | function makeListEditorDialog(list, options){ | 
					
						
							| 
									
										
										
										
											2017-09-09 04:46:59 +03:00
										 |  |  | 	options = options || {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return makeUIDialog(function(){ | 
					
						
							|  |  |  | 		var lst = list instanceof Function ? | 
					
						
							|  |  |  | 			list.call(this) | 
					
						
							|  |  |  | 			: list | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// NOTE: this will edit the list in place...
 | 
					
						
							|  |  |  | 		return browse.makeLister(null,  | 
					
						
							|  |  |  | 			function(_, make){ | 
					
						
							|  |  |  | 				make.EditableList(lst, options) | 
					
						
							|  |  |  | 			}, { | 
					
						
							|  |  |  | 				cls: options.cls, | 
					
						
							|  |  |  | 			}) | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Make .config list editor dialog...
 | 
					
						
							|  |  |  | // 
 | 
					
						
							|  |  |  | // 	makeConfigListEditorDialog(path[, options])
 | 
					
						
							|  |  |  | // 		-> action
 | 
					
						
							|  |  |  | // 		
 | 
					
						
							|  |  |  | // 
 | 
					
						
							|  |  |  | // Example:
 | 
					
						
							|  |  |  | // 	someAction: [
 | 
					
						
							|  |  |  | // 		makeConfigListEditorDialog(
 | 
					
						
							|  |  |  | // 			// path to list in .config
 | 
					
						
							|  |  |  | // 			'path.to.list',
 | 
					
						
							|  |  |  | // 			// options compatible with browse's Items.EditableList(..)
 | 
					
						
							|  |  |  | // 			{ .. })],
 | 
					
						
							|  |  |  | // 			
 | 
					
						
							|  |  |  | // NOTE: see collections.editDefaultCollections(..) for a live example.
 | 
					
						
							|  |  |  | var makeConfigListEditorDialog = | 
					
						
							|  |  |  | module.makeConfigListEditorDialog = | 
					
						
							|  |  |  | function makeConfigListEditorDialog(path, options){ | 
					
						
							|  |  |  | 	path = path.split('.') | 
					
						
							|  |  |  | 	var key = path.pop() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return makeListEditorDialog(function(){ | 
					
						
							|  |  |  | 		var p = path.slice() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// get the path...
 | 
					
						
							|  |  |  | 		var cur = this.config | 
					
						
							|  |  |  | 		while(p.length > 0){ | 
					
						
							|  |  |  | 			var k = p.shift() | 
					
						
							|  |  |  | 			cur = cur[k] = cur[k] || {} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// the actual list we'll be editing...
 | 
					
						
							|  |  |  | 		var list =  | 
					
						
							|  |  |  | 			cur[key] =  | 
					
						
							|  |  |  | 			(cur[key] || []).slice() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return list | 
					
						
							|  |  |  | 	}, options) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-07 16:15:18 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-30 16:58:00 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-09 01:39:06 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | var DialogsActions = actions.Actions({ | 
					
						
							|  |  |  | 	config: { | 
					
						
							|  |  |  | 		'ui-default-container': 'Overlay', | 
					
						
							| 
									
										
										
										
											2016-11-08 17:27:27 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		'ui-overlay-blur': 'on', | 
					
						
							| 
									
										
										
										
											2017-01-20 01:12:48 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// used by UI to set the user confirm action timeout...
 | 
					
						
							|  |  |  | 		'ui-confirm-timeout': 2000, | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-12 16:29:32 +03:00
										 |  |  | 	// introspection...
 | 
					
						
							| 
									
										
										
										
											2017-01-05 23:00:49 +03:00
										 |  |  | 	get uiContainers(){  | 
					
						
							| 
									
										
										
										
											2018-01-20 01:14:59 +03:00
										 |  |  | 		return this.cache('uiContainers', function(d){ | 
					
						
							|  |  |  | 			return d instanceof Array ?  | 
					
						
							|  |  |  | 				d.slice()  | 
					
						
							|  |  |  | 				: this.actions.filter(this.isUIContainer.bind(this)) }) }, | 
					
						
							| 
									
										
										
										
											2017-01-05 23:00:49 +03:00
										 |  |  | 	get uiDialogs(){ | 
					
						
							| 
									
										
										
										
											2018-01-20 01:14:59 +03:00
										 |  |  | 		return this.cache('uiDialogs', function(d){ | 
					
						
							|  |  |  | 			return d instanceof Array ?  | 
					
						
							|  |  |  | 				d.slice()  | 
					
						
							|  |  |  | 				: this.actions.filter(this.isUIDialog.bind(this)) }) }, | 
					
						
							| 
									
										
										
										
											2017-01-05 23:00:49 +03:00
										 |  |  | 	get uiElements(){  | 
					
						
							| 
									
										
										
										
											2018-01-20 01:14:59 +03:00
										 |  |  | 		return this.cache('uiElements', function(d){ | 
					
						
							|  |  |  | 			return d instanceof Array ?  | 
					
						
							|  |  |  | 				d.slice()  | 
					
						
							|  |  |  | 				: this.actions.filter(this.isUIElement.bind(this)) }) }, | 
					
						
							| 
									
										
										
										
											2017-01-05 23:00:49 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-30 05:01:50 +03:00
										 |  |  | 	// XXX this knows about action priority and shortcut marker...
 | 
					
						
							| 
									
										
										
										
											2016-12-12 16:29:32 +03:00
										 |  |  | 	// XXX should these be more like .getDoc(..) and support lists of actions???
 | 
					
						
							| 
									
										
										
										
											2017-07-08 00:08:33 +03:00
										 |  |  | 	// XXX should these be here or someplace in base (base-introspection)???
 | 
					
						
							| 
									
										
										
										
											2016-12-12 16:29:32 +03:00
										 |  |  | 	getDocPath: ['- Interface/', | 
					
						
							|  |  |  | 		function(action, clean, join){ | 
					
						
							|  |  |  | 			clean = clean == null ? true : clean | 
					
						
							|  |  |  | 			join = join == null ? '/' : join | 
					
						
							|  |  |  | 			var path = (this.getDoc(action)[action].shift() || action) | 
					
						
							| 
									
										
										
										
											2017-01-22 01:39:46 +03:00
										 |  |  | 			path = clean ? path.replace(/^- /, '') : path | 
					
						
							|  |  |  | 			path = path | 
					
						
							| 
									
										
										
										
											2016-12-12 16:29:32 +03:00
										 |  |  | 				.split(/[\\\/]/g) | 
					
						
							|  |  |  | 				// remove priority...
 | 
					
						
							|  |  |  | 				.map(function(e){ | 
					
						
							| 
									
										
										
										
											2017-01-22 01:39:46 +03:00
										 |  |  | 					return clean ?  | 
					
						
							| 
									
										
										
										
											2017-01-30 05:01:50 +03:00
										 |  |  | 						e | 
					
						
							|  |  |  | 							.replace(/^[-+]?[0-9]+:\s*/, '') | 
					
						
							|  |  |  | 							.replace(/\$(\w)/g, '$1') | 
					
						
							| 
									
										
										
										
											2017-01-22 01:39:46 +03:00
										 |  |  | 						: e }) | 
					
						
							| 
									
										
										
										
											2016-12-12 16:29:32 +03:00
										 |  |  | 			return join ? path.join('/') : path | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	getDocBaseDir: ['- Interface/', | 
					
						
							|  |  |  | 		function(action, clean, join){ | 
					
						
							|  |  |  | 			clean = clean == null ? true : clean | 
					
						
							|  |  |  | 			join = join == null ? '/' : join | 
					
						
							|  |  |  | 			var path = this.getDocPath(action, clean, false) | 
					
						
							|  |  |  | 				// drop the title...
 | 
					
						
							|  |  |  | 				.slice(0, -1) | 
					
						
							|  |  |  | 			return join ? path.join('/') : path | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 	getDocTitle: ['- Interface/', | 
					
						
							|  |  |  | 		function(action, clean){ | 
					
						
							|  |  |  | 			clean = clean == null ? true : clean | 
					
						
							|  |  |  | 		   	return this.getDocPath(action, clean, false).pop()  | 
					
						
							|  |  |  | 		}], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-08 14:30:35 +03:00
										 |  |  | 	// Get modal container...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// Protocol:
 | 
					
						
							| 
									
										
										
										
											2017-01-27 06:48:24 +03:00
										 |  |  | 	// 	- get the last (top) modal widgets (CSS selector: .modal-widget)
 | 
					
						
							| 
									
										
										
										
											2016-05-08 14:30:35 +03:00
										 |  |  | 	// 	- return one of the following:
 | 
					
						
							|  |  |  | 	// 		.data('widget-controller')
 | 
					
						
							|  |  |  | 	// 		element
 | 
					
						
							|  |  |  | 	// 		null
 | 
					
						
							|  |  |  | 	get modal(){ | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 		var modal = this.dom | 
					
						
							| 
									
										
										
										
											2016-05-08 14:43:13 +03:00
										 |  |  | 			.find('.modal-widget') | 
					
						
							| 
									
										
										
										
											2016-05-08 14:30:35 +03:00
										 |  |  | 				.last() | 
					
						
							|  |  |  | 		return modal.data('widget-controller')  | 
					
						
							|  |  |  | 			|| (modal.length > 0 && modal)  | 
					
						
							|  |  |  | 			|| null | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// testers...
 | 
					
						
							| 
									
										
										
										
											2017-12-24 06:48:59 +03:00
										 |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2017-12-26 05:50:29 +03:00
										 |  |  | 	// ui elements...
 | 
					
						
							| 
									
										
										
										
											2018-03-05 00:39:13 +03:00
										 |  |  | 	isUIContainer: function(action){ | 
					
						
							|  |  |  | 		return !!this.getActionAttr(action, '__container__') }, | 
					
						
							|  |  |  | 	isUIDialog: function(action){ | 
					
						
							|  |  |  | 		return !!this.getActionAttr(action, '__dialog__') }, | 
					
						
							|  |  |  | 	isUIElement: function(action){  | 
					
						
							|  |  |  | 		return this.isUIDialog(action) || this.isUIContainer(action) }, | 
					
						
							| 
									
										
										
										
											2017-12-26 05:50:29 +03:00
										 |  |  | 	// extended ui elements
 | 
					
						
							|  |  |  | 	// ...first defined as a non-ui action and extended to a ui element.
 | 
					
						
							| 
									
										
										
										
											2018-03-05 00:39:13 +03:00
										 |  |  | 	isUIExtendedContainer:  | 
					
						
							| 
									
										
										
										
											2017-12-26 05:50:29 +03:00
										 |  |  | 		actions.doWithRootAction(function(action, name){ | 
					
						
							|  |  |  | 			return action != null | 
					
						
							|  |  |  | 				&& !action.__container__ | 
					
						
							| 
									
										
										
										
											2018-03-05 00:39:13 +03:00
										 |  |  | 				&& this.isUIContainer(name) }), | 
					
						
							|  |  |  | 	isUIExtendedDialog: | 
					
						
							| 
									
										
										
										
											2017-12-26 05:50:29 +03:00
										 |  |  | 		actions.doWithRootAction(function(action, name){ | 
					
						
							|  |  |  | 			return action != null  | 
					
						
							|  |  |  | 				&& !action.__dialog__ | 
					
						
							| 
									
										
										
										
											2018-03-05 00:39:13 +03:00
										 |  |  | 	   			&& this.isUIDialog(name) }), | 
					
						
							|  |  |  | 	isUIExtendedElement: | 
					
						
							| 
									
										
										
										
											2017-12-26 05:50:29 +03:00
										 |  |  | 		actions.doWithRootAction(function(action, name){ | 
					
						
							|  |  |  | 			return action != null  | 
					
						
							|  |  |  | 				&& !action.__dialog__  | 
					
						
							|  |  |  | 				&& !action.__container__ | 
					
						
							| 
									
										
										
										
											2018-03-05 00:39:13 +03:00
										 |  |  | 				&& this.isUIElement(name) }), | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// container constructors...
 | 
					
						
							|  |  |  | 	Overlay: ['- Interface/', | 
					
						
							| 
									
										
										
										
											2016-04-30 16:58:00 +03:00
										 |  |  | 		makeUIContainer(function(dialog, options){ | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | 			var that = this | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 			return overlay.Overlay(this.dom, dialog, options) | 
					
						
							| 
									
										
										
										
											2016-05-08 14:43:13 +03:00
										 |  |  | 				// focus top modal on exit...
 | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | 				.on('close', function(){ | 
					
						
							| 
									
										
										
										
											2016-05-08 14:43:13 +03:00
										 |  |  | 					var o = that.modal | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | 					o && o.focus()	 | 
					
						
							|  |  |  | 				}) | 
					
						
							|  |  |  | 		})], | 
					
						
							| 
									
										
										
										
											2016-04-30 16:58:00 +03:00
										 |  |  | 	Drawer: ['- Interface/', | 
					
						
							| 
									
										
										
										
											2016-05-07 16:15:18 +03:00
										 |  |  | 		makeDrawer('bottom')], | 
					
						
							| 
									
										
										
										
											2016-05-02 03:49:34 +03:00
										 |  |  | 	BottomDrawer: ['- Interface/', | 
					
						
							| 
									
										
										
										
											2016-05-07 16:15:18 +03:00
										 |  |  | 		makeDrawer('bottom')], | 
					
						
							| 
									
										
										
										
											2016-05-08 14:30:35 +03:00
										 |  |  | 	TopDrawer: ['- Interface/', | 
					
						
							|  |  |  | 		makeDrawer('top')], | 
					
						
							| 
									
										
										
										
											2016-05-03 01:43:43 +03:00
										 |  |  | 	// like panel but drop down from mouse location or specified position
 | 
					
						
							|  |  |  | 	DropDown: ['- Interface/', | 
					
						
							|  |  |  | 		makeUIContainer(function(dialog, options){ | 
					
						
							|  |  |  | 			// XXX
 | 
					
						
							|  |  |  | 			console.error('Not yet implemented.') | 
					
						
							|  |  |  | 		})], | 
					
						
							|  |  |  | 	// XXX STUB -- need a real panel with real docking and closing 
 | 
					
						
							|  |  |  | 	// 		ability... 
 | 
					
						
							| 
									
										
										
										
											2016-04-30 18:39:14 +03:00
										 |  |  | 	// XXX need to:
 | 
					
						
							|  |  |  | 	// 		- dock panels
 | 
					
						
							|  |  |  | 	// 		- save panel state (position, collapse, dock, ...)
 | 
					
						
							|  |  |  | 	// 		- restore panel state
 | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | 	Panel: ['- Interface/', | 
					
						
							| 
									
										
										
										
											2016-04-30 16:58:00 +03:00
										 |  |  | 		makeUIContainer(function(dialog, options){ | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | 			// XXX
 | 
					
						
							| 
									
										
										
										
											2016-05-03 01:43:43 +03:00
										 |  |  | 			//console.error('Not yet implemented.')
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-08 14:30:35 +03:00
										 |  |  | 			// minimal container...
 | 
					
						
							| 
									
										
										
										
											2016-05-03 01:43:43 +03:00
										 |  |  | 			var panel = { | 
					
						
							|  |  |  | 				client: dialog, | 
					
						
							|  |  |  | 				dom: $('<div>') | 
					
						
							|  |  |  | 					.append(dialog.dom || dialog) | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 					.appendTo(this.dom) | 
					
						
							| 
									
										
										
										
											2016-05-03 01:43:43 +03:00
										 |  |  | 					.draggable(), | 
					
						
							|  |  |  | 				close: function(func){ | 
					
						
							| 
									
										
										
										
											2017-12-26 05:50:29 +03:00
										 |  |  | 					if(func instanceof Function){ | 
					
						
							| 
									
										
										
										
											2016-05-03 01:43:43 +03:00
										 |  |  | 						this.dom.on('close', func) | 
					
						
							|  |  |  | 					} else { | 
					
						
							| 
									
										
										
										
											2017-01-24 00:14:31 +03:00
										 |  |  | 						this.dom.trigger('close', 'reject') | 
					
						
							| 
									
										
										
										
											2016-05-03 01:43:43 +03:00
										 |  |  | 						this.dom.remove() | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					return this | 
					
						
							|  |  |  | 				}, | 
					
						
							| 
									
										
										
										
											2017-12-26 05:50:29 +03:00
										 |  |  | 				focus: function(){ | 
					
						
							|  |  |  | 				}, | 
					
						
							| 
									
										
										
										
											2016-05-03 01:43:43 +03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			dialog.on('blur', function(){ | 
					
						
							| 
									
										
										
										
											2017-01-24 00:14:31 +03:00
										 |  |  | 				panel.close('reject') | 
					
						
							| 
									
										
										
										
											2016-05-03 01:43:43 +03:00
										 |  |  | 			}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			return panel | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | 		})], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-21 23:39:41 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-22 01:39:46 +03:00
										 |  |  | 	// Helper for creating lists fast...
 | 
					
						
							|  |  |  | 	showList: ['- Interface/',  | 
					
						
							| 
									
										
										
										
											2017-01-31 02:51:06 +03:00
										 |  |  | 		core.doc`Show list dialog...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			.showList(<list>, <options>) | 
					
						
							|  |  |  | 				-> dialog | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		See browse.makeList(..) / browse.Items.List(..) for more info. | 
					
						
							|  |  |  | 		`,
 | 
					
						
							| 
									
										
										
										
											2017-01-21 23:39:41 +03:00
										 |  |  | 		makeUIDialog(function(list, options){ | 
					
						
							| 
									
										
										
										
											2017-01-22 01:39:46 +03:00
										 |  |  | 			return browse.makeList(null, list, options) })], | 
					
						
							| 
									
										
										
										
											2017-09-16 18:11:07 +03:00
										 |  |  | 	// XXX do we need to split the options???
 | 
					
						
							|  |  |  | 	showEditableList: ['- Interface/',  | 
					
						
							|  |  |  | 		core.doc`Show editable list dialog...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			.showEditableList(<list>, <options>) | 
					
						
							|  |  |  | 				-> dialog | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		See browse.Items.EditableList(..) for more info. | 
					
						
							| 
									
										
										
										
											2017-09-16 20:45:30 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		NOTE: this passes the same options to the list item and the  | 
					
						
							|  |  |  | 			dielog. | 
					
						
							|  |  |  | 			XXX this may change in the future... | 
					
						
							| 
									
										
										
										
											2017-09-16 18:11:07 +03:00
										 |  |  | 		`,
 | 
					
						
							|  |  |  | 		makeUIDialog(function(list, options){ | 
					
						
							| 
									
										
										
										
											2017-09-16 20:45:30 +03:00
										 |  |  | 			options = Object.create(options || {}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// defaults...
 | 
					
						
							|  |  |  | 			options.sortable = options.sortable === undefined ?  | 
					
						
							|  |  |  | 				true  | 
					
						
							|  |  |  | 				: options.sortable | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-16 18:11:07 +03:00
										 |  |  | 			return browse.makeLister(null,  | 
					
						
							|  |  |  | 				function(path, make){ | 
					
						
							|  |  |  | 					make.EditableList(list, options) | 
					
						
							|  |  |  | 				},  | 
					
						
							|  |  |  | 				options) })], | 
					
						
							| 
									
										
										
										
											2017-01-31 02:51:06 +03:00
										 |  |  | 	showActionList: ['- Interface/',  | 
					
						
							|  |  |  | 		core.doc`Show list of actions dialog...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			.showActionList(<list>, <options>) | 
					
						
							|  |  |  | 				-> dialog | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Like .showList(..) but understands keyboard.parseActionCall(..) syntax, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Options format: | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				// arguments and what to replace them with, this is used
 | 
					
						
							|  |  |  | 				// to define templates in the list and pass real values 
 | 
					
						
							|  |  |  | 				// via the dict.
 | 
					
						
							|  |  |  | 				args_dict: { | 
					
						
							|  |  |  | 					<arg>: <value>, | 
					
						
							|  |  |  | 					... | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// Same format .showList(..) understands...
 | 
					
						
							|  |  |  | 				... | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		`,
 | 
					
						
							|  |  |  | 		makeUIDialog(function(list, options){ | 
					
						
							|  |  |  | 			var that = this | 
					
						
							|  |  |  | 			list = list instanceof Function ? list.call(this) : list | 
					
						
							|  |  |  | 			options = options || {} | 
					
						
							|  |  |  | 			var args_dict = options.args_dict || {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var loaders = {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			list.forEach(function(m){ | 
					
						
							| 
									
										
										
										
											2017-11-19 01:01:44 +03:00
										 |  |  | 				var a = keyboard.parseActionCall(m, that) | 
					
						
							| 
									
										
										
										
											2017-01-31 02:51:06 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				if(a.action in that){ | 
					
						
							|  |  |  | 					var args = a.arguments | 
					
						
							|  |  |  | 						.map(function(a){  | 
					
						
							|  |  |  | 							return args_dict[a] !== undefined ?  | 
					
						
							|  |  |  | 								args_dict[a]  | 
					
						
							|  |  |  | 								: a }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// the callback...
 | 
					
						
							|  |  |  | 					loaders[a.doc != '' ?  | 
					
						
							|  |  |  | 							a.doc  | 
					
						
							|  |  |  | 							: that.getDocTitle(a.action)] = | 
					
						
							|  |  |  | 						function(){ | 
					
						
							|  |  |  | 							return that[a.action].apply(that, args) } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// non-actions...
 | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					loaders[m] = null | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			return browse.makeList(null, loaders, options) | 
					
						
							|  |  |  | 		})], | 
					
						
							| 
									
										
										
										
											2017-01-24 05:34:15 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 17:51:27 +03:00
										 |  |  | 	listDialogs: ['Interface|System/Dialog/Dialog list...', | 
					
						
							| 
									
										
										
										
											2017-07-02 16:42:28 +03:00
										 |  |  | 		makeUIDialog(function(){ | 
					
						
							|  |  |  | 			var actions = this | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			return browse.makeLister(null, function(path, make){ | 
					
						
							|  |  |  | 				var that = this | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				actions.uiDialogs.forEach(function(dialog){ | 
					
						
							|  |  |  | 					var doc = actions.getDoc(dialog)[dialog][0] | 
					
						
							|  |  |  | 					var txt = ((doc | 
					
						
							|  |  |  | 							.split(/[\\\/]/g) | 
					
						
							|  |  |  | 							.pop() || ('.'+ dialog +'(..)')) | 
					
						
							|  |  |  | 								// mark item as disabled...
 | 
					
						
							|  |  |  | 								+ (/^- .*$/.test(doc) ? ' (disabled)' : '')) | 
					
						
							|  |  |  | 						.replace(/^-?[0-9]+\s*:\s*/, '') | 
					
						
							|  |  |  | 						.trim() | 
					
						
							| 
									
										
										
										
											2017-12-24 07:33:31 +03:00
										 |  |  | 					make(txt == '*' ? `${dialog} (${txt})` : txt) | 
					
						
							| 
									
										
										
										
											2017-07-02 16:42:28 +03:00
										 |  |  | 						.on('open', function(){ | 
					
						
							|  |  |  | 							actions[dialog]() | 
					
						
							|  |  |  | 						}) | 
					
						
							|  |  |  | 				}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				make.done() | 
					
						
							|  |  |  | 			}) | 
					
						
							|  |  |  | 		})], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	toggleOverlayBlur: ['Interface/Dialog overlay blur', | 
					
						
							|  |  |  | 		toggler.CSSClassToggler( | 
					
						
							|  |  |  | 			function(){ return this.dom },  | 
					
						
							|  |  |  | 			'overlay-blur-enabled', | 
					
						
							|  |  |  | 			function(state){ this.config['ui-overlay-blur'] = state }) ], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var Dialogs =  | 
					
						
							|  |  |  | module.Dialogs = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-dialogs', | 
					
						
							|  |  |  | 	depends: [ | 
					
						
							| 
									
										
										
										
											2018-01-18 09:16:46 +03:00
										 |  |  | 		'cache', | 
					
						
							| 
									
										
										
										
											2017-07-02 16:42:28 +03:00
										 |  |  | 		'ui', | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	actions: DialogsActions, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							|  |  |  | 		['start', | 
					
						
							|  |  |  | 			function(){ | 
					
						
							|  |  |  | 				this.config['ui-overlay-blur'] | 
					
						
							|  |  |  | 					&& this.toggleOverlayBlur(this.config['ui-overlay-blur']) | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 		['__call__',  | 
					
						
							|  |  |  | 			function(res, action){ | 
					
						
							|  |  |  | 				//if(res instanceof jQuery || res instanceof widget.Widget){
 | 
					
						
							|  |  |  | 				//	var elem = (res.dom || res)
 | 
					
						
							|  |  |  | 				if(res instanceof widget.Widget){ | 
					
						
							|  |  |  | 					var elem = res.dom | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					var title = this.getActionAttr(action, 'dialogTitle') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					title ? | 
					
						
							|  |  |  | 						elem.attr('dialog-title', title) | 
					
						
							|  |  |  | 						: !elem.attr('keep-dialog-title')  | 
					
						
							|  |  |  | 							&& !this.getActionAttr(action, 'keepDialogTitle') | 
					
						
							|  |  |  | 							&& elem.attr('dialog-title', this.getDocTitle(action)) | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*********************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-11 01:05:39 +03:00
										 |  |  | // XXX do not use the global ig for link click handling...
 | 
					
						
							|  |  |  | var action2lnk = | 
					
						
							|  |  |  | module.action2lnk = | 
					
						
							|  |  |  | function(action){ | 
					
						
							|  |  |  |    return `<a href="#" onclick="ig.showDoc('${action}')">${action}</a>` } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // XXX do not use the global ig for link click handling...
 | 
					
						
							|  |  |  | var feature2lnk = | 
					
						
							|  |  |  | module.feature2lnk = | 
					
						
							|  |  |  | function(tag){ | 
					
						
							|  |  |  |    return `<a href="#" onclick="ig.showFeatureDoc('${tag}')">${tag}</a>` } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-13 18:50:01 +03:00
										 |  |  | // XXX needs more cleanup...
 | 
					
						
							|  |  |  | var features2lnk = | 
					
						
							|  |  |  | module.features2lnk = | 
					
						
							|  |  |  | function(features, text){ | 
					
						
							|  |  |  | 	features = new RegExp( | 
					
						
							| 
									
										
										
										
											2017-07-14 04:26:46 +03:00
										 |  |  | 			'(\\s)(' | 
					
						
							| 
									
										
										
										
											2017-07-13 18:50:01 +03:00
										 |  |  | 			+(features | 
					
						
							|  |  |  | 				.sort(function(a, b){ return b.length - a.length }) | 
					
						
							|  |  |  | 				.join('|')) | 
					
						
							| 
									
										
										
										
											2017-07-14 04:26:46 +03:00
										 |  |  | 			+')([,\\s]?)',  | 
					
						
							| 
									
										
										
										
											2017-07-13 18:50:01 +03:00
										 |  |  | 		'g') | 
					
						
							|  |  |  | 	return text | 
					
						
							|  |  |  | 		.replace(features, function(match, a, b, c){ | 
					
						
							|  |  |  | 			return a + feature2lnk(b) + c | 
					
						
							|  |  |  | 		}) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var js2html = | 
					
						
							|  |  |  | module.js2html = | 
					
						
							| 
									
										
										
										
											2017-07-09 16:46:11 +03:00
										 |  |  | function(doc, skip_linking){ | 
					
						
							|  |  |  | 	skip_linking = skip_linking || [] | 
					
						
							|  |  |  | 	return doc | 
					
						
							|  |  |  | 		// html stuff...
 | 
					
						
							|  |  |  | 		.replace(/&/g, '&') | 
					
						
							|  |  |  | 		.replace(/</g, '<') | 
					
						
							|  |  |  | 		.replace(/>/g, '>') | 
					
						
							|  |  |  | 		// normalize tabs -- convert tabs and tabbed 
 | 
					
						
							|  |  |  | 		// spaces into 4 spaces...
 | 
					
						
							|  |  |  | 		// NOTE: the code internally uses only tabs, 
 | 
					
						
							|  |  |  | 		// 		but this will help make the view 
 | 
					
						
							|  |  |  | 		// 		consistent.
 | 
					
						
							|  |  |  | 		.replace(/ {0,3}\t/g, '    ') | 
					
						
							|  |  |  | 		// comments...
 | 
					
						
							|  |  |  | 		.replace(/(\/\/.*)\n/g, '<span class="comment">$1</span>\n') | 
					
						
							|  |  |  | 		// notes...
 | 
					
						
							|  |  |  | 		.replace(/NOTE:/g, '<b>NOTE:</b>') | 
					
						
							|  |  |  | 		.replace(/XXX/g, '<span class="warning">XXX</span>') | 
					
						
							| 
									
										
										
										
											2017-07-13 18:50:01 +03:00
										 |  |  | } | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | // XXX do not use the global ig for link click handling...
 | 
					
						
							|  |  |  | var doc2html = | 
					
						
							|  |  |  | module.doc2html = | 
					
						
							|  |  |  | function(doc, skip_linking){ | 
					
						
							|  |  |  | 	skip_linking = skip_linking || [] | 
					
						
							|  |  |  | 	return js2html(doc) | 
					
						
							| 
									
										
										
										
											2017-07-09 16:46:11 +03:00
										 |  |  | 		// action links...
 | 
					
						
							|  |  |  | 		.replace(/(\s)(\.([\w_]+[\w\d_]*)\([^)]*\))/g,  | 
					
						
							|  |  |  | 			function(match, a, b, c){ | 
					
						
							|  |  |  | 				return (skip_linking == '*' || skip_linking.indexOf(c) >= 0) ? | 
					
						
							|  |  |  | 					`${a}<i>${b}</i>` | 
					
						
							|  |  |  | 					: `${a}<a href="#" onclick="ig.showDoc('${c}')">${b}</a>` | 
					
						
							|  |  |  | 			}) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-02 16:42:28 +03:00
										 |  |  | var UIIntrospectionActions = actions.Actions({ | 
					
						
							| 
									
										
										
										
											2017-01-24 06:14:38 +03:00
										 |  |  | 	// Show doc for action...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2017-01-29 00:51:13 +03:00
										 |  |  | 	// XXX STUB...
 | 
					
						
							| 
									
										
										
										
											2018-02-11 02:55:28 +03:00
										 |  |  | 	// XXX handle non-action methods...
 | 
					
						
							| 
									
										
										
										
											2017-01-24 05:34:15 +03:00
										 |  |  | 	// XXX this needs to:
 | 
					
						
							|  |  |  | 	// 		- be a widget
 | 
					
						
							|  |  |  | 	// 		- handle focus
 | 
					
						
							|  |  |  | 	// 		- handle keyboard
 | 
					
						
							|  |  |  | 	// 		- handle search...
 | 
					
						
							| 
									
										
										
										
											2017-01-24 06:14:38 +03:00
										 |  |  | 	// 		- format action links/references...
 | 
					
						
							|  |  |  | 	// 		- markdown???
 | 
					
						
							| 
									
										
										
										
											2017-01-24 05:34:15 +03:00
										 |  |  | 	// 		- ...
 | 
					
						
							| 
									
										
										
										
											2017-01-24 06:14:38 +03:00
										 |  |  | 	// XXX use pWiki???
 | 
					
						
							|  |  |  | 	// XXX should we have navigation???
 | 
					
						
							|  |  |  | 	// 		...i.e. opening links is done in the viewer and we have 
 | 
					
						
							|  |  |  | 	// 		ability to go back and forth...
 | 
					
						
							| 
									
										
										
										
											2017-07-06 02:24:36 +03:00
										 |  |  | 	// XXX might be a good idea to also show feature doc...
 | 
					
						
							| 
									
										
										
										
											2017-01-24 06:14:38 +03:00
										 |  |  | 	showDoc: ['Help/Action help...', | 
					
						
							| 
									
										
										
										
											2017-01-24 05:34:15 +03:00
										 |  |  | 		makeUIDialog(function(actions){ | 
					
						
							| 
									
										
										
										
											2017-01-25 23:34:01 +03:00
										 |  |  | 			var that = this | 
					
						
							| 
									
										
										
										
											2017-01-29 00:58:25 +03:00
										 |  |  | 			actions = actions || this.actions.sort() | 
					
						
							| 
									
										
										
										
											2017-01-24 05:34:15 +03:00
										 |  |  | 			actions = actions instanceof Array ? actions : [actions] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var doc = this.getDoc(actions) | 
					
						
							| 
									
										
										
										
											2017-07-09 16:46:11 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-24 05:34:15 +03:00
										 |  |  | 			var res = $('<div>') | 
					
						
							|  |  |  | 				.addClass('help-dialog') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			actions.forEach(function(action){ | 
					
						
							| 
									
										
										
										
											2017-09-06 19:25:17 +03:00
										 |  |  | 				var toggler = that.isToggler(action) | 
					
						
							| 
									
										
										
										
											2017-08-21 20:29:17 +03:00
										 |  |  | 				res.append($('<div class="action doc">') | 
					
						
							| 
									
										
										
										
											2017-01-24 05:34:15 +03:00
										 |  |  | 					.prop('tabindex', true) | 
					
						
							| 
									
										
										
										
											2017-01-24 06:14:38 +03:00
										 |  |  | 					.append($('<h2>') | 
					
						
							|  |  |  | 						.text(doc[action][2])) | 
					
						
							|  |  |  | 					.append($('<i>') | 
					
						
							|  |  |  | 						.text(doc[action][0])) | 
					
						
							| 
									
										
										
										
											2017-01-25 23:34:01 +03:00
										 |  |  | 					.append($('<div>') | 
					
						
							| 
									
										
										
										
											2017-09-06 19:25:17 +03:00
										 |  |  | 						.html( | 
					
						
							|  |  |  | 							// features...
 | 
					
						
							|  |  |  | 							'Features: ' + that.getHandlerSourceTags(action) | 
					
						
							| 
									
										
										
										
											2017-07-11 01:05:39 +03:00
										 |  |  | 								.map(feature2lnk) | 
					
						
							| 
									
										
										
										
											2017-09-06 19:25:17 +03:00
										 |  |  | 								.join(', ') | 
					
						
							|  |  |  | 							// toggler states...
 | 
					
						
							|  |  |  | 							+ (toggler ?  | 
					
						
							|  |  |  | 								('<br>Toggler states: '+ that[action]('??').join(', ')) | 
					
						
							|  |  |  | 								: ''))) | 
					
						
							| 
									
										
										
										
											2017-01-24 05:34:15 +03:00
										 |  |  | 					.append($('<hr>')) | 
					
						
							| 
									
										
										
										
											2017-01-25 23:45:12 +03:00
										 |  |  | 					// parse the action doc...
 | 
					
						
							| 
									
										
										
										
											2017-01-24 06:14:38 +03:00
										 |  |  | 					.append($('<pre>') | 
					
						
							| 
									
										
										
										
											2017-07-09 16:46:11 +03:00
										 |  |  | 						.html(doc2html(doc[action][1] || '', [action])))  | 
					
						
							|  |  |  | 					// NOTE: we are quoting action in an array here to prevent
 | 
					
						
							|  |  |  | 					// 		dialog actions from messing up the call...
 | 
					
						
							|  |  |  | 					.append($(`<a href="#" onclick="ig.showCode(['${action}'])">code...</a>`)) ) | 
					
						
							|  |  |  | 			}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			return res | 
					
						
							|  |  |  | 		})], | 
					
						
							| 
									
										
										
										
											2017-07-13 18:50:01 +03:00
										 |  |  | 	// XXX make hypertext...
 | 
					
						
							| 
									
										
										
										
											2017-07-10 02:48:39 +03:00
										 |  |  | 	showCode: ['- Help/Show action code...', | 
					
						
							| 
									
										
										
										
											2017-07-09 16:46:11 +03:00
										 |  |  | 		makeUIDialog(function(action){ | 
					
						
							|  |  |  | 			action = action instanceof Array ? action[0] : action | 
					
						
							| 
									
										
										
										
											2017-07-13 18:50:01 +03:00
										 |  |  | 			var features = this.features.FeatureSet.features  | 
					
						
							|  |  |  | 					|| this.features.features  | 
					
						
							|  |  |  | 					|| [] | 
					
						
							| 
									
										
										
										
											2017-07-09 16:46:11 +03:00
										 |  |  | 			return $('<div>') | 
					
						
							|  |  |  | 				.addClass('help-dialog') | 
					
						
							|  |  |  | 				.append($('<div class="action">') | 
					
						
							|  |  |  | 					.append($('<pre>') | 
					
						
							| 
									
										
										
										
											2017-07-13 18:50:01 +03:00
										 |  |  | 						//.text(this.getHandlerDocStr(action))) )
 | 
					
						
							|  |  |  | 						.html(features2lnk(features, js2html(this.getHandlerDocStr(action))))) )  | 
					
						
							| 
									
										
										
										
											2017-07-09 16:46:11 +03:00
										 |  |  | 		})], | 
					
						
							|  |  |  | 	showFeatureDoc: ['Help/Feature help...', | 
					
						
							|  |  |  | 		makeUIDialog(function(features){ | 
					
						
							|  |  |  | 			features = features || this.features.features | 
					
						
							|  |  |  | 			features = features == '*' ? this.features.FeatureSet.features | 
					
						
							|  |  |  | 				: features instanceof Array ? features | 
					
						
							|  |  |  | 				: [features] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var that = this | 
					
						
							|  |  |  | 			var featureset = this.features.FeatureSet | 
					
						
							|  |  |  | 			var res = $('<div>') | 
					
						
							|  |  |  | 				.addClass('help-dialog') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			var tag2lnk = function(tag){ | 
					
						
							| 
									
										
										
										
											2017-07-11 01:05:39 +03:00
										 |  |  | 				return tag != '-'? feature2lnk(tag) : '-' } | 
					
						
							| 
									
										
										
										
											2017-07-09 16:46:11 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			features.forEach(function(tag){ | 
					
						
							|  |  |  | 				var feature = featureset[tag.startsWith('-') ? tag.slice(1) : tag] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// skip unknown tags...
 | 
					
						
							|  |  |  | 				if(feature == null){ | 
					
						
							|  |  |  | 					return | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-14 14:00:57 +03:00
										 |  |  | 				var exclusive = feature.exclusive | 
					
						
							|  |  |  | 				exclusive = exclusive  | 
					
						
							|  |  |  | 					&& (exclusive instanceof Array ?  | 
					
						
							|  |  |  | 						exclusive  | 
					
						
							|  |  |  | 						: [exclusive]) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-09 16:46:11 +03:00
										 |  |  | 				res.append($('<div class="feature">') | 
					
						
							|  |  |  | 					.prop('tabindex', true) | 
					
						
							|  |  |  | 					.append($('<h2>') | 
					
						
							|  |  |  | 						.text(feature.title || tag)) | 
					
						
							|  |  |  | 					.append($('<i>') | 
					
						
							|  |  |  | 						.html(that.features.features.indexOf(tag) < 0 ?  | 
					
						
							|  |  |  | 								'not loaded'  | 
					
						
							|  |  |  | 								: 'loaded'))  | 
					
						
							|  |  |  | 					.append($('<div>') | 
					
						
							|  |  |  | 						.html('Tag: '+ tag2lnk(tag) ))  | 
					
						
							| 
									
										
										
										
											2017-07-11 01:05:39 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-09 16:46:11 +03:00
										 |  |  | 					.append($('<div>') | 
					
						
							|  |  |  | 						.html('Priority: '+ (feature.getPriority ?  | 
					
						
							|  |  |  | 							feature.getPriority(true) | 
					
						
							|  |  |  | 							: (feature.priority || 'normal') ))) | 
					
						
							|  |  |  | 					// list exclusive features...
 | 
					
						
							|  |  |  | 					.append($('<div>') | 
					
						
							|  |  |  | 						.html('Exclusive tag: '  | 
					
						
							| 
									
										
										
										
											2017-10-14 14:00:57 +03:00
										 |  |  | 							+ (exclusive || ['-']) | 
					
						
							| 
									
										
										
										
											2017-07-09 16:46:11 +03:00
										 |  |  | 								.map(function(tag){ | 
					
						
							|  |  |  | 									if(tag == '-'){ | 
					
						
							|  |  |  | 										return tag | 
					
						
							|  |  |  | 									} | 
					
						
							|  |  |  | 									var tags = featureset.getExclusive(tag)[tag].join('\', \'') | 
					
						
							|  |  |  | 									return `<a href="#" onclick="ig.showFeatureDoc(['${tags}'])">${tag}</a>` | 
					
						
							| 
									
										
										
										
											2017-01-25 23:45:12 +03:00
										 |  |  | 								}) | 
					
						
							| 
									
										
										
										
											2017-07-09 16:46:11 +03:00
										 |  |  | 								.join(', '))) | 
					
						
							|  |  |  | 					.append($('<div>') | 
					
						
							|  |  |  | 						.html('Depends: '  | 
					
						
							|  |  |  | 							+ (feature.depends || ['-']) | 
					
						
							|  |  |  | 								.map(tag2lnk) | 
					
						
							|  |  |  | 								.join(', '))) | 
					
						
							|  |  |  | 					.append($('<div>') | 
					
						
							|  |  |  | 						.html('Suggests: '  | 
					
						
							|  |  |  | 							+ (feature.suggested || ['-']) | 
					
						
							|  |  |  | 								.map(tag2lnk) | 
					
						
							|  |  |  | 								.join(', '))) | 
					
						
							| 
									
										
										
										
											2017-07-11 01:05:39 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 					// list actions, props and handlers...
 | 
					
						
							|  |  |  | 					.append($('<hr>')) | 
					
						
							|  |  |  | 					.append($('<div>') | 
					
						
							|  |  |  | 						.html('Props: <i>not implemented</i>')) | 
					
						
							|  |  |  | 					.append($('<div>') | 
					
						
							|  |  |  | 						.html('Actions: '  | 
					
						
							|  |  |  | 							+ Object.keys(feature.actions || {'-': null}) | 
					
						
							|  |  |  | 								.filter(function(n){  | 
					
						
							|  |  |  | 									return n == '-'  | 
					
						
							|  |  |  | 										|| (Object.getOwnPropertyDescriptor(feature.actions, n) || {}).value instanceof actions.Action }) | 
					
						
							|  |  |  | 								.map(function(n){ | 
					
						
							|  |  |  | 									return n == '-' ? n : action2lnk(n) }) | 
					
						
							|  |  |  | 								.join(', '))) | 
					
						
							|  |  |  | 					.append($('<div>') | 
					
						
							|  |  |  | 						.html('Handlers: ' | 
					
						
							|  |  |  | 							+ (feature.handlers || [['-']]) | 
					
						
							|  |  |  | 								.map(function(h){ return h[0] instanceof Array ? h[0] : [h[0]] }) | 
					
						
							|  |  |  | 								.reduce(function(a, b){ return a.concat(b) }, []) | 
					
						
							|  |  |  | 								.unique() | 
					
						
							|  |  |  | 								.map(function(n){ | 
					
						
							|  |  |  | 									return n == '-' ? n : action2lnk(n) }) | 
					
						
							|  |  |  | 								.join(', '))) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-09 16:46:11 +03:00
										 |  |  | 					// doc...
 | 
					
						
							|  |  |  | 					.append($('<hr>')) | 
					
						
							|  |  |  | 					.append($('<pre>') | 
					
						
							|  |  |  | 						.html(doc2html(feature.doc || ''))) ) | 
					
						
							| 
									
										
										
										
											2017-01-24 05:34:15 +03:00
										 |  |  | 			}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			return res | 
					
						
							|  |  |  | 		})], | 
					
						
							| 
									
										
										
										
											2017-01-21 23:39:41 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-06 02:24:36 +03:00
										 |  |  | 	// XXX might be a good idea to add feature doc/help browser like showDoc(..)
 | 
					
						
							| 
									
										
										
										
											2017-07-12 16:51:33 +03:00
										 |  |  | 	// XXX show more info about features...
 | 
					
						
							| 
									
										
										
										
											2017-07-02 16:42:28 +03:00
										 |  |  | 	// 		.title
 | 
					
						
							| 
									
										
										
										
											2017-07-12 16:51:33 +03:00
										 |  |  | 	// 		.doc (short)
 | 
					
						
							| 
									
										
										
										
											2017-07-06 02:24:36 +03:00
										 |  |  | 	// XXX might be nice to load/unload features from here...
 | 
					
						
							|  |  |  | 	// 		this can be done by add explicitly to input (with or without
 | 
					
						
							|  |  |  | 	// 		the '-' prefix and) and reloading (re-running setup(..))...
 | 
					
						
							|  |  |  | 	// XXX not sure where to put this -- help or system?
 | 
					
						
							|  |  |  | 	// 		...if we add feature doc browsing it's help, of feature 
 | 
					
						
							|  |  |  | 	// 		loading/unloading then system...
 | 
					
						
							|  |  |  | 	// 		...might be a good idea to split the two functions, like the 
 | 
					
						
							|  |  |  | 	// 		keyboard help/edit UI's...
 | 
					
						
							|  |  |  | 	showFeatures: ['Help|System/Features...', | 
					
						
							| 
									
										
										
										
											2017-07-02 16:42:28 +03:00
										 |  |  | 		core.doc`Show feature load information...`, | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | 		makeUIDialog(function(){ | 
					
						
							| 
									
										
										
										
											2017-07-02 16:42:28 +03:00
										 |  |  | 			var that = this | 
					
						
							| 
									
										
										
										
											2017-07-10 02:48:39 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-11 01:05:39 +03:00
										 |  |  | 			return browse | 
					
						
							|  |  |  | 				.makeLister(null, function(path, make){ | 
					
						
							|  |  |  | 					var features = that.features || {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// XXX get feature doc...
 | 
					
						
							|  |  |  | 					var draw = function(heading, list){ | 
					
						
							|  |  |  | 						make.Heading(heading) | 
					
						
							|  |  |  | 						;(list || []) | 
					
						
							|  |  |  | 							.forEach(function(tag){ | 
					
						
							| 
									
										
										
										
											2017-12-29 02:33:22 +03:00
										 |  |  | 								make(tag, { | 
					
						
							|  |  |  | 									attrs: {  | 
					
						
							|  |  |  | 										feature: tag,  | 
					
						
							|  |  |  | 										root: no_deps.indexOf(tag) >= 0 ? 'true' : '', | 
					
						
							|  |  |  | 									}, | 
					
						
							|  |  |  | 									open: function(){ that.showFeatureDoc(tag) }, | 
					
						
							|  |  |  | 								}) | 
					
						
							| 
									
										
										
										
											2017-07-11 01:05:39 +03:00
										 |  |  | 							}) } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-29 02:33:22 +03:00
										 |  |  | 					// features that have no direct dependencies...
 | 
					
						
							|  |  |  | 					var no_deps = that.features.features.filter(function(f){  | 
					
						
							|  |  |  | 						return (that.features.depends[f] || []).length == 0 }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-11 01:05:39 +03:00
										 |  |  | 					draw('Loaded (in order)', that.features.features) | 
					
						
							|  |  |  | 					draw('Excluded', that.features.excluded) | 
					
						
							|  |  |  | 					draw('Disabled', that.features.disabled) | 
					
						
							|  |  |  | 					draw('Not applicable', that.features.unapplicable) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					if(features.error){ | 
					
						
							|  |  |  | 						var error = features.error | 
					
						
							|  |  |  | 						error.missing_suggested && error.missing_suggested.length > 0 | 
					
						
							|  |  |  | 							&& draw('Missing (non-critical)', error.missing_suggested) | 
					
						
							|  |  |  | 						error.missing && error.missing.length > 0 | 
					
						
							|  |  |  | 							&& draw('Missing (critical)', error.missing) | 
					
						
							|  |  |  | 						// XXX loops...
 | 
					
						
							|  |  |  | 						// XXX conflicts...
 | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2017-12-29 02:33:22 +03:00
										 |  |  | 				}, { | 
					
						
							|  |  |  | 					cls: 'feature-list', | 
					
						
							| 
									
										
										
										
											2017-07-11 01:05:39 +03:00
										 |  |  | 				}) | 
					
						
							|  |  |  | 				.run(function(){ | 
					
						
							|  |  |  | 					// handle '?' button to browse path...
 | 
					
						
							|  |  |  | 					this.showDoc = function(){ | 
					
						
							|  |  |  | 						var feature = this.select('!').attr('feature') | 
					
						
							|  |  |  | 						feature  | 
					
						
							|  |  |  | 							&& that.showFeatureDoc(feature) | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					this.keyboard.handler('General', '?', 'showDoc') | 
					
						
							|  |  |  | 				}) | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | 		})], | 
					
						
							| 
									
										
										
										
											2016-11-08 17:30:40 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-02 16:42:28 +03:00
										 |  |  | 	// XXX is this the right way to go???
 | 
					
						
							|  |  |  | 	// XXX should this pe a separate feature???
 | 
					
						
							|  |  |  | 	about: ['Help/$About...', | 
					
						
							|  |  |  | 		{'dialogTitle': 'ImageGrid.Viewer'}, | 
					
						
							|  |  |  | 		makeUIDialog(function(path, options){ | 
					
						
							|  |  |  | 			return browse.makeList( | 
					
						
							|  |  |  | 				null, | 
					
						
							|  |  |  | 				[ | 
					
						
							|  |  |  | 					// XXX add  basic description (About)...
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-12 21:59:08 +03:00
										 |  |  | 					['Version:', this.version], | 
					
						
							| 
									
										
										
										
											2017-07-02 16:42:28 +03:00
										 |  |  | 					// XXX
 | 
					
						
							|  |  |  | 					['Build:', '-'], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					'---', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// XXX load the license file...
 | 
					
						
							|  |  |  | 					['License:', 'Pre Release'], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// XXX include other lib list and license info...
 | 
					
						
							|  |  |  | 					// XXX
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// XXX include nw credits.html...
 | 
					
						
							|  |  |  | 					// XXX
 | 
					
						
							|  |  |  | 				], { | 
					
						
							|  |  |  | 					cls: 'table-view' | 
					
						
							|  |  |  | 				}) | 
					
						
							|  |  |  | 		})], | 
					
						
							| 
									
										
										
										
											2017-07-08 00:08:33 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// XXX EXPERIMENTAL...
 | 
					
						
							|  |  |  | 	featureGraph: ['- Help/Generate feature graph (graphviz format)', | 
					
						
							| 
									
										
										
										
											2017-07-09 16:46:11 +03:00
										 |  |  | 		core.doc`Generate feature dependency graph in the graphviz format.`, | 
					
						
							| 
									
										
										
										
											2017-07-08 00:08:33 +03:00
										 |  |  | 		function(){ | 
					
						
							|  |  |  | 			return this.features.FeatureSet.gvGraph(this.features.features) }], | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-02 16:42:28 +03:00
										 |  |  | var UIIntrospection =  | 
					
						
							|  |  |  | module.UIIntrospection = core.ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-02 16:42:28 +03:00
										 |  |  | 	tag: 'ui-introspection', | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | 	depends: [ | 
					
						
							|  |  |  | 		'ui', | 
					
						
							| 
									
										
										
										
											2017-07-02 16:42:28 +03:00
										 |  |  | 		'ui-dialogs', | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | 	], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-02 16:42:28 +03:00
										 |  |  | 	actions: UIIntrospectionActions, | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-02 16:42:28 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | // NOTE: yes, this is a funny name ;)
 | 
					
						
							| 
									
										
										
										
											2016-05-15 03:19:38 +03:00
										 |  |  | //
 | 
					
						
							|  |  |  | // XXX should we also add a hide-path config feature???
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:44:07 +03:00
										 |  |  | var BrowseActionsActions = actions.Actions({ | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	config: { | 
					
						
							|  |  |  | 		'action-category-order': [ | 
					
						
							| 
									
										
										
										
											2017-01-28 01:09:05 +03:00
										 |  |  | 			'99:$File', | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 				// We can order any sub-tree we want in the same manner 
 | 
					
						
							|  |  |  | 				// as the root...
 | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 				'File/-80:Clear viewer', | 
					
						
							|  |  |  | 				'File/-90:Close viewer', | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 				// Non existing elements will not get drawn...
 | 
					
						
							| 
									
										
										
										
											2016-05-15 03:19:38 +03:00
										 |  |  | 				//'File/-99:moo',
 | 
					
						
							| 
									
										
										
										
											2017-09-06 07:20:31 +03:00
										 |  |  | 			'99:$Edit', | 
					
						
							| 
									
										
										
										
											2017-09-09 13:47:33 +03:00
										 |  |  | 				'Edit/Undo', | 
					
						
							|  |  |  | 				'Edit/Redo', | 
					
						
							| 
									
										
										
										
											2017-09-06 07:20:31 +03:00
										 |  |  | 			'$Navigate', | 
					
						
							|  |  |  | 			'$Image', | 
					
						
							| 
									
										
										
										
											2017-09-09 01:40:31 +03:00
										 |  |  | 				'Image/-70:---', | 
					
						
							|  |  |  | 				'Image/-70:.*remove.*', | 
					
						
							| 
									
										
										
										
											2017-09-06 07:20:31 +03:00
										 |  |  | 			'$Ribbon', | 
					
						
							| 
									
										
										
										
											2017-09-09 01:40:31 +03:00
										 |  |  | 				'Ribbon/-70:---', | 
					
						
							|  |  |  | 				'Ribbon/-70:.*remove.*', | 
					
						
							| 
									
										
										
										
											2017-09-06 07:20:31 +03:00
										 |  |  | 			'$Crop', | 
					
						
							| 
									
										
										
										
											2017-01-30 00:11:57 +03:00
										 |  |  | 				'Crop/80:Crop $marked images', | 
					
						
							|  |  |  | 				'Crop/80:Crop $bookmarked images', | 
					
						
							| 
									
										
										
										
											2017-08-23 20:11:42 +03:00
										 |  |  | 				'Crop/70:$Crop', | 
					
						
							|  |  |  | 				'Crop/70:$Flatten', | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				// Path patterns...
 | 
					
						
							|  |  |  | 				// 
 | 
					
						
							|  |  |  | 				// Patters must contain ".*" and are case-insensitive...
 | 
					
						
							|  |  |  | 				// 
 | 
					
						
							|  |  |  | 				// NOTE: patterns are used to override priorities of all
 | 
					
						
							|  |  |  | 				// 		the matching paths...
 | 
					
						
							| 
									
										
										
										
											2017-08-23 20:11:42 +03:00
										 |  |  | 				// NOTE: intersecting patterns are handled in order of 
 | 
					
						
							|  |  |  | 				// 		occurrence thus a more general pattern may 
 | 
					
						
							|  |  |  | 				// 		"shadow" all the compatible but less general 
 | 
					
						
							|  |  |  | 				// 		patterns after it...
 | 
					
						
							|  |  |  | 				// 		XXX this may get fixed in the future, but currently
 | 
					
						
							|  |  |  | 				// 			this is not a bug...
 | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 				'Crop/60:crop .*ribbon.*', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// The rest of the elements in the path will get added 
 | 
					
						
							|  |  |  | 				// between the positive and negative prioritized items...
 | 
					
						
							| 
									
										
										
										
											2016-12-29 23:23:05 +03:00
										 |  |  | 				// ...
 | 
					
						
							| 
									
										
										
										
											2017-08-23 19:57:27 +03:00
										 |  |  | 			 | 
					
						
							| 
									
										
										
										
											2017-09-06 07:20:31 +03:00
										 |  |  | 				/*/ We can also add separators here... | 
					
						
							| 
									
										
										
										
											2017-08-23 19:57:27 +03:00
										 |  |  | 				// NOTE: the separator is the only element in a level 
 | 
					
						
							|  |  |  | 				// 		that can be used multiple times.
 | 
					
						
							|  |  |  | 				// 		...any other elements with identical text will 
 | 
					
						
							|  |  |  | 				// 		get overwritten by the last occurrence...
 | 
					
						
							|  |  |  | 				'Crop/-50:---', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				'Crop/-60:.*collection.*', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				'Crop/-70:---', | 
					
						
							| 
									
										
										
										
											2017-09-06 07:20:31 +03:00
										 |  |  | 				//*/
 | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-08 22:29:45 +03:00
										 |  |  | 				'Crop/-70:---', | 
					
						
							|  |  |  | 				'Crop/-70:.*remove.*', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-29 23:23:05 +03:00
										 |  |  | 				'Crop/-80:Uncrop and keep crop image order', | 
					
						
							|  |  |  | 				'Crop/-81:Uncrop all', | 
					
						
							| 
									
										
										
										
											2017-01-30 00:11:57 +03:00
										 |  |  | 				'Crop/-82:$Uncrop', | 
					
						
							| 
									
										
										
										
											2017-09-06 07:20:31 +03:00
										 |  |  | 			'Collec$tions', | 
					
						
							| 
									
										
										
										
											2017-12-25 05:00:46 +03:00
										 |  |  | 				'Collections/-50:.*exit.*', | 
					
						
							| 
									
										
										
										
											2017-12-12 17:50:11 +03:00
										 |  |  | 				'Collections/-60:.*edit.*', | 
					
						
							| 
									
										
										
										
											2017-09-09 01:22:30 +03:00
										 |  |  | 				'Collections/-70:---', | 
					
						
							| 
									
										
										
										
											2017-09-09 01:40:31 +03:00
										 |  |  | 				'Collections/-70:.*remove.*', | 
					
						
							| 
									
										
										
										
											2017-04-23 16:11:23 +03:00
										 |  |  | 			'$Mark', | 
					
						
							| 
									
										
										
										
											2017-12-23 01:08:49 +03:00
										 |  |  | 				'Mark/-75:.*collection...', | 
					
						
							| 
									
										
										
										
											2017-09-09 13:47:33 +03:00
										 |  |  | 				'Mark/-80:---', | 
					
						
							|  |  |  | 				'Mark/-80:.*remove.*', | 
					
						
							|  |  |  | 				'Mark/-90:.*unmark.*', | 
					
						
							| 
									
										
										
										
											2017-04-23 16:11:23 +03:00
										 |  |  | 			'$Bookmark', | 
					
						
							| 
									
										
										
										
											2017-09-09 13:47:33 +03:00
										 |  |  | 				'Bookmark/-80:---', | 
					
						
							|  |  |  | 				'Bookmark/-80:.*remove.*', | 
					
						
							| 
									
										
										
										
											2017-04-23 16:11:23 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-30 05:01:50 +03:00
										 |  |  | 			// ...
 | 
					
						
							| 
									
										
										
										
											2017-04-23 16:11:23 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-11 22:32:16 +03:00
										 |  |  | 			'-40:Interface', | 
					
						
							| 
									
										
										
										
											2017-01-28 01:09:05 +03:00
										 |  |  | 			'-50:$Workspace', | 
					
						
							| 
									
										
										
										
											2017-01-11 22:32:16 +03:00
										 |  |  | 			'-60:System', | 
					
						
							| 
									
										
										
										
											2017-01-28 01:09:05 +03:00
										 |  |  | 			'-70:$Help', | 
					
						
							| 
									
										
										
										
											2016-12-30 04:24:38 +03:00
										 |  |  | 			'-80:---', | 
					
						
							|  |  |  | 			'-90:Development', | 
					
						
							| 
									
										
										
										
											2016-05-14 03:59:06 +03:00
										 |  |  | 			'-90:Test', | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 		], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		'browse-actions-settings': { | 
					
						
							| 
									
										
										
										
											2016-12-30 03:21:09 +03:00
										 |  |  | 			showDisabled: true, | 
					
						
							|  |  |  | 			showHidden: false, | 
					
						
							| 
									
										
										
										
											2016-05-14 03:59:06 +03:00
										 |  |  | 			showEmpty: false, | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2017-01-03 02:55:25 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-25 17:10:40 +03:00
										 |  |  | 		'browse-actions-keys': 'on', | 
					
						
							| 
									
										
										
										
											2017-01-28 01:09:05 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		'browse-actions-shortcut-marker': '\\$(\\w)', | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-21 20:29:17 +03:00
										 |  |  | 	// Hide .alias(..) action from the browser...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// NOTE: we need to do this as .alias(..) is defined in actions and
 | 
					
						
							|  |  |  | 	// 		has no concept of the naming protocols used in ImageGrid.Viewer
 | 
					
						
							| 
									
										
										
										
											2017-08-10 03:28:10 +03:00
										 |  |  | 	alias: ['- System/', ''], | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 01:46:43 +03:00
										 |  |  | 	// Browse actions dialog...
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	// This uses action definition to build and present an action tree.
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2017-08-25 23:15:07 +03:00
										 |  |  | 	// This supports the following element (action doc) syntax:
 | 
					
						
							|  |  |  | 	// 	- '/' separated action path (action short doc) to indicate the
 | 
					
						
							|  |  |  | 	// 	  path to action.
 | 
					
						
							| 
									
										
										
										
											2016-05-14 01:46:43 +03:00
										 |  |  | 	//
 | 
					
						
							|  |  |  | 	// 	- leading path element number followed by colon to indicate 
 | 
					
						
							|  |  |  | 	// 	  element priority on level.
 | 
					
						
							|  |  |  | 	// 		Example:
 | 
					
						
							|  |  |  | 	// 			'Path/99: To/50:Element'
 | 
					
						
							|  |  |  | 	// 	  NOTE: multiple path elements may have multiple priorities.
 | 
					
						
							|  |  |  | 	// 	  NOTE: an item with positive priority will be above and item 
 | 
					
						
							|  |  |  | 	// 	  		with less or no priority.
 | 
					
						
							|  |  |  | 	// 	  NOTE: an item with negative priority will be below any item 
 | 
					
						
							|  |  |  | 	// 	  		with greater or no priority.
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2017-08-25 23:15:07 +03:00
										 |  |  | 	// 	- leading '-' in path to indicate a hidden/disabled element.
 | 
					
						
							|  |  |  | 	// 		Example: 
 | 
					
						
							|  |  |  | 	// 			'- Path/To/Element'			(disabled/hidden)
 | 
					
						
							|  |  |  | 	// 			'- 99:Path/To/Element'		(disabled/hidden)
 | 
					
						
							|  |  |  | 	// 			'Path/To/Other element'		(enabled)
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2016-05-14 01:46:43 +03:00
										 |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2016-12-30 03:21:09 +03:00
										 |  |  | 	// Action mode (disabled/hidden) and also be controlled dynamically:
 | 
					
						
							|  |  |  | 	// 	- .browseMode() action method is called with actions as base.
 | 
					
						
							| 
									
										
										
										
											2016-12-29 23:23:05 +03:00
										 |  |  | 	//		Example:
 | 
					
						
							|  |  |  | 	//			someAction: ['Path/To/Some action',
 | 
					
						
							| 
									
										
										
										
											2016-12-30 03:21:09 +03:00
										 |  |  | 	//				{browseMode: function(){ ... }},
 | 
					
						
							| 
									
										
										
										
											2016-12-29 23:23:05 +03:00
										 |  |  | 	//				function(){
 | 
					
						
							|  |  |  | 	//					...
 | 
					
						
							|  |  |  | 	//				}],
 | 
					
						
							| 
									
										
										
										
											2016-12-31 23:30:14 +03:00
										 |  |  | 	//			someOtherAction: ['Path/To/Some action',
 | 
					
						
							|  |  |  | 	//				// alias
 | 
					
						
							|  |  |  | 	//				{browseMode: 'someAction'},
 | 
					
						
							|  |  |  | 	//				function(){
 | 
					
						
							|  |  |  | 	//					...
 | 
					
						
							|  |  |  | 	//				}],
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	//		.browseMode can be:
 | 
					
						
							|  |  |  | 	//			<function>			- action method.
 | 
					
						
							|  |  |  | 	//			<action-name>		- alias, name of action to get the
 | 
					
						
							|  |  |  | 	//									method from.
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2016-12-30 03:21:09 +03:00
										 |  |  | 	//		.browseMode() can return:
 | 
					
						
							|  |  |  | 	//			'disabled'		- item will be disabled.
 | 
					
						
							|  |  |  | 	//			'hidden'		- item will be both hidden and disabled.
 | 
					
						
							| 
									
										
										
										
											2016-12-29 23:23:05 +03:00
										 |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2016-12-30 03:21:09 +03:00
										 |  |  | 	//		NOTE: disabling in path has priority over .browseMode(), thus
 | 
					
						
							|  |  |  | 	//			it is possible to hide/disable an enabled item but not
 | 
					
						
							|  |  |  | 	//			possible to enable a disabled by default path.
 | 
					
						
							|  |  |  | 	//		NOTE: .browseMode() can be defined in any action in chain,
 | 
					
						
							|  |  |  | 	//			though only the last one is called...
 | 
					
						
							| 
									
										
										
										
											2016-12-29 23:23:05 +03:00
										 |  |  | 	//
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2017-01-22 01:39:46 +03:00
										 |  |  | 	// options format:
 | 
					
						
							|  |  |  | 	// 	{
 | 
					
						
							|  |  |  | 	// 		callback: <function>,
 | 
					
						
							|  |  |  | 	// 		no_disabled: false,
 | 
					
						
							|  |  |  | 	// 		no_hidden: false,
 | 
					
						
							|  |  |  | 	// 	}
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							|  |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2016-05-14 01:46:43 +03:00
										 |  |  | 	// NOTE: if the action returns an instance of overlay.Overlay this
 | 
					
						
							|  |  |  | 	// 		will not close right away but rather bind to:
 | 
					
						
							|  |  |  | 	// 			overlay.close			-> self.focus()
 | 
					
						
							|  |  |  | 	// 			overlay.client.open		-> self.close()
 | 
					
						
							|  |  |  | 	// NOTE: we are not using the browse.PathList(..) here as we need 
 | 
					
						
							|  |  |  | 	// 		custom controls and special path handling...
 | 
					
						
							| 
									
										
										
										
											2016-05-14 03:59:06 +03:00
										 |  |  | 	// NOTE: this will keep the first instance title it encounters, this
 | 
					
						
							|  |  |  | 	// 		if a later instance includes a priority, it will be ignored.
 | 
					
						
							|  |  |  | 	// 		This may happen if several actions are in the same path and
 | 
					
						
							|  |  |  | 	// 		each one set a different priority in that path...
 | 
					
						
							|  |  |  | 	// 		...to avoid this use .config['action-category-order'] to set
 | 
					
						
							|  |  |  | 	// 		base order/priorities...
 | 
					
						
							| 
									
										
										
										
											2016-05-14 01:46:43 +03:00
										 |  |  | 	//
 | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 	// XXX can we do a deep search on '/' -- find any nested action???
 | 
					
						
							| 
									
										
										
										
											2017-09-15 05:31:32 +03:00
										 |  |  | 	// XXX can this also do a flat mode???
 | 
					
						
							|  |  |  | 	// 		...this would help with the (global) search -- switch to 
 | 
					
						
							|  |  |  | 	// 		flat if searching in root mode...
 | 
					
						
							| 
									
										
										
										
											2018-03-09 17:51:27 +03:00
										 |  |  | 	browseActions: ['Interface|System/Dialog/Actions...', | 
					
						
							| 
									
										
										
										
											2017-01-22 01:39:46 +03:00
										 |  |  | 		makeUIDialog(function(path, options){ | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 			var actions = this | 
					
						
							| 
									
										
										
										
											2018-03-09 17:51:27 +03:00
										 |  |  | 			options = options || {} | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			var PRIORITY = /^(-?[0-9]+)\s*:\s*/ | 
					
						
							|  |  |  | 			var MARKER = RegExp(this.config['browse-actions-shortcut-marker'], 'g') | 
					
						
							|  |  |  | 			MARKER = MARKER || RegExp(MARKER, 'g') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-04 19:05:19 +03:00
										 |  |  | 			// prepare the config...
 | 
					
						
							|  |  |  | 			var cfg = { | 
					
						
							|  |  |  | 				cls: 'browse-actions', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				path: path, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				flat: false, | 
					
						
							|  |  |  | 				traversable: true, | 
					
						
							|  |  |  | 				pathPrefix: '/', | 
					
						
							|  |  |  | 				fullPathEdit: true, | 
					
						
							| 
									
										
										
										
											2017-01-28 01:09:05 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 				item_shortcut_marker: MARKER, | 
					
						
							| 
									
										
										
										
											2017-01-04 19:05:19 +03:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			cfg.__proto__ = this.config['browse-actions-settings'] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-03 02:55:25 +03:00
										 |  |  | 			// get keys for each action...
 | 
					
						
							| 
									
										
										
										
											2017-01-05 03:06:06 +03:00
										 |  |  | 			var keys = this.getKeysForAction ? this.getKeysForAction() : {} | 
					
						
							| 
									
										
										
										
											2017-01-03 02:55:25 +03:00
										 |  |  | 			// Get keys for action...
 | 
					
						
							|  |  |  | 			var getKeys = function(action){ | 
					
						
							| 
									
										
										
										
											2017-01-05 03:06:06 +03:00
										 |  |  | 				return (keys[action] || []).join(' / ') } | 
					
						
							| 
									
										
										
										
											2017-01-03 02:55:25 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 			// Get item from tree level taking into account additional 
 | 
					
						
							|  |  |  | 			// syntax like prioority...
 | 
					
						
							| 
									
										
										
										
											2016-05-14 03:59:06 +03:00
										 |  |  | 			// returns:
 | 
					
						
							|  |  |  | 			// 	[<existing-text>, <new-level>]
 | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 			//
 | 
					
						
							|  |  |  | 			// XXX this may mess up the ordering of items when using 
 | 
					
						
							|  |  |  | 			// 		item patterns...
 | 
					
						
							| 
									
										
										
										
											2016-05-14 03:59:06 +03:00
										 |  |  | 			var getItem = function(level, text){ | 
					
						
							|  |  |  | 				// direct match...
 | 
					
						
							|  |  |  | 				if(text in level){ | 
					
						
							|  |  |  | 					return [text, level[text]] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 				// check if it's a priority path or a pattern... 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 03:59:06 +03:00
										 |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 					var t = text.replace(PRIORITY, '') | 
					
						
							|  |  |  | 					t = (MARKER ? t.replace(MARKER, '$1') : t).trim() | 
					
						
							| 
									
										
										
										
											2017-02-09 16:44:09 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 03:59:06 +03:00
										 |  |  | 					for(var e in level){ | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 						var n = e.replace(PRIORITY, '') | 
					
						
							|  |  |  | 						n = (MARKER ? n.replace(MARKER, '$1') : n).trim() | 
					
						
							| 
									
										
										
										
											2017-01-28 01:09:05 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-09 16:44:09 +03:00
										 |  |  | 						if(n == t){ | 
					
						
							| 
									
										
										
										
											2016-05-14 03:59:06 +03:00
										 |  |  | 							return [e, level[e]] | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 						// check pattern...
 | 
					
						
							|  |  |  | 						var p = /\.\*/.test(n) ? new RegExp('^'+ n +'$', 'i') : null | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						if(p && p.test(t)){ | 
					
						
							|  |  |  | 							// override item priority from pattern...
 | 
					
						
							|  |  |  | 							var pr = PRIORITY.exec(e) | 
					
						
							|  |  |  | 							pr = pr ? pr.pop() + ':' : '' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							return [pr + text.replace(PRIORITY, ''), level[e]] | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2016-05-14 03:59:06 +03:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				return [] | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-03 02:55:25 +03:00
										 |  |  | 			// Get action browse mode (disabled or hidden)...
 | 
					
						
							| 
									
										
										
										
											2016-12-31 23:30:14 +03:00
										 |  |  | 			var getMode = function(action){ | 
					
						
							|  |  |  | 				var m = action | 
					
						
							|  |  |  | 				var visited = [m] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// handle aliases...
 | 
					
						
							|  |  |  | 				do { | 
					
						
							| 
									
										
										
										
											2017-01-03 02:55:25 +03:00
										 |  |  | 					m = actions.getActionAttr(m, 'browseMode') | 
					
						
							| 
									
										
										
										
											2016-12-31 23:30:14 +03:00
										 |  |  | 					// check for loops...
 | 
					
						
							|  |  |  | 					if(m && visited[m] != null){ | 
					
						
							|  |  |  | 						m = null | 
					
						
							|  |  |  | 						break | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					visited.push(m) | 
					
						
							|  |  |  | 				} while(typeof(m) == typeof('str')) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				return m ? m.call(actions) : undefined | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 			// Wait for dialog...
 | 
					
						
							| 
									
										
										
										
											2018-03-09 17:51:27 +03:00
										 |  |  | 			var waitFor = function(dialog, child){ | 
					
						
							| 
									
										
										
										
											2016-05-14 01:46:43 +03:00
										 |  |  | 				// we got a widget, wait for it to close...
 | 
					
						
							| 
									
										
										
										
											2016-05-14 03:59:06 +03:00
										 |  |  | 				if(child instanceof widget.Widget){ | 
					
						
							| 
									
										
										
										
											2016-05-14 01:46:43 +03:00
										 |  |  | 					child | 
					
						
							| 
									
										
										
										
											2017-01-24 00:14:31 +03:00
										 |  |  | 						.on('close', function(evt, reason){  | 
					
						
							|  |  |  | 							reason != 'reject' | 
					
						
							| 
									
										
										
										
											2017-01-24 04:07:13 +03:00
										 |  |  | 								&& dialog.close(reason) }) | 
					
						
							| 
									
										
										
										
											2016-05-14 03:59:06 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				// if it's not a dialog, don't wait...
 | 
					
						
							|  |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2017-01-22 01:39:46 +03:00
										 |  |  | 					dialog.close() | 
					
						
							| 
									
										
										
										
											2016-05-14 01:46:43 +03:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2016-05-14 03:59:06 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 01:46:43 +03:00
										 |  |  | 				return child | 
					
						
							| 
									
										
										
										
											2018-03-09 17:51:27 +03:00
										 |  |  | 			}.bind(this) | 
					
						
							| 
									
										
										
										
											2016-05-14 01:46:43 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 			// Tree builder...
 | 
					
						
							| 
									
										
										
										
											2017-01-11 00:41:35 +03:00
										 |  |  | 			// XXX normalize actions -- whitespace, '!', args...
 | 
					
						
							| 
									
										
										
										
											2016-12-30 03:21:09 +03:00
										 |  |  | 			var buildTree = function(path, leaf, action, mode, tree){ | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 				path = path.slice() | 
					
						
							|  |  |  | 				// build leaf...
 | 
					
						
							|  |  |  | 				if(path.length == 0){ | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 					// handle "|" in leavs...
 | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 					leaf.split(/\|/g) | 
					
						
							|  |  |  | 						.forEach(function(leaf){ | 
					
						
							|  |  |  | 							var l = getItem(tree, leaf)[0] | 
					
						
							| 
									
										
										
										
											2016-12-30 03:21:09 +03:00
										 |  |  | 							tree[l || leaf] = action != null ? [action, mode] : action | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 						}) | 
					
						
							|  |  |  | 					return | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				// build alternative paths...
 | 
					
						
							|  |  |  | 				var p = path.shift() || '' | 
					
						
							|  |  |  | 				p.split(/\|/g) | 
					
						
							|  |  |  | 					.forEach(function(e){ | 
					
						
							|  |  |  | 						// build branch element...
 | 
					
						
							|  |  |  | 						var branch = getItem(tree, e) | 
					
						
							|  |  |  | 						branch = tree[branch[0] || e] = branch[1] || {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 						// build sub-branch...
 | 
					
						
							| 
									
										
										
										
											2016-12-30 03:21:09 +03:00
										 |  |  | 						buildTree(path, leaf, action, mode, branch) | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 					}) | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			// Action tree...
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			// Format:
 | 
					
						
							|  |  |  | 			// 	{
 | 
					
						
							|  |  |  | 			// 		<name>: <tree>,
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			// 		<name>: [
 | 
					
						
							|  |  |  | 			// 			<action-name>,
 | 
					
						
							| 
									
										
										
										
											2016-12-30 03:21:09 +03:00
										 |  |  | 			// 			// mode...
 | 
					
						
							|  |  |  | 			// 			'disabled' | 'hidden',
 | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 			// 		],
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			// 		...
 | 
					
						
							|  |  |  | 			// 	}
 | 
					
						
							|  |  |  | 			//
 | 
					
						
							|  |  |  | 			// NOTE: this is created once per call, so to refresh the 
 | 
					
						
							|  |  |  | 			// 		actions tree we'll need to re-open the dialog...
 | 
					
						
							|  |  |  | 			var tree = {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// pre-order the main categories...
 | 
					
						
							|  |  |  | 			// NOTE: pre_order can be a list of long paths...
 | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 			var s = '' | 
					
						
							|  |  |  | 			var pre_order = (this.config['action-category-order'] || []) | 
					
						
							|  |  |  | 				.map(function(p, i){ | 
					
						
							|  |  |  | 					// make all separators unique...
 | 
					
						
							|  |  |  | 					// ...this will prevent us from losing or merging them.
 | 
					
						
							|  |  |  | 					if(p.trimRight().endsWith('---')){ | 
					
						
							|  |  |  | 						s += '-' | 
					
						
							|  |  |  | 						p = p.trimRight() + s | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					return p | 
					
						
							|  |  |  | 				}) | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 			pre_order.forEach(function(key){ | 
					
						
							|  |  |  | 				var path = key.split(/[\\\/]/g) | 
					
						
							|  |  |  | 				var leaf = path.pop() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				buildTree(path, leaf, null, null, tree) | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 			}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-29 23:23:05 +03:00
										 |  |  | 			// build the tree...
 | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 			var paths = this.getPath() | 
					
						
							|  |  |  | 			Object.keys(paths).forEach(function(key){ | 
					
						
							| 
									
										
										
										
											2016-12-30 03:21:09 +03:00
										 |  |  | 				// handle mode flag...
 | 
					
						
							| 
									
										
										
										
											2016-12-29 23:23:05 +03:00
										 |  |  | 				var action = paths[key][0] | 
					
						
							| 
									
										
										
										
											2017-08-16 05:41:49 +03:00
										 |  |  | 				var mode = key.split(/^-\s*/) | 
					
						
							| 
									
										
										
										
											2016-12-30 03:21:09 +03:00
										 |  |  | 				var path = mode.pop() | 
					
						
							|  |  |  | 				mode = mode.length > 0 ? 'hidden' : null | 
					
						
							| 
									
										
										
										
											2016-12-29 23:23:05 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 				path = path.split(/[\\\/]/g) | 
					
						
							|  |  |  | 				var leaf = path.pop() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-30 03:21:09 +03:00
										 |  |  | 				buildTree(path, leaf, action, mode, tree) | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 			}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 03:59:06 +03:00
										 |  |  | 			//console.log('!!!!', tree)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 01:46:43 +03:00
										 |  |  | 			// now for the dialog...
 | 
					
						
							| 
									
										
										
										
											2018-03-09 17:51:27 +03:00
										 |  |  | 			return browse.makeLister(null, function(path, make){ | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 				var that = this | 
					
						
							|  |  |  | 				var cur = tree | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// get level...
 | 
					
						
							|  |  |  | 				// NOTE: we need to get the level till first '*'...
 | 
					
						
							| 
									
										
										
										
											2016-05-14 01:46:43 +03:00
										 |  |  | 				// NOTE: this needs to account for leading priority of 
 | 
					
						
							|  |  |  | 				// 		an element...
 | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 				var rest = path.slice() | 
					
						
							|  |  |  | 				while(rest.length > 0 && !('*' in cur)){ | 
					
						
							| 
									
										
										
										
											2016-05-14 03:59:06 +03:00
										 |  |  | 					cur = getItem(cur, rest.shift()).pop() || {} | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 				// render current level...
 | 
					
						
							|  |  |  | 				// NOTE: we can be at one of several level types, each 
 | 
					
						
							|  |  |  | 				// 		is rendered in a different way...
 | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 				// Level: toggler states -- get states and list them...
 | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 				if(cur instanceof Array  | 
					
						
							|  |  |  | 						&& actions.isToggler && actions.isToggler(cur[0])){ | 
					
						
							|  |  |  | 					var action = cur[0] | 
					
						
							| 
									
										
										
										
											2016-12-30 03:21:09 +03:00
										 |  |  | 					var mode = cur[1] | 
					
						
							| 
									
										
										
										
											2016-12-29 23:23:05 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-30 03:21:09 +03:00
										 |  |  | 					// handle live modes...
 | 
					
						
							| 
									
										
										
										
											2016-12-31 23:30:14 +03:00
										 |  |  | 					mode = mode || getMode(action) | 
					
						
							| 
									
										
										
										
											2016-12-29 23:23:05 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 					var cur_state = actions[action]('?') | 
					
						
							|  |  |  | 					var states = actions[action]('??') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 					// handle on/off togglers...
 | 
					
						
							| 
									
										
										
										
											2016-05-14 01:46:43 +03:00
										 |  |  | 					// XXX should the toggler directly return 'on'/'off'???
 | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 					if(states.length == 2  | 
					
						
							|  |  |  | 							&& states.indexOf('none') >= 0  | 
					
						
							|  |  |  | 							&& (cur_state == 'on' || cur_state == 'off')){ | 
					
						
							|  |  |  | 						states = ['on', 'off'] | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-22 01:39:46 +03:00
										 |  |  | 					// build toggler states...
 | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 					states.forEach(function(state){ | 
					
						
							| 
									
										
										
										
											2016-12-30 03:21:09 +03:00
										 |  |  | 						make(state, {  | 
					
						
							| 
									
										
										
										
											2017-11-13 23:38:16 +03:00
										 |  |  | 							// NOTE: if something is hidden 
 | 
					
						
							|  |  |  | 							// 		it is also disabled...
 | 
					
						
							|  |  |  | 							// 		...this is by design.
 | 
					
						
							|  |  |  | 							disabled: options.no_disabled ?  | 
					
						
							|  |  |  | 								false  | 
					
						
							|  |  |  | 								: (mode == 'hidden' || mode == 'disabled'), | 
					
						
							|  |  |  | 							hidden: options.no_hidden ?  | 
					
						
							|  |  |  | 								false | 
					
						
							|  |  |  | 								: mode == 'hidden', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							cls: [ | 
					
						
							|  |  |  | 								state == cur_state ? 'selected highlighted' : '', | 
					
						
							|  |  |  | 								mode == 'hidden' ? mode : '' | 
					
						
							|  |  |  | 							].join(' '), | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							attrs: { | 
					
						
							|  |  |  | 								// XXX need to normalize state -- comments, whitespace, etc...
 | 
					
						
							|  |  |  | 								keys: getKeys(action +': "'+ state +'"'), | 
					
						
							|  |  |  | 							}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 							events: { | 
					
						
							|  |  |  | 								open: function(){ | 
					
						
							|  |  |  | 									options.callback ? | 
					
						
							|  |  |  | 										options.callback.call(actions, action) | 
					
						
							|  |  |  | 										: actions[action](state) | 
					
						
							|  |  |  | 									that.pop() | 
					
						
							|  |  |  | 								}, | 
					
						
							|  |  |  | 							}, | 
					
						
							|  |  |  | 						}) | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 					}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 				// Level: lister -- hand control to lister...
 | 
					
						
							|  |  |  | 				// NOTE: path might be a partial path, the rest of it is
 | 
					
						
							|  |  |  | 				// 		handled by the lister...
 | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 				} else if('*' in cur){ | 
					
						
							|  |  |  | 					actions[cur['*'][0]](path, make) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 				// Level: normal -- list actions...
 | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 				} else { | 
					
						
							|  |  |  | 					var level = Object.keys(cur) | 
					
						
							|  |  |  | 					level | 
					
						
							|  |  |  | 						.slice() | 
					
						
							| 
									
										
										
										
											2016-05-14 01:46:43 +03:00
										 |  |  | 						// sort according to item priority: 'NN: <text>'
 | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 						//	NN > 0		- is sorted above the non-prioritized
 | 
					
						
							|  |  |  | 						//					elements, the greater the number 
 | 
					
						
							|  |  |  | 						//					the higher the element
 | 
					
						
							|  |  |  | 						//	NN < 0		- is sorted below the non-prioritized
 | 
					
						
							|  |  |  | 						//					elements, the lower the number 
 | 
					
						
							|  |  |  | 						//					the lower the element
 | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 						// other		- keep order
 | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 						.sort(function(a, b){ | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 							var ai = PRIORITY.exec(a) | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 							ai = ai ? ai.pop()*1 : null | 
					
						
							|  |  |  | 							ai = ai > 0 ? -ai | 
					
						
							|  |  |  | 								: ai < 0 ? -ai + level.length | 
					
						
							| 
									
										
										
										
											2017-08-25 01:29:15 +03:00
										 |  |  | 								: 0 | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 							var bi = PRIORITY.exec(b) | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 							bi = bi ? bi.pop()*1 : null | 
					
						
							|  |  |  | 							bi = bi > 0 ? -bi | 
					
						
							|  |  |  | 								: bi < 0 ? -bi + level.length | 
					
						
							| 
									
										
										
										
											2017-08-25 01:29:15 +03:00
										 |  |  | 								: 0 | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-25 01:29:15 +03:00
										 |  |  | 							return ai == bi ?  | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 								level.indexOf(a) - level.indexOf(b)  | 
					
						
							| 
									
										
										
										
											2017-08-25 01:29:15 +03:00
										 |  |  | 								: ai - bi | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 						}) | 
					
						
							|  |  |  | 						.forEach(function(key){ | 
					
						
							|  |  |  | 							// remove the order...
 | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 							var text = key.replace(PRIORITY, '').trim() | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 							// Item: action...
 | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 							if(cur[key] instanceof Array){ | 
					
						
							|  |  |  | 								var action = cur[key][0] | 
					
						
							| 
									
										
										
										
											2016-12-30 03:21:09 +03:00
										 |  |  | 								var mode = cur[key][1] | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-30 03:21:09 +03:00
										 |  |  | 								// handle live modes...
 | 
					
						
							| 
									
										
										
										
											2016-12-31 23:30:14 +03:00
										 |  |  | 								mode = mode || getMode(action) | 
					
						
							| 
									
										
										
										
											2016-12-29 23:23:05 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 								// Action: toggler -> add toggle button...
 | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 								if(actions.isToggler && actions.isToggler(action)){ | 
					
						
							|  |  |  | 									make(text + '/', {  | 
					
						
							| 
									
										
										
										
											2017-11-13 23:38:16 +03:00
										 |  |  | 										cls: mode == 'hidden' ? mode : '', | 
					
						
							| 
									
										
										
										
											2016-12-30 03:21:09 +03:00
										 |  |  | 										// NOTE: if something is hidden 
 | 
					
						
							|  |  |  | 										// 		it is also disabled...
 | 
					
						
							|  |  |  | 										// 		...this is by design.
 | 
					
						
							| 
									
										
										
										
											2017-01-22 01:39:46 +03:00
										 |  |  | 										disabled: options.no_disabled ?  | 
					
						
							|  |  |  | 											false  | 
					
						
							|  |  |  | 											: (mode == 'hidden' || mode == 'disabled'), | 
					
						
							|  |  |  | 										hidden: options.no_hidden ?  | 
					
						
							|  |  |  | 											false | 
					
						
							|  |  |  | 											: mode == 'hidden', | 
					
						
							| 
									
										
										
										
											2017-11-13 23:38:16 +03:00
										 |  |  | 										attrs: { | 
					
						
							|  |  |  | 											keys: getKeys(action), | 
					
						
							|  |  |  | 											action: action, | 
					
						
							|  |  |  | 										}, | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 										buttons: [ | 
					
						
							|  |  |  | 											[actions[action]('?'),  | 
					
						
							|  |  |  | 												function(){ | 
					
						
							|  |  |  | 													actions[action]() | 
					
						
							|  |  |  | 													that.update() | 
					
						
							|  |  |  | 													that.select('"'+ text +'"') | 
					
						
							| 
									
										
										
										
											2017-01-03 02:55:25 +03:00
										 |  |  | 												}], | 
					
						
							|  |  |  | 											//[getKeys(action)],
 | 
					
						
							| 
									
										
										
										
											2017-11-13 23:38:16 +03:00
										 |  |  | 										], | 
					
						
							|  |  |  | 										open: function(){ | 
					
						
							| 
									
										
										
										
											2017-01-22 01:39:46 +03:00
										 |  |  | 											options.callback ? | 
					
						
							|  |  |  | 												options.callback.call(actions, action) | 
					
						
							|  |  |  | 												: actions[action]() | 
					
						
							| 
									
										
										
										
											2016-05-14 01:46:43 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 											that.update() | 
					
						
							|  |  |  | 											that.select('"'+ text +'"') | 
					
						
							| 
									
										
										
										
											2017-11-13 23:38:16 +03:00
										 |  |  | 										}, | 
					
						
							|  |  |  | 									}) | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 								// Action: normal...
 | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 								} else { | 
					
						
							| 
									
										
										
										
											2016-12-30 03:21:09 +03:00
										 |  |  | 									make(text, { | 
					
						
							|  |  |  | 											// NOTE: if something is hidden 
 | 
					
						
							|  |  |  | 											// 		it is also disabled...
 | 
					
						
							|  |  |  | 											// 		...this is by design.
 | 
					
						
							| 
									
										
										
										
											2017-01-22 01:39:46 +03:00
										 |  |  | 											disabled: options.no_disabled ?  | 
					
						
							|  |  |  | 												false  | 
					
						
							|  |  |  | 												: (mode == 'hidden' || mode == 'disabled'), | 
					
						
							|  |  |  | 									   		hidden: options.no_hidden ?  | 
					
						
							|  |  |  | 												false | 
					
						
							|  |  |  | 												: mode == 'hidden', | 
					
						
							| 
									
										
										
										
											2017-11-13 23:38:16 +03:00
										 |  |  | 											attrs: { | 
					
						
							|  |  |  | 												keys: getKeys(action), | 
					
						
							|  |  |  | 												action: action, | 
					
						
							|  |  |  | 											}, | 
					
						
							|  |  |  | 											open: function(){ | 
					
						
							|  |  |  | 												options.callback ? | 
					
						
							|  |  |  | 													options.callback.call(actions, action) | 
					
						
							| 
									
										
										
										
											2018-03-09 17:51:27 +03:00
										 |  |  | 													: waitFor(make.dialog, actions[action]()) | 
					
						
							| 
									
										
										
										
											2017-11-13 23:38:16 +03:00
										 |  |  | 											}, | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 										}) | 
					
						
							|  |  |  | 								} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-14 22:50:26 +03:00
										 |  |  | 							// Item: dir...
 | 
					
						
							| 
									
										
										
										
											2016-05-14 03:59:06 +03:00
										 |  |  | 							} else if(actions.config['browse-actions-settings'].showEmpty  | 
					
						
							|  |  |  | 									|| (cur[key] != null | 
					
						
							|  |  |  | 										&& Object.keys(cur[key]).length > 0)){ | 
					
						
							| 
									
										
										
										
											2017-01-28 01:09:05 +03:00
										 |  |  | 								var p = '/'+ path.concat([text]).join('/') +'/' | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 								p = MARKER ? p.replace(MARKER, '$1') : p | 
					
						
							| 
									
										
										
										
											2017-11-13 23:38:16 +03:00
										 |  |  | 								make(text + '/', {  | 
					
						
							|  |  |  | 									push_on_open: true, | 
					
						
							|  |  |  | 									attrs: { | 
					
						
							| 
									
										
										
										
											2017-01-28 01:09:05 +03:00
										 |  |  | 										keys: [ | 
					
						
							|  |  |  | 											getKeys('browseActions: "'+ p +'"'),  | 
					
						
							|  |  |  | 											getKeys('browseActions!: "'+ p +'"'),  | 
					
						
							|  |  |  | 										].filter(function(e){ return e.trim() != '' }).join(' / '), | 
					
						
							| 
									
										
										
										
											2017-11-13 23:38:16 +03:00
										 |  |  | 									}, | 
					
						
							|  |  |  | 								}) | 
					
						
							| 
									
										
										
										
											2016-12-30 04:24:38 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 							// item: line...
 | 
					
						
							| 
									
										
										
										
											2017-08-23 19:52:17 +03:00
										 |  |  | 							} else if(/---+/.test(text)){ | 
					
						
							|  |  |  | 								make('---') | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 							} | 
					
						
							|  |  |  | 						}) | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2017-01-04 19:05:19 +03:00
										 |  |  | 			}, | 
					
						
							|  |  |  | 			 cfg) | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 			// save show disabled state to .config...
 | 
					
						
							|  |  |  | 			.on('close', function(){ | 
					
						
							|  |  |  | 				var config = actions.config['browse-actions-settings']  | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-09 17:51:27 +03:00
										 |  |  | 				config.showDisabled = this.options.showDisabled | 
					
						
							|  |  |  | 				config.showHidden = this.options.showHidden | 
					
						
							| 
									
										
										
										
											2016-05-13 23:44:09 +03:00
										 |  |  | 			}) | 
					
						
							| 
									
										
										
										
											2017-07-11 01:05:39 +03:00
										 |  |  | 			.run(function(){ | 
					
						
							|  |  |  | 				actions.config['browse-actions-keys']  | 
					
						
							|  |  |  | 					&& this.dom.addClass('show-keys') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// handle '?' button to browse path...
 | 
					
						
							| 
									
										
										
										
											2017-09-09 19:04:34 +03:00
										 |  |  | 				var showDoc = this.showDoc = function(){ | 
					
						
							| 
									
										
										
										
											2017-07-11 01:05:39 +03:00
										 |  |  | 					var action = this.select('!').attr('action') | 
					
						
							|  |  |  | 					action  | 
					
						
							| 
									
										
										
										
											2017-07-23 16:38:03 +03:00
										 |  |  | 						&& actions.showDoc(action) | 
					
						
							| 
									
										
										
										
											2017-07-11 01:05:39 +03:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				this.keyboard.handler('General', '?', 'showDoc') | 
					
						
							| 
									
										
										
										
											2017-09-09 19:04:34 +03:00
										 |  |  | 				this.menu(showDoc.bind(this)) | 
					
						
							| 
									
										
										
										
											2018-03-09 17:51:27 +03:00
										 |  |  | 			}) })], | 
					
						
							| 
									
										
										
										
											2017-01-03 02:55:25 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	toggleBrowseActionKeys: ['Interface/Show keys in menu', | 
					
						
							|  |  |  | 		core.makeConfigToggler( | 
					
						
							|  |  |  | 			'browse-actions-keys',  | 
					
						
							| 
									
										
										
										
											2017-04-25 17:10:40 +03:00
										 |  |  | 			['on', 'off'], | 
					
						
							| 
									
										
										
										
											2017-01-03 02:55:25 +03:00
										 |  |  | 			function(state){ | 
					
						
							|  |  |  | 				this.modal.client.dom.hasClass('browse-actions') | 
					
						
							| 
									
										
										
										
											2017-04-25 17:10:40 +03:00
										 |  |  | 					&& this.modal.client.dom[state == 'on' ? 'addClass' : 'removeClass']('show-keys') | 
					
						
							| 
									
										
										
										
											2017-01-03 02:55:25 +03:00
										 |  |  | 			})], | 
					
						
							| 
									
										
										
										
											2015-12-17 03:44:07 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var BrowseActions =  | 
					
						
							|  |  |  | module.BrowseActions = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-browse-actions', | 
					
						
							|  |  |  | 	depends: [ | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | 		'ui', | 
					
						
							|  |  |  | 		'ui-dialogs', | 
					
						
							| 
									
										
										
										
											2017-07-08 00:08:33 +03:00
										 |  |  | 		'ui-introspection', | 
					
						
							| 
									
										
										
										
											2015-12-17 03:44:07 +03:00
										 |  |  | 	], | 
					
						
							| 
									
										
										
										
											2017-01-03 02:55:25 +03:00
										 |  |  | 	suggested: [ | 
					
						
							|  |  |  | 		'keyboard', | 
					
						
							|  |  |  | 	], | 
					
						
							| 
									
										
										
										
											2015-12-17 03:44:07 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	actions: BrowseActionsActions, | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-05 02:45:02 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | // XXX use image instead of image block in single image mode...
 | 
					
						
							| 
									
										
										
										
											2016-03-05 02:45:02 +03:00
										 |  |  | var ContextActionMenu =  | 
					
						
							|  |  |  | module.ContextActionMenu = core.ImageGridFeatures.Feature({ | 
					
						
							|  |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tag: 'ui-context-action-menu', | 
					
						
							|  |  |  | 	depends: [ | 
					
						
							|  |  |  | 		'ui-browse-actions', | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-11 16:24:27 +03:00
										 |  |  | 	actions: actions.Actions({ | 
					
						
							|  |  |  | 		showContextMenu: ['Interface/Show context menu...', | 
					
						
							|  |  |  | 			uiDialog(function(){ | 
					
						
							|  |  |  | 				return this.current ? | 
					
						
							|  |  |  | 					this.browseActions('/Image/') | 
					
						
							|  |  |  | 					: this.browseActions() })], | 
					
						
							|  |  |  | 	}), | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-05 02:45:02 +03:00
										 |  |  | 	handlers: [ | 
					
						
							| 
									
										
										
										
											2018-03-19 01:42:36 +03:00
										 |  |  | 		// XXX FireFox: get actual event...
 | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 		['imageMenu.pre', | 
					
						
							| 
									
										
										
										
											2017-08-25 22:31:46 +03:00
										 |  |  | 			function(gid){ | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 				event.preventDefault() | 
					
						
							|  |  |  | 				event.stopPropagation() | 
					
						
							| 
									
										
										
										
											2016-03-05 02:45:02 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 				this | 
					
						
							|  |  |  | 					.focusImage(gid) | 
					
						
							|  |  |  | 					.browseActions('/Image/') | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 		['imageOuterBlockMenu.pre', | 
					
						
							| 
									
										
										
										
											2017-08-31 17:12:59 +03:00
										 |  |  | 			function(gid){ | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 				// only show image menu in ribbon mode...
 | 
					
						
							|  |  |  | 				if(this.toggleSingleImage && this.toggleSingleImage('?') == 'on'){ | 
					
						
							|  |  |  | 					return | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2016-03-05 02:45:02 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 				event.preventDefault() | 
					
						
							|  |  |  | 				event.stopPropagation() | 
					
						
							| 
									
										
										
										
											2017-04-10 14:46:31 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-23 22:54:15 +03:00
										 |  |  | 				this | 
					
						
							|  |  |  | 					.focusImage(gid) | 
					
						
							|  |  |  | 					.browseActions('/Image/') | 
					
						
							| 
									
										
										
										
											2016-03-05 02:45:02 +03:00
										 |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2017-08-25 23:15:07 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// NOTE: we are using load here and not 'start' because at start
 | 
					
						
							|  |  |  | 		// 		there may be no viewer yet...
 | 
					
						
							|  |  |  | 		// 		XXX is this a bug???
 | 
					
						
							| 
									
										
										
										
											2016-03-05 02:45:02 +03:00
										 |  |  | 		['load', | 
					
						
							|  |  |  | 			function(){ | 
					
						
							|  |  |  | 				var that = this | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 				var viewer = this.dom | 
					
						
							| 
									
										
										
										
											2016-03-05 02:45:02 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				!viewer.data('context-menu')  | 
					
						
							|  |  |  | 					&& viewer | 
					
						
							|  |  |  | 						.data('context-menu', true) | 
					
						
							| 
									
										
										
										
											2018-03-19 01:42:36 +03:00
										 |  |  | 						.on('contextmenu', function(evt){ | 
					
						
							|  |  |  | 							evt = window.event || evt | 
					
						
							|  |  |  | 							evt.preventDefault() | 
					
						
							|  |  |  | 							evt.stopPropagation() | 
					
						
							| 
									
										
										
										
											2016-03-05 02:45:02 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-26 23:58:52 +03:00
										 |  |  | 							that.browseActions() | 
					
						
							| 
									
										
										
										
											2016-03-05 02:45:02 +03:00
										 |  |  | 						}) | 
					
						
							|  |  |  | 			}], | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:44:07 +03:00
										 |  |  | //---------------------------------------------------------------------
 | 
					
						
							| 
									
										
										
										
											2016-11-09 04:53:42 +03:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2018-01-18 09:16:46 +03:00
										 |  |  | // mac seems not to have the utf gear icon...
 | 
					
						
							| 
									
										
										
										
											2018-01-18 07:21:19 +03:00
										 |  |  | var SETTINGS_ICON =  | 
					
						
							|  |  |  | 	typeof(navigator) == 'undefined' ? 'settings' | 
					
						
							|  |  |  | 	: navigator.platform == 'Win32' ?  '⛭' | 
					
						
							|  |  |  | 	: '<span class="material-icons">settings</span>' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-06 16:02:29 +03:00
										 |  |  | // XXX add context menu action to buttons...
 | 
					
						
							| 
									
										
										
										
											2016-11-15 23:05:46 +03:00
										 |  |  | var ButtonsActions = actions.Actions({ | 
					
						
							| 
									
										
										
										
											2016-11-08 18:57:11 +03:00
										 |  |  | 	config: { | 
					
						
							| 
									
										
										
										
											2016-11-15 22:15:14 +03:00
										 |  |  | 		'main-buttons-state': 'on', | 
					
						
							| 
									
										
										
										
											2017-03-09 02:35:28 +03:00
										 |  |  | 		// Format:
 | 
					
						
							|  |  |  | 		// 	{
 | 
					
						
							|  |  |  | 		// 		<html>: [
 | 
					
						
							|  |  |  | 		// 			<css-class>,
 | 
					
						
							|  |  |  | 		// 			// Button info (optional)
 | 
					
						
							|  |  |  | 		// 			<info>,
 | 
					
						
							|  |  |  | 		// 			<code>,
 | 
					
						
							|  |  |  | 		// 		],
 | 
					
						
							| 
									
										
										
										
											2017-09-06 16:02:29 +03:00
										 |  |  | 		//
 | 
					
						
							|  |  |  | 		// 		<html>: [
 | 
					
						
							|  |  |  | 		// 			<css-class>,
 | 
					
						
							|  |  |  | 		// 			// Button info (optional)
 | 
					
						
							|  |  |  | 		// 			<info>,
 | 
					
						
							|  |  |  | 		// 			[
 | 
					
						
							|  |  |  | 		// 				<primary>,
 | 
					
						
							|  |  |  | 		// 				<secondary>,
 | 
					
						
							|  |  |  | 		// 			]
 | 
					
						
							|  |  |  | 		// 		],
 | 
					
						
							| 
									
										
										
										
											2017-03-09 02:35:28 +03:00
										 |  |  | 		// 		...
 | 
					
						
							|  |  |  | 		// 	}
 | 
					
						
							| 
									
										
										
										
											2017-09-06 16:02:29 +03:00
										 |  |  | 		//
 | 
					
						
							| 
									
										
										
										
											2016-11-15 22:15:14 +03:00
										 |  |  | 		'main-buttons': { | 
					
						
							| 
									
										
										
										
											2016-11-16 04:57:31 +03:00
										 |  |  | 			'☰': ['menu', 'browseActions -- Action menu...'], | 
					
						
							| 
									
										
										
										
											2017-09-06 16:02:29 +03:00
										 |  |  | 			'◲<sub/><sup/>': ['collections', [ | 
					
						
							|  |  |  | 				'browseCollections -- Collections...', | 
					
						
							|  |  |  | 				'browseActions: "/Collections/" -- Collection menu...', | 
					
						
							|  |  |  | 			]], | 
					
						
							| 
									
										
										
										
											2016-11-16 04:57:31 +03:00
										 |  |  | 			'C<sub/>': ['crop', 'browseActions: "Crop/" -- Crop menu...'], | 
					
						
							| 
									
										
										
										
											2017-11-27 01:20:35 +03:00
										 |  |  | 			'▷': ['slideshow', [ | 
					
						
							| 
									
										
										
										
											2017-11-27 07:22:08 +03:00
										 |  |  | 				'toggleSlideshow -- Slideshow', | 
					
						
							| 
									
										
										
										
											2017-11-27 01:20:35 +03:00
										 |  |  | 				'slideshowDialog -- Slideshow menu...', | 
					
						
							|  |  |  | 			]], | 
					
						
							| 
									
										
										
										
											2016-11-08 21:16:33 +03:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2016-11-15 22:15:14 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// XXX not sure about these yet...
 | 
					
						
							|  |  |  | 		'secondary-buttons-state': 'off', | 
					
						
							|  |  |  | 		'secondary-buttons': { | 
					
						
							| 
									
										
										
										
											2018-01-18 07:21:19 +03:00
										 |  |  | 			//'<span/>': ['touch-controls', 'toggleSideButtons -- Toggle touch controls'],
 | 
					
						
							| 
									
										
										
										
											2016-11-16 04:57:31 +03:00
										 |  |  | 			//'Z<sub/>': ['zoom', 'browseActions: "Zoom/" -- Zoom menu...'],
 | 
					
						
							|  |  |  | 			//'+': ['zoom-in', 'zoomIn -- Zoom in'],
 | 
					
						
							|  |  |  | 			//'-': ['zoom-out', 'zoomOut -- Zoom out'],
 | 
					
						
							|  |  |  | 			//'⛭': ['ui-settings', 'browseActions: "Interface/" -- Interface settings...'],
 | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		'app-buttons': { | 
					
						
							| 
									
										
										
										
											2018-03-21 17:34:26 +03:00
										 |  |  | 			[SETTINGS_ICON]: ['ui-settings always-shown', [ | 
					
						
							| 
									
										
										
										
											2018-01-15 03:59:53 +03:00
										 |  |  | 				'browseActions: "Interface/" -- Interface settings...', | 
					
						
							|  |  |  | 				'toggleSideButtons -- Toggle touch controls', | 
					
						
							|  |  |  | 			]], | 
					
						
							| 
									
										
										
										
											2016-11-15 22:15:14 +03:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2016-11-15 23:05:46 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-16 00:14:09 +03:00
										 |  |  | 		'side-buttons-state': 'off', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-15 23:05:46 +03:00
										 |  |  | 		'side-buttons-left': { | 
					
						
							|  |  |  | 			'-': ['zoom-out', 'zoomOut -- Zoom out'], | 
					
						
							| 
									
										
										
										
											2016-11-16 00:14:09 +03:00
										 |  |  | 			'↥': ['up', 'shiftImageUp -- Shift image up'], | 
					
						
							| 
									
										
										
										
											2016-11-16 04:57:31 +03:00
										 |  |  | 			'⦉': ['left', 'prevImage -- Previous image'], | 
					
						
							| 
									
										
										
										
											2016-11-16 00:14:09 +03:00
										 |  |  | 			'↧': ['down', 'shiftImageDown -- Shift image down'], | 
					
						
							| 
									
										
										
										
											2016-11-15 23:05:46 +03:00
										 |  |  | 		}, | 
					
						
							|  |  |  | 		'side-buttons-right': { | 
					
						
							|  |  |  | 			'+': ['zoom-in', 'zoomIn -- Zoom in'], | 
					
						
							| 
									
										
										
										
											2016-11-16 00:14:09 +03:00
										 |  |  | 			'↥': ['up', 'shiftImageUp -- Shift image up'], | 
					
						
							| 
									
										
										
										
											2016-11-16 04:57:31 +03:00
										 |  |  | 			'⦊': ['right', 'nextImage -- Next image'], | 
					
						
							| 
									
										
										
										
											2016-11-16 00:14:09 +03:00
										 |  |  | 			'↧': ['down', 'shiftImageDown -- Shift image down'], | 
					
						
							| 
									
										
										
										
											2016-11-15 23:05:46 +03:00
										 |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2017-12-05 05:48:22 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		'button-highlight-color': 'white', | 
					
						
							|  |  |  | 		'button-highlight-colors': [  | 
					
						
							|  |  |  | 			'white', | 
					
						
							|  |  |  | 			'yellow', | 
					
						
							|  |  |  | 		], | 
					
						
							| 
									
										
										
										
											2016-11-08 18:57:11 +03:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2016-04-30 03:38:52 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 03:06:06 +03:00
										 |  |  | 	toggleMainButtons: ['Interface/Main buttons', | 
					
						
							| 
									
										
										
										
											2016-11-15 22:15:14 +03:00
										 |  |  | 		makeButtonControlsToggler('main-buttons')], | 
					
						
							| 
									
										
										
										
											2017-01-05 03:06:06 +03:00
										 |  |  | 	toggleSecondaryButtons: ['Interface/Secondary buttons', | 
					
						
							| 
									
										
										
										
											2016-11-15 22:15:14 +03:00
										 |  |  | 		makeButtonControlsToggler('secondary-buttons')], | 
					
						
							| 
									
										
										
										
											2017-01-05 03:06:06 +03:00
										 |  |  | 	toggleAppButtons: ['Interface/App buttons', | 
					
						
							| 
									
										
										
										
											2016-11-16 04:57:31 +03:00
										 |  |  | 		makeButtonControlsToggler('app-buttons')], | 
					
						
							| 
									
										
										
										
											2018-01-12 01:46:16 +03:00
										 |  |  | 	toggleSideButtons: ['Interface/99: Touch buttons',  | 
					
						
							| 
									
										
										
										
											2016-11-16 04:57:31 +03:00
										 |  |  | 		(function(){ | 
					
						
							|  |  |  | 			var left = makeButtonControlsToggler('side-buttons-left') | 
					
						
							|  |  |  | 			var right = makeButtonControlsToggler('side-buttons-right') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			return core.makeConfigToggler('side-buttons-state',  | 
					
						
							|  |  |  | 				['on', 'off'],  | 
					
						
							|  |  |  | 				function(){ | 
					
						
							|  |  |  | 					left.apply(this, arguments)  | 
					
						
							|  |  |  | 					right.apply(this, arguments)  | 
					
						
							|  |  |  | 				}) | 
					
						
							|  |  |  | 		})()], | 
					
						
							| 
									
										
										
										
											2017-12-05 05:48:22 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	toggleButtonHighlightColor: ['Interface/Button highlight color', | 
					
						
							|  |  |  | 		core.makeConfigToggler( | 
					
						
							|  |  |  | 			'button-highlight-color', | 
					
						
							|  |  |  | 			function(){ return this.config['button-highlight-colors'] }, | 
					
						
							|  |  |  | 			// update the buttons...
 | 
					
						
							|  |  |  | 			function(){ this.reload() })], | 
					
						
							| 
									
										
										
										
											2016-11-09 04:53:42 +03:00
										 |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-15 23:05:46 +03:00
										 |  |  | var Buttons =  | 
					
						
							|  |  |  | module.Buttons = core.ImageGridFeatures.Feature({ | 
					
						
							| 
									
										
										
										
											2016-11-09 04:53:42 +03:00
										 |  |  | 	title: '', | 
					
						
							|  |  |  | 	doc: '', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-15 22:15:14 +03:00
										 |  |  | 	tag: 'ui-buttons', | 
					
						
							| 
									
										
										
										
											2016-11-09 04:53:42 +03:00
										 |  |  | 	depends: [ | 
					
						
							|  |  |  | 		'ui', | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | 	suggested: [ | 
					
						
							|  |  |  | 		// needed for reporting info in .makeButtonControls(..)
 | 
					
						
							|  |  |  | 		'ui-status-bar', | 
					
						
							|  |  |  | 	], | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-15 23:05:46 +03:00
										 |  |  | 	actions: ButtonsActions, | 
					
						
							| 
									
										
										
										
											2016-11-09 04:53:42 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	handlers: [ | 
					
						
							| 
									
										
										
										
											2016-11-16 04:57:31 +03:00
										 |  |  | 		['start.pre',  | 
					
						
							| 
									
										
										
										
											2016-11-20 01:11:30 +03:00
										 |  |  | 			function(){  | 
					
						
							|  |  |  | 				this.toggleAppButtons('on') | 
					
						
							|  |  |  | 		   	}], | 
					
						
							|  |  |  | 		// NOTE: these need to be loaded AFTER the .config has been loaded...
 | 
					
						
							|  |  |  | 		['start',  | 
					
						
							| 
									
										
										
										
											2016-11-09 04:53:42 +03:00
										 |  |  | 			function(){  | 
					
						
							| 
									
										
										
										
											2016-11-15 22:15:14 +03:00
										 |  |  | 				this.toggleMainButtons(this.config['main-buttons-state'] || 'on') | 
					
						
							| 
									
										
										
										
											2016-11-16 00:14:09 +03:00
										 |  |  | 				this.toggleSecondaryButtons(this.config['secondary-buttons-state'] || 'on') | 
					
						
							|  |  |  | 				this.toggleSideButtons(this.config['side-buttons-state'] || 'on') | 
					
						
							|  |  |  | 		   	}], | 
					
						
							| 
									
										
										
										
											2016-11-28 20:18:34 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// update crop button status...
 | 
					
						
							| 
									
										
										
										
											2017-08-29 20:59:00 +03:00
										 |  |  | 		[[ | 
					
						
							|  |  |  | 			'load', | 
					
						
							|  |  |  | 			'clear', | 
					
						
							|  |  |  | 			'reload', | 
					
						
							|  |  |  | 		],  | 
					
						
							| 
									
										
										
										
											2016-11-09 04:53:42 +03:00
										 |  |  | 			function(){ | 
					
						
							| 
									
										
										
										
											2017-12-05 05:48:22 +03:00
										 |  |  | 				// XXX is this the right way to go???
 | 
					
						
							|  |  |  | 				$('.main-buttons.buttons .crop.button') | 
					
						
							|  |  |  | 					.css({ 'color': this.cropped ?  | 
					
						
							|  |  |  | 						(this.config['button-highlight-color'] || 'white') | 
					
						
							|  |  |  | 						: '', }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-29 20:59:00 +03:00
										 |  |  | 				var l = (this.crop_stack || []).length | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-15 22:15:14 +03:00
										 |  |  | 				$('.main-buttons.buttons .crop.button sub') | 
					
						
							| 
									
										
										
										
											2017-08-27 16:09:09 +03:00
										 |  |  | 					// XXX should this be here or in CSS???
 | 
					
						
							|  |  |  | 					.css({ | 
					
						
							|  |  |  | 						'display': 'inline-block', | 
					
						
							|  |  |  | 						'width': '0px', | 
					
						
							|  |  |  | 						'overflow': 'visible', | 
					
						
							|  |  |  | 					}) | 
					
						
							| 
									
										
										
										
											2017-08-29 20:59:00 +03:00
										 |  |  | 					.text(l == 0 ? '' | 
					
						
							|  |  |  | 						: l > 99 ? '99+' | 
					
						
							|  |  |  | 						: l)  | 
					
						
							| 
									
										
										
										
											2017-08-27 16:09:09 +03:00
										 |  |  | 			}], | 
					
						
							|  |  |  | 		// update collection button status...
 | 
					
						
							| 
									
										
										
										
											2017-08-29 20:59:00 +03:00
										 |  |  | 		[[ | 
					
						
							|  |  |  | 			'load',  | 
					
						
							|  |  |  | 			'clear',  | 
					
						
							|  |  |  | 			'reload',  | 
					
						
							|  |  |  | 			'saveCollection', | 
					
						
							| 
									
										
										
										
											2017-09-02 20:58:49 +03:00
										 |  |  | 			'removeCollection', | 
					
						
							| 
									
										
										
										
											2017-08-29 20:59:00 +03:00
										 |  |  | 			'collectionLoaded',  | 
					
						
							|  |  |  | 			'collectionUnloaded',  | 
					
						
							|  |  |  | 		],  | 
					
						
							| 
									
										
										
										
											2017-08-27 16:09:09 +03:00
										 |  |  | 			function(){ | 
					
						
							| 
									
										
										
										
											2017-12-05 05:48:22 +03:00
										 |  |  | 				// XXX is this the right way to go???
 | 
					
						
							| 
									
										
										
										
											2017-08-29 20:59:00 +03:00
										 |  |  | 				$('.main-buttons.buttons .collections.button') | 
					
						
							| 
									
										
										
										
											2017-12-05 05:48:22 +03:00
										 |  |  | 					.css({ 'color': this.collection ? | 
					
						
							|  |  |  | 						(this.config['button-highlight-color'] || 'white') | 
					
						
							|  |  |  | 						: '', }) | 
					
						
							| 
									
										
										
										
											2017-08-29 20:59:00 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				var l = this.collections_length | 
					
						
							| 
									
										
										
										
											2017-09-02 20:58:49 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				// current collection unsaved indicator...
 | 
					
						
							|  |  |  | 				$('.main-buttons.buttons .collections.button sup') | 
					
						
							|  |  |  | 					.css({ | 
					
						
							|  |  |  | 						'display': 'inline-block', | 
					
						
							|  |  |  | 						'position': 'absolute', | 
					
						
							|  |  |  | 						'margin-top': '-0.3em', | 
					
						
							|  |  |  | 						'overflow': 'visible', | 
					
						
							|  |  |  | 					}) | 
					
						
							|  |  |  | 					.text((this.collection && !(this.collection in this.collections)) ?  | 
					
						
							|  |  |  | 						'*'  | 
					
						
							|  |  |  | 						: '') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				// collection count... 
 | 
					
						
							| 
									
										
										
										
											2017-08-29 20:59:00 +03:00
										 |  |  | 				$('.main-buttons.buttons .collections.button sub') | 
					
						
							|  |  |  | 					.css({ | 
					
						
							|  |  |  | 						'display': 'inline-block', | 
					
						
							|  |  |  | 						'width': '0px', | 
					
						
							|  |  |  | 						'overflow': 'visible', | 
					
						
							|  |  |  | 					}) | 
					
						
							|  |  |  | 					.text(l > 99 ?  '99+'  | 
					
						
							|  |  |  | 						: l == 0 ? '' | 
					
						
							|  |  |  | 						: l) | 
					
						
							|  |  |  | 				/* | 
					
						
							| 
									
										
										
										
											2017-08-27 16:09:09 +03:00
										 |  |  | 				$('.main-buttons.buttons .collections.button sub') | 
					
						
							|  |  |  | 					// XXX should this be here or in CSS???
 | 
					
						
							|  |  |  | 					.css({ | 
					
						
							|  |  |  | 						'display': 'inline-block', | 
					
						
							|  |  |  | 						'width': '0px', | 
					
						
							|  |  |  | 						'overflow': 'visible', | 
					
						
							|  |  |  | 						'color': 'yellow', | 
					
						
							|  |  |  | 					}) | 
					
						
							|  |  |  | 					.html(this.collection ? '●' : '') | 
					
						
							| 
									
										
										
										
											2017-08-29 20:59:00 +03:00
										 |  |  | 				//*/
 | 
					
						
							| 
									
										
										
										
											2017-08-27 16:09:09 +03:00
										 |  |  | 		   	}], | 
					
						
							| 
									
										
										
										
											2017-11-27 01:20:35 +03:00
										 |  |  | 		// update slideshow status...
 | 
					
						
							|  |  |  | 		['toggleSlideshow', | 
					
						
							|  |  |  | 			function(){ | 
					
						
							|  |  |  | 				$('.main-buttons.buttons .slideshow.button') | 
					
						
							|  |  |  | 					.html(this.toggleSlideshow('?') == 'on' ?  | 
					
						
							|  |  |  | 						'◼'  | 
					
						
							|  |  |  | 						//'◻'
 | 
					
						
							|  |  |  | 						: '▷') | 
					
						
							|  |  |  | 			}], | 
					
						
							| 
									
										
										
										
											2016-11-28 20:18:34 +03:00
										 |  |  | 		// update zoom button status...
 | 
					
						
							| 
									
										
										
										
											2017-05-16 00:26:37 +03:00
										 |  |  | 		['viewScale',  | 
					
						
							| 
									
										
										
										
											2016-11-15 22:15:14 +03:00
										 |  |  | 			function(){ | 
					
						
							|  |  |  | 				$('.secondary-buttons.buttons .zoom.button sub') | 
					
						
							|  |  |  | 					.text(Math.round(this.screenwidth)) }], | 
					
						
							| 
									
										
										
										
											2016-11-09 04:53:42 +03:00
										 |  |  | 	], | 
					
						
							|  |  |  | }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-17 03:34:20 +03:00
										 |  |  | /********************************************************************** | 
					
						
							| 
									
										
										
										
											2016-08-20 22:49:36 +03:00
										 |  |  | * vim:set ts=4 sw=4 :                               */ return module }) |