Merge "CoreTagHooks: Use parse() for output to HTML rather than text()"
[lhc/web/wiklou.git] / resources / lib / oojs-ui / oojs-ui.js
1 /*!
2 * OOjs UI v0.1.0-pre (deccd11549)
3 * https://www.mediawiki.org/wiki/OOjs_UI
4 *
5 * Copyright 2011–2014 OOjs Team and other contributors.
6 * Released under the MIT license
7 * http://oojs.mit-license.org
8 *
9 * Date: 2014-10-28T16:52:18Z
10 */
11 ( function ( OO ) {
12
13 'use strict';
14
15 /**
16 * Namespace for all classes, static methods and static properties.
17 *
18 * @class
19 * @singleton
20 */
21 OO.ui = {};
22
23 OO.ui.bind = $.proxy;
24
25 /**
26 * @property {Object}
27 */
28 OO.ui.Keys = {
29 UNDEFINED: 0,
30 BACKSPACE: 8,
31 DELETE: 46,
32 LEFT: 37,
33 RIGHT: 39,
34 UP: 38,
35 DOWN: 40,
36 ENTER: 13,
37 END: 35,
38 HOME: 36,
39 TAB: 9,
40 PAGEUP: 33,
41 PAGEDOWN: 34,
42 ESCAPE: 27,
43 SHIFT: 16,
44 SPACE: 32
45 };
46
47 /**
48 * Get the user's language and any fallback languages.
49 *
50 * These language codes are used to localize user interface elements in the user's language.
51 *
52 * In environments that provide a localization system, this function should be overridden to
53 * return the user's language(s). The default implementation returns English (en) only.
54 *
55 * @return {string[]} Language codes, in descending order of priority
56 */
57 OO.ui.getUserLanguages = function () {
58 return [ 'en' ];
59 };
60
61 /**
62 * Get a value in an object keyed by language code.
63 *
64 * @param {Object.<string,Mixed>} obj Object keyed by language code
65 * @param {string|null} [lang] Language code, if omitted or null defaults to any user language
66 * @param {string} [fallback] Fallback code, used if no matching language can be found
67 * @return {Mixed} Local value
68 */
69 OO.ui.getLocalValue = function ( obj, lang, fallback ) {
70 var i, len, langs;
71
72 // Requested language
73 if ( obj[lang] ) {
74 return obj[lang];
75 }
76 // Known user language
77 langs = OO.ui.getUserLanguages();
78 for ( i = 0, len = langs.length; i < len; i++ ) {
79 lang = langs[i];
80 if ( obj[lang] ) {
81 return obj[lang];
82 }
83 }
84 // Fallback language
85 if ( obj[fallback] ) {
86 return obj[fallback];
87 }
88 // First existing language
89 for ( lang in obj ) {
90 return obj[lang];
91 }
92
93 return undefined;
94 };
95
96 ( function () {
97 /**
98 * Message store for the default implementation of OO.ui.msg
99 *
100 * Environments that provide a localization system should not use this, but should override
101 * OO.ui.msg altogether.
102 *
103 * @private
104 */
105 var messages = {
106 // Tool tip for a button that moves items in a list down one place
107 'ooui-outline-control-move-down': 'Move item down',
108 // Tool tip for a button that moves items in a list up one place
109 'ooui-outline-control-move-up': 'Move item up',
110 // Tool tip for a button that removes items from a list
111 'ooui-outline-control-remove': 'Remove item',
112 // Label for the toolbar group that contains a list of all other available tools
113 'ooui-toolbar-more': 'More',
114 // Label for the fake tool that expands the full list of tools in a toolbar group
115 'ooui-toolgroup-expand': 'More',
116 // Label for the fake tool that collapses the full list of tools in a toolbar group
117 'ooui-toolgroup-collapse': 'Fewer',
118 // Default label for the accept button of a confirmation dialog
119 'ooui-dialog-message-accept': 'OK',
120 // Default label for the reject button of a confirmation dialog
121 'ooui-dialog-message-reject': 'Cancel',
122 // Title for process dialog error description
123 'ooui-dialog-process-error': 'Something went wrong',
124 // Label for process dialog dismiss error button, visible when describing errors
125 'ooui-dialog-process-dismiss': 'Dismiss',
126 // Label for process dialog retry action button, visible when describing recoverable errors
127 'ooui-dialog-process-retry': 'Try again'
128 };
129
130 /**
131 * Get a localized message.
132 *
133 * In environments that provide a localization system, this function should be overridden to
134 * return the message translated in the user's language. The default implementation always returns
135 * English messages.
136 *
137 * After the message key, message parameters may optionally be passed. In the default implementation,
138 * any occurrences of $1 are replaced with the first parameter, $2 with the second parameter, etc.
139 * Alternative implementations of OO.ui.msg may use any substitution system they like, as long as
140 * they support unnamed, ordered message parameters.
141 *
142 * @abstract
143 * @param {string} key Message key
144 * @param {Mixed...} [params] Message parameters
145 * @return {string} Translated message with parameters substituted
146 */
147 OO.ui.msg = function ( key ) {
148 var message = messages[key], params = Array.prototype.slice.call( arguments, 1 );
149 if ( typeof message === 'string' ) {
150 // Perform $1 substitution
151 message = message.replace( /\$(\d+)/g, function ( unused, n ) {
152 var i = parseInt( n, 10 );
153 return params[i - 1] !== undefined ? params[i - 1] : '$' + n;
154 } );
155 } else {
156 // Return placeholder if message not found
157 message = '[' + key + ']';
158 }
159 return message;
160 };
161
162 /**
163 * Package a message and arguments for deferred resolution.
164 *
165 * Use this when you are statically specifying a message and the message may not yet be present.
166 *
167 * @param {string} key Message key
168 * @param {Mixed...} [params] Message parameters
169 * @return {Function} Function that returns the resolved message when executed
170 */
171 OO.ui.deferMsg = function () {
172 var args = arguments;
173 return function () {
174 return OO.ui.msg.apply( OO.ui, args );
175 };
176 };
177
178 /**
179 * Resolve a message.
180 *
181 * If the message is a function it will be executed, otherwise it will pass through directly.
182 *
183 * @param {Function|string} msg Deferred message, or message text
184 * @return {string} Resolved message
185 */
186 OO.ui.resolveMsg = function ( msg ) {
187 if ( $.isFunction( msg ) ) {
188 return msg();
189 }
190 return msg;
191 };
192
193 } )();
194
195 /**
196 * Element that can be marked as pending.
197 *
198 * @abstract
199 * @class
200 *
201 * @constructor
202 * @param {Object} [config] Configuration options
203 */
204 OO.ui.PendingElement = function OoUiPendingElement( config ) {
205 // Config initialisation
206 config = config || {};
207
208 // Properties
209 this.pending = 0;
210 this.$pending = null;
211
212 // Initialisation
213 this.setPendingElement( config.$pending || this.$element );
214 };
215
216 /* Setup */
217
218 OO.initClass( OO.ui.PendingElement );
219
220 /* Methods */
221
222 /**
223 * Set the pending element (and clean up any existing one).
224 *
225 * @param {jQuery} $pending The element to set to pending.
226 */
227 OO.ui.PendingElement.prototype.setPendingElement = function ( $pending ) {
228 if ( this.$pending ) {
229 this.$pending.removeClass( 'oo-ui-pendingElement-pending' );
230 }
231
232 this.$pending = $pending;
233 if ( this.pending > 0 ) {
234 this.$pending.addClass( 'oo-ui-pendingElement-pending' );
235 }
236 };
237
238 /**
239 * Check if input is pending.
240 *
241 * @return {boolean}
242 */
243 OO.ui.PendingElement.prototype.isPending = function () {
244 return !!this.pending;
245 };
246
247 /**
248 * Increase the pending stack.
249 *
250 * @chainable
251 */
252 OO.ui.PendingElement.prototype.pushPending = function () {
253 if ( this.pending === 0 ) {
254 this.$pending.addClass( 'oo-ui-pendingElement-pending' );
255 this.updateThemeClasses();
256 }
257 this.pending++;
258
259 return this;
260 };
261
262 /**
263 * Reduce the pending stack.
264 *
265 * Clamped at zero.
266 *
267 * @chainable
268 */
269 OO.ui.PendingElement.prototype.popPending = function () {
270 if ( this.pending === 1 ) {
271 this.$pending.removeClass( 'oo-ui-pendingElement-pending' );
272 this.updateThemeClasses();
273 }
274 this.pending = Math.max( 0, this.pending - 1 );
275
276 return this;
277 };
278
279 /**
280 * List of actions.
281 *
282 * @abstract
283 * @class
284 * @mixins OO.EventEmitter
285 *
286 * @constructor
287 * @param {Object} [config] Configuration options
288 */
289 OO.ui.ActionSet = function OoUiActionSet( config ) {
290 // Configuration intialization
291 config = config || {};
292
293 // Mixin constructors
294 OO.EventEmitter.call( this );
295
296 // Properties
297 this.list = [];
298 this.categories = {
299 actions: 'getAction',
300 flags: 'getFlags',
301 modes: 'getModes'
302 };
303 this.categorized = {};
304 this.special = {};
305 this.others = [];
306 this.organized = false;
307 this.changing = false;
308 this.changed = false;
309 };
310
311 /* Setup */
312
313 OO.mixinClass( OO.ui.ActionSet, OO.EventEmitter );
314
315 /* Static Properties */
316
317 /**
318 * Symbolic name of dialog.
319 *
320 * @abstract
321 * @static
322 * @inheritable
323 * @property {string}
324 */
325 OO.ui.ActionSet.static.specialFlags = [ 'safe', 'primary' ];
326
327 /* Events */
328
329 /**
330 * @event click
331 * @param {OO.ui.ActionWidget} action Action that was clicked
332 */
333
334 /**
335 * @event resize
336 * @param {OO.ui.ActionWidget} action Action that was resized
337 */
338
339 /**
340 * @event add
341 * @param {OO.ui.ActionWidget[]} added Actions added
342 */
343
344 /**
345 * @event remove
346 * @param {OO.ui.ActionWidget[]} added Actions removed
347 */
348
349 /**
350 * @event change
351 */
352
353 /* Methods */
354
355 /**
356 * Handle action change events.
357 *
358 * @fires change
359 */
360 OO.ui.ActionSet.prototype.onActionChange = function () {
361 this.organized = false;
362 if ( this.changing ) {
363 this.changed = true;
364 } else {
365 this.emit( 'change' );
366 }
367 };
368
369 /**
370 * Check if a action is one of the special actions.
371 *
372 * @param {OO.ui.ActionWidget} action Action to check
373 * @return {boolean} Action is special
374 */
375 OO.ui.ActionSet.prototype.isSpecial = function ( action ) {
376 var flag;
377
378 for ( flag in this.special ) {
379 if ( action === this.special[flag] ) {
380 return true;
381 }
382 }
383
384 return false;
385 };
386
387 /**
388 * Get actions.
389 *
390 * @param {Object} [filters] Filters to use, omit to get all actions
391 * @param {string|string[]} [filters.actions] Actions that actions must have
392 * @param {string|string[]} [filters.flags] Flags that actions must have
393 * @param {string|string[]} [filters.modes] Modes that actions must have
394 * @param {boolean} [filters.visible] Actions must be visible
395 * @param {boolean} [filters.disabled] Actions must be disabled
396 * @return {OO.ui.ActionWidget[]} Actions matching all criteria
397 */
398 OO.ui.ActionSet.prototype.get = function ( filters ) {
399 var i, len, list, category, actions, index, match, matches;
400
401 if ( filters ) {
402 this.organize();
403
404 // Collect category candidates
405 matches = [];
406 for ( category in this.categorized ) {
407 list = filters[category];
408 if ( list ) {
409 if ( !Array.isArray( list ) ) {
410 list = [ list ];
411 }
412 for ( i = 0, len = list.length; i < len; i++ ) {
413 actions = this.categorized[category][list[i]];
414 if ( Array.isArray( actions ) ) {
415 matches.push.apply( matches, actions );
416 }
417 }
418 }
419 }
420 // Remove by boolean filters
421 for ( i = 0, len = matches.length; i < len; i++ ) {
422 match = matches[i];
423 if (
424 ( filters.visible !== undefined && match.isVisible() !== filters.visible ) ||
425 ( filters.disabled !== undefined && match.isDisabled() !== filters.disabled )
426 ) {
427 matches.splice( i, 1 );
428 len--;
429 i--;
430 }
431 }
432 // Remove duplicates
433 for ( i = 0, len = matches.length; i < len; i++ ) {
434 match = matches[i];
435 index = matches.lastIndexOf( match );
436 while ( index !== i ) {
437 matches.splice( index, 1 );
438 len--;
439 index = matches.lastIndexOf( match );
440 }
441 }
442 return matches;
443 }
444 return this.list.slice();
445 };
446
447 /**
448 * Get special actions.
449 *
450 * Special actions are the first visible actions with special flags, such as 'safe' and 'primary'.
451 * Special flags can be configured by changing #static-specialFlags in a subclass.
452 *
453 * @return {OO.ui.ActionWidget|null} Safe action
454 */
455 OO.ui.ActionSet.prototype.getSpecial = function () {
456 this.organize();
457 return $.extend( {}, this.special );
458 };
459
460 /**
461 * Get other actions.
462 *
463 * Other actions include all non-special visible actions.
464 *
465 * @return {OO.ui.ActionWidget[]} Other actions
466 */
467 OO.ui.ActionSet.prototype.getOthers = function () {
468 this.organize();
469 return this.others.slice();
470 };
471
472 /**
473 * Toggle actions based on their modes.
474 *
475 * Unlike calling toggle on actions with matching flags, this will enforce mutually exclusive
476 * visibility; matching actions will be shown, non-matching actions will be hidden.
477 *
478 * @param {string} mode Mode actions must have
479 * @chainable
480 * @fires toggle
481 * @fires change
482 */
483 OO.ui.ActionSet.prototype.setMode = function ( mode ) {
484 var i, len, action;
485
486 this.changing = true;
487 for ( i = 0, len = this.list.length; i < len; i++ ) {
488 action = this.list[i];
489 action.toggle( action.hasMode( mode ) );
490 }
491
492 this.organized = false;
493 this.changing = false;
494 this.emit( 'change' );
495
496 return this;
497 };
498
499 /**
500 * Change which actions are able to be performed.
501 *
502 * Actions with matching actions will be disabled/enabled. Other actions will not be changed.
503 *
504 * @param {Object.<string,boolean>} actions List of abilities, keyed by action name, values
505 * indicate actions are able to be performed
506 * @chainable
507 */
508 OO.ui.ActionSet.prototype.setAbilities = function ( actions ) {
509 var i, len, action, item;
510
511 for ( i = 0, len = this.list.length; i < len; i++ ) {
512 item = this.list[i];
513 action = item.getAction();
514 if ( actions[action] !== undefined ) {
515 item.setDisabled( !actions[action] );
516 }
517 }
518
519 return this;
520 };
521
522 /**
523 * Executes a function once per action.
524 *
525 * When making changes to multiple actions, use this method instead of iterating over the actions
526 * manually to defer emitting a change event until after all actions have been changed.
527 *
528 * @param {Object|null} actions Filters to use for which actions to iterate over; see #get
529 * @param {Function} callback Callback to run for each action; callback is invoked with three
530 * arguments: the action, the action's index, the list of actions being iterated over
531 * @chainable
532 */
533 OO.ui.ActionSet.prototype.forEach = function ( filter, callback ) {
534 this.changed = false;
535 this.changing = true;
536 this.get( filter ).forEach( callback );
537 this.changing = false;
538 if ( this.changed ) {
539 this.emit( 'change' );
540 }
541
542 return this;
543 };
544
545 /**
546 * Add actions.
547 *
548 * @param {OO.ui.ActionWidget[]} actions Actions to add
549 * @chainable
550 * @fires add
551 * @fires change
552 */
553 OO.ui.ActionSet.prototype.add = function ( actions ) {
554 var i, len, action;
555
556 this.changing = true;
557 for ( i = 0, len = actions.length; i < len; i++ ) {
558 action = actions[i];
559 action.connect( this, {
560 click: [ 'emit', 'click', action ],
561 resize: [ 'emit', 'resize', action ],
562 toggle: [ 'onActionChange' ]
563 } );
564 this.list.push( action );
565 }
566 this.organized = false;
567 this.emit( 'add', actions );
568 this.changing = false;
569 this.emit( 'change' );
570
571 return this;
572 };
573
574 /**
575 * Remove actions.
576 *
577 * @param {OO.ui.ActionWidget[]} actions Actions to remove
578 * @chainable
579 * @fires remove
580 * @fires change
581 */
582 OO.ui.ActionSet.prototype.remove = function ( actions ) {
583 var i, len, index, action;
584
585 this.changing = true;
586 for ( i = 0, len = actions.length; i < len; i++ ) {
587 action = actions[i];
588 index = this.list.indexOf( action );
589 if ( index !== -1 ) {
590 action.disconnect( this );
591 this.list.splice( index, 1 );
592 }
593 }
594 this.organized = false;
595 this.emit( 'remove', actions );
596 this.changing = false;
597 this.emit( 'change' );
598
599 return this;
600 };
601
602 /**
603 * Remove all actions.
604 *
605 * @chainable
606 * @fires remove
607 * @fires change
608 */
609 OO.ui.ActionSet.prototype.clear = function () {
610 var i, len, action,
611 removed = this.list.slice();
612
613 this.changing = true;
614 for ( i = 0, len = this.list.length; i < len; i++ ) {
615 action = this.list[i];
616 action.disconnect( this );
617 }
618
619 this.list = [];
620
621 this.organized = false;
622 this.emit( 'remove', removed );
623 this.changing = false;
624 this.emit( 'change' );
625
626 return this;
627 };
628
629 /**
630 * Organize actions.
631 *
632 * This is called whenver organized information is requested. It will only reorganize the actions
633 * if something has changed since the last time it ran.
634 *
635 * @private
636 * @chainable
637 */
638 OO.ui.ActionSet.prototype.organize = function () {
639 var i, iLen, j, jLen, flag, action, category, list, item, special,
640 specialFlags = this.constructor.static.specialFlags;
641
642 if ( !this.organized ) {
643 this.categorized = {};
644 this.special = {};
645 this.others = [];
646 for ( i = 0, iLen = this.list.length; i < iLen; i++ ) {
647 action = this.list[i];
648 if ( action.isVisible() ) {
649 // Populate catgeories
650 for ( category in this.categories ) {
651 if ( !this.categorized[category] ) {
652 this.categorized[category] = {};
653 }
654 list = action[this.categories[category]]();
655 if ( !Array.isArray( list ) ) {
656 list = [ list ];
657 }
658 for ( j = 0, jLen = list.length; j < jLen; j++ ) {
659 item = list[j];
660 if ( !this.categorized[category][item] ) {
661 this.categorized[category][item] = [];
662 }
663 this.categorized[category][item].push( action );
664 }
665 }
666 // Populate special/others
667 special = false;
668 for ( j = 0, jLen = specialFlags.length; j < jLen; j++ ) {
669 flag = specialFlags[j];
670 if ( !this.special[flag] && action.hasFlag( flag ) ) {
671 this.special[flag] = action;
672 special = true;
673 break;
674 }
675 }
676 if ( !special ) {
677 this.others.push( action );
678 }
679 }
680 }
681 this.organized = true;
682 }
683
684 return this;
685 };
686
687 /**
688 * DOM element abstraction.
689 *
690 * @abstract
691 * @class
692 *
693 * @constructor
694 * @param {Object} [config] Configuration options
695 * @cfg {Function} [$] jQuery for the frame the widget is in
696 * @cfg {string[]} [classes] CSS class names
697 * @cfg {string} [text] Text to insert
698 * @cfg {jQuery} [$content] Content elements to append (after text)
699 */
700 OO.ui.Element = function OoUiElement( config ) {
701 // Configuration initialization
702 config = config || {};
703
704 // Properties
705 this.$ = config.$ || OO.ui.Element.getJQuery( document );
706 this.$element = this.$( this.$.context.createElement( this.getTagName() ) );
707 this.elementGroup = null;
708 this.debouncedUpdateThemeClassesHandler = this.debouncedUpdateThemeClasses.bind( this );
709 this.updateThemeClassesPending = false;
710
711 // Initialization
712 if ( $.isArray( config.classes ) ) {
713 this.$element.addClass( config.classes.join( ' ' ) );
714 }
715 if ( config.text ) {
716 this.$element.text( config.text );
717 }
718 if ( config.$content ) {
719 this.$element.append( config.$content );
720 }
721 };
722
723 /* Setup */
724
725 OO.initClass( OO.ui.Element );
726
727 /* Static Properties */
728
729 /**
730 * HTML tag name.
731 *
732 * This may be ignored if #getTagName is overridden.
733 *
734 * @static
735 * @inheritable
736 * @property {string}
737 */
738 OO.ui.Element.static.tagName = 'div';
739
740 /* Static Methods */
741
742 /**
743 * Get a jQuery function within a specific document.
744 *
745 * @static
746 * @param {jQuery|HTMLElement|HTMLDocument|Window} context Context to bind the function to
747 * @param {jQuery} [$iframe] HTML iframe element that contains the document, omit if document is
748 * not in an iframe
749 * @return {Function} Bound jQuery function
750 */
751 OO.ui.Element.getJQuery = function ( context, $iframe ) {
752 function wrapper( selector ) {
753 return $( selector, wrapper.context );
754 }
755
756 wrapper.context = this.getDocument( context );
757
758 if ( $iframe ) {
759 wrapper.$iframe = $iframe;
760 }
761
762 return wrapper;
763 };
764
765 /**
766 * Get the document of an element.
767 *
768 * @static
769 * @param {jQuery|HTMLElement|HTMLDocument|Window} obj Object to get the document for
770 * @return {HTMLDocument|null} Document object
771 */
772 OO.ui.Element.getDocument = function ( obj ) {
773 // jQuery - selections created "offscreen" won't have a context, so .context isn't reliable
774 return ( obj[0] && obj[0].ownerDocument ) ||
775 // Empty jQuery selections might have a context
776 obj.context ||
777 // HTMLElement
778 obj.ownerDocument ||
779 // Window
780 obj.document ||
781 // HTMLDocument
782 ( obj.nodeType === 9 && obj ) ||
783 null;
784 };
785
786 /**
787 * Get the window of an element or document.
788 *
789 * @static
790 * @param {jQuery|HTMLElement|HTMLDocument|Window} obj Context to get the window for
791 * @return {Window} Window object
792 */
793 OO.ui.Element.getWindow = function ( obj ) {
794 var doc = this.getDocument( obj );
795 return doc.parentWindow || doc.defaultView;
796 };
797
798 /**
799 * Get the direction of an element or document.
800 *
801 * @static
802 * @param {jQuery|HTMLElement|HTMLDocument|Window} obj Context to get the direction for
803 * @return {string} Text direction, either `ltr` or `rtl`
804 */
805 OO.ui.Element.getDir = function ( obj ) {
806 var isDoc, isWin;
807
808 if ( obj instanceof jQuery ) {
809 obj = obj[0];
810 }
811 isDoc = obj.nodeType === 9;
812 isWin = obj.document !== undefined;
813 if ( isDoc || isWin ) {
814 if ( isWin ) {
815 obj = obj.document;
816 }
817 obj = obj.body;
818 }
819 return $( obj ).css( 'direction' );
820 };
821
822 /**
823 * Get the offset between two frames.
824 *
825 * TODO: Make this function not use recursion.
826 *
827 * @static
828 * @param {Window} from Window of the child frame
829 * @param {Window} [to=window] Window of the parent frame
830 * @param {Object} [offset] Offset to start with, used internally
831 * @return {Object} Offset object, containing left and top properties
832 */
833 OO.ui.Element.getFrameOffset = function ( from, to, offset ) {
834 var i, len, frames, frame, rect;
835
836 if ( !to ) {
837 to = window;
838 }
839 if ( !offset ) {
840 offset = { top: 0, left: 0 };
841 }
842 if ( from.parent === from ) {
843 return offset;
844 }
845
846 // Get iframe element
847 frames = from.parent.document.getElementsByTagName( 'iframe' );
848 for ( i = 0, len = frames.length; i < len; i++ ) {
849 if ( frames[i].contentWindow === from ) {
850 frame = frames[i];
851 break;
852 }
853 }
854
855 // Recursively accumulate offset values
856 if ( frame ) {
857 rect = frame.getBoundingClientRect();
858 offset.left += rect.left;
859 offset.top += rect.top;
860 if ( from !== to ) {
861 this.getFrameOffset( from.parent, offset );
862 }
863 }
864 return offset;
865 };
866
867 /**
868 * Get the offset between two elements.
869 *
870 * The two elements may be in a different frame, but in that case the frame $element is in must
871 * be contained in the frame $anchor is in.
872 *
873 * @static
874 * @param {jQuery} $element Element whose position to get
875 * @param {jQuery} $anchor Element to get $element's position relative to
876 * @return {Object} Translated position coordinates, containing top and left properties
877 */
878 OO.ui.Element.getRelativePosition = function ( $element, $anchor ) {
879 var iframe, iframePos,
880 pos = $element.offset(),
881 anchorPos = $anchor.offset(),
882 elementDocument = this.getDocument( $element ),
883 anchorDocument = this.getDocument( $anchor );
884
885 // If $element isn't in the same document as $anchor, traverse up
886 while ( elementDocument !== anchorDocument ) {
887 iframe = elementDocument.defaultView.frameElement;
888 if ( !iframe ) {
889 throw new Error( '$element frame is not contained in $anchor frame' );
890 }
891 iframePos = $( iframe ).offset();
892 pos.left += iframePos.left;
893 pos.top += iframePos.top;
894 elementDocument = iframe.ownerDocument;
895 }
896 pos.left -= anchorPos.left;
897 pos.top -= anchorPos.top;
898 return pos;
899 };
900
901 /**
902 * Get element border sizes.
903 *
904 * @static
905 * @param {HTMLElement} el Element to measure
906 * @return {Object} Dimensions object with `top`, `left`, `bottom` and `right` properties
907 */
908 OO.ui.Element.getBorders = function ( el ) {
909 var doc = el.ownerDocument,
910 win = doc.parentWindow || doc.defaultView,
911 style = win && win.getComputedStyle ?
912 win.getComputedStyle( el, null ) :
913 el.currentStyle,
914 $el = $( el ),
915 top = parseFloat( style ? style.borderTopWidth : $el.css( 'borderTopWidth' ) ) || 0,
916 left = parseFloat( style ? style.borderLeftWidth : $el.css( 'borderLeftWidth' ) ) || 0,
917 bottom = parseFloat( style ? style.borderBottomWidth : $el.css( 'borderBottomWidth' ) ) || 0,
918 right = parseFloat( style ? style.borderRightWidth : $el.css( 'borderRightWidth' ) ) || 0;
919
920 return {
921 top: Math.round( top ),
922 left: Math.round( left ),
923 bottom: Math.round( bottom ),
924 right: Math.round( right )
925 };
926 };
927
928 /**
929 * Get dimensions of an element or window.
930 *
931 * @static
932 * @param {HTMLElement|Window} el Element to measure
933 * @return {Object} Dimensions object with `borders`, `scroll`, `scrollbar` and `rect` properties
934 */
935 OO.ui.Element.getDimensions = function ( el ) {
936 var $el, $win,
937 doc = el.ownerDocument || el.document,
938 win = doc.parentWindow || doc.defaultView;
939
940 if ( win === el || el === doc.documentElement ) {
941 $win = $( win );
942 return {
943 borders: { top: 0, left: 0, bottom: 0, right: 0 },
944 scroll: {
945 top: $win.scrollTop(),
946 left: $win.scrollLeft()
947 },
948 scrollbar: { right: 0, bottom: 0 },
949 rect: {
950 top: 0,
951 left: 0,
952 bottom: $win.innerHeight(),
953 right: $win.innerWidth()
954 }
955 };
956 } else {
957 $el = $( el );
958 return {
959 borders: this.getBorders( el ),
960 scroll: {
961 top: $el.scrollTop(),
962 left: $el.scrollLeft()
963 },
964 scrollbar: {
965 right: $el.innerWidth() - el.clientWidth,
966 bottom: $el.innerHeight() - el.clientHeight
967 },
968 rect: el.getBoundingClientRect()
969 };
970 }
971 };
972
973 /**
974 * Get closest scrollable container.
975 *
976 * Traverses up until either a scrollable element or the root is reached, in which case the window
977 * will be returned.
978 *
979 * @static
980 * @param {HTMLElement} el Element to find scrollable container for
981 * @param {string} [dimension] Dimension of scrolling to look for; `x`, `y` or omit for either
982 * @return {HTMLElement} Closest scrollable container
983 */
984 OO.ui.Element.getClosestScrollableContainer = function ( el, dimension ) {
985 var i, val,
986 props = [ 'overflow' ],
987 $parent = $( el ).parent();
988
989 if ( dimension === 'x' || dimension === 'y' ) {
990 props.push( 'overflow-' + dimension );
991 }
992
993 while ( $parent.length ) {
994 if ( $parent[0] === el.ownerDocument.body ) {
995 return $parent[0];
996 }
997 i = props.length;
998 while ( i-- ) {
999 val = $parent.css( props[i] );
1000 if ( val === 'auto' || val === 'scroll' ) {
1001 return $parent[0];
1002 }
1003 }
1004 $parent = $parent.parent();
1005 }
1006 return this.getDocument( el ).body;
1007 };
1008
1009 /**
1010 * Scroll element into view.
1011 *
1012 * @static
1013 * @param {HTMLElement} el Element to scroll into view
1014 * @param {Object} [config={}] Configuration config
1015 * @param {string} [config.duration] jQuery animation duration value
1016 * @param {string} [config.direction] Scroll in only one direction, e.g. 'x' or 'y', omit
1017 * to scroll in both directions
1018 * @param {Function} [config.complete] Function to call when scrolling completes
1019 */
1020 OO.ui.Element.scrollIntoView = function ( el, config ) {
1021 // Configuration initialization
1022 config = config || {};
1023
1024 var rel, anim = {},
1025 callback = typeof config.complete === 'function' && config.complete,
1026 sc = this.getClosestScrollableContainer( el, config.direction ),
1027 $sc = $( sc ),
1028 eld = this.getDimensions( el ),
1029 scd = this.getDimensions( sc ),
1030 $win = $( this.getWindow( el ) );
1031
1032 // Compute the distances between the edges of el and the edges of the scroll viewport
1033 if ( $sc.is( 'body' ) ) {
1034 // If the scrollable container is the <body> this is easy
1035 rel = {
1036 top: eld.rect.top,
1037 bottom: $win.innerHeight() - eld.rect.bottom,
1038 left: eld.rect.left,
1039 right: $win.innerWidth() - eld.rect.right
1040 };
1041 } else {
1042 // Otherwise, we have to subtract el's coordinates from sc's coordinates
1043 rel = {
1044 top: eld.rect.top - ( scd.rect.top + scd.borders.top ),
1045 bottom: scd.rect.bottom - scd.borders.bottom - scd.scrollbar.bottom - eld.rect.bottom,
1046 left: eld.rect.left - ( scd.rect.left + scd.borders.left ),
1047 right: scd.rect.right - scd.borders.right - scd.scrollbar.right - eld.rect.right
1048 };
1049 }
1050
1051 if ( !config.direction || config.direction === 'y' ) {
1052 if ( rel.top < 0 ) {
1053 anim.scrollTop = scd.scroll.top + rel.top;
1054 } else if ( rel.top > 0 && rel.bottom < 0 ) {
1055 anim.scrollTop = scd.scroll.top + Math.min( rel.top, -rel.bottom );
1056 }
1057 }
1058 if ( !config.direction || config.direction === 'x' ) {
1059 if ( rel.left < 0 ) {
1060 anim.scrollLeft = scd.scroll.left + rel.left;
1061 } else if ( rel.left > 0 && rel.right < 0 ) {
1062 anim.scrollLeft = scd.scroll.left + Math.min( rel.left, -rel.right );
1063 }
1064 }
1065 if ( !$.isEmptyObject( anim ) ) {
1066 $sc.stop( true ).animate( anim, config.duration || 'fast' );
1067 if ( callback ) {
1068 $sc.queue( function ( next ) {
1069 callback();
1070 next();
1071 } );
1072 }
1073 } else {
1074 if ( callback ) {
1075 callback();
1076 }
1077 }
1078 };
1079
1080 /**
1081 * Bind a handler for an event on a DOM element.
1082 *
1083 * Used to be for working around a jQuery bug (jqbug.com/14180),
1084 * but obsolete as of jQuery 1.11.0.
1085 *
1086 * @static
1087 * @deprecated Use jQuery#on instead.
1088 * @param {HTMLElement|jQuery} el DOM element
1089 * @param {string} event Event to bind
1090 * @param {Function} callback Callback to call when the event fires
1091 */
1092 OO.ui.Element.onDOMEvent = function ( el, event, callback ) {
1093 $( el ).on( event, callback );
1094 };
1095
1096 /**
1097 * Unbind a handler bound with #static-method-onDOMEvent.
1098 *
1099 * @deprecated Use jQuery#off instead.
1100 * @static
1101 * @param {HTMLElement|jQuery} el DOM element
1102 * @param {string} event Event to unbind
1103 * @param {Function} [callback] Callback to unbind
1104 */
1105 OO.ui.Element.offDOMEvent = function ( el, event, callback ) {
1106 $( el ).off( event, callback );
1107 };
1108
1109 /* Methods */
1110
1111 /**
1112 * Check if element supports one or more methods.
1113 *
1114 * @param {string|string[]} methods Method or list of methods to check
1115 * @return boolean All methods are supported
1116 */
1117 OO.ui.Element.prototype.supports = function ( methods ) {
1118 var i, len,
1119 support = 0;
1120
1121 methods = $.isArray( methods ) ? methods : [ methods ];
1122 for ( i = 0, len = methods.length; i < len; i++ ) {
1123 if ( $.isFunction( this[methods[i]] ) ) {
1124 support++;
1125 }
1126 }
1127
1128 return methods.length === support;
1129 };
1130
1131 /**
1132 * Update the theme-provided classes.
1133 *
1134 * @localdoc This is called in element mixins and widget classes anytime state changes.
1135 * Updating is debounced, minimizing overhead of changing multiple attributes and
1136 * guaranteeing that theme updates do not occur within an element's constructor
1137 */
1138 OO.ui.Element.prototype.updateThemeClasses = function () {
1139 if ( !this.updateThemeClassesPending ) {
1140 this.updateThemeClassesPending = true;
1141 setTimeout( this.debouncedUpdateThemeClassesHandler );
1142 }
1143 };
1144
1145 /**
1146 * @private
1147 */
1148 OO.ui.Element.prototype.debouncedUpdateThemeClasses = function () {
1149 OO.ui.theme.updateElementClasses( this );
1150 this.updateThemeClassesPending = false;
1151 };
1152
1153 /**
1154 * Get the HTML tag name.
1155 *
1156 * Override this method to base the result on instance information.
1157 *
1158 * @return {string} HTML tag name
1159 */
1160 OO.ui.Element.prototype.getTagName = function () {
1161 return this.constructor.static.tagName;
1162 };
1163
1164 /**
1165 * Check if the element is attached to the DOM
1166 * @return {boolean} The element is attached to the DOM
1167 */
1168 OO.ui.Element.prototype.isElementAttached = function () {
1169 return $.contains( this.getElementDocument(), this.$element[0] );
1170 };
1171
1172 /**
1173 * Get the DOM document.
1174 *
1175 * @return {HTMLDocument} Document object
1176 */
1177 OO.ui.Element.prototype.getElementDocument = function () {
1178 return OO.ui.Element.getDocument( this.$element );
1179 };
1180
1181 /**
1182 * Get the DOM window.
1183 *
1184 * @return {Window} Window object
1185 */
1186 OO.ui.Element.prototype.getElementWindow = function () {
1187 return OO.ui.Element.getWindow( this.$element );
1188 };
1189
1190 /**
1191 * Get closest scrollable container.
1192 */
1193 OO.ui.Element.prototype.getClosestScrollableElementContainer = function () {
1194 return OO.ui.Element.getClosestScrollableContainer( this.$element[0] );
1195 };
1196
1197 /**
1198 * Get group element is in.
1199 *
1200 * @return {OO.ui.GroupElement|null} Group element, null if none
1201 */
1202 OO.ui.Element.prototype.getElementGroup = function () {
1203 return this.elementGroup;
1204 };
1205
1206 /**
1207 * Set group element is in.
1208 *
1209 * @param {OO.ui.GroupElement|null} group Group element, null if none
1210 * @chainable
1211 */
1212 OO.ui.Element.prototype.setElementGroup = function ( group ) {
1213 this.elementGroup = group;
1214 return this;
1215 };
1216
1217 /**
1218 * Scroll element into view.
1219 *
1220 * @param {Object} [config={}]
1221 */
1222 OO.ui.Element.prototype.scrollElementIntoView = function ( config ) {
1223 return OO.ui.Element.scrollIntoView( this.$element[0], config );
1224 };
1225
1226 /**
1227 * Bind a handler for an event on this.$element
1228 *
1229 * @deprecated Use jQuery#on instead.
1230 * @param {string} event
1231 * @param {Function} callback
1232 */
1233 OO.ui.Element.prototype.onDOMEvent = function ( event, callback ) {
1234 OO.ui.Element.onDOMEvent( this.$element, event, callback );
1235 };
1236
1237 /**
1238 * Unbind a handler bound with #offDOMEvent
1239 *
1240 * @deprecated Use jQuery#off instead.
1241 * @param {string} event
1242 * @param {Function} callback
1243 */
1244 OO.ui.Element.prototype.offDOMEvent = function ( event, callback ) {
1245 OO.ui.Element.offDOMEvent( this.$element, event, callback );
1246 };
1247
1248 /**
1249 * Container for elements.
1250 *
1251 * @abstract
1252 * @class
1253 * @extends OO.ui.Element
1254 * @mixins OO.EventEmitter
1255 *
1256 * @constructor
1257 * @param {Object} [config] Configuration options
1258 */
1259 OO.ui.Layout = function OoUiLayout( config ) {
1260 // Initialize config
1261 config = config || {};
1262
1263 // Parent constructor
1264 OO.ui.Layout.super.call( this, config );
1265
1266 // Mixin constructors
1267 OO.EventEmitter.call( this );
1268
1269 // Initialization
1270 this.$element.addClass( 'oo-ui-layout' );
1271 };
1272
1273 /* Setup */
1274
1275 OO.inheritClass( OO.ui.Layout, OO.ui.Element );
1276 OO.mixinClass( OO.ui.Layout, OO.EventEmitter );
1277
1278 /**
1279 * User interface control.
1280 *
1281 * @abstract
1282 * @class
1283 * @extends OO.ui.Element
1284 * @mixins OO.EventEmitter
1285 *
1286 * @constructor
1287 * @param {Object} [config] Configuration options
1288 * @cfg {boolean} [disabled=false] Disable
1289 */
1290 OO.ui.Widget = function OoUiWidget( config ) {
1291 // Initialize config
1292 config = $.extend( { disabled: false }, config );
1293
1294 // Parent constructor
1295 OO.ui.Widget.super.call( this, config );
1296
1297 // Mixin constructors
1298 OO.EventEmitter.call( this );
1299
1300 // Properties
1301 this.visible = true;
1302 this.disabled = null;
1303 this.wasDisabled = null;
1304
1305 // Initialization
1306 this.$element.addClass( 'oo-ui-widget' );
1307 this.setDisabled( !!config.disabled );
1308 };
1309
1310 /* Setup */
1311
1312 OO.inheritClass( OO.ui.Widget, OO.ui.Element );
1313 OO.mixinClass( OO.ui.Widget, OO.EventEmitter );
1314
1315 /* Events */
1316
1317 /**
1318 * @event disable
1319 * @param {boolean} disabled Widget is disabled
1320 */
1321
1322 /**
1323 * @event toggle
1324 * @param {boolean} visible Widget is visible
1325 */
1326
1327 /* Methods */
1328
1329 /**
1330 * Check if the widget is disabled.
1331 *
1332 * @return {boolean} Button is disabled
1333 */
1334 OO.ui.Widget.prototype.isDisabled = function () {
1335 return this.disabled;
1336 };
1337
1338 /**
1339 * Check if widget is visible.
1340 *
1341 * @return {boolean} Widget is visible
1342 */
1343 OO.ui.Widget.prototype.isVisible = function () {
1344 return this.visible;
1345 };
1346
1347 /**
1348 * Set the disabled state of the widget.
1349 *
1350 * This should probably change the widgets' appearance and prevent it from being used.
1351 *
1352 * @param {boolean} disabled Disable widget
1353 * @chainable
1354 */
1355 OO.ui.Widget.prototype.setDisabled = function ( disabled ) {
1356 var isDisabled;
1357
1358 this.disabled = !!disabled;
1359 isDisabled = this.isDisabled();
1360 if ( isDisabled !== this.wasDisabled ) {
1361 this.$element.toggleClass( 'oo-ui-widget-disabled', isDisabled );
1362 this.$element.toggleClass( 'oo-ui-widget-enabled', !isDisabled );
1363 this.emit( 'disable', isDisabled );
1364 this.updateThemeClasses();
1365 }
1366 this.wasDisabled = isDisabled;
1367
1368 return this;
1369 };
1370
1371 /**
1372 * Toggle visibility of widget.
1373 *
1374 * @param {boolean} [show] Make widget visible, omit to toggle visibility
1375 * @fires visible
1376 * @chainable
1377 */
1378 OO.ui.Widget.prototype.toggle = function ( show ) {
1379 show = show === undefined ? !this.visible : !!show;
1380
1381 if ( show !== this.isVisible() ) {
1382 this.visible = show;
1383 this.$element.toggle( show );
1384 this.emit( 'toggle', show );
1385 }
1386
1387 return this;
1388 };
1389
1390 /**
1391 * Update the disabled state, in case of changes in parent widget.
1392 *
1393 * @chainable
1394 */
1395 OO.ui.Widget.prototype.updateDisabled = function () {
1396 this.setDisabled( this.disabled );
1397 return this;
1398 };
1399
1400 /**
1401 * Container for elements in a child frame.
1402 *
1403 * Use together with OO.ui.WindowManager.
1404 *
1405 * @abstract
1406 * @class
1407 * @extends OO.ui.Element
1408 * @mixins OO.EventEmitter
1409 *
1410 * When a window is opened, the setup and ready processes are executed. Similarly, the hold and
1411 * teardown processes are executed when the window is closed.
1412 *
1413 * - {@link OO.ui.WindowManager#openWindow} or {@link #open} methods are used to start opening
1414 * - Window manager begins opening window
1415 * - {@link #getSetupProcess} method is called and its result executed
1416 * - {@link #getReadyProcess} method is called and its result executed
1417 * - Window is now open
1418 *
1419 * - {@link OO.ui.WindowManager#closeWindow} or {@link #close} methods are used to start closing
1420 * - Window manager begins closing window
1421 * - {@link #getHoldProcess} method is called and its result executed
1422 * - {@link #getTeardownProcess} method is called and its result executed
1423 * - Window is now closed
1424 *
1425 * Each process (setup, ready, hold and teardown) can be extended in subclasses by overriding
1426 * {@link #getSetupProcess}, {@link #getReadyProcess}, {@link #getHoldProcess} and
1427 * {@link #getTeardownProcess} respectively. Each process is executed in series, so asynchonous
1428 * processing can complete. Always assume window processes are executed asychronously. See
1429 * OO.ui.Process for more details about how to work with processes. Some events, as well as the
1430 * #open and #close methods, provide promises which are resolved when the window enters a new state.
1431 *
1432 * Sizing of windows is specified using symbolic names which are interpreted by the window manager.
1433 * If the requested size is not recognized, the window manager will choose a sensible fallback.
1434 *
1435 * @constructor
1436 * @param {Object} [config] Configuration options
1437 * @cfg {string} [size] Symbolic name of dialog size, `small`, `medium`, `large` or `full`; omit to
1438 * use #static-size
1439 * @fires initialize
1440 */
1441 OO.ui.Window = function OoUiWindow( config ) {
1442 // Configuration initialization
1443 config = config || {};
1444
1445 // Parent constructor
1446 OO.ui.Window.super.call( this, config );
1447
1448 // Mixin constructors
1449 OO.EventEmitter.call( this );
1450
1451 // Properties
1452 this.manager = null;
1453 this.initialized = false;
1454 this.visible = false;
1455 this.opening = null;
1456 this.closing = null;
1457 this.opened = null;
1458 this.timing = null;
1459 this.loading = null;
1460 this.size = config.size || this.constructor.static.size;
1461 this.$frame = this.$( '<div>' );
1462 this.$overlay = this.$( '<div>' );
1463
1464 // Initialization
1465 this.$element
1466 .addClass( 'oo-ui-window' )
1467 .append( this.$frame, this.$overlay );
1468 this.$frame.addClass( 'oo-ui-window-frame' );
1469 this.$overlay.addClass( 'oo-ui-window-overlay' );
1470
1471 // NOTE: Additional intitialization will occur when #setManager is called
1472 };
1473
1474 /* Setup */
1475
1476 OO.inheritClass( OO.ui.Window, OO.ui.Element );
1477 OO.mixinClass( OO.ui.Window, OO.EventEmitter );
1478
1479 /* Static Properties */
1480
1481 /**
1482 * Symbolic name of size.
1483 *
1484 * Size is used if no size is configured during construction.
1485 *
1486 * @static
1487 * @inheritable
1488 * @property {string}
1489 */
1490 OO.ui.Window.static.size = 'medium';
1491
1492 /* Static Methods */
1493
1494 /**
1495 * Transplant the CSS styles from as parent document to a frame's document.
1496 *
1497 * This loops over the style sheets in the parent document, and copies their nodes to the
1498 * frame's document. It then polls the document to see when all styles have loaded, and once they
1499 * have, resolves the promise.
1500 *
1501 * If the styles still haven't loaded after a long time (5 seconds by default), we give up waiting
1502 * and resolve the promise anyway. This protects against cases like a display: none; iframe in
1503 * Firefox, where the styles won't load until the iframe becomes visible.
1504 *
1505 * For details of how we arrived at the strategy used in this function, see #load.
1506 *
1507 * @static
1508 * @inheritable
1509 * @param {HTMLDocument} parentDoc Document to transplant styles from
1510 * @param {HTMLDocument} frameDoc Document to transplant styles to
1511 * @param {number} [timeout=5000] How long to wait before giving up (in ms). If 0, never give up.
1512 * @return {jQuery.Promise} Promise resolved when styles have loaded
1513 */
1514 OO.ui.Window.static.transplantStyles = function ( parentDoc, frameDoc, timeout ) {
1515 var i, numSheets, styleNode, styleText, newNode, timeoutID, pollNodeId, $pendingPollNodes,
1516 $pollNodes = $( [] ),
1517 // Fake font-family value
1518 fontFamily = 'oo-ui-frame-transplantStyles-loaded',
1519 nextIndex = parentDoc.oouiFrameTransplantStylesNextIndex || 0,
1520 deferred = $.Deferred();
1521
1522 for ( i = 0, numSheets = parentDoc.styleSheets.length; i < numSheets; i++ ) {
1523 styleNode = parentDoc.styleSheets[i].ownerNode;
1524 if ( styleNode.disabled ) {
1525 continue;
1526 }
1527
1528 if ( styleNode.nodeName.toLowerCase() === 'link' ) {
1529 // External stylesheet; use @import
1530 styleText = '@import url(' + styleNode.href + ');';
1531 } else {
1532 // Internal stylesheet; just copy the text
1533 // For IE10 we need to fall back to .cssText, BUT that's undefined in
1534 // other browsers, so fall back to '' rather than 'undefined'
1535 styleText = styleNode.textContent || parentDoc.styleSheets[i].cssText || '';
1536 }
1537
1538 // Create a node with a unique ID that we're going to monitor to see when the CSS
1539 // has loaded
1540 if ( styleNode.oouiFrameTransplantStylesId ) {
1541 // If we're nesting transplantStyles operations and this node already has
1542 // a CSS rule to wait for loading, reuse it
1543 pollNodeId = styleNode.oouiFrameTransplantStylesId;
1544 } else {
1545 // Otherwise, create a new ID
1546 pollNodeId = 'oo-ui-frame-transplantStyles-loaded-' + nextIndex;
1547 nextIndex++;
1548
1549 // Add #pollNodeId { font-family: ... } to the end of the stylesheet / after the @import
1550 // The font-family rule will only take effect once the @import finishes
1551 styleText += '\n' + '#' + pollNodeId + ' { font-family: ' + fontFamily + '; }';
1552 }
1553
1554 // Create a node with id=pollNodeId
1555 $pollNodes = $pollNodes.add( $( '<div>', frameDoc )
1556 .attr( 'id', pollNodeId )
1557 .appendTo( frameDoc.body )
1558 );
1559
1560 // Add our modified CSS as a <style> tag
1561 newNode = frameDoc.createElement( 'style' );
1562 newNode.textContent = styleText;
1563 newNode.oouiFrameTransplantStylesId = pollNodeId;
1564 frameDoc.head.appendChild( newNode );
1565 }
1566 frameDoc.oouiFrameTransplantStylesNextIndex = nextIndex;
1567
1568 // Poll every 100ms until all external stylesheets have loaded
1569 $pendingPollNodes = $pollNodes;
1570 timeoutID = setTimeout( function pollExternalStylesheets() {
1571 while (
1572 $pendingPollNodes.length > 0 &&
1573 $pendingPollNodes.eq( 0 ).css( 'font-family' ) === fontFamily
1574 ) {
1575 $pendingPollNodes = $pendingPollNodes.slice( 1 );
1576 }
1577
1578 if ( $pendingPollNodes.length === 0 ) {
1579 // We're done!
1580 if ( timeoutID !== null ) {
1581 timeoutID = null;
1582 $pollNodes.remove();
1583 deferred.resolve();
1584 }
1585 } else {
1586 timeoutID = setTimeout( pollExternalStylesheets, 100 );
1587 }
1588 }, 100 );
1589 // ...but give up after a while
1590 if ( timeout !== 0 ) {
1591 setTimeout( function () {
1592 if ( timeoutID ) {
1593 clearTimeout( timeoutID );
1594 timeoutID = null;
1595 $pollNodes.remove();
1596 deferred.reject();
1597 }
1598 }, timeout || 5000 );
1599 }
1600
1601 return deferred.promise();
1602 };
1603
1604 /* Methods */
1605
1606 /**
1607 * Handle mouse down events.
1608 *
1609 * @param {jQuery.Event} e Mouse down event
1610 */
1611 OO.ui.Window.prototype.onMouseDown = function ( e ) {
1612 // Prevent clicking on the click-block from stealing focus
1613 if ( e.target === this.$element[0] ) {
1614 return false;
1615 }
1616 };
1617
1618 /**
1619 * Check if window has been initialized.
1620 *
1621 * @return {boolean} Window has been initialized
1622 */
1623 OO.ui.Window.prototype.isInitialized = function () {
1624 return this.initialized;
1625 };
1626
1627 /**
1628 * Check if window is visible.
1629 *
1630 * @return {boolean} Window is visible
1631 */
1632 OO.ui.Window.prototype.isVisible = function () {
1633 return this.visible;
1634 };
1635
1636 /**
1637 * Check if window is loading.
1638 *
1639 * @return {boolean} Window is loading
1640 */
1641 OO.ui.Window.prototype.isLoading = function () {
1642 return this.loading && this.loading.state() === 'pending';
1643 };
1644
1645 /**
1646 * Check if window is loaded.
1647 *
1648 * @return {boolean} Window is loaded
1649 */
1650 OO.ui.Window.prototype.isLoaded = function () {
1651 return this.loading && this.loading.state() === 'resolved';
1652 };
1653
1654 /**
1655 * Check if window is opening.
1656 *
1657 * This is a wrapper around OO.ui.WindowManager#isOpening.
1658 *
1659 * @return {boolean} Window is opening
1660 */
1661 OO.ui.Window.prototype.isOpening = function () {
1662 return this.manager.isOpening( this );
1663 };
1664
1665 /**
1666 * Check if window is closing.
1667 *
1668 * This is a wrapper around OO.ui.WindowManager#isClosing.
1669 *
1670 * @return {boolean} Window is closing
1671 */
1672 OO.ui.Window.prototype.isClosing = function () {
1673 return this.manager.isClosing( this );
1674 };
1675
1676 /**
1677 * Check if window is opened.
1678 *
1679 * This is a wrapper around OO.ui.WindowManager#isOpened.
1680 *
1681 * @return {boolean} Window is opened
1682 */
1683 OO.ui.Window.prototype.isOpened = function () {
1684 return this.manager.isOpened( this );
1685 };
1686
1687 /**
1688 * Get the window manager.
1689 *
1690 * @return {OO.ui.WindowManager} Manager of window
1691 */
1692 OO.ui.Window.prototype.getManager = function () {
1693 return this.manager;
1694 };
1695
1696 /**
1697 * Get the window size.
1698 *
1699 * @return {string} Symbolic size name, e.g. 'small', 'medium', 'large', 'full'
1700 */
1701 OO.ui.Window.prototype.getSize = function () {
1702 return this.size;
1703 };
1704
1705 /**
1706 * Get the height of the dialog contents.
1707 *
1708 * @return {number} Content height
1709 */
1710 OO.ui.Window.prototype.getContentHeight = function () {
1711 // Temporarily resize the frame so getBodyHeight() can use scrollHeight measurements
1712 var bodyHeight, oldHeight = this.$frame[0].style.height;
1713 this.$frame[0].style.height = '1px';
1714 bodyHeight = this.getBodyHeight();
1715 this.$frame[0].style.height = oldHeight;
1716
1717 return Math.round(
1718 // Add buffer for border
1719 ( this.$frame.outerHeight() - this.$frame.innerHeight() ) +
1720 // Use combined heights of children
1721 ( this.$head.outerHeight( true ) + bodyHeight + this.$foot.outerHeight( true ) )
1722 );
1723 };
1724
1725 /**
1726 * Get the height of the dialog contents.
1727 *
1728 * When this function is called, the dialog will temporarily have been resized
1729 * to height=1px, so .scrollHeight measurements can be taken accurately.
1730 *
1731 * @return {number} Height of content
1732 */
1733 OO.ui.Window.prototype.getBodyHeight = function () {
1734 return this.$body[0].scrollHeight;
1735 };
1736
1737 /**
1738 * Get the directionality of the frame
1739 *
1740 * @return {string} Directionality, 'ltr' or 'rtl'
1741 */
1742 OO.ui.Window.prototype.getDir = function () {
1743 return this.dir;
1744 };
1745
1746 /**
1747 * Get a process for setting up a window for use.
1748 *
1749 * Each time the window is opened this process will set it up for use in a particular context, based
1750 * on the `data` argument.
1751 *
1752 * When you override this method, you can add additional setup steps to the process the parent
1753 * method provides using the 'first' and 'next' methods.
1754 *
1755 * @abstract
1756 * @param {Object} [data] Window opening data
1757 * @return {OO.ui.Process} Setup process
1758 */
1759 OO.ui.Window.prototype.getSetupProcess = function () {
1760 return new OO.ui.Process();
1761 };
1762
1763 /**
1764 * Get a process for readying a window for use.
1765 *
1766 * Each time the window is open and setup, this process will ready it up for use in a particular
1767 * context, based on the `data` argument.
1768 *
1769 * When you override this method, you can add additional setup steps to the process the parent
1770 * method provides using the 'first' and 'next' methods.
1771 *
1772 * @abstract
1773 * @param {Object} [data] Window opening data
1774 * @return {OO.ui.Process} Setup process
1775 */
1776 OO.ui.Window.prototype.getReadyProcess = function () {
1777 return new OO.ui.Process();
1778 };
1779
1780 /**
1781 * Get a process for holding a window from use.
1782 *
1783 * Each time the window is closed, this process will hold it from use in a particular context, based
1784 * on the `data` argument.
1785 *
1786 * When you override this method, you can add additional setup steps to the process the parent
1787 * method provides using the 'first' and 'next' methods.
1788 *
1789 * @abstract
1790 * @param {Object} [data] Window closing data
1791 * @return {OO.ui.Process} Hold process
1792 */
1793 OO.ui.Window.prototype.getHoldProcess = function () {
1794 return new OO.ui.Process();
1795 };
1796
1797 /**
1798 * Get a process for tearing down a window after use.
1799 *
1800 * Each time the window is closed this process will tear it down and do something with the user's
1801 * interactions within the window, based on the `data` argument.
1802 *
1803 * When you override this method, you can add additional teardown steps to the process the parent
1804 * method provides using the 'first' and 'next' methods.
1805 *
1806 * @abstract
1807 * @param {Object} [data] Window closing data
1808 * @return {OO.ui.Process} Teardown process
1809 */
1810 OO.ui.Window.prototype.getTeardownProcess = function () {
1811 return new OO.ui.Process();
1812 };
1813
1814 /**
1815 * Toggle visibility of window.
1816 *
1817 * If the window is isolated and hasn't fully loaded yet, the visiblity property will be used
1818 * instead of display.
1819 *
1820 * @param {boolean} [show] Make window visible, omit to toggle visibility
1821 * @fires visible
1822 * @chainable
1823 */
1824 OO.ui.Window.prototype.toggle = function ( show ) {
1825 show = show === undefined ? !this.visible : !!show;
1826
1827 if ( show !== this.isVisible() ) {
1828 this.visible = show;
1829
1830 if ( this.isolated && !this.isLoaded() ) {
1831 // Hide the window using visibility instead of display until loading is complete
1832 // Can't use display: none; because that prevents the iframe from loading in Firefox
1833 this.$element.css( 'visibility', show ? 'visible' : 'hidden' );
1834 } else {
1835 this.$element.toggle( show ).css( 'visibility', '' );
1836 }
1837 this.emit( 'toggle', show );
1838 }
1839
1840 return this;
1841 };
1842
1843 /**
1844 * Set the window manager.
1845 *
1846 * This must be called before initialize. Calling it more than once will cause an error.
1847 *
1848 * @param {OO.ui.WindowManager} manager Manager for this window
1849 * @throws {Error} If called more than once
1850 * @chainable
1851 */
1852 OO.ui.Window.prototype.setManager = function ( manager ) {
1853 if ( this.manager ) {
1854 throw new Error( 'Cannot set window manager, window already has a manager' );
1855 }
1856
1857 // Properties
1858 this.manager = manager;
1859 this.isolated = manager.shouldIsolate();
1860
1861 // Initialization
1862 if ( this.isolated ) {
1863 this.$iframe = this.$( '<iframe>' );
1864 this.$iframe.attr( { frameborder: 0, scrolling: 'no' } );
1865 this.$frame.append( this.$iframe );
1866 this.$ = function () {
1867 throw new Error( 'this.$() cannot be used until the frame has been initialized.' );
1868 };
1869 // WARNING: Do not use this.$ again until #initialize is called
1870 } else {
1871 this.$content = this.$( '<div>' );
1872 this.$document = $( this.getElementDocument() );
1873 this.$content.addClass( 'oo-ui-window-content' );
1874 this.$frame.append( this.$content );
1875 }
1876 this.toggle( false );
1877
1878 // Figure out directionality:
1879 this.dir = OO.ui.Element.getDir( this.$iframe || this.$content ) || 'ltr';
1880
1881 return this;
1882 };
1883
1884 /**
1885 * Set the window size.
1886 *
1887 * @param {string} size Symbolic size name, e.g. 'small', 'medium', 'large', 'full'
1888 * @chainable
1889 */
1890 OO.ui.Window.prototype.setSize = function ( size ) {
1891 this.size = size;
1892 this.manager.updateWindowSize( this );
1893 return this;
1894 };
1895
1896 /**
1897 * Set window dimensions.
1898 *
1899 * Properties are applied to the frame container.
1900 *
1901 * @param {Object} dim CSS dimension properties
1902 * @param {string|number} [dim.width] Width
1903 * @param {string|number} [dim.minWidth] Minimum width
1904 * @param {string|number} [dim.maxWidth] Maximum width
1905 * @param {string|number} [dim.width] Height, omit to set based on height of contents
1906 * @param {string|number} [dim.minWidth] Minimum height
1907 * @param {string|number} [dim.maxWidth] Maximum height
1908 * @chainable
1909 */
1910 OO.ui.Window.prototype.setDimensions = function ( dim ) {
1911 // Apply width before height so height is not based on wrapping content using the wrong width
1912 this.$frame.css( {
1913 width: dim.width || '',
1914 minWidth: dim.minWidth || '',
1915 maxWidth: dim.maxWidth || ''
1916 } );
1917 this.$frame.css( {
1918 height: ( dim.height !== undefined ? dim.height : this.getContentHeight() ) || '',
1919 minHeight: dim.minHeight || '',
1920 maxHeight: dim.maxHeight || ''
1921 } );
1922 return this;
1923 };
1924
1925 /**
1926 * Initialize window contents.
1927 *
1928 * The first time the window is opened, #initialize is called when it's safe to begin populating
1929 * its contents. See #getSetupProcess for a way to make changes each time the window opens.
1930 *
1931 * Once this method is called, this.$ can be used to create elements within the frame.
1932 *
1933 * @throws {Error} If not attached to a manager
1934 * @chainable
1935 */
1936 OO.ui.Window.prototype.initialize = function () {
1937 if ( !this.manager ) {
1938 throw new Error( 'Cannot initialize window, must be attached to a manager' );
1939 }
1940
1941 // Properties
1942 this.$head = this.$( '<div>' );
1943 this.$body = this.$( '<div>' );
1944 this.$foot = this.$( '<div>' );
1945 this.$innerOverlay = this.$( '<div>' );
1946
1947 // Events
1948 this.$element.on( 'mousedown', this.onMouseDown.bind( this ) );
1949
1950 // Initialization
1951 this.$head.addClass( 'oo-ui-window-head' );
1952 this.$body.addClass( 'oo-ui-window-body' );
1953 this.$foot.addClass( 'oo-ui-window-foot' );
1954 this.$innerOverlay.addClass( 'oo-ui-window-inner-overlay' );
1955 this.$content.append( this.$head, this.$body, this.$foot, this.$innerOverlay );
1956
1957 return this;
1958 };
1959
1960 /**
1961 * Open window.
1962 *
1963 * This is a wrapper around calling {@link OO.ui.WindowManager#openWindow} on the window manager.
1964 * To do something each time the window opens, use #getSetupProcess or #getReadyProcess.
1965 *
1966 * @param {Object} [data] Window opening data
1967 * @return {jQuery.Promise} Promise resolved when window is opened; when the promise is resolved the
1968 * first argument will be a promise which will be resolved when the window begins closing
1969 */
1970 OO.ui.Window.prototype.open = function ( data ) {
1971 return this.manager.openWindow( this, data );
1972 };
1973
1974 /**
1975 * Close window.
1976 *
1977 * This is a wrapper around calling OO.ui.WindowManager#closeWindow on the window manager.
1978 * To do something each time the window closes, use #getHoldProcess or #getTeardownProcess.
1979 *
1980 * @param {Object} [data] Window closing data
1981 * @return {jQuery.Promise} Promise resolved when window is closed
1982 */
1983 OO.ui.Window.prototype.close = function ( data ) {
1984 return this.manager.closeWindow( this, data );
1985 };
1986
1987 /**
1988 * Setup window.
1989 *
1990 * This is called by OO.ui.WindowManager durring window opening, and should not be called directly
1991 * by other systems.
1992 *
1993 * @param {Object} [data] Window opening data
1994 * @return {jQuery.Promise} Promise resolved when window is setup
1995 */
1996 OO.ui.Window.prototype.setup = function ( data ) {
1997 var win = this,
1998 deferred = $.Deferred();
1999
2000 this.$element.show();
2001 this.visible = true;
2002 this.getSetupProcess( data ).execute().done( function () {
2003 // Force redraw by asking the browser to measure the elements' widths
2004 win.$element.addClass( 'oo-ui-window-setup' ).width();
2005 win.$content.addClass( 'oo-ui-window-content-setup' ).width();
2006 deferred.resolve();
2007 } );
2008
2009 return deferred.promise();
2010 };
2011
2012 /**
2013 * Ready window.
2014 *
2015 * This is called by OO.ui.WindowManager durring window opening, and should not be called directly
2016 * by other systems.
2017 *
2018 * @param {Object} [data] Window opening data
2019 * @return {jQuery.Promise} Promise resolved when window is ready
2020 */
2021 OO.ui.Window.prototype.ready = function ( data ) {
2022 var win = this,
2023 deferred = $.Deferred();
2024
2025 this.$content.focus();
2026 this.getReadyProcess( data ).execute().done( function () {
2027 // Force redraw by asking the browser to measure the elements' widths
2028 win.$element.addClass( 'oo-ui-window-ready' ).width();
2029 win.$content.addClass( 'oo-ui-window-content-ready' ).width();
2030 deferred.resolve();
2031 } );
2032
2033 return deferred.promise();
2034 };
2035
2036 /**
2037 * Hold window.
2038 *
2039 * This is called by OO.ui.WindowManager durring window closing, and should not be called directly
2040 * by other systems.
2041 *
2042 * @param {Object} [data] Window closing data
2043 * @return {jQuery.Promise} Promise resolved when window is held
2044 */
2045 OO.ui.Window.prototype.hold = function ( data ) {
2046 var win = this,
2047 deferred = $.Deferred();
2048
2049 this.getHoldProcess( data ).execute().done( function () {
2050 // Get the focused element within the window's content
2051 var $focus = win.$content.find( OO.ui.Element.getDocument( win.$content ).activeElement );
2052
2053 // Blur the focused element
2054 if ( $focus.length ) {
2055 $focus[0].blur();
2056 }
2057
2058 // Force redraw by asking the browser to measure the elements' widths
2059 win.$element.removeClass( 'oo-ui-window-ready' ).width();
2060 win.$content.removeClass( 'oo-ui-window-content-ready' ).width();
2061 deferred.resolve();
2062 } );
2063
2064 return deferred.promise();
2065 };
2066
2067 /**
2068 * Teardown window.
2069 *
2070 * This is called by OO.ui.WindowManager durring window closing, and should not be called directly
2071 * by other systems.
2072 *
2073 * @param {Object} [data] Window closing data
2074 * @return {jQuery.Promise} Promise resolved when window is torn down
2075 */
2076 OO.ui.Window.prototype.teardown = function ( data ) {
2077 var win = this,
2078 deferred = $.Deferred();
2079
2080 this.getTeardownProcess( data ).execute().done( function () {
2081 // Force redraw by asking the browser to measure the elements' widths
2082 win.$element.removeClass( 'oo-ui-window-setup' ).width();
2083 win.$content.removeClass( 'oo-ui-window-content-setup' ).width();
2084 win.$element.hide();
2085 win.visible = false;
2086 deferred.resolve();
2087 } );
2088
2089 return deferred.promise();
2090 };
2091
2092 /**
2093 * Load the frame contents.
2094 *
2095 * Once the iframe's stylesheets are loaded, the `load` event will be emitted and the returned
2096 * promise will be resolved. Calling while loading will return a promise but not trigger a new
2097 * loading cycle. Calling after loading is complete will return a promise that's already been
2098 * resolved.
2099 *
2100 * Sounds simple right? Read on...
2101 *
2102 * When you create a dynamic iframe using open/write/close, the window.load event for the
2103 * iframe is triggered when you call close, and there's no further load event to indicate that
2104 * everything is actually loaded.
2105 *
2106 * In Chrome, stylesheets don't show up in document.styleSheets until they have loaded, so we could
2107 * just poll that array and wait for it to have the right length. However, in Firefox, stylesheets
2108 * are added to document.styleSheets immediately, and the only way you can determine whether they've
2109 * loaded is to attempt to access .cssRules and wait for that to stop throwing an exception. But
2110 * cross-domain stylesheets never allow .cssRules to be accessed even after they have loaded.
2111 *
2112 * The workaround is to change all `<link href="...">` tags to `<style>@import url(...)</style>`
2113 * tags. Because `@import` is blocking, Chrome won't add the stylesheet to document.styleSheets
2114 * until the `@import` has finished, and Firefox won't allow .cssRules to be accessed until the
2115 * `@import` has finished. And because the contents of the `<style>` tag are from the same origin,
2116 * accessing .cssRules is allowed.
2117 *
2118 * However, now that we control the styles we're injecting, we might as well do away with
2119 * browser-specific polling hacks like document.styleSheets and .cssRules, and instead inject
2120 * `<style>@import url(...); #foo { font-family: someValue; }</style>`, then create `<div id="foo">`
2121 * and wait for its font-family to change to someValue. Because `@import` is blocking, the
2122 * font-family rule is not applied until after the `@import` finishes.
2123 *
2124 * All this stylesheet injection and polling magic is in #transplantStyles.
2125 *
2126 * @return {jQuery.Promise} Promise resolved when loading is complete
2127 * @fires load
2128 */
2129 OO.ui.Window.prototype.load = function () {
2130 var sub, doc, loading,
2131 win = this;
2132
2133 // Non-isolated windows are already "loaded"
2134 if ( !this.loading && !this.isolated ) {
2135 this.loading = $.Deferred().resolve();
2136 this.initialize();
2137 // Set initialized state after so sub-classes aren't confused by it being set by calling
2138 // their parent initialize method
2139 this.initialized = true;
2140 }
2141
2142 // Return existing promise if already loading or loaded
2143 if ( this.loading ) {
2144 return this.loading.promise();
2145 }
2146
2147 // Load the frame
2148 loading = this.loading = $.Deferred();
2149 sub = this.$iframe.prop( 'contentWindow' );
2150 doc = sub.document;
2151
2152 // Initialize contents
2153 doc.open();
2154 doc.write(
2155 '<!doctype html>' +
2156 '<html>' +
2157 '<body class="oo-ui-window-isolated oo-ui-' + this.dir + '"' +
2158 ' style="direction:' + this.dir + ';" dir="' + this.dir + '">' +
2159 '<div class="oo-ui-window-content"></div>' +
2160 '</body>' +
2161 '</html>'
2162 );
2163 doc.close();
2164
2165 // Properties
2166 this.$ = OO.ui.Element.getJQuery( doc, this.$iframe );
2167 this.$content = this.$( '.oo-ui-window-content' ).attr( 'tabIndex', 0 );
2168 this.$document = this.$( doc );
2169
2170 // Initialization
2171 this.constructor.static.transplantStyles( this.getElementDocument(), this.$document[0] )
2172 .always( function () {
2173 // Initialize isolated windows
2174 win.initialize();
2175 // Set initialized state after so sub-classes aren't confused by it being set by calling
2176 // their parent initialize method
2177 win.initialized = true;
2178 // Undo the visibility: hidden; hack and apply display: none;
2179 // We can do this safely now that the iframe has initialized
2180 // (don't do this from within #initialize because it has to happen
2181 // after the all subclasses have been handled as well).
2182 win.toggle( win.isVisible() );
2183
2184 loading.resolve();
2185 } );
2186
2187 return loading.promise();
2188 };
2189
2190 /**
2191 * Base class for all dialogs.
2192 *
2193 * Logic:
2194 * - Manage the window (open and close, etc.).
2195 * - Store the internal name and display title.
2196 * - A stack to track one or more pending actions.
2197 * - Manage a set of actions that can be performed.
2198 * - Configure and create action widgets.
2199 *
2200 * User interface:
2201 * - Close the dialog with Escape key.
2202 * - Visually lock the dialog while an action is in
2203 * progress (aka "pending").
2204 *
2205 * Subclass responsibilities:
2206 * - Display the title somewhere.
2207 * - Add content to the dialog.
2208 * - Provide a UI to close the dialog.
2209 * - Display the action widgets somewhere.
2210 *
2211 * @abstract
2212 * @class
2213 * @extends OO.ui.Window
2214 * @mixins OO.ui.PendingElement
2215 *
2216 * @constructor
2217 * @param {Object} [config] Configuration options
2218 */
2219 OO.ui.Dialog = function OoUiDialog( config ) {
2220 // Parent constructor
2221 OO.ui.Dialog.super.call( this, config );
2222
2223 // Mixin constructors
2224 OO.ui.PendingElement.call( this );
2225
2226 // Properties
2227 this.actions = new OO.ui.ActionSet();
2228 this.attachedActions = [];
2229 this.currentAction = null;
2230
2231 // Events
2232 this.actions.connect( this, {
2233 click: 'onActionClick',
2234 resize: 'onActionResize',
2235 change: 'onActionsChange'
2236 } );
2237
2238 // Initialization
2239 this.$element
2240 .addClass( 'oo-ui-dialog' )
2241 .attr( 'role', 'dialog' );
2242 };
2243
2244 /* Setup */
2245
2246 OO.inheritClass( OO.ui.Dialog, OO.ui.Window );
2247 OO.mixinClass( OO.ui.Dialog, OO.ui.PendingElement );
2248
2249 /* Static Properties */
2250
2251 /**
2252 * Symbolic name of dialog.
2253 *
2254 * @abstract
2255 * @static
2256 * @inheritable
2257 * @property {string}
2258 */
2259 OO.ui.Dialog.static.name = '';
2260
2261 /**
2262 * Dialog title.
2263 *
2264 * @abstract
2265 * @static
2266 * @inheritable
2267 * @property {jQuery|string|Function} Label nodes, text or a function that returns nodes or text
2268 */
2269 OO.ui.Dialog.static.title = '';
2270
2271 /**
2272 * List of OO.ui.ActionWidget configuration options.
2273 *
2274 * @static
2275 * inheritable
2276 * @property {Object[]}
2277 */
2278 OO.ui.Dialog.static.actions = [];
2279
2280 /**
2281 * Close dialog when the escape key is pressed.
2282 *
2283 * @static
2284 * @abstract
2285 * @inheritable
2286 * @property {boolean}
2287 */
2288 OO.ui.Dialog.static.escapable = true;
2289
2290 /* Methods */
2291
2292 /**
2293 * Handle frame document key down events.
2294 *
2295 * @param {jQuery.Event} e Key down event
2296 */
2297 OO.ui.Dialog.prototype.onDocumentKeyDown = function ( e ) {
2298 if ( e.which === OO.ui.Keys.ESCAPE ) {
2299 this.close();
2300 return false;
2301 }
2302 };
2303
2304 /**
2305 * Handle action resized events.
2306 *
2307 * @param {OO.ui.ActionWidget} action Action that was resized
2308 */
2309 OO.ui.Dialog.prototype.onActionResize = function () {
2310 // Override in subclass
2311 };
2312
2313 /**
2314 * Handle action click events.
2315 *
2316 * @param {OO.ui.ActionWidget} action Action that was clicked
2317 */
2318 OO.ui.Dialog.prototype.onActionClick = function ( action ) {
2319 if ( !this.isPending() ) {
2320 this.currentAction = action;
2321 this.executeAction( action.getAction() );
2322 }
2323 };
2324
2325 /**
2326 * Handle actions change event.
2327 */
2328 OO.ui.Dialog.prototype.onActionsChange = function () {
2329 this.detachActions();
2330 if ( !this.isClosing() ) {
2331 this.attachActions();
2332 }
2333 };
2334
2335 /**
2336 * Get set of actions.
2337 *
2338 * @return {OO.ui.ActionSet}
2339 */
2340 OO.ui.Dialog.prototype.getActions = function () {
2341 return this.actions;
2342 };
2343
2344 /**
2345 * Get a process for taking action.
2346 *
2347 * When you override this method, you can add additional accept steps to the process the parent
2348 * method provides using the 'first' and 'next' methods.
2349 *
2350 * @abstract
2351 * @param {string} [action] Symbolic name of action
2352 * @return {OO.ui.Process} Action process
2353 */
2354 OO.ui.Dialog.prototype.getActionProcess = function ( action ) {
2355 return new OO.ui.Process()
2356 .next( function () {
2357 if ( !action ) {
2358 // An empty action always closes the dialog without data, which should always be
2359 // safe and make no changes
2360 this.close();
2361 }
2362 }, this );
2363 };
2364
2365 /**
2366 * @inheritdoc
2367 *
2368 * @param {Object} [data] Dialog opening data
2369 * @param {jQuery|string|Function|null} [data.title] Dialog title, omit to use #static-title
2370 * @param {Object[]} [data.actions] List of OO.ui.ActionWidget configuration options for each
2371 * action item, omit to use #static-actions
2372 */
2373 OO.ui.Dialog.prototype.getSetupProcess = function ( data ) {
2374 data = data || {};
2375
2376 // Parent method
2377 return OO.ui.Dialog.super.prototype.getSetupProcess.call( this, data )
2378 .next( function () {
2379 var i, len,
2380 items = [],
2381 config = this.constructor.static,
2382 actions = data.actions !== undefined ? data.actions : config.actions;
2383
2384 this.title.setLabel(
2385 data.title !== undefined ? data.title : this.constructor.static.title
2386 );
2387 for ( i = 0, len = actions.length; i < len; i++ ) {
2388 items.push(
2389 new OO.ui.ActionWidget( $.extend( { $: this.$ }, actions[i] ) )
2390 );
2391 }
2392 this.actions.add( items );
2393 }, this );
2394 };
2395
2396 /**
2397 * @inheritdoc
2398 */
2399 OO.ui.Dialog.prototype.getTeardownProcess = function ( data ) {
2400 // Parent method
2401 return OO.ui.Dialog.super.prototype.getTeardownProcess.call( this, data )
2402 .first( function () {
2403 this.actions.clear();
2404 this.currentAction = null;
2405 }, this );
2406 };
2407
2408 /**
2409 * @inheritdoc
2410 */
2411 OO.ui.Dialog.prototype.initialize = function () {
2412 // Parent method
2413 OO.ui.Dialog.super.prototype.initialize.call( this );
2414
2415 // Properties
2416 this.title = new OO.ui.LabelWidget( { $: this.$ } );
2417
2418 // Events
2419 if ( this.constructor.static.escapable ) {
2420 this.$document.on( 'keydown', this.onDocumentKeyDown.bind( this ) );
2421 }
2422
2423 // Initialization
2424 this.$content.addClass( 'oo-ui-dialog-content' );
2425 this.setPendingElement( this.$head );
2426 };
2427
2428 /**
2429 * Attach action actions.
2430 */
2431 OO.ui.Dialog.prototype.attachActions = function () {
2432 // Remember the list of potentially attached actions
2433 this.attachedActions = this.actions.get();
2434 };
2435
2436 /**
2437 * Detach action actions.
2438 *
2439 * @chainable
2440 */
2441 OO.ui.Dialog.prototype.detachActions = function () {
2442 var i, len;
2443
2444 // Detach all actions that may have been previously attached
2445 for ( i = 0, len = this.attachedActions.length; i < len; i++ ) {
2446 this.attachedActions[i].$element.detach();
2447 }
2448 this.attachedActions = [];
2449 };
2450
2451 /**
2452 * Execute an action.
2453 *
2454 * @param {string} action Symbolic name of action to execute
2455 * @return {jQuery.Promise} Promise resolved when action completes, rejected if it fails
2456 */
2457 OO.ui.Dialog.prototype.executeAction = function ( action ) {
2458 this.pushPending();
2459 return this.getActionProcess( action ).execute()
2460 .always( this.popPending.bind( this ) );
2461 };
2462
2463 /**
2464 * Collection of windows.
2465 *
2466 * @class
2467 * @extends OO.ui.Element
2468 * @mixins OO.EventEmitter
2469 *
2470 * Managed windows are mutually exclusive. If a window is opened while there is a current window
2471 * already opening or opened, the current window will be closed without data. Empty closing data
2472 * should always result in the window being closed without causing constructive or destructive
2473 * action.
2474 *
2475 * As a window is opened and closed, it passes through several stages and the manager emits several
2476 * corresponding events.
2477 *
2478 * - {@link #openWindow} or {@link OO.ui.Window#open} methods are used to start opening
2479 * - {@link #event-opening} is emitted with `opening` promise
2480 * - {@link #getSetupDelay} is called the returned value is used to time a pause in execution
2481 * - {@link OO.ui.Window#getSetupProcess} method is called on the window and its result executed
2482 * - `setup` progress notification is emitted from opening promise
2483 * - {@link #getReadyDelay} is called the returned value is used to time a pause in execution
2484 * - {@link OO.ui.Window#getReadyProcess} method is called on the window and its result executed
2485 * - `ready` progress notification is emitted from opening promise
2486 * - `opening` promise is resolved with `opened` promise
2487 * - Window is now open
2488 *
2489 * - {@link #closeWindow} or {@link OO.ui.Window#close} methods are used to start closing
2490 * - `opened` promise is resolved with `closing` promise
2491 * - {@link #event-closing} is emitted with `closing` promise
2492 * - {@link #getHoldDelay} is called the returned value is used to time a pause in execution
2493 * - {@link OO.ui.Window#getHoldProcess} method is called on the window and its result executed
2494 * - `hold` progress notification is emitted from opening promise
2495 * - {@link #getTeardownDelay} is called the returned value is used to time a pause in execution
2496 * - {@link OO.ui.Window#getTeardownProcess} method is called on the window and its result executed
2497 * - `teardown` progress notification is emitted from opening promise
2498 * - Closing promise is resolved
2499 * - Window is now closed
2500 *
2501 * @constructor
2502 * @param {Object} [config] Configuration options
2503 * @cfg {boolean} [isolate] Configure managed windows to isolate their content using inline frames
2504 * @cfg {OO.Factory} [factory] Window factory to use for automatic instantiation
2505 * @cfg {boolean} [modal=true] Prevent interaction outside the dialog
2506 */
2507 OO.ui.WindowManager = function OoUiWindowManager( config ) {
2508 // Configuration initialization
2509 config = config || {};
2510
2511 // Parent constructor
2512 OO.ui.WindowManager.super.call( this, config );
2513
2514 // Mixin constructors
2515 OO.EventEmitter.call( this );
2516
2517 // Properties
2518 this.factory = config.factory;
2519 this.modal = config.modal === undefined || !!config.modal;
2520 this.isolate = !!config.isolate;
2521 this.windows = {};
2522 this.opening = null;
2523 this.opened = null;
2524 this.closing = null;
2525 this.preparingToOpen = null;
2526 this.preparingToClose = null;
2527 this.size = null;
2528 this.currentWindow = null;
2529 this.$ariaHidden = null;
2530 this.requestedSize = null;
2531 this.onWindowResizeTimeout = null;
2532 this.onWindowResizeHandler = this.onWindowResize.bind( this );
2533 this.afterWindowResizeHandler = this.afterWindowResize.bind( this );
2534 this.onWindowMouseWheelHandler = this.onWindowMouseWheel.bind( this );
2535 this.onDocumentKeyDownHandler = this.onDocumentKeyDown.bind( this );
2536
2537 // Initialization
2538 this.$element
2539 .addClass( 'oo-ui-windowManager' )
2540 .toggleClass( 'oo-ui-windowManager-modal', this.modal );
2541 };
2542
2543 /* Setup */
2544
2545 OO.inheritClass( OO.ui.WindowManager, OO.ui.Element );
2546 OO.mixinClass( OO.ui.WindowManager, OO.EventEmitter );
2547
2548 /* Events */
2549
2550 /**
2551 * Window is opening.
2552 *
2553 * Fired when the window begins to be opened.
2554 *
2555 * @event opening
2556 * @param {OO.ui.Window} win Window that's being opened
2557 * @param {jQuery.Promise} opening Promise resolved when window is opened; when the promise is
2558 * resolved the first argument will be a promise which will be resolved when the window begins
2559 * closing, the second argument will be the opening data; progress notifications will be fired on
2560 * the promise for `setup` and `ready` when those processes are completed respectively.
2561 * @param {Object} data Window opening data
2562 */
2563
2564 /**
2565 * Window is closing.
2566 *
2567 * Fired when the window begins to be closed.
2568 *
2569 * @event closing
2570 * @param {OO.ui.Window} win Window that's being closed
2571 * @param {jQuery.Promise} opening Promise resolved when window is closed; when the promise
2572 * is resolved the first argument will be a the closing data; progress notifications will be fired
2573 * on the promise for `hold` and `teardown` when those processes are completed respectively.
2574 * @param {Object} data Window closing data
2575 */
2576
2577 /**
2578 * Window was resized.
2579 *
2580 * @event resize
2581 * @param {OO.ui.Window} win Window that was resized
2582 */
2583
2584 /* Static Properties */
2585
2586 /**
2587 * Map of symbolic size names and CSS properties.
2588 *
2589 * @static
2590 * @inheritable
2591 * @property {Object}
2592 */
2593 OO.ui.WindowManager.static.sizes = {
2594 small: {
2595 width: 300
2596 },
2597 medium: {
2598 width: 500
2599 },
2600 large: {
2601 width: 700
2602 },
2603 full: {
2604 // These can be non-numeric because they are never used in calculations
2605 width: '100%',
2606 height: '100%'
2607 }
2608 };
2609
2610 /**
2611 * Symbolic name of default size.
2612 *
2613 * Default size is used if the window's requested size is not recognized.
2614 *
2615 * @static
2616 * @inheritable
2617 * @property {string}
2618 */
2619 OO.ui.WindowManager.static.defaultSize = 'medium';
2620
2621 /* Methods */
2622
2623 /**
2624 * Handle window resize events.
2625 *
2626 * @param {jQuery.Event} e Window resize event
2627 */
2628 OO.ui.WindowManager.prototype.onWindowResize = function () {
2629 clearTimeout( this.onWindowResizeTimeout );
2630 this.onWindowResizeTimeout = setTimeout( this.afterWindowResizeHandler, 200 );
2631 };
2632
2633 /**
2634 * Handle window resize events.
2635 *
2636 * @param {jQuery.Event} e Window resize event
2637 */
2638 OO.ui.WindowManager.prototype.afterWindowResize = function () {
2639 if ( this.currentWindow ) {
2640 this.updateWindowSize( this.currentWindow );
2641 }
2642 };
2643
2644 /**
2645 * Handle window mouse wheel events.
2646 *
2647 * @param {jQuery.Event} e Mouse wheel event
2648 */
2649 OO.ui.WindowManager.prototype.onWindowMouseWheel = function ( e ) {
2650 // Kill all events in the parent window if the child window is isolated,
2651 // or if the event didn't come from the child window
2652 return !( this.shouldIsolate() || !$.contains( this.getCurrentWindow().$frame[0], e.target ) );
2653 };
2654
2655 /**
2656 * Handle document key down events.
2657 *
2658 * @param {jQuery.Event} e Key down event
2659 */
2660 OO.ui.WindowManager.prototype.onDocumentKeyDown = function ( e ) {
2661 switch ( e.which ) {
2662 case OO.ui.Keys.PAGEUP:
2663 case OO.ui.Keys.PAGEDOWN:
2664 case OO.ui.Keys.END:
2665 case OO.ui.Keys.HOME:
2666 case OO.ui.Keys.LEFT:
2667 case OO.ui.Keys.UP:
2668 case OO.ui.Keys.RIGHT:
2669 case OO.ui.Keys.DOWN:
2670 // Kill all events in the parent window if the child window is isolated,
2671 // or if the event didn't come from the child window
2672 return !( this.shouldIsolate() || !$.contains( this.getCurrentWindow().$frame[0], e.target ) );
2673 }
2674 };
2675
2676 /**
2677 * Check if window is opening.
2678 *
2679 * @return {boolean} Window is opening
2680 */
2681 OO.ui.WindowManager.prototype.isOpening = function ( win ) {
2682 return win === this.currentWindow && !!this.opening && this.opening.state() === 'pending';
2683 };
2684
2685 /**
2686 * Check if window is closing.
2687 *
2688 * @return {boolean} Window is closing
2689 */
2690 OO.ui.WindowManager.prototype.isClosing = function ( win ) {
2691 return win === this.currentWindow && !!this.closing && this.closing.state() === 'pending';
2692 };
2693
2694 /**
2695 * Check if window is opened.
2696 *
2697 * @return {boolean} Window is opened
2698 */
2699 OO.ui.WindowManager.prototype.isOpened = function ( win ) {
2700 return win === this.currentWindow && !!this.opened && this.opened.state() === 'pending';
2701 };
2702
2703 /**
2704 * Check if window contents should be isolated.
2705 *
2706 * Window content isolation is done using inline frames.
2707 *
2708 * @return {boolean} Window contents should be isolated
2709 */
2710 OO.ui.WindowManager.prototype.shouldIsolate = function () {
2711 return this.isolate;
2712 };
2713
2714 /**
2715 * Check if a window is being managed.
2716 *
2717 * @param {OO.ui.Window} win Window to check
2718 * @return {boolean} Window is being managed
2719 */
2720 OO.ui.WindowManager.prototype.hasWindow = function ( win ) {
2721 var name;
2722
2723 for ( name in this.windows ) {
2724 if ( this.windows[name] === win ) {
2725 return true;
2726 }
2727 }
2728
2729 return false;
2730 };
2731
2732 /**
2733 * Get the number of milliseconds to wait between beginning opening and executing setup process.
2734 *
2735 * @param {OO.ui.Window} win Window being opened
2736 * @param {Object} [data] Window opening data
2737 * @return {number} Milliseconds to wait
2738 */
2739 OO.ui.WindowManager.prototype.getSetupDelay = function () {
2740 return 0;
2741 };
2742
2743 /**
2744 * Get the number of milliseconds to wait between finishing setup and executing ready process.
2745 *
2746 * @param {OO.ui.Window} win Window being opened
2747 * @param {Object} [data] Window opening data
2748 * @return {number} Milliseconds to wait
2749 */
2750 OO.ui.WindowManager.prototype.getReadyDelay = function () {
2751 return 0;
2752 };
2753
2754 /**
2755 * Get the number of milliseconds to wait between beginning closing and executing hold process.
2756 *
2757 * @param {OO.ui.Window} win Window being closed
2758 * @param {Object} [data] Window closing data
2759 * @return {number} Milliseconds to wait
2760 */
2761 OO.ui.WindowManager.prototype.getHoldDelay = function () {
2762 return 0;
2763 };
2764
2765 /**
2766 * Get the number of milliseconds to wait between finishing hold and executing teardown process.
2767 *
2768 * @param {OO.ui.Window} win Window being closed
2769 * @param {Object} [data] Window closing data
2770 * @return {number} Milliseconds to wait
2771 */
2772 OO.ui.WindowManager.prototype.getTeardownDelay = function () {
2773 return this.modal ? 250 : 0;
2774 };
2775
2776 /**
2777 * Get managed window by symbolic name.
2778 *
2779 * If window is not yet instantiated, it will be instantiated and added automatically.
2780 *
2781 * @param {string} name Symbolic window name
2782 * @return {jQuery.Promise} Promise resolved with matching window, or rejected with an OO.ui.Error
2783 * @throws {Error} If the symbolic name is unrecognized by the factory
2784 * @throws {Error} If the symbolic name unrecognized as a managed window
2785 */
2786 OO.ui.WindowManager.prototype.getWindow = function ( name ) {
2787 var deferred = $.Deferred(),
2788 win = this.windows[name];
2789
2790 if ( !( win instanceof OO.ui.Window ) ) {
2791 if ( this.factory ) {
2792 if ( !this.factory.lookup( name ) ) {
2793 deferred.reject( new OO.ui.Error(
2794 'Cannot auto-instantiate window: symbolic name is unrecognized by the factory'
2795 ) );
2796 } else {
2797 win = this.factory.create( name, this, { $: this.$ } );
2798 this.addWindows( [ win ] );
2799 deferred.resolve( win );
2800 }
2801 } else {
2802 deferred.reject( new OO.ui.Error(
2803 'Cannot get unmanaged window: symbolic name unrecognized as a managed window'
2804 ) );
2805 }
2806 } else {
2807 deferred.resolve( win );
2808 }
2809
2810 return deferred.promise();
2811 };
2812
2813 /**
2814 * Get current window.
2815 *
2816 * @return {OO.ui.Window|null} Currently opening/opened/closing window
2817 */
2818 OO.ui.WindowManager.prototype.getCurrentWindow = function () {
2819 return this.currentWindow;
2820 };
2821
2822 /**
2823 * Open a window.
2824 *
2825 * @param {OO.ui.Window|string} win Window object or symbolic name of window to open
2826 * @param {Object} [data] Window opening data
2827 * @return {jQuery.Promise} Promise resolved when window is done opening; see {@link #event-opening}
2828 * for more details about the `opening` promise
2829 * @fires opening
2830 */
2831 OO.ui.WindowManager.prototype.openWindow = function ( win, data ) {
2832 var manager = this,
2833 preparing = [],
2834 opening = $.Deferred();
2835
2836 // Argument handling
2837 if ( typeof win === 'string' ) {
2838 return this.getWindow( win ).then( function ( win ) {
2839 return manager.openWindow( win, data );
2840 } );
2841 }
2842
2843 // Error handling
2844 if ( !this.hasWindow( win ) ) {
2845 opening.reject( new OO.ui.Error(
2846 'Cannot open window: window is not attached to manager'
2847 ) );
2848 } else if ( this.preparingToOpen || this.opening || this.opened ) {
2849 opening.reject( new OO.ui.Error(
2850 'Cannot open window: another window is opening or open'
2851 ) );
2852 }
2853
2854 // Window opening
2855 if ( opening.state() !== 'rejected' ) {
2856 // Begin loading the window if it's not loading or loaded already - may take noticable time
2857 // and we want to do this in paralell with any other preparatory actions
2858 if ( !win.isLoading() && !win.isLoaded() ) {
2859 // Finish initializing the window (must be done after manager is attached to DOM)
2860 win.setManager( this );
2861 preparing.push( win.load() );
2862 }
2863
2864 if ( this.closing ) {
2865 // If a window is currently closing, wait for it to complete
2866 preparing.push( this.closing );
2867 }
2868
2869 this.preparingToOpen = $.when.apply( $, preparing );
2870 // Ensure handlers get called after preparingToOpen is set
2871 this.preparingToOpen.done( function () {
2872 if ( manager.modal ) {
2873 manager.toggleGlobalEvents( true );
2874 manager.toggleAriaIsolation( true );
2875 }
2876 manager.currentWindow = win;
2877 manager.opening = opening;
2878 manager.preparingToOpen = null;
2879 manager.emit( 'opening', win, opening, data );
2880 setTimeout( function () {
2881 win.setup( data ).then( function () {
2882 manager.updateWindowSize( win );
2883 manager.opening.notify( { state: 'setup' } );
2884 setTimeout( function () {
2885 win.ready( data ).then( function () {
2886 manager.opening.notify( { state: 'ready' } );
2887 manager.opening = null;
2888 manager.opened = $.Deferred();
2889 opening.resolve( manager.opened.promise(), data );
2890 } );
2891 }, manager.getReadyDelay() );
2892 } );
2893 }, manager.getSetupDelay() );
2894 } );
2895 }
2896
2897 return opening.promise();
2898 };
2899
2900 /**
2901 * Close a window.
2902 *
2903 * @param {OO.ui.Window|string} win Window object or symbolic name of window to close
2904 * @param {Object} [data] Window closing data
2905 * @return {jQuery.Promise} Promise resolved when window is done closing; see {@link #event-closing}
2906 * for more details about the `closing` promise
2907 * @throws {Error} If no window by that name is being managed
2908 * @fires closing
2909 */
2910 OO.ui.WindowManager.prototype.closeWindow = function ( win, data ) {
2911 var manager = this,
2912 preparing = [],
2913 closing = $.Deferred(),
2914 opened;
2915
2916 // Argument handling
2917 if ( typeof win === 'string' ) {
2918 win = this.windows[win];
2919 } else if ( !this.hasWindow( win ) ) {
2920 win = null;
2921 }
2922
2923 // Error handling
2924 if ( !win ) {
2925 closing.reject( new OO.ui.Error(
2926 'Cannot close window: window is not attached to manager'
2927 ) );
2928 } else if ( win !== this.currentWindow ) {
2929 closing.reject( new OO.ui.Error(
2930 'Cannot close window: window already closed with different data'
2931 ) );
2932 } else if ( this.preparingToClose || this.closing ) {
2933 closing.reject( new OO.ui.Error(
2934 'Cannot close window: window already closing with different data'
2935 ) );
2936 }
2937
2938 // Window closing
2939 if ( closing.state() !== 'rejected' ) {
2940 if ( this.opening ) {
2941 // If the window is currently opening, close it when it's done
2942 preparing.push( this.opening );
2943 }
2944
2945 this.preparingToClose = $.when.apply( $, preparing );
2946 // Ensure handlers get called after preparingToClose is set
2947 this.preparingToClose.done( function () {
2948 manager.closing = closing;
2949 manager.preparingToClose = null;
2950 manager.emit( 'closing', win, closing, data );
2951 opened = manager.opened;
2952 manager.opened = null;
2953 opened.resolve( closing.promise(), data );
2954 setTimeout( function () {
2955 win.hold( data ).then( function () {
2956 closing.notify( { state: 'hold' } );
2957 setTimeout( function () {
2958 win.teardown( data ).then( function () {
2959 closing.notify( { state: 'teardown' } );
2960 if ( manager.modal ) {
2961 manager.toggleGlobalEvents( false );
2962 manager.toggleAriaIsolation( false );
2963 }
2964 manager.closing = null;
2965 manager.currentWindow = null;
2966 closing.resolve( data );
2967 } );
2968 }, manager.getTeardownDelay() );
2969 } );
2970 }, manager.getHoldDelay() );
2971 } );
2972 }
2973
2974 return closing.promise();
2975 };
2976
2977 /**
2978 * Add windows.
2979 *
2980 * @param {Object.<string,OO.ui.Window>|OO.ui.Window[]} windows Windows to add
2981 * @throws {Error} If one of the windows being added without an explicit symbolic name does not have
2982 * a statically configured symbolic name
2983 */
2984 OO.ui.WindowManager.prototype.addWindows = function ( windows ) {
2985 var i, len, win, name, list;
2986
2987 if ( $.isArray( windows ) ) {
2988 // Convert to map of windows by looking up symbolic names from static configuration
2989 list = {};
2990 for ( i = 0, len = windows.length; i < len; i++ ) {
2991 name = windows[i].constructor.static.name;
2992 if ( typeof name !== 'string' ) {
2993 throw new Error( 'Cannot add window' );
2994 }
2995 list[name] = windows[i];
2996 }
2997 } else if ( $.isPlainObject( windows ) ) {
2998 list = windows;
2999 }
3000
3001 // Add windows
3002 for ( name in list ) {
3003 win = list[name];
3004 this.windows[name] = win;
3005 this.$element.append( win.$element );
3006 }
3007 };
3008
3009 /**
3010 * Remove windows.
3011 *
3012 * Windows will be closed before they are removed.
3013 *
3014 * @param {string} name Symbolic name of window to remove
3015 * @return {jQuery.Promise} Promise resolved when window is closed and removed
3016 * @throws {Error} If windows being removed are not being managed
3017 */
3018 OO.ui.WindowManager.prototype.removeWindows = function ( names ) {
3019 var i, len, win, name,
3020 manager = this,
3021 promises = [],
3022 cleanup = function ( name, win ) {
3023 delete manager.windows[name];
3024 win.$element.detach();
3025 };
3026
3027 for ( i = 0, len = names.length; i < len; i++ ) {
3028 name = names[i];
3029 win = this.windows[name];
3030 if ( !win ) {
3031 throw new Error( 'Cannot remove window' );
3032 }
3033 promises.push( this.closeWindow( name ).then( cleanup.bind( null, name, win ) ) );
3034 }
3035
3036 return $.when.apply( $, promises );
3037 };
3038
3039 /**
3040 * Remove all windows.
3041 *
3042 * Windows will be closed before they are removed.
3043 *
3044 * @return {jQuery.Promise} Promise resolved when all windows are closed and removed
3045 */
3046 OO.ui.WindowManager.prototype.clearWindows = function () {
3047 return this.removeWindows( Object.keys( this.windows ) );
3048 };
3049
3050 /**
3051 * Set dialog size.
3052 *
3053 * Fullscreen mode will be used if the dialog is too wide to fit in the screen.
3054 *
3055 * @chainable
3056 */
3057 OO.ui.WindowManager.prototype.updateWindowSize = function ( win ) {
3058 // Bypass for non-current, and thus invisible, windows
3059 if ( win !== this.currentWindow ) {
3060 return;
3061 }
3062
3063 var viewport = OO.ui.Element.getDimensions( win.getElementWindow() ),
3064 sizes = this.constructor.static.sizes,
3065 size = win.getSize();
3066
3067 if ( !sizes[size] ) {
3068 size = this.constructor.static.defaultSize;
3069 }
3070 if ( size !== 'full' && viewport.rect.right - viewport.rect.left < sizes[size].width ) {
3071 size = 'full';
3072 }
3073
3074 this.$element.toggleClass( 'oo-ui-windowManager-fullscreen', size === 'full' );
3075 this.$element.toggleClass( 'oo-ui-windowManager-floating', size !== 'full' );
3076 win.setDimensions( sizes[size] );
3077
3078 this.emit( 'resize', win );
3079
3080 return this;
3081 };
3082
3083 /**
3084 * Bind or unbind global events for scrolling.
3085 *
3086 * @param {boolean} [on] Bind global events
3087 * @chainable
3088 */
3089 OO.ui.WindowManager.prototype.toggleGlobalEvents = function ( on ) {
3090 on = on === undefined ? !!this.globalEvents : !!on;
3091
3092 if ( on ) {
3093 if ( !this.globalEvents ) {
3094 this.$( this.getElementDocument() ).on( {
3095 // Prevent scrolling by keys in top-level window
3096 keydown: this.onDocumentKeyDownHandler
3097 } );
3098 this.$( this.getElementWindow() ).on( {
3099 // Prevent scrolling by wheel in top-level window
3100 mousewheel: this.onWindowMouseWheelHandler,
3101 // Start listening for top-level window dimension changes
3102 'orientationchange resize': this.onWindowResizeHandler
3103 } );
3104 this.globalEvents = true;
3105 }
3106 } else if ( this.globalEvents ) {
3107 // Unbind global events
3108 this.$( this.getElementDocument() ).off( {
3109 // Allow scrolling by keys in top-level window
3110 keydown: this.onDocumentKeyDownHandler
3111 } );
3112 this.$( this.getElementWindow() ).off( {
3113 // Allow scrolling by wheel in top-level window
3114 mousewheel: this.onWindowMouseWheelHandler,
3115 // Stop listening for top-level window dimension changes
3116 'orientationchange resize': this.onWindowResizeHandler
3117 } );
3118 this.globalEvents = false;
3119 }
3120
3121 return this;
3122 };
3123
3124 /**
3125 * Toggle screen reader visibility of content other than the window manager.
3126 *
3127 * @param {boolean} [isolate] Make only the window manager visible to screen readers
3128 * @chainable
3129 */
3130 OO.ui.WindowManager.prototype.toggleAriaIsolation = function ( isolate ) {
3131 isolate = isolate === undefined ? !this.$ariaHidden : !!isolate;
3132
3133 if ( isolate ) {
3134 if ( !this.$ariaHidden ) {
3135 // Hide everything other than the window manager from screen readers
3136 this.$ariaHidden = $( 'body' )
3137 .children()
3138 .not( this.$element.parentsUntil( 'body' ).last() )
3139 .attr( 'aria-hidden', '' );
3140 }
3141 } else if ( this.$ariaHidden ) {
3142 // Restore screen reader visiblity
3143 this.$ariaHidden.removeAttr( 'aria-hidden' );
3144 this.$ariaHidden = null;
3145 }
3146
3147 return this;
3148 };
3149
3150 /**
3151 * Destroy window manager.
3152 *
3153 * Windows will not be closed, only removed from the DOM.
3154 */
3155 OO.ui.WindowManager.prototype.destroy = function () {
3156 this.toggleGlobalEvents( false );
3157 this.toggleAriaIsolation( false );
3158 this.$element.remove();
3159 };
3160
3161 /**
3162 * @abstract
3163 * @class
3164 *
3165 * @constructor
3166 * @param {string|jQuery} message Description of error
3167 * @param {Object} [config] Configuration options
3168 * @cfg {boolean} [recoverable=true] Error is recoverable
3169 */
3170 OO.ui.Error = function OoUiElement( message, config ) {
3171 // Configuration initialization
3172 config = config || {};
3173
3174 // Properties
3175 this.message = message instanceof jQuery ? message : String( message );
3176 this.recoverable = config.recoverable === undefined || !!config.recoverable;
3177 };
3178
3179 /* Setup */
3180
3181 OO.initClass( OO.ui.Error );
3182
3183 /* Methods */
3184
3185 /**
3186 * Check if error can be recovered from.
3187 *
3188 * @return {boolean} Error is recoverable
3189 */
3190 OO.ui.Error.prototype.isRecoverable = function () {
3191 return this.recoverable;
3192 };
3193
3194 /**
3195 * Get error message as DOM nodes.
3196 *
3197 * @return {jQuery} Error message in DOM nodes
3198 */
3199 OO.ui.Error.prototype.getMessage = function () {
3200 return this.message instanceof jQuery ?
3201 this.message.clone() :
3202 $( '<div>' ).text( this.message ).contents();
3203 };
3204
3205 /**
3206 * Get error message as text.
3207 *
3208 * @return {string} Error message
3209 */
3210 OO.ui.Error.prototype.getMessageText = function () {
3211 return this.message instanceof jQuery ? this.message.text() : this.message;
3212 };
3213
3214 /**
3215 * A list of functions, called in sequence.
3216 *
3217 * If a function added to a process returns boolean false the process will stop; if it returns an
3218 * object with a `promise` method the process will use the promise to either continue to the next
3219 * step when the promise is resolved or stop when the promise is rejected.
3220 *
3221 * @class
3222 *
3223 * @constructor
3224 * @param {number|jQuery.Promise|Function} step Time to wait, promise to wait for or function to
3225 * call, see #createStep for more information
3226 * @param {Object} [context=null] Context to call the step function in, ignored if step is a number
3227 * or a promise
3228 * @return {Object} Step object, with `callback` and `context` properties
3229 */
3230 OO.ui.Process = function ( step, context ) {
3231 // Properties
3232 this.steps = [];
3233
3234 // Initialization
3235 if ( step !== undefined ) {
3236 this.next( step, context );
3237 }
3238 };
3239
3240 /* Setup */
3241
3242 OO.initClass( OO.ui.Process );
3243
3244 /* Methods */
3245
3246 /**
3247 * Start the process.
3248 *
3249 * @return {jQuery.Promise} Promise that is resolved when all steps have completed or rejected when
3250 * any of the steps return boolean false or a promise which gets rejected; upon stopping the
3251 * process, the remaining steps will not be taken
3252 */
3253 OO.ui.Process.prototype.execute = function () {
3254 var i, len, promise;
3255
3256 /**
3257 * Continue execution.
3258 *
3259 * @ignore
3260 * @param {Array} step A function and the context it should be called in
3261 * @return {Function} Function that continues the process
3262 */
3263 function proceed( step ) {
3264 return function () {
3265 // Execute step in the correct context
3266 var deferred,
3267 result = step.callback.call( step.context );
3268
3269 if ( result === false ) {
3270 // Use rejected promise for boolean false results
3271 return $.Deferred().reject( [] ).promise();
3272 }
3273 if ( typeof result === 'number' ) {
3274 if ( result < 0 ) {
3275 throw new Error( 'Cannot go back in time: flux capacitor is out of service' );
3276 }
3277 // Use a delayed promise for numbers, expecting them to be in milliseconds
3278 deferred = $.Deferred();
3279 setTimeout( deferred.resolve, result );
3280 return deferred.promise();
3281 }
3282 if ( result instanceof OO.ui.Error ) {
3283 // Use rejected promise for error
3284 return $.Deferred().reject( [ result ] ).promise();
3285 }
3286 if ( $.isArray( result ) && result.length && result[0] instanceof OO.ui.Error ) {
3287 // Use rejected promise for list of errors
3288 return $.Deferred().reject( result ).promise();
3289 }
3290 // Duck-type the object to see if it can produce a promise
3291 if ( result && $.isFunction( result.promise ) ) {
3292 // Use a promise generated from the result
3293 return result.promise();
3294 }
3295 // Use resolved promise for other results
3296 return $.Deferred().resolve().promise();
3297 };
3298 }
3299
3300 if ( this.steps.length ) {
3301 // Generate a chain reaction of promises
3302 promise = proceed( this.steps[0] )();
3303 for ( i = 1, len = this.steps.length; i < len; i++ ) {
3304 promise = promise.then( proceed( this.steps[i] ) );
3305 }
3306 } else {
3307 promise = $.Deferred().resolve().promise();
3308 }
3309
3310 return promise;
3311 };
3312
3313 /**
3314 * Create a process step.
3315 *
3316 * @private
3317 * @param {number|jQuery.Promise|Function} step
3318 *
3319 * - Number of milliseconds to wait; or
3320 * - Promise to wait to be resolved; or
3321 * - Function to execute
3322 * - If it returns boolean false the process will stop
3323 * - If it returns an object with a `promise` method the process will use the promise to either
3324 * continue to the next step when the promise is resolved or stop when the promise is rejected
3325 * - If it returns a number, the process will wait for that number of milliseconds before
3326 * proceeding
3327 * @param {Object} [context=null] Context to call the step function in, ignored if step is a number
3328 * or a promise
3329 * @return {Object} Step object, with `callback` and `context` properties
3330 */
3331 OO.ui.Process.prototype.createStep = function ( step, context ) {
3332 if ( typeof step === 'number' || $.isFunction( step.promise ) ) {
3333 return {
3334 callback: function () {
3335 return step;
3336 },
3337 context: null
3338 };
3339 }
3340 if ( $.isFunction( step ) ) {
3341 return {
3342 callback: step,
3343 context: context
3344 };
3345 }
3346 throw new Error( 'Cannot create process step: number, promise or function expected' );
3347 };
3348
3349 /**
3350 * Add step to the beginning of the process.
3351 *
3352 * @inheritdoc #createStep
3353 * @return {OO.ui.Process} this
3354 * @chainable
3355 */
3356 OO.ui.Process.prototype.first = function ( step, context ) {
3357 this.steps.unshift( this.createStep( step, context ) );
3358 return this;
3359 };
3360
3361 /**
3362 * Add step to the end of the process.
3363 *
3364 * @inheritdoc #createStep
3365 * @return {OO.ui.Process} this
3366 * @chainable
3367 */
3368 OO.ui.Process.prototype.next = function ( step, context ) {
3369 this.steps.push( this.createStep( step, context ) );
3370 return this;
3371 };
3372
3373 /**
3374 * Factory for tools.
3375 *
3376 * @class
3377 * @extends OO.Factory
3378 * @constructor
3379 */
3380 OO.ui.ToolFactory = function OoUiToolFactory() {
3381 // Parent constructor
3382 OO.ui.ToolFactory.super.call( this );
3383 };
3384
3385 /* Setup */
3386
3387 OO.inheritClass( OO.ui.ToolFactory, OO.Factory );
3388
3389 /* Methods */
3390
3391 /** */
3392 OO.ui.ToolFactory.prototype.getTools = function ( include, exclude, promote, demote ) {
3393 var i, len, included, promoted, demoted,
3394 auto = [],
3395 used = {};
3396
3397 // Collect included and not excluded tools
3398 included = OO.simpleArrayDifference( this.extract( include ), this.extract( exclude ) );
3399
3400 // Promotion
3401 promoted = this.extract( promote, used );
3402 demoted = this.extract( demote, used );
3403
3404 // Auto
3405 for ( i = 0, len = included.length; i < len; i++ ) {
3406 if ( !used[included[i]] ) {
3407 auto.push( included[i] );
3408 }
3409 }
3410
3411 return promoted.concat( auto ).concat( demoted );
3412 };
3413
3414 /**
3415 * Get a flat list of names from a list of names or groups.
3416 *
3417 * Tools can be specified in the following ways:
3418 *
3419 * - A specific tool: `{ name: 'tool-name' }` or `'tool-name'`
3420 * - All tools in a group: `{ group: 'group-name' }`
3421 * - All tools: `'*'`
3422 *
3423 * @private
3424 * @param {Array|string} collection List of tools
3425 * @param {Object} [used] Object with names that should be skipped as properties; extracted
3426 * names will be added as properties
3427 * @return {string[]} List of extracted names
3428 */
3429 OO.ui.ToolFactory.prototype.extract = function ( collection, used ) {
3430 var i, len, item, name, tool,
3431 names = [];
3432
3433 if ( collection === '*' ) {
3434 for ( name in this.registry ) {
3435 tool = this.registry[name];
3436 if (
3437 // Only add tools by group name when auto-add is enabled
3438 tool.static.autoAddToCatchall &&
3439 // Exclude already used tools
3440 ( !used || !used[name] )
3441 ) {
3442 names.push( name );
3443 if ( used ) {
3444 used[name] = true;
3445 }
3446 }
3447 }
3448 } else if ( $.isArray( collection ) ) {
3449 for ( i = 0, len = collection.length; i < len; i++ ) {
3450 item = collection[i];
3451 // Allow plain strings as shorthand for named tools
3452 if ( typeof item === 'string' ) {
3453 item = { name: item };
3454 }
3455 if ( OO.isPlainObject( item ) ) {
3456 if ( item.group ) {
3457 for ( name in this.registry ) {
3458 tool = this.registry[name];
3459 if (
3460 // Include tools with matching group
3461 tool.static.group === item.group &&
3462 // Only add tools by group name when auto-add is enabled
3463 tool.static.autoAddToGroup &&
3464 // Exclude already used tools
3465 ( !used || !used[name] )
3466 ) {
3467 names.push( name );
3468 if ( used ) {
3469 used[name] = true;
3470 }
3471 }
3472 }
3473 // Include tools with matching name and exclude already used tools
3474 } else if ( item.name && ( !used || !used[item.name] ) ) {
3475 names.push( item.name );
3476 if ( used ) {
3477 used[item.name] = true;
3478 }
3479 }
3480 }
3481 }
3482 }
3483 return names;
3484 };
3485
3486 /**
3487 * Factory for tool groups.
3488 *
3489 * @class
3490 * @extends OO.Factory
3491 * @constructor
3492 */
3493 OO.ui.ToolGroupFactory = function OoUiToolGroupFactory() {
3494 // Parent constructor
3495 OO.Factory.call( this );
3496
3497 var i, l,
3498 defaultClasses = this.constructor.static.getDefaultClasses();
3499
3500 // Register default toolgroups
3501 for ( i = 0, l = defaultClasses.length; i < l; i++ ) {
3502 this.register( defaultClasses[i] );
3503 }
3504 };
3505
3506 /* Setup */
3507
3508 OO.inheritClass( OO.ui.ToolGroupFactory, OO.Factory );
3509
3510 /* Static Methods */
3511
3512 /**
3513 * Get a default set of classes to be registered on construction
3514 *
3515 * @return {Function[]} Default classes
3516 */
3517 OO.ui.ToolGroupFactory.static.getDefaultClasses = function () {
3518 return [
3519 OO.ui.BarToolGroup,
3520 OO.ui.ListToolGroup,
3521 OO.ui.MenuToolGroup
3522 ];
3523 };
3524
3525 /**
3526 * Theme logic.
3527 *
3528 * @abstract
3529 * @class
3530 *
3531 * @constructor
3532 * @param {Object} [config] Configuration options
3533 */
3534 OO.ui.Theme = function OoUiTheme( config ) {
3535 // Initialize config
3536 config = config || {};
3537 };
3538
3539 /* Setup */
3540
3541 OO.initClass( OO.ui.Theme );
3542
3543 /* Methods */
3544
3545 /**
3546 * Get a list of classes to be applied to a widget.
3547 *
3548 * @localdoc The 'on' and 'off' lists combined MUST contain keys for all classes the theme adds or
3549 * removes, otherwise state transitions will not work properly.
3550 *
3551 * @param {OO.ui.Element} element Element for which to get classes
3552 * @return {Object.<string,string[]>} Categorized class names with `on` and `off` lists
3553 */
3554 OO.ui.Theme.prototype.getElementClasses = function ( /* element */ ) {
3555 return { on: [], off: [] };
3556 };
3557
3558 /**
3559 * Update CSS classes provided by the theme.
3560 *
3561 * For elements with theme logic hooks, this should be called anytime there's a state change.
3562 *
3563 * @param {OO.ui.Element} Element for which to update classes
3564 * @return {Object.<string,string[]>} Categorized class names with `on` and `off` lists
3565 */
3566 OO.ui.Theme.prototype.updateElementClasses = function ( element ) {
3567 var classes = this.getElementClasses( element );
3568
3569 element.$element
3570 .removeClass( classes.off.join( ' ' ) )
3571 .addClass( classes.on.join( ' ' ) );
3572 };
3573
3574 /**
3575 * Element with a button.
3576 *
3577 * Buttons are used for controls which can be clicked. They can be configured to use tab indexing
3578 * and access keys for accessibility purposes.
3579 *
3580 * @abstract
3581 * @class
3582 *
3583 * @constructor
3584 * @param {Object} [config] Configuration options
3585 * @cfg {jQuery} [$button] Button node, assigned to #$button, omit to use a generated `<a>`
3586 * @cfg {boolean} [framed=true] Render button with a frame
3587 * @cfg {number} [tabIndex=0] Button's tab index, use null to have no tabIndex
3588 * @cfg {string} [accessKey] Button's access key
3589 */
3590 OO.ui.ButtonElement = function OoUiButtonElement( config ) {
3591 // Configuration initialization
3592 config = config || {};
3593
3594 // Properties
3595 this.$button = null;
3596 this.framed = null;
3597 this.tabIndex = null;
3598 this.accessKey = null;
3599 this.active = false;
3600 this.onMouseUpHandler = this.onMouseUp.bind( this );
3601 this.onMouseDownHandler = this.onMouseDown.bind( this );
3602
3603 // Initialization
3604 this.$element.addClass( 'oo-ui-buttonElement' );
3605 this.toggleFramed( config.framed === undefined || config.framed );
3606 this.setTabIndex( config.tabIndex || 0 );
3607 this.setAccessKey( config.accessKey );
3608 this.setButtonElement( config.$button || this.$( '<a>' ) );
3609 };
3610
3611 /* Setup */
3612
3613 OO.initClass( OO.ui.ButtonElement );
3614
3615 /* Static Properties */
3616
3617 /**
3618 * Cancel mouse down events.
3619 *
3620 * @static
3621 * @inheritable
3622 * @property {boolean}
3623 */
3624 OO.ui.ButtonElement.static.cancelButtonMouseDownEvents = true;
3625
3626 /* Methods */
3627
3628 /**
3629 * Set the button element.
3630 *
3631 * If an element is already set, it will be cleaned up before setting up the new element.
3632 *
3633 * @param {jQuery} $button Element to use as button
3634 */
3635 OO.ui.ButtonElement.prototype.setButtonElement = function ( $button ) {
3636 if ( this.$button ) {
3637 this.$button
3638 .removeClass( 'oo-ui-buttonElement-button' )
3639 .removeAttr( 'role accesskey tabindex' )
3640 .off( this.onMouseDownHandler );
3641 }
3642
3643 this.$button = $button
3644 .addClass( 'oo-ui-buttonElement-button' )
3645 .attr( { role: 'button', accesskey: this.accessKey, tabindex: this.tabIndex } )
3646 .on( 'mousedown', this.onMouseDownHandler );
3647 };
3648
3649 /**
3650 * Handles mouse down events.
3651 *
3652 * @param {jQuery.Event} e Mouse down event
3653 */
3654 OO.ui.ButtonElement.prototype.onMouseDown = function ( e ) {
3655 if ( this.isDisabled() || e.which !== 1 ) {
3656 return false;
3657 }
3658 // Remove the tab-index while the button is down to prevent the button from stealing focus
3659 this.$button.removeAttr( 'tabindex' );
3660 this.$element.addClass( 'oo-ui-buttonElement-pressed' );
3661 // Run the mouseup handler no matter where the mouse is when the button is let go, so we can
3662 // reliably reapply the tabindex and remove the pressed class
3663 this.getElementDocument().addEventListener( 'mouseup', this.onMouseUpHandler, true );
3664 // Prevent change of focus unless specifically configured otherwise
3665 if ( this.constructor.static.cancelButtonMouseDownEvents ) {
3666 return false;
3667 }
3668 };
3669
3670 /**
3671 * Handles mouse up events.
3672 *
3673 * @param {jQuery.Event} e Mouse up event
3674 */
3675 OO.ui.ButtonElement.prototype.onMouseUp = function ( e ) {
3676 if ( this.isDisabled() || e.which !== 1 ) {
3677 return false;
3678 }
3679 // Restore the tab-index after the button is up to restore the button's accesssibility
3680 this.$button.attr( 'tabindex', this.tabIndex );
3681 this.$element.removeClass( 'oo-ui-buttonElement-pressed' );
3682 // Stop listening for mouseup, since we only needed this once
3683 this.getElementDocument().removeEventListener( 'mouseup', this.onMouseUpHandler, true );
3684 };
3685
3686 /**
3687 * Check if button has a frame.
3688 *
3689 * @return {boolean} Button is framed
3690 */
3691 OO.ui.ButtonElement.prototype.isFramed = function () {
3692 return this.framed;
3693 };
3694
3695 /**
3696 * Toggle frame.
3697 *
3698 * @param {boolean} [framed] Make button framed, omit to toggle
3699 * @chainable
3700 */
3701 OO.ui.ButtonElement.prototype.toggleFramed = function ( framed ) {
3702 framed = framed === undefined ? !this.framed : !!framed;
3703 if ( framed !== this.framed ) {
3704 this.framed = framed;
3705 this.$element
3706 .toggleClass( 'oo-ui-buttonElement-frameless', !framed )
3707 .toggleClass( 'oo-ui-buttonElement-framed', framed );
3708 this.updateThemeClasses();
3709 }
3710
3711 return this;
3712 };
3713
3714 /**
3715 * Set tab index.
3716 *
3717 * @param {number|null} tabIndex Button's tab index, use null to remove
3718 * @chainable
3719 */
3720 OO.ui.ButtonElement.prototype.setTabIndex = function ( tabIndex ) {
3721 tabIndex = typeof tabIndex === 'number' && tabIndex >= 0 ? tabIndex : null;
3722
3723 if ( this.tabIndex !== tabIndex ) {
3724 if ( this.$button ) {
3725 if ( tabIndex !== null ) {
3726 this.$button.attr( 'tabindex', tabIndex );
3727 } else {
3728 this.$button.removeAttr( 'tabindex' );
3729 }
3730 }
3731 this.tabIndex = tabIndex;
3732 }
3733
3734 return this;
3735 };
3736
3737 /**
3738 * Set access key.
3739 *
3740 * @param {string} accessKey Button's access key, use empty string to remove
3741 * @chainable
3742 */
3743 OO.ui.ButtonElement.prototype.setAccessKey = function ( accessKey ) {
3744 accessKey = typeof accessKey === 'string' && accessKey.length ? accessKey : null;
3745
3746 if ( this.accessKey !== accessKey ) {
3747 if ( this.$button ) {
3748 if ( accessKey !== null ) {
3749 this.$button.attr( 'accesskey', accessKey );
3750 } else {
3751 this.$button.removeAttr( 'accesskey' );
3752 }
3753 }
3754 this.accessKey = accessKey;
3755 }
3756
3757 return this;
3758 };
3759
3760 /**
3761 * Set active state.
3762 *
3763 * @param {boolean} [value] Make button active
3764 * @chainable
3765 */
3766 OO.ui.ButtonElement.prototype.setActive = function ( value ) {
3767 this.$element.toggleClass( 'oo-ui-buttonElement-active', !!value );
3768 return this;
3769 };
3770
3771 /**
3772 * Element containing a sequence of child elements.
3773 *
3774 * @abstract
3775 * @class
3776 *
3777 * @constructor
3778 * @param {Object} [config] Configuration options
3779 * @cfg {jQuery} [$group] Container node, assigned to #$group, omit to use a generated `<div>`
3780 */
3781 OO.ui.GroupElement = function OoUiGroupElement( config ) {
3782 // Configuration
3783 config = config || {};
3784
3785 // Properties
3786 this.$group = null;
3787 this.items = [];
3788 this.aggregateItemEvents = {};
3789
3790 // Initialization
3791 this.setGroupElement( config.$group || this.$( '<div>' ) );
3792 };
3793
3794 /* Methods */
3795
3796 /**
3797 * Set the group element.
3798 *
3799 * If an element is already set, items will be moved to the new element.
3800 *
3801 * @param {jQuery} $group Element to use as group
3802 */
3803 OO.ui.GroupElement.prototype.setGroupElement = function ( $group ) {
3804 var i, len;
3805
3806 this.$group = $group;
3807 for ( i = 0, len = this.items.length; i < len; i++ ) {
3808 this.$group.append( this.items[i].$element );
3809 }
3810 };
3811
3812 /**
3813 * Check if there are no items.
3814 *
3815 * @return {boolean} Group is empty
3816 */
3817 OO.ui.GroupElement.prototype.isEmpty = function () {
3818 return !this.items.length;
3819 };
3820
3821 /**
3822 * Get items.
3823 *
3824 * @return {OO.ui.Element[]} Items
3825 */
3826 OO.ui.GroupElement.prototype.getItems = function () {
3827 return this.items.slice( 0 );
3828 };
3829
3830 /**
3831 * Add an aggregate item event.
3832 *
3833 * Aggregated events are listened to on each item and then emitted by the group under a new name,
3834 * and with an additional leading parameter containing the item that emitted the original event.
3835 * Other arguments that were emitted from the original event are passed through.
3836 *
3837 * @param {Object.<string,string|null>} events Aggregate events emitted by group, keyed by item
3838 * event, use null value to remove aggregation
3839 * @throws {Error} If aggregation already exists
3840 */
3841 OO.ui.GroupElement.prototype.aggregate = function ( events ) {
3842 var i, len, item, add, remove, itemEvent, groupEvent;
3843
3844 for ( itemEvent in events ) {
3845 groupEvent = events[itemEvent];
3846
3847 // Remove existing aggregated event
3848 if ( itemEvent in this.aggregateItemEvents ) {
3849 // Don't allow duplicate aggregations
3850 if ( groupEvent ) {
3851 throw new Error( 'Duplicate item event aggregation for ' + itemEvent );
3852 }
3853 // Remove event aggregation from existing items
3854 for ( i = 0, len = this.items.length; i < len; i++ ) {
3855 item = this.items[i];
3856 if ( item.connect && item.disconnect ) {
3857 remove = {};
3858 remove[itemEvent] = [ 'emit', groupEvent, item ];
3859 item.disconnect( this, remove );
3860 }
3861 }
3862 // Prevent future items from aggregating event
3863 delete this.aggregateItemEvents[itemEvent];
3864 }
3865
3866 // Add new aggregate event
3867 if ( groupEvent ) {
3868 // Make future items aggregate event
3869 this.aggregateItemEvents[itemEvent] = groupEvent;
3870 // Add event aggregation to existing items
3871 for ( i = 0, len = this.items.length; i < len; i++ ) {
3872 item = this.items[i];
3873 if ( item.connect && item.disconnect ) {
3874 add = {};
3875 add[itemEvent] = [ 'emit', groupEvent, item ];
3876 item.connect( this, add );
3877 }
3878 }
3879 }
3880 }
3881 };
3882
3883 /**
3884 * Add items.
3885 *
3886 * Adding an existing item (by value) will move it.
3887 *
3888 * @param {OO.ui.Element[]} items Items
3889 * @param {number} [index] Index to insert items at
3890 * @chainable
3891 */
3892 OO.ui.GroupElement.prototype.addItems = function ( items, index ) {
3893 var i, len, item, event, events, currentIndex,
3894 itemElements = [];
3895
3896 for ( i = 0, len = items.length; i < len; i++ ) {
3897 item = items[i];
3898
3899 // Check if item exists then remove it first, effectively "moving" it
3900 currentIndex = $.inArray( item, this.items );
3901 if ( currentIndex >= 0 ) {
3902 this.removeItems( [ item ] );
3903 // Adjust index to compensate for removal
3904 if ( currentIndex < index ) {
3905 index--;
3906 }
3907 }
3908 // Add the item
3909 if ( item.connect && item.disconnect && !$.isEmptyObject( this.aggregateItemEvents ) ) {
3910 events = {};
3911 for ( event in this.aggregateItemEvents ) {
3912 events[event] = [ 'emit', this.aggregateItemEvents[event], item ];
3913 }
3914 item.connect( this, events );
3915 }
3916 item.setElementGroup( this );
3917 itemElements.push( item.$element.get( 0 ) );
3918 }
3919
3920 if ( index === undefined || index < 0 || index >= this.items.length ) {
3921 this.$group.append( itemElements );
3922 this.items.push.apply( this.items, items );
3923 } else if ( index === 0 ) {
3924 this.$group.prepend( itemElements );
3925 this.items.unshift.apply( this.items, items );
3926 } else {
3927 this.items[index].$element.before( itemElements );
3928 this.items.splice.apply( this.items, [ index, 0 ].concat( items ) );
3929 }
3930
3931 return this;
3932 };
3933
3934 /**
3935 * Remove items.
3936 *
3937 * Items will be detached, not removed, so they can be used later.
3938 *
3939 * @param {OO.ui.Element[]} items Items to remove
3940 * @chainable
3941 */
3942 OO.ui.GroupElement.prototype.removeItems = function ( items ) {
3943 var i, len, item, index, remove, itemEvent;
3944
3945 // Remove specific items
3946 for ( i = 0, len = items.length; i < len; i++ ) {
3947 item = items[i];
3948 index = $.inArray( item, this.items );
3949 if ( index !== -1 ) {
3950 if (
3951 item.connect && item.disconnect &&
3952 !$.isEmptyObject( this.aggregateItemEvents )
3953 ) {
3954 remove = {};
3955 if ( itemEvent in this.aggregateItemEvents ) {
3956 remove[itemEvent] = [ 'emit', this.aggregateItemEvents[itemEvent], item ];
3957 }
3958 item.disconnect( this, remove );
3959 }
3960 item.setElementGroup( null );
3961 this.items.splice( index, 1 );
3962 item.$element.detach();
3963 }
3964 }
3965
3966 return this;
3967 };
3968
3969 /**
3970 * Clear all items.
3971 *
3972 * Items will be detached, not removed, so they can be used later.
3973 *
3974 * @chainable
3975 */
3976 OO.ui.GroupElement.prototype.clearItems = function () {
3977 var i, len, item, remove, itemEvent;
3978
3979 // Remove all items
3980 for ( i = 0, len = this.items.length; i < len; i++ ) {
3981 item = this.items[i];
3982 if (
3983 item.connect && item.disconnect &&
3984 !$.isEmptyObject( this.aggregateItemEvents )
3985 ) {
3986 remove = {};
3987 if ( itemEvent in this.aggregateItemEvents ) {
3988 remove[itemEvent] = [ 'emit', this.aggregateItemEvents[itemEvent], item ];
3989 }
3990 item.disconnect( this, remove );
3991 }
3992 item.setElementGroup( null );
3993 item.$element.detach();
3994 }
3995
3996 this.items = [];
3997 return this;
3998 };
3999
4000 /**
4001 * Element containing an icon.
4002 *
4003 * Icons are graphics, about the size of normal text. They can be used to aid the user in locating
4004 * a control or convey information in a more space efficient way. Icons should rarely be used
4005 * without labels; such as in a toolbar where space is at a premium or within a context where the
4006 * meaning is very clear to the user.
4007 *
4008 * @abstract
4009 * @class
4010 *
4011 * @constructor
4012 * @param {Object} [config] Configuration options
4013 * @cfg {jQuery} [$icon] Icon node, assigned to #$icon, omit to use a generated `<span>`
4014 * @cfg {Object|string} [icon=''] Symbolic icon name, or map of icon names keyed by language ID;
4015 * use the 'default' key to specify the icon to be used when there is no icon in the user's
4016 * language
4017 * @cfg {string} [iconTitle] Icon title text or a function that returns text
4018 */
4019 OO.ui.IconElement = function OoUiIconElement( config ) {
4020 // Config intialization
4021 config = config || {};
4022
4023 // Properties
4024 this.$icon = null;
4025 this.icon = null;
4026 this.iconTitle = null;
4027
4028 // Initialization
4029 this.setIcon( config.icon || this.constructor.static.icon );
4030 this.setIconTitle( config.iconTitle || this.constructor.static.iconTitle );
4031 this.setIconElement( config.$icon || this.$( '<span>' ) );
4032 };
4033
4034 /* Setup */
4035
4036 OO.initClass( OO.ui.IconElement );
4037
4038 /* Static Properties */
4039
4040 /**
4041 * Icon.
4042 *
4043 * Value should be the unique portion of an icon CSS class name, such as 'up' for 'oo-ui-icon-up'.
4044 *
4045 * For i18n purposes, this property can be an object containing a `default` icon name property and
4046 * additional icon names keyed by language code.
4047 *
4048 * Example of i18n icon definition:
4049 * { default: 'bold-a', en: 'bold-b', de: 'bold-f' }
4050 *
4051 * @static
4052 * @inheritable
4053 * @property {Object|string} Symbolic icon name, or map of icon names keyed by language ID;
4054 * use the 'default' key to specify the icon to be used when there is no icon in the user's
4055 * language
4056 */
4057 OO.ui.IconElement.static.icon = null;
4058
4059 /**
4060 * Icon title.
4061 *
4062 * @static
4063 * @inheritable
4064 * @property {string|Function|null} Icon title text, a function that returns text or null for no
4065 * icon title
4066 */
4067 OO.ui.IconElement.static.iconTitle = null;
4068
4069 /* Methods */
4070
4071 /**
4072 * Set the icon element.
4073 *
4074 * If an element is already set, it will be cleaned up before setting up the new element.
4075 *
4076 * @param {jQuery} $icon Element to use as icon
4077 */
4078 OO.ui.IconElement.prototype.setIconElement = function ( $icon ) {
4079 if ( this.$icon ) {
4080 this.$icon
4081 .removeClass( 'oo-ui-iconElement-icon oo-ui-icon-' + this.icon )
4082 .removeAttr( 'title' );
4083 }
4084
4085 this.$icon = $icon
4086 .addClass( 'oo-ui-iconElement-icon' )
4087 .toggleClass( 'oo-ui-icon-' + this.icon, !!this.icon );
4088 if ( this.iconTitle !== null ) {
4089 this.$icon.attr( 'title', this.iconTitle );
4090 }
4091 };
4092
4093 /**
4094 * Set icon.
4095 *
4096 * @param {Object|string|null} icon Symbolic icon name, or map of icon names keyed by language ID;
4097 * use the 'default' key to specify the icon to be used when there is no icon in the user's
4098 * language, use null to remove icon
4099 * @chainable
4100 */
4101 OO.ui.IconElement.prototype.setIcon = function ( icon ) {
4102 icon = OO.isPlainObject( icon ) ? OO.ui.getLocalValue( icon, null, 'default' ) : icon;
4103 icon = typeof icon === 'string' && icon.trim().length ? icon.trim() : null;
4104
4105 if ( this.icon !== icon ) {
4106 if ( this.$icon ) {
4107 if ( this.icon !== null ) {
4108 this.$icon.removeClass( 'oo-ui-icon-' + this.icon );
4109 }
4110 if ( icon !== null ) {
4111 this.$icon.addClass( 'oo-ui-icon-' + icon );
4112 }
4113 }
4114 this.icon = icon;
4115 }
4116
4117 this.$element.toggleClass( 'oo-ui-iconElement', !!this.icon );
4118 this.updateThemeClasses();
4119
4120 return this;
4121 };
4122
4123 /**
4124 * Set icon title.
4125 *
4126 * @param {string|Function|null} icon Icon title text, a function that returns text or null
4127 * for no icon title
4128 * @chainable
4129 */
4130 OO.ui.IconElement.prototype.setIconTitle = function ( iconTitle ) {
4131 iconTitle = typeof iconTitle === 'function' ||
4132 ( typeof iconTitle === 'string' && iconTitle.length ) ?
4133 OO.ui.resolveMsg( iconTitle ) : null;
4134
4135 if ( this.iconTitle !== iconTitle ) {
4136 this.iconTitle = iconTitle;
4137 if ( this.$icon ) {
4138 if ( this.iconTitle !== null ) {
4139 this.$icon.attr( 'title', iconTitle );
4140 } else {
4141 this.$icon.removeAttr( 'title' );
4142 }
4143 }
4144 }
4145
4146 return this;
4147 };
4148
4149 /**
4150 * Get icon.
4151 *
4152 * @return {string} Icon
4153 */
4154 OO.ui.IconElement.prototype.getIcon = function () {
4155 return this.icon;
4156 };
4157
4158 /**
4159 * Element containing an indicator.
4160 *
4161 * Indicators are graphics, smaller than normal text. They can be used to describe unique status or
4162 * behavior. Indicators should only be used in exceptional cases; such as a button that opens a menu
4163 * instead of performing an action directly, or an item in a list which has errors that need to be
4164 * resolved.
4165 *
4166 * @abstract
4167 * @class
4168 *
4169 * @constructor
4170 * @param {Object} [config] Configuration options
4171 * @cfg {jQuery} [$indicator] Indicator node, assigned to #$indicator, omit to use a generated
4172 * `<span>`
4173 * @cfg {string} [indicator] Symbolic indicator name
4174 * @cfg {string} [indicatorTitle] Indicator title text or a function that returns text
4175 */
4176 OO.ui.IndicatorElement = function OoUiIndicatorElement( config ) {
4177 // Config intialization
4178 config = config || {};
4179
4180 // Properties
4181 this.$indicator = null;
4182 this.indicator = null;
4183 this.indicatorTitle = null;
4184
4185 // Initialization
4186 this.setIndicator( config.indicator || this.constructor.static.indicator );
4187 this.setIndicatorTitle( config.indicatorTitle || this.constructor.static.indicatorTitle );
4188 this.setIndicatorElement( config.$indicator || this.$( '<span>' ) );
4189 };
4190
4191 /* Setup */
4192
4193 OO.initClass( OO.ui.IndicatorElement );
4194
4195 /* Static Properties */
4196
4197 /**
4198 * indicator.
4199 *
4200 * @static
4201 * @inheritable
4202 * @property {string|null} Symbolic indicator name or null for no indicator
4203 */
4204 OO.ui.IndicatorElement.static.indicator = null;
4205
4206 /**
4207 * Indicator title.
4208 *
4209 * @static
4210 * @inheritable
4211 * @property {string|Function|null} Indicator title text, a function that returns text or null for no
4212 * indicator title
4213 */
4214 OO.ui.IndicatorElement.static.indicatorTitle = null;
4215
4216 /* Methods */
4217
4218 /**
4219 * Set the indicator element.
4220 *
4221 * If an element is already set, it will be cleaned up before setting up the new element.
4222 *
4223 * @param {jQuery} $indicator Element to use as indicator
4224 */
4225 OO.ui.IndicatorElement.prototype.setIndicatorElement = function ( $indicator ) {
4226 if ( this.$indicator ) {
4227 this.$indicator
4228 .removeClass( 'oo-ui-indicatorElement-indicator oo-ui-indicator-' + this.indicator )
4229 .removeAttr( 'title' );
4230 }
4231
4232 this.$indicator = $indicator
4233 .addClass( 'oo-ui-indicatorElement-indicator' )
4234 .toggleClass( 'oo-ui-indicator-' + this.indicator, !!this.indicator );
4235 if ( this.indicatorTitle !== null ) {
4236 this.$indicatorTitle.attr( 'title', this.indicatorTitle );
4237 }
4238 };
4239
4240 /**
4241 * Set indicator.
4242 *
4243 * @param {string|null} indicator Symbolic name of indicator to use or null for no indicator
4244 * @chainable
4245 */
4246 OO.ui.IndicatorElement.prototype.setIndicator = function ( indicator ) {
4247 indicator = typeof indicator === 'string' && indicator.length ? indicator.trim() : null;
4248
4249 if ( this.indicator !== indicator ) {
4250 if ( this.$indicator ) {
4251 if ( this.indicator !== null ) {
4252 this.$indicator.removeClass( 'oo-ui-indicator-' + this.indicator );
4253 }
4254 if ( indicator !== null ) {
4255 this.$indicator.addClass( 'oo-ui-indicator-' + indicator );
4256 }
4257 }
4258 this.indicator = indicator;
4259 }
4260
4261 this.$element.toggleClass( 'oo-ui-indicatorElement', !!this.indicator );
4262 this.updateThemeClasses();
4263
4264 return this;
4265 };
4266
4267 /**
4268 * Set indicator title.
4269 *
4270 * @param {string|Function|null} indicator Indicator title text, a function that returns text or
4271 * null for no indicator title
4272 * @chainable
4273 */
4274 OO.ui.IndicatorElement.prototype.setIndicatorTitle = function ( indicatorTitle ) {
4275 indicatorTitle = typeof indicatorTitle === 'function' ||
4276 ( typeof indicatorTitle === 'string' && indicatorTitle.length ) ?
4277 OO.ui.resolveMsg( indicatorTitle ) : null;
4278
4279 if ( this.indicatorTitle !== indicatorTitle ) {
4280 this.indicatorTitle = indicatorTitle;
4281 if ( this.$indicator ) {
4282 if ( this.indicatorTitle !== null ) {
4283 this.$indicator.attr( 'title', indicatorTitle );
4284 } else {
4285 this.$indicator.removeAttr( 'title' );
4286 }
4287 }
4288 }
4289
4290 return this;
4291 };
4292
4293 /**
4294 * Get indicator.
4295 *
4296 * @return {string} title Symbolic name of indicator
4297 */
4298 OO.ui.IndicatorElement.prototype.getIndicator = function () {
4299 return this.indicator;
4300 };
4301
4302 /**
4303 * Get indicator title.
4304 *
4305 * @return {string} Indicator title text
4306 */
4307 OO.ui.IndicatorElement.prototype.getIndicatorTitle = function () {
4308 return this.indicatorTitle;
4309 };
4310
4311 /**
4312 * Element containing a label.
4313 *
4314 * @abstract
4315 * @class
4316 *
4317 * @constructor
4318 * @param {Object} [config] Configuration options
4319 * @cfg {jQuery} [$label] Label node, assigned to #$label, omit to use a generated `<span>`
4320 * @cfg {jQuery|string|Function} [label] Label nodes, text or a function that returns nodes or text
4321 * @cfg {boolean} [autoFitLabel=true] Whether to fit the label or not.
4322 */
4323 OO.ui.LabelElement = function OoUiLabelElement( config ) {
4324 // Config intialization
4325 config = config || {};
4326
4327 // Properties
4328 this.$label = null;
4329 this.label = null;
4330 this.autoFitLabel = config.autoFitLabel === undefined || !!config.autoFitLabel;
4331
4332 // Initialization
4333 this.setLabel( config.label || this.constructor.static.label );
4334 this.setLabelElement( config.$label || this.$( '<span>' ) );
4335 };
4336
4337 /* Setup */
4338
4339 OO.initClass( OO.ui.LabelElement );
4340
4341 /* Static Properties */
4342
4343 /**
4344 * Label.
4345 *
4346 * @static
4347 * @inheritable
4348 * @property {string|Function|null} Label text; a function that returns nodes or text; or null for
4349 * no label
4350 */
4351 OO.ui.LabelElement.static.label = null;
4352
4353 /* Methods */
4354
4355 /**
4356 * Set the label element.
4357 *
4358 * If an element is already set, it will be cleaned up before setting up the new element.
4359 *
4360 * @param {jQuery} $label Element to use as label
4361 */
4362 OO.ui.LabelElement.prototype.setLabelElement = function ( $label ) {
4363 if ( this.$label ) {
4364 this.$label.removeClass( 'oo-ui-labelElement-label' ).empty();
4365 }
4366
4367 this.$label = $label.addClass( 'oo-ui-labelElement-label' );
4368 this.setLabelContent( this.label );
4369 };
4370
4371 /**
4372 * Set the label.
4373 *
4374 * An empty string will result in the label being hidden. A string containing only whitespace will
4375 * be converted to a single &nbsp;
4376 *
4377 * @param {jQuery|string|Function|null} label Label nodes; text; a function that returns nodes or
4378 * text; or null for no label
4379 * @chainable
4380 */
4381 OO.ui.LabelElement.prototype.setLabel = function ( label ) {
4382 label = typeof label === 'function' ? OO.ui.resolveMsg( label ) : label;
4383 label = ( typeof label === 'string' && label.length ) || label instanceof jQuery ? label : null;
4384
4385 if ( this.label !== label ) {
4386 if ( this.$label ) {
4387 this.setLabelContent( label );
4388 }
4389 this.label = label;
4390 }
4391
4392 this.$element.toggleClass( 'oo-ui-labelElement', !!this.label );
4393
4394 return this;
4395 };
4396
4397 /**
4398 * Get the label.
4399 *
4400 * @return {jQuery|string|Function|null} label Label nodes; text; a function that returns nodes or
4401 * text; or null for no label
4402 */
4403 OO.ui.LabelElement.prototype.getLabel = function () {
4404 return this.label;
4405 };
4406
4407 /**
4408 * Fit the label.
4409 *
4410 * @chainable
4411 */
4412 OO.ui.LabelElement.prototype.fitLabel = function () {
4413 if ( this.$label && this.$label.autoEllipsis && this.autoFitLabel ) {
4414 this.$label.autoEllipsis( { hasSpan: false, tooltip: true } );
4415 }
4416
4417 return this;
4418 };
4419
4420 /**
4421 * Set the content of the label.
4422 *
4423 * Do not call this method until after the label element has been set by #setLabelElement.
4424 *
4425 * @private
4426 * @param {jQuery|string|Function|null} label Label nodes; text; a function that returns nodes or
4427 * text; or null for no label
4428 */
4429 OO.ui.LabelElement.prototype.setLabelContent = function ( label ) {
4430 if ( typeof label === 'string' ) {
4431 if ( label.match( /^\s*$/ ) ) {
4432 // Convert whitespace only string to a single non-breaking space
4433 this.$label.html( '&nbsp;' );
4434 } else {
4435 this.$label.text( label );
4436 }
4437 } else if ( label instanceof jQuery ) {
4438 this.$label.empty().append( label );
4439 } else {
4440 this.$label.empty();
4441 }
4442 this.$label.css( 'display', !label ? 'none' : '' );
4443 };
4444
4445 /**
4446 * Element containing an OO.ui.PopupWidget object.
4447 *
4448 * @abstract
4449 * @class
4450 *
4451 * @constructor
4452 * @param {Object} [config] Configuration options
4453 * @cfg {Object} [popup] Configuration to pass to popup
4454 * @cfg {boolean} [autoClose=true] Popup auto-closes when it loses focus
4455 */
4456 OO.ui.PopupElement = function OoUiPopupElement( config ) {
4457 // Configuration initialization
4458 config = config || {};
4459
4460 // Properties
4461 this.popup = new OO.ui.PopupWidget( $.extend(
4462 { autoClose: true },
4463 config.popup,
4464 { $: this.$, $autoCloseIgnore: this.$element }
4465 ) );
4466 };
4467
4468 /* Methods */
4469
4470 /**
4471 * Get popup.
4472 *
4473 * @return {OO.ui.PopupWidget} Popup widget
4474 */
4475 OO.ui.PopupElement.prototype.getPopup = function () {
4476 return this.popup;
4477 };
4478
4479 /**
4480 * Element with named flags that can be added, removed, listed and checked.
4481 *
4482 * A flag, when set, adds a CSS class on the `$element` by combining `oo-ui-flaggedElement-` with
4483 * the flag name. Flags are primarily useful for styling.
4484 *
4485 * @abstract
4486 * @class
4487 *
4488 * @constructor
4489 * @param {Object} [config] Configuration options
4490 * @cfg {string[]} [flags=[]] Styling flags, e.g. 'primary', 'destructive' or 'constructive'
4491 * @cfg {jQuery} [$flagged] Flagged node, assigned to #$flagged, omit to use #$element
4492 */
4493 OO.ui.FlaggedElement = function OoUiFlaggedElement( config ) {
4494 // Config initialization
4495 config = config || {};
4496
4497 // Properties
4498 this.flags = {};
4499 this.$flagged = null;
4500
4501 // Initialization
4502 this.setFlags( config.flags );
4503 this.setFlaggedElement( config.$flagged || this.$element );
4504 };
4505
4506 /* Events */
4507
4508 /**
4509 * @event flag
4510 * @param {Object.<string,boolean>} changes Object keyed by flag name containing boolean
4511 * added/removed properties
4512 */
4513
4514 /* Methods */
4515
4516 /**
4517 * Set the flagged element.
4518 *
4519 * If an element is already set, it will be cleaned up before setting up the new element.
4520 *
4521 * @param {jQuery} $flagged Element to add flags to
4522 */
4523 OO.ui.FlaggedElement.prototype.setFlaggedElement = function ( $flagged ) {
4524 var classNames = Object.keys( this.flags ).map( function ( flag ) {
4525 return 'oo-ui-flaggedElement-' + flag;
4526 } ).join( ' ' );
4527
4528 if ( this.$flagged ) {
4529 this.$flagged.removeClass( classNames );
4530 }
4531
4532 this.$flagged = $flagged.addClass( classNames );
4533 };
4534
4535 /**
4536 * Check if a flag is set.
4537 *
4538 * @param {string} flag Name of flag
4539 * @return {boolean} Has flag
4540 */
4541 OO.ui.FlaggedElement.prototype.hasFlag = function ( flag ) {
4542 return flag in this.flags;
4543 };
4544
4545 /**
4546 * Get the names of all flags set.
4547 *
4548 * @return {string[]} flags Flag names
4549 */
4550 OO.ui.FlaggedElement.prototype.getFlags = function () {
4551 return Object.keys( this.flags );
4552 };
4553
4554 /**
4555 * Clear all flags.
4556 *
4557 * @chainable
4558 * @fires flag
4559 */
4560 OO.ui.FlaggedElement.prototype.clearFlags = function () {
4561 var flag, className,
4562 changes = {},
4563 remove = [],
4564 classPrefix = 'oo-ui-flaggedElement-';
4565
4566 for ( flag in this.flags ) {
4567 className = classPrefix + flag;
4568 changes[flag] = false;
4569 delete this.flags[flag];
4570 remove.push( className );
4571 }
4572
4573 if ( this.$flagged ) {
4574 this.$flagged.removeClass( remove.join( ' ' ) );
4575 }
4576
4577 this.updateThemeClasses();
4578 this.emit( 'flag', changes );
4579
4580 return this;
4581 };
4582
4583 /**
4584 * Add one or more flags.
4585 *
4586 * @param {string|string[]|Object.<string, boolean>} flags One or more flags to add, or an object
4587 * keyed by flag name containing boolean set/remove instructions.
4588 * @chainable
4589 * @fires flag
4590 */
4591 OO.ui.FlaggedElement.prototype.setFlags = function ( flags ) {
4592 var i, len, flag, className,
4593 changes = {},
4594 add = [],
4595 remove = [],
4596 classPrefix = 'oo-ui-flaggedElement-';
4597
4598 if ( typeof flags === 'string' ) {
4599 className = classPrefix + flags;
4600 // Set
4601 if ( !this.flags[flags] ) {
4602 this.flags[flags] = true;
4603 add.push( className );
4604 }
4605 } else if ( $.isArray( flags ) ) {
4606 for ( i = 0, len = flags.length; i < len; i++ ) {
4607 flag = flags[i];
4608 className = classPrefix + flag;
4609 // Set
4610 if ( !this.flags[flag] ) {
4611 changes[flag] = true;
4612 this.flags[flag] = true;
4613 add.push( className );
4614 }
4615 }
4616 } else if ( OO.isPlainObject( flags ) ) {
4617 for ( flag in flags ) {
4618 className = classPrefix + flag;
4619 if ( flags[flag] ) {
4620 // Set
4621 if ( !this.flags[flag] ) {
4622 changes[flag] = true;
4623 this.flags[flag] = true;
4624 add.push( className );
4625 }
4626 } else {
4627 // Remove
4628 if ( this.flags[flag] ) {
4629 changes[flag] = false;
4630 delete this.flags[flag];
4631 remove.push( className );
4632 }
4633 }
4634 }
4635 }
4636
4637 if ( this.$flagged ) {
4638 this.$flagged
4639 .addClass( add.join( ' ' ) )
4640 .removeClass( remove.join( ' ' ) );
4641 }
4642
4643 this.updateThemeClasses();
4644 this.emit( 'flag', changes );
4645
4646 return this;
4647 };
4648
4649 /**
4650 * Element with a title.
4651 *
4652 * Titles are rendered by the browser and are made visible when hovering the element. Titles are
4653 * not visible on touch devices.
4654 *
4655 * @abstract
4656 * @class
4657 *
4658 * @constructor
4659 * @param {Object} [config] Configuration options
4660 * @cfg {jQuery} [$titled] Titled node, assigned to #$titled, omit to use #$element
4661 * @cfg {string|Function} [title] Title text or a function that returns text
4662 */
4663 OO.ui.TitledElement = function OoUiTitledElement( config ) {
4664 // Config intialization
4665 config = config || {};
4666
4667 // Properties
4668 this.$titled = null;
4669 this.title = null;
4670
4671 // Initialization
4672 this.setTitle( config.title || this.constructor.static.title );
4673 this.setTitledElement( config.$titled || this.$element );
4674 };
4675
4676 /* Setup */
4677
4678 OO.initClass( OO.ui.TitledElement );
4679
4680 /* Static Properties */
4681
4682 /**
4683 * Title.
4684 *
4685 * @static
4686 * @inheritable
4687 * @property {string|Function} Title text or a function that returns text
4688 */
4689 OO.ui.TitledElement.static.title = null;
4690
4691 /* Methods */
4692
4693 /**
4694 * Set the titled element.
4695 *
4696 * If an element is already set, it will be cleaned up before setting up the new element.
4697 *
4698 * @param {jQuery} $titled Element to set title on
4699 */
4700 OO.ui.TitledElement.prototype.setTitledElement = function ( $titled ) {
4701 if ( this.$titled ) {
4702 this.$titled.removeAttr( 'title' );
4703 }
4704
4705 this.$titled = $titled;
4706 if ( this.title ) {
4707 this.$titled.attr( 'title', this.title );
4708 }
4709 };
4710
4711 /**
4712 * Set title.
4713 *
4714 * @param {string|Function|null} title Title text, a function that returns text or null for no title
4715 * @chainable
4716 */
4717 OO.ui.TitledElement.prototype.setTitle = function ( title ) {
4718 title = typeof title === 'string' ? OO.ui.resolveMsg( title ) : null;
4719
4720 if ( this.title !== title ) {
4721 if ( this.$titled ) {
4722 if ( title !== null ) {
4723 this.$titled.attr( 'title', title );
4724 } else {
4725 this.$titled.removeAttr( 'title' );
4726 }
4727 }
4728 this.title = title;
4729 }
4730
4731 return this;
4732 };
4733
4734 /**
4735 * Get title.
4736 *
4737 * @return {string} Title string
4738 */
4739 OO.ui.TitledElement.prototype.getTitle = function () {
4740 return this.title;
4741 };
4742
4743 /**
4744 * Element that can be automatically clipped to visible boundaries.
4745 *
4746 * Whenever the element's natural height changes, you have to call
4747 * #clip to make sure it's still clipping correctly.
4748 *
4749 * @abstract
4750 * @class
4751 *
4752 * @constructor
4753 * @param {Object} [config] Configuration options
4754 * @cfg {jQuery} [$clippable] Nodes to clip, assigned to #$clippable, omit to use #$element
4755 */
4756 OO.ui.ClippableElement = function OoUiClippableElement( config ) {
4757 // Configuration initialization
4758 config = config || {};
4759
4760 // Properties
4761 this.$clippable = null;
4762 this.clipping = false;
4763 this.clippedHorizontally = false;
4764 this.clippedVertically = false;
4765 this.$clippableContainer = null;
4766 this.$clippableScroller = null;
4767 this.$clippableWindow = null;
4768 this.idealWidth = null;
4769 this.idealHeight = null;
4770 this.onClippableContainerScrollHandler = this.clip.bind( this );
4771 this.onClippableWindowResizeHandler = this.clip.bind( this );
4772
4773 // Initialization
4774 this.setClippableElement( config.$clippable || this.$element );
4775 };
4776
4777 /* Methods */
4778
4779 /**
4780 * Set clippable element.
4781 *
4782 * If an element is already set, it will be cleaned up before setting up the new element.
4783 *
4784 * @param {jQuery} $clippable Element to make clippable
4785 */
4786 OO.ui.ClippableElement.prototype.setClippableElement = function ( $clippable ) {
4787 if ( this.$clippable ) {
4788 this.$clippable.removeClass( 'oo-ui-clippableElement-clippable' );
4789 this.$clippable.css( { width: '', height: '' } );
4790 this.$clippable.width(); // Force reflow for https://code.google.com/p/chromium/issues/detail?id=387290
4791 this.$clippable.css( { overflowX: '', overflowY: '' } );
4792 }
4793
4794 this.$clippable = $clippable.addClass( 'oo-ui-clippableElement-clippable' );
4795 this.clip();
4796 };
4797
4798 /**
4799 * Toggle clipping.
4800 *
4801 * Do not turn clipping on until after the element is attached to the DOM and visible.
4802 *
4803 * @param {boolean} [clipping] Enable clipping, omit to toggle
4804 * @chainable
4805 */
4806 OO.ui.ClippableElement.prototype.toggleClipping = function ( clipping ) {
4807 clipping = clipping === undefined ? !this.clipping : !!clipping;
4808
4809 if ( this.clipping !== clipping ) {
4810 this.clipping = clipping;
4811 if ( clipping ) {
4812 this.$clippableContainer = this.$( this.getClosestScrollableElementContainer() );
4813 // If the clippable container is the body, we have to listen to scroll events and check
4814 // jQuery.scrollTop on the window because of browser inconsistencies
4815 this.$clippableScroller = this.$clippableContainer.is( 'body' ) ?
4816 this.$( OO.ui.Element.getWindow( this.$clippableContainer ) ) :
4817 this.$clippableContainer;
4818 this.$clippableScroller.on( 'scroll', this.onClippableContainerScrollHandler );
4819 this.$clippableWindow = this.$( this.getElementWindow() )
4820 .on( 'resize', this.onClippableWindowResizeHandler );
4821 // Initial clip after visible
4822 this.clip();
4823 } else {
4824 this.$clippable.css( { width: '', height: '' } );
4825 this.$clippable.width(); // Force reflow for https://code.google.com/p/chromium/issues/detail?id=387290
4826 this.$clippable.css( { overflowX: '', overflowY: '' } );
4827
4828 this.$clippableContainer = null;
4829 this.$clippableScroller.off( 'scroll', this.onClippableContainerScrollHandler );
4830 this.$clippableScroller = null;
4831 this.$clippableWindow.off( 'resize', this.onClippableWindowResizeHandler );
4832 this.$clippableWindow = null;
4833 }
4834 }
4835
4836 return this;
4837 };
4838
4839 /**
4840 * Check if the element will be clipped to fit the visible area of the nearest scrollable container.
4841 *
4842 * @return {boolean} Element will be clipped to the visible area
4843 */
4844 OO.ui.ClippableElement.prototype.isClipping = function () {
4845 return this.clipping;
4846 };
4847
4848 /**
4849 * Check if the bottom or right of the element is being clipped by the nearest scrollable container.
4850 *
4851 * @return {boolean} Part of the element is being clipped
4852 */
4853 OO.ui.ClippableElement.prototype.isClipped = function () {
4854 return this.clippedHorizontally || this.clippedVertically;
4855 };
4856
4857 /**
4858 * Check if the right of the element is being clipped by the nearest scrollable container.
4859 *
4860 * @return {boolean} Part of the element is being clipped
4861 */
4862 OO.ui.ClippableElement.prototype.isClippedHorizontally = function () {
4863 return this.clippedHorizontally;
4864 };
4865
4866 /**
4867 * Check if the bottom of the element is being clipped by the nearest scrollable container.
4868 *
4869 * @return {boolean} Part of the element is being clipped
4870 */
4871 OO.ui.ClippableElement.prototype.isClippedVertically = function () {
4872 return this.clippedVertically;
4873 };
4874
4875 /**
4876 * Set the ideal size. These are the dimensions the element will have when it's not being clipped.
4877 *
4878 * @param {number|string} [width] Width as a number of pixels or CSS string with unit suffix
4879 * @param {number|string} [height] Height as a number of pixels or CSS string with unit suffix
4880 */
4881 OO.ui.ClippableElement.prototype.setIdealSize = function ( width, height ) {
4882 this.idealWidth = width;
4883 this.idealHeight = height;
4884
4885 if ( !this.clipping ) {
4886 // Update dimensions
4887 this.$clippable.css( { width: width, height: height } );
4888 }
4889 // While clipping, idealWidth and idealHeight are not considered
4890 };
4891
4892 /**
4893 * Clip element to visible boundaries and allow scrolling when needed. Call this method when
4894 * the element's natural height changes.
4895 *
4896 * Element will be clipped the bottom or right of the element is within 10px of the edge of, or
4897 * overlapped by, the visible area of the nearest scrollable container.
4898 *
4899 * @chainable
4900 */
4901 OO.ui.ClippableElement.prototype.clip = function () {
4902 if ( !this.clipping ) {
4903 // this.$clippableContainer and this.$clippableWindow are null, so the below will fail
4904 return this;
4905 }
4906
4907 var buffer = 10,
4908 cOffset = this.$clippable.offset(),
4909 $container = this.$clippableContainer.is( 'body' ) ?
4910 this.$clippableWindow : this.$clippableContainer,
4911 ccOffset = $container.offset() || { top: 0, left: 0 },
4912 ccHeight = $container.innerHeight() - buffer,
4913 ccWidth = $container.innerWidth() - buffer,
4914 scrollTop = this.$clippableScroller.scrollTop(),
4915 scrollLeft = this.$clippableScroller.scrollLeft(),
4916 desiredWidth = ( ccOffset.left + scrollLeft + ccWidth ) - cOffset.left,
4917 desiredHeight = ( ccOffset.top + scrollTop + ccHeight ) - cOffset.top,
4918 naturalWidth = this.$clippable.prop( 'scrollWidth' ),
4919 naturalHeight = this.$clippable.prop( 'scrollHeight' ),
4920 clipWidth = desiredWidth < naturalWidth,
4921 clipHeight = desiredHeight < naturalHeight;
4922
4923 if ( clipWidth ) {
4924 this.$clippable.css( { overflowX: 'scroll', width: desiredWidth } );
4925 } else {
4926 this.$clippable.css( 'width', this.idealWidth || '' );
4927 this.$clippable.width(); // Force reflow for https://code.google.com/p/chromium/issues/detail?id=387290
4928 this.$clippable.css( 'overflowX', '' );
4929 }
4930 if ( clipHeight ) {
4931 this.$clippable.css( { overflowY: 'scroll', height: desiredHeight } );
4932 } else {
4933 this.$clippable.css( 'height', this.idealHeight || '' );
4934 this.$clippable.height(); // Force reflow for https://code.google.com/p/chromium/issues/detail?id=387290
4935 this.$clippable.css( 'overflowY', '' );
4936 }
4937
4938 this.clippedHorizontally = clipWidth;
4939 this.clippedVertically = clipHeight;
4940
4941 return this;
4942 };
4943
4944 /**
4945 * Generic toolbar tool.
4946 *
4947 * @abstract
4948 * @class
4949 * @extends OO.ui.Widget
4950 * @mixins OO.ui.IconElement
4951 * @mixins OO.ui.FlaggedElement
4952 *
4953 * @constructor
4954 * @param {OO.ui.ToolGroup} toolGroup
4955 * @param {Object} [config] Configuration options
4956 * @cfg {string|Function} [title] Title text or a function that returns text
4957 */
4958 OO.ui.Tool = function OoUiTool( toolGroup, config ) {
4959 // Config intialization
4960 config = config || {};
4961
4962 // Parent constructor
4963 OO.ui.Tool.super.call( this, config );
4964
4965 // Mixin constructors
4966 OO.ui.IconElement.call( this, config );
4967 OO.ui.FlaggedElement.call( this, config );
4968
4969 // Properties
4970 this.toolGroup = toolGroup;
4971 this.toolbar = this.toolGroup.getToolbar();
4972 this.active = false;
4973 this.$title = this.$( '<span>' );
4974 this.$titleText = this.$( '<span>' );
4975 this.$accel = this.$( '<span>' );
4976 this.$link = this.$( '<a>' );
4977 this.title = null;
4978
4979 // Events
4980 this.toolbar.connect( this, { updateState: 'onUpdateState' } );
4981
4982 // Initialization
4983 this.$titleText.addClass( 'oo-ui-tool-title-text' );
4984 this.$accel.addClass( 'oo-ui-tool-accel' );
4985 this.$title
4986 .addClass( 'oo-ui-tool-title' )
4987 .append( this.$titleText, this.$accel );
4988 this.$link
4989 .addClass( 'oo-ui-tool-link' )
4990 .append( this.$icon, this.$title )
4991 .prop( 'tabIndex', 0 )
4992 .attr( 'role', 'button' );
4993 this.$element
4994 .data( 'oo-ui-tool', this )
4995 .addClass(
4996 'oo-ui-tool ' + 'oo-ui-tool-name-' +
4997 this.constructor.static.name.replace( /^([^\/]+)\/([^\/]+).*$/, '$1-$2' )
4998 )
4999 .append( this.$link );
5000 this.setTitle( config.title || this.constructor.static.title );
5001 };
5002
5003 /* Setup */
5004
5005 OO.inheritClass( OO.ui.Tool, OO.ui.Widget );
5006 OO.mixinClass( OO.ui.Tool, OO.ui.IconElement );
5007 OO.mixinClass( OO.ui.Tool, OO.ui.FlaggedElement );
5008
5009 /* Events */
5010
5011 /**
5012 * @event select
5013 */
5014
5015 /* Static Properties */
5016
5017 /**
5018 * @static
5019 * @inheritdoc
5020 */
5021 OO.ui.Tool.static.tagName = 'span';
5022
5023 /**
5024 * Symbolic name of tool.
5025 *
5026 * @abstract
5027 * @static
5028 * @inheritable
5029 * @property {string}
5030 */
5031 OO.ui.Tool.static.name = '';
5032
5033 /**
5034 * Tool group.
5035 *
5036 * @abstract
5037 * @static
5038 * @inheritable
5039 * @property {string}
5040 */
5041 OO.ui.Tool.static.group = '';
5042
5043 /**
5044 * Tool title.
5045 *
5046 * Title is used as a tooltip when the tool is part of a bar tool group, or a label when the tool
5047 * is part of a list or menu tool group. If a trigger is associated with an action by the same name
5048 * as the tool, a description of its keyboard shortcut for the appropriate platform will be
5049 * appended to the title if the tool is part of a bar tool group.
5050 *
5051 * @abstract
5052 * @static
5053 * @inheritable
5054 * @property {string|Function} Title text or a function that returns text
5055 */
5056 OO.ui.Tool.static.title = '';
5057
5058 /**
5059 * Tool can be automatically added to catch-all groups.
5060 *
5061 * @static
5062 * @inheritable
5063 * @property {boolean}
5064 */
5065 OO.ui.Tool.static.autoAddToCatchall = true;
5066
5067 /**
5068 * Tool can be automatically added to named groups.
5069 *
5070 * @static
5071 * @property {boolean}
5072 * @inheritable
5073 */
5074 OO.ui.Tool.static.autoAddToGroup = true;
5075
5076 /**
5077 * Check if this tool is compatible with given data.
5078 *
5079 * @static
5080 * @inheritable
5081 * @param {Mixed} data Data to check
5082 * @return {boolean} Tool can be used with data
5083 */
5084 OO.ui.Tool.static.isCompatibleWith = function () {
5085 return false;
5086 };
5087
5088 /* Methods */
5089
5090 /**
5091 * Handle the toolbar state being updated.
5092 *
5093 * This is an abstract method that must be overridden in a concrete subclass.
5094 *
5095 * @abstract
5096 */
5097 OO.ui.Tool.prototype.onUpdateState = function () {
5098 throw new Error(
5099 'OO.ui.Tool.onUpdateState not implemented in this subclass:' + this.constructor
5100 );
5101 };
5102
5103 /**
5104 * Handle the tool being selected.
5105 *
5106 * This is an abstract method that must be overridden in a concrete subclass.
5107 *
5108 * @abstract
5109 */
5110 OO.ui.Tool.prototype.onSelect = function () {
5111 throw new Error(
5112 'OO.ui.Tool.onSelect not implemented in this subclass:' + this.constructor
5113 );
5114 };
5115
5116 /**
5117 * Check if the button is active.
5118 *
5119 * @return {boolean} Button is active
5120 */
5121 OO.ui.Tool.prototype.isActive = function () {
5122 return this.active;
5123 };
5124
5125 /**
5126 * Make the button appear active or inactive.
5127 *
5128 * @param {boolean} state Make button appear active
5129 */
5130 OO.ui.Tool.prototype.setActive = function ( state ) {
5131 this.active = !!state;
5132 if ( this.active ) {
5133 this.$element.addClass( 'oo-ui-tool-active' );
5134 } else {
5135 this.$element.removeClass( 'oo-ui-tool-active' );
5136 }
5137 };
5138
5139 /**
5140 * Get the tool title.
5141 *
5142 * @param {string|Function} title Title text or a function that returns text
5143 * @chainable
5144 */
5145 OO.ui.Tool.prototype.setTitle = function ( title ) {
5146 this.title = OO.ui.resolveMsg( title );
5147 this.updateTitle();
5148 return this;
5149 };
5150
5151 /**
5152 * Get the tool title.
5153 *
5154 * @return {string} Title text
5155 */
5156 OO.ui.Tool.prototype.getTitle = function () {
5157 return this.title;
5158 };
5159
5160 /**
5161 * Get the tool's symbolic name.
5162 *
5163 * @return {string} Symbolic name of tool
5164 */
5165 OO.ui.Tool.prototype.getName = function () {
5166 return this.constructor.static.name;
5167 };
5168
5169 /**
5170 * Update the title.
5171 */
5172 OO.ui.Tool.prototype.updateTitle = function () {
5173 var titleTooltips = this.toolGroup.constructor.static.titleTooltips,
5174 accelTooltips = this.toolGroup.constructor.static.accelTooltips,
5175 accel = this.toolbar.getToolAccelerator( this.constructor.static.name ),
5176 tooltipParts = [];
5177
5178 this.$titleText.text( this.title );
5179 this.$accel.text( accel );
5180
5181 if ( titleTooltips && typeof this.title === 'string' && this.title.length ) {
5182 tooltipParts.push( this.title );
5183 }
5184 if ( accelTooltips && typeof accel === 'string' && accel.length ) {
5185 tooltipParts.push( accel );
5186 }
5187 if ( tooltipParts.length ) {
5188 this.$link.attr( 'title', tooltipParts.join( ' ' ) );
5189 } else {
5190 this.$link.removeAttr( 'title' );
5191 }
5192 };
5193
5194 /**
5195 * Destroy tool.
5196 */
5197 OO.ui.Tool.prototype.destroy = function () {
5198 this.toolbar.disconnect( this );
5199 this.$element.remove();
5200 };
5201
5202 /**
5203 * Collection of tool groups.
5204 *
5205 * @class
5206 * @extends OO.ui.Element
5207 * @mixins OO.EventEmitter
5208 * @mixins OO.ui.GroupElement
5209 *
5210 * @constructor
5211 * @param {OO.ui.ToolFactory} toolFactory Factory for creating tools
5212 * @param {OO.ui.ToolGroupFactory} toolGroupFactory Factory for creating tool groups
5213 * @param {Object} [config] Configuration options
5214 * @cfg {boolean} [actions] Add an actions section opposite to the tools
5215 * @cfg {boolean} [shadow] Add a shadow below the toolbar
5216 */
5217 OO.ui.Toolbar = function OoUiToolbar( toolFactory, toolGroupFactory, config ) {
5218 // Configuration initialization
5219 config = config || {};
5220
5221 // Parent constructor
5222 OO.ui.Toolbar.super.call( this, config );
5223
5224 // Mixin constructors
5225 OO.EventEmitter.call( this );
5226 OO.ui.GroupElement.call( this, config );
5227
5228 // Properties
5229 this.toolFactory = toolFactory;
5230 this.toolGroupFactory = toolGroupFactory;
5231 this.groups = [];
5232 this.tools = {};
5233 this.$bar = this.$( '<div>' );
5234 this.$actions = this.$( '<div>' );
5235 this.initialized = false;
5236
5237 // Events
5238 this.$element
5239 .add( this.$bar ).add( this.$group ).add( this.$actions )
5240 .on( 'mousedown touchstart', this.onPointerDown.bind( this ) );
5241
5242 // Initialization
5243 this.$group.addClass( 'oo-ui-toolbar-tools' );
5244 this.$bar.addClass( 'oo-ui-toolbar-bar' ).append( this.$group );
5245 if ( config.actions ) {
5246 this.$actions.addClass( 'oo-ui-toolbar-actions' );
5247 this.$bar.append( this.$actions );
5248 }
5249 this.$bar.append( '<div style="clear:both"></div>' );
5250 if ( config.shadow ) {
5251 this.$bar.append( '<div class="oo-ui-toolbar-shadow"></div>' );
5252 }
5253 this.$element.addClass( 'oo-ui-toolbar' ).append( this.$bar );
5254 };
5255
5256 /* Setup */
5257
5258 OO.inheritClass( OO.ui.Toolbar, OO.ui.Element );
5259 OO.mixinClass( OO.ui.Toolbar, OO.EventEmitter );
5260 OO.mixinClass( OO.ui.Toolbar, OO.ui.GroupElement );
5261
5262 /* Methods */
5263
5264 /**
5265 * Get the tool factory.
5266 *
5267 * @return {OO.ui.ToolFactory} Tool factory
5268 */
5269 OO.ui.Toolbar.prototype.getToolFactory = function () {
5270 return this.toolFactory;
5271 };
5272
5273 /**
5274 * Get the tool group factory.
5275 *
5276 * @return {OO.Factory} Tool group factory
5277 */
5278 OO.ui.Toolbar.prototype.getToolGroupFactory = function () {
5279 return this.toolGroupFactory;
5280 };
5281
5282 /**
5283 * Handles mouse down events.
5284 *
5285 * @param {jQuery.Event} e Mouse down event
5286 */
5287 OO.ui.Toolbar.prototype.onPointerDown = function ( e ) {
5288 var $closestWidgetToEvent = this.$( e.target ).closest( '.oo-ui-widget' ),
5289 $closestWidgetToToolbar = this.$element.closest( '.oo-ui-widget' );
5290 if ( !$closestWidgetToEvent.length || $closestWidgetToEvent[0] === $closestWidgetToToolbar[0] ) {
5291 return false;
5292 }
5293 };
5294
5295 /**
5296 * Sets up handles and preloads required information for the toolbar to work.
5297 * This must be called immediately after it is attached to a visible document.
5298 */
5299 OO.ui.Toolbar.prototype.initialize = function () {
5300 this.initialized = true;
5301 };
5302
5303 /**
5304 * Setup toolbar.
5305 *
5306 * Tools can be specified in the following ways:
5307 *
5308 * - A specific tool: `{ name: 'tool-name' }` or `'tool-name'`
5309 * - All tools in a group: `{ group: 'group-name' }`
5310 * - All tools: `'*'` - Using this will make the group a list with a "More" label by default
5311 *
5312 * @param {Object.<string,Array>} groups List of tool group configurations
5313 * @param {Array|string} [groups.include] Tools to include
5314 * @param {Array|string} [groups.exclude] Tools to exclude
5315 * @param {Array|string} [groups.promote] Tools to promote to the beginning
5316 * @param {Array|string} [groups.demote] Tools to demote to the end
5317 */
5318 OO.ui.Toolbar.prototype.setup = function ( groups ) {
5319 var i, len, type, group,
5320 items = [],
5321 defaultType = 'bar';
5322
5323 // Cleanup previous groups
5324 this.reset();
5325
5326 // Build out new groups
5327 for ( i = 0, len = groups.length; i < len; i++ ) {
5328 group = groups[i];
5329 if ( group.include === '*' ) {
5330 // Apply defaults to catch-all groups
5331 if ( group.type === undefined ) {
5332 group.type = 'list';
5333 }
5334 if ( group.label === undefined ) {
5335 group.label = OO.ui.msg( 'ooui-toolbar-more' );
5336 }
5337 }
5338 // Check type has been registered
5339 type = this.getToolGroupFactory().lookup( group.type ) ? group.type : defaultType;
5340 items.push(
5341 this.getToolGroupFactory().create( type, this, $.extend( { $: this.$ }, group ) )
5342 );
5343 }
5344 this.addItems( items );
5345 };
5346
5347 /**
5348 * Remove all tools and groups from the toolbar.
5349 */
5350 OO.ui.Toolbar.prototype.reset = function () {
5351 var i, len;
5352
5353 this.groups = [];
5354 this.tools = {};
5355 for ( i = 0, len = this.items.length; i < len; i++ ) {
5356 this.items[i].destroy();
5357 }
5358 this.clearItems();
5359 };
5360
5361 /**
5362 * Destroys toolbar, removing event handlers and DOM elements.
5363 *
5364 * Call this whenever you are done using a toolbar.
5365 */
5366 OO.ui.Toolbar.prototype.destroy = function () {
5367 this.reset();
5368 this.$element.remove();
5369 };
5370
5371 /**
5372 * Check if tool has not been used yet.
5373 *
5374 * @param {string} name Symbolic name of tool
5375 * @return {boolean} Tool is available
5376 */
5377 OO.ui.Toolbar.prototype.isToolAvailable = function ( name ) {
5378 return !this.tools[name];
5379 };
5380
5381 /**
5382 * Prevent tool from being used again.
5383 *
5384 * @param {OO.ui.Tool} tool Tool to reserve
5385 */
5386 OO.ui.Toolbar.prototype.reserveTool = function ( tool ) {
5387 this.tools[tool.getName()] = tool;
5388 };
5389
5390 /**
5391 * Allow tool to be used again.
5392 *
5393 * @param {OO.ui.Tool} tool Tool to release
5394 */
5395 OO.ui.Toolbar.prototype.releaseTool = function ( tool ) {
5396 delete this.tools[tool.getName()];
5397 };
5398
5399 /**
5400 * Get accelerator label for tool.
5401 *
5402 * This is a stub that should be overridden to provide access to accelerator information.
5403 *
5404 * @param {string} name Symbolic name of tool
5405 * @return {string|undefined} Tool accelerator label if available
5406 */
5407 OO.ui.Toolbar.prototype.getToolAccelerator = function () {
5408 return undefined;
5409 };
5410
5411 /**
5412 * Collection of tools.
5413 *
5414 * Tools can be specified in the following ways:
5415 *
5416 * - A specific tool: `{ name: 'tool-name' }` or `'tool-name'`
5417 * - All tools in a group: `{ group: 'group-name' }`
5418 * - All tools: `'*'`
5419 *
5420 * @abstract
5421 * @class
5422 * @extends OO.ui.Widget
5423 * @mixins OO.ui.GroupElement
5424 *
5425 * @constructor
5426 * @param {OO.ui.Toolbar} toolbar
5427 * @param {Object} [config] Configuration options
5428 * @cfg {Array|string} [include=[]] List of tools to include
5429 * @cfg {Array|string} [exclude=[]] List of tools to exclude
5430 * @cfg {Array|string} [promote=[]] List of tools to promote to the beginning
5431 * @cfg {Array|string} [demote=[]] List of tools to demote to the end
5432 */
5433 OO.ui.ToolGroup = function OoUiToolGroup( toolbar, config ) {
5434 // Configuration initialization
5435 config = config || {};
5436
5437 // Parent constructor
5438 OO.ui.ToolGroup.super.call( this, config );
5439
5440 // Mixin constructors
5441 OO.ui.GroupElement.call( this, config );
5442
5443 // Properties
5444 this.toolbar = toolbar;
5445 this.tools = {};
5446 this.pressed = null;
5447 this.autoDisabled = false;
5448 this.include = config.include || [];
5449 this.exclude = config.exclude || [];
5450 this.promote = config.promote || [];
5451 this.demote = config.demote || [];
5452 this.onCapturedMouseUpHandler = this.onCapturedMouseUp.bind( this );
5453
5454 // Events
5455 this.$element.on( {
5456 'mousedown touchstart': this.onPointerDown.bind( this ),
5457 'mouseup touchend': this.onPointerUp.bind( this ),
5458 mouseover: this.onMouseOver.bind( this ),
5459 mouseout: this.onMouseOut.bind( this )
5460 } );
5461 this.toolbar.getToolFactory().connect( this, { register: 'onToolFactoryRegister' } );
5462 this.aggregate( { disable: 'itemDisable' } );
5463 this.connect( this, { itemDisable: 'updateDisabled' } );
5464
5465 // Initialization
5466 this.$group.addClass( 'oo-ui-toolGroup-tools' );
5467 this.$element
5468 .addClass( 'oo-ui-toolGroup' )
5469 .append( this.$group );
5470 this.populate();
5471 };
5472
5473 /* Setup */
5474
5475 OO.inheritClass( OO.ui.ToolGroup, OO.ui.Widget );
5476 OO.mixinClass( OO.ui.ToolGroup, OO.ui.GroupElement );
5477
5478 /* Events */
5479
5480 /**
5481 * @event update
5482 */
5483
5484 /* Static Properties */
5485
5486 /**
5487 * Show labels in tooltips.
5488 *
5489 * @static
5490 * @inheritable
5491 * @property {boolean}
5492 */
5493 OO.ui.ToolGroup.static.titleTooltips = false;
5494
5495 /**
5496 * Show acceleration labels in tooltips.
5497 *
5498 * @static
5499 * @inheritable
5500 * @property {boolean}
5501 */
5502 OO.ui.ToolGroup.static.accelTooltips = false;
5503
5504 /**
5505 * Automatically disable the toolgroup when all tools are disabled
5506 *
5507 * @static
5508 * @inheritable
5509 * @property {boolean}
5510 */
5511 OO.ui.ToolGroup.static.autoDisable = true;
5512
5513 /* Methods */
5514
5515 /**
5516 * @inheritdoc
5517 */
5518 OO.ui.ToolGroup.prototype.isDisabled = function () {
5519 return this.autoDisabled || OO.ui.ToolGroup.super.prototype.isDisabled.apply( this, arguments );
5520 };
5521
5522 /**
5523 * @inheritdoc
5524 */
5525 OO.ui.ToolGroup.prototype.updateDisabled = function () {
5526 var i, item, allDisabled = true;
5527
5528 if ( this.constructor.static.autoDisable ) {
5529 for ( i = this.items.length - 1; i >= 0; i-- ) {
5530 item = this.items[i];
5531 if ( !item.isDisabled() ) {
5532 allDisabled = false;
5533 break;
5534 }
5535 }
5536 this.autoDisabled = allDisabled;
5537 }
5538 OO.ui.ToolGroup.super.prototype.updateDisabled.apply( this, arguments );
5539 };
5540
5541 /**
5542 * Handle mouse down events.
5543 *
5544 * @param {jQuery.Event} e Mouse down event
5545 */
5546 OO.ui.ToolGroup.prototype.onPointerDown = function ( e ) {
5547 // e.which is 0 for touch events, 1 for left mouse button
5548 if ( !this.isDisabled() && e.which <= 1 ) {
5549 this.pressed = this.getTargetTool( e );
5550 if ( this.pressed ) {
5551 this.pressed.setActive( true );
5552 this.getElementDocument().addEventListener(
5553 'mouseup', this.onCapturedMouseUpHandler, true
5554 );
5555 }
5556 }
5557 return false;
5558 };
5559
5560 /**
5561 * Handle captured mouse up events.
5562 *
5563 * @param {Event} e Mouse up event
5564 */
5565 OO.ui.ToolGroup.prototype.onCapturedMouseUp = function ( e ) {
5566 this.getElementDocument().removeEventListener( 'mouseup', this.onCapturedMouseUpHandler, true );
5567 // onPointerUp may be called a second time, depending on where the mouse is when the button is
5568 // released, but since `this.pressed` will no longer be true, the second call will be ignored.
5569 this.onPointerUp( e );
5570 };
5571
5572 /**
5573 * Handle mouse up events.
5574 *
5575 * @param {jQuery.Event} e Mouse up event
5576 */
5577 OO.ui.ToolGroup.prototype.onPointerUp = function ( e ) {
5578 var tool = this.getTargetTool( e );
5579
5580 // e.which is 0 for touch events, 1 for left mouse button
5581 if ( !this.isDisabled() && e.which <= 1 && this.pressed && this.pressed === tool ) {
5582 this.pressed.onSelect();
5583 }
5584
5585 this.pressed = null;
5586 return false;
5587 };
5588
5589 /**
5590 * Handle mouse over events.
5591 *
5592 * @param {jQuery.Event} e Mouse over event
5593 */
5594 OO.ui.ToolGroup.prototype.onMouseOver = function ( e ) {
5595 var tool = this.getTargetTool( e );
5596
5597 if ( this.pressed && this.pressed === tool ) {
5598 this.pressed.setActive( true );
5599 }
5600 };
5601
5602 /**
5603 * Handle mouse out events.
5604 *
5605 * @param {jQuery.Event} e Mouse out event
5606 */
5607 OO.ui.ToolGroup.prototype.onMouseOut = function ( e ) {
5608 var tool = this.getTargetTool( e );
5609
5610 if ( this.pressed && this.pressed === tool ) {
5611 this.pressed.setActive( false );
5612 }
5613 };
5614
5615 /**
5616 * Get the closest tool to a jQuery.Event.
5617 *
5618 * Only tool links are considered, which prevents other elements in the tool such as popups from
5619 * triggering tool group interactions.
5620 *
5621 * @private
5622 * @param {jQuery.Event} e
5623 * @return {OO.ui.Tool|null} Tool, `null` if none was found
5624 */
5625 OO.ui.ToolGroup.prototype.getTargetTool = function ( e ) {
5626 var tool,
5627 $item = this.$( e.target ).closest( '.oo-ui-tool-link' );
5628
5629 if ( $item.length ) {
5630 tool = $item.parent().data( 'oo-ui-tool' );
5631 }
5632
5633 return tool && !tool.isDisabled() ? tool : null;
5634 };
5635
5636 /**
5637 * Handle tool registry register events.
5638 *
5639 * If a tool is registered after the group is created, we must repopulate the list to account for:
5640 *
5641 * - a tool being added that may be included
5642 * - a tool already included being overridden
5643 *
5644 * @param {string} name Symbolic name of tool
5645 */
5646 OO.ui.ToolGroup.prototype.onToolFactoryRegister = function () {
5647 this.populate();
5648 };
5649
5650 /**
5651 * Get the toolbar this group is in.
5652 *
5653 * @return {OO.ui.Toolbar} Toolbar of group
5654 */
5655 OO.ui.ToolGroup.prototype.getToolbar = function () {
5656 return this.toolbar;
5657 };
5658
5659 /**
5660 * Add and remove tools based on configuration.
5661 */
5662 OO.ui.ToolGroup.prototype.populate = function () {
5663 var i, len, name, tool,
5664 toolFactory = this.toolbar.getToolFactory(),
5665 names = {},
5666 add = [],
5667 remove = [],
5668 list = this.toolbar.getToolFactory().getTools(
5669 this.include, this.exclude, this.promote, this.demote
5670 );
5671
5672 // Build a list of needed tools
5673 for ( i = 0, len = list.length; i < len; i++ ) {
5674 name = list[i];
5675 if (
5676 // Tool exists
5677 toolFactory.lookup( name ) &&
5678 // Tool is available or is already in this group
5679 ( this.toolbar.isToolAvailable( name ) || this.tools[name] )
5680 ) {
5681 tool = this.tools[name];
5682 if ( !tool ) {
5683 // Auto-initialize tools on first use
5684 this.tools[name] = tool = toolFactory.create( name, this );
5685 tool.updateTitle();
5686 }
5687 this.toolbar.reserveTool( tool );
5688 add.push( tool );
5689 names[name] = true;
5690 }
5691 }
5692 // Remove tools that are no longer needed
5693 for ( name in this.tools ) {
5694 if ( !names[name] ) {
5695 this.tools[name].destroy();
5696 this.toolbar.releaseTool( this.tools[name] );
5697 remove.push( this.tools[name] );
5698 delete this.tools[name];
5699 }
5700 }
5701 if ( remove.length ) {
5702 this.removeItems( remove );
5703 }
5704 // Update emptiness state
5705 if ( add.length ) {
5706 this.$element.removeClass( 'oo-ui-toolGroup-empty' );
5707 } else {
5708 this.$element.addClass( 'oo-ui-toolGroup-empty' );
5709 }
5710 // Re-add tools (moving existing ones to new locations)
5711 this.addItems( add );
5712 // Disabled state may depend on items
5713 this.updateDisabled();
5714 };
5715
5716 /**
5717 * Destroy tool group.
5718 */
5719 OO.ui.ToolGroup.prototype.destroy = function () {
5720 var name;
5721
5722 this.clearItems();
5723 this.toolbar.getToolFactory().disconnect( this );
5724 for ( name in this.tools ) {
5725 this.toolbar.releaseTool( this.tools[name] );
5726 this.tools[name].disconnect( this ).destroy();
5727 delete this.tools[name];
5728 }
5729 this.$element.remove();
5730 };
5731
5732 /**
5733 * Dialog for showing a message.
5734 *
5735 * User interface:
5736 * - Registers two actions by default (safe and primary).
5737 * - Renders action widgets in the footer.
5738 *
5739 * @class
5740 * @extends OO.ui.Dialog
5741 *
5742 * @constructor
5743 * @param {Object} [config] Configuration options
5744 */
5745 OO.ui.MessageDialog = function OoUiMessageDialog( config ) {
5746 // Parent constructor
5747 OO.ui.MessageDialog.super.call( this, config );
5748
5749 // Properties
5750 this.verticalActionLayout = null;
5751
5752 // Initialization
5753 this.$element.addClass( 'oo-ui-messageDialog' );
5754 };
5755
5756 /* Inheritance */
5757
5758 OO.inheritClass( OO.ui.MessageDialog, OO.ui.Dialog );
5759
5760 /* Static Properties */
5761
5762 OO.ui.MessageDialog.static.name = 'message';
5763
5764 OO.ui.MessageDialog.static.size = 'small';
5765
5766 OO.ui.MessageDialog.static.verbose = false;
5767
5768 /**
5769 * Dialog title.
5770 *
5771 * A confirmation dialog's title should describe what the progressive action will do. An alert
5772 * dialog's title should describe what event occured.
5773 *
5774 * @static
5775 * inheritable
5776 * @property {jQuery|string|Function|null}
5777 */
5778 OO.ui.MessageDialog.static.title = null;
5779
5780 /**
5781 * A confirmation dialog's message should describe the consequences of the progressive action. An
5782 * alert dialog's message should describe why the event occured.
5783 *
5784 * @static
5785 * inheritable
5786 * @property {jQuery|string|Function|null}
5787 */
5788 OO.ui.MessageDialog.static.message = null;
5789
5790 OO.ui.MessageDialog.static.actions = [
5791 { action: 'accept', label: OO.ui.deferMsg( 'ooui-dialog-message-accept' ), flags: 'primary' },
5792 { action: 'reject', label: OO.ui.deferMsg( 'ooui-dialog-message-reject' ), flags: 'safe' }
5793 ];
5794
5795 /* Methods */
5796
5797 /**
5798 * @inheritdoc
5799 */
5800 OO.ui.MessageDialog.prototype.onActionResize = function ( action ) {
5801 this.fitActions();
5802 return OO.ui.ProcessDialog.super.prototype.onActionResize.call( this, action );
5803 };
5804
5805 /**
5806 * Toggle action layout between vertical and horizontal.
5807 *
5808 * @param {boolean} [value] Layout actions vertically, omit to toggle
5809 * @chainable
5810 */
5811 OO.ui.MessageDialog.prototype.toggleVerticalActionLayout = function ( value ) {
5812 value = value === undefined ? !this.verticalActionLayout : !!value;
5813
5814 if ( value !== this.verticalActionLayout ) {
5815 this.verticalActionLayout = value;
5816 this.$actions
5817 .toggleClass( 'oo-ui-messageDialog-actions-vertical', value )
5818 .toggleClass( 'oo-ui-messageDialog-actions-horizontal', !value );
5819 }
5820
5821 return this;
5822 };
5823
5824 /**
5825 * @inheritdoc
5826 */
5827 OO.ui.MessageDialog.prototype.getActionProcess = function ( action ) {
5828 if ( action ) {
5829 return new OO.ui.Process( function () {
5830 this.close( { action: action } );
5831 }, this );
5832 }
5833 return OO.ui.MessageDialog.super.prototype.getActionProcess.call( this, action );
5834 };
5835
5836 /**
5837 * @inheritdoc
5838 *
5839 * @param {Object} [data] Dialog opening data
5840 * @param {jQuery|string|Function|null} [data.title] Description of the action being confirmed
5841 * @param {jQuery|string|Function|null} [data.message] Description of the action's consequence
5842 * @param {boolean} [data.verbose] Message is verbose and should be styled as a long message
5843 * @param {Object[]} [data.actions] List of OO.ui.ActionOptionWidget configuration options for each
5844 * action item
5845 */
5846 OO.ui.MessageDialog.prototype.getSetupProcess = function ( data ) {
5847 data = data || {};
5848
5849 // Parent method
5850 return OO.ui.MessageDialog.super.prototype.getSetupProcess.call( this, data )
5851 .next( function () {
5852 this.title.setLabel(
5853 data.title !== undefined ? data.title : this.constructor.static.title
5854 );
5855 this.message.setLabel(
5856 data.message !== undefined ? data.message : this.constructor.static.message
5857 );
5858 this.message.$element.toggleClass(
5859 'oo-ui-messageDialog-message-verbose',
5860 data.verbose !== undefined ? data.verbose : this.constructor.static.verbose
5861 );
5862 }, this );
5863 };
5864
5865 /**
5866 * @inheritdoc
5867 */
5868 OO.ui.MessageDialog.prototype.getBodyHeight = function () {
5869 return Math.round( this.text.$element.outerHeight( true ) );
5870 };
5871
5872 /**
5873 * @inheritdoc
5874 */
5875 OO.ui.MessageDialog.prototype.initialize = function () {
5876 // Parent method
5877 OO.ui.MessageDialog.super.prototype.initialize.call( this );
5878
5879 // Properties
5880 this.$actions = this.$( '<div>' );
5881 this.container = new OO.ui.PanelLayout( {
5882 $: this.$, scrollable: true, classes: [ 'oo-ui-messageDialog-container' ]
5883 } );
5884 this.text = new OO.ui.PanelLayout( {
5885 $: this.$, padded: true, expanded: false, classes: [ 'oo-ui-messageDialog-text' ]
5886 } );
5887 this.message = new OO.ui.LabelWidget( {
5888 $: this.$, classes: [ 'oo-ui-messageDialog-message' ]
5889 } );
5890
5891 // Initialization
5892 this.title.$element.addClass( 'oo-ui-messageDialog-title' );
5893 this.$content.addClass( 'oo-ui-messageDialog-content' );
5894 this.container.$element.append( this.text.$element );
5895 this.text.$element.append( this.title.$element, this.message.$element );
5896 this.$body.append( this.container.$element );
5897 this.$actions.addClass( 'oo-ui-messageDialog-actions' );
5898 this.$foot.append( this.$actions );
5899 };
5900
5901 /**
5902 * @inheritdoc
5903 */
5904 OO.ui.MessageDialog.prototype.attachActions = function () {
5905 var i, len, other, special, others;
5906
5907 // Parent method
5908 OO.ui.MessageDialog.super.prototype.attachActions.call( this );
5909
5910 special = this.actions.getSpecial();
5911 others = this.actions.getOthers();
5912 if ( special.safe ) {
5913 this.$actions.append( special.safe.$element );
5914 special.safe.toggleFramed( false );
5915 }
5916 if ( others.length ) {
5917 for ( i = 0, len = others.length; i < len; i++ ) {
5918 other = others[i];
5919 this.$actions.append( other.$element );
5920 other.toggleFramed( false );
5921 }
5922 }
5923 if ( special.primary ) {
5924 this.$actions.append( special.primary.$element );
5925 special.primary.toggleFramed( false );
5926 }
5927
5928 this.fitActions();
5929 if ( !this.isOpening() ) {
5930 this.manager.updateWindowSize( this );
5931 }
5932 this.$body.css( 'bottom', this.$foot.outerHeight( true ) );
5933 };
5934
5935 /**
5936 * Fit action actions into columns or rows.
5937 *
5938 * Columns will be used if all labels can fit without overflow, otherwise rows will be used.
5939 */
5940 OO.ui.MessageDialog.prototype.fitActions = function () {
5941 var i, len, action,
5942 actions = this.actions.get();
5943
5944 // Detect clipping
5945 this.toggleVerticalActionLayout( false );
5946 for ( i = 0, len = actions.length; i < len; i++ ) {
5947 action = actions[i];
5948 if ( action.$element.innerWidth() < action.$label.outerWidth( true ) ) {
5949 this.toggleVerticalActionLayout( true );
5950 break;
5951 }
5952 }
5953 };
5954
5955 /**
5956 * Navigation dialog window.
5957 *
5958 * Logic:
5959 * - Show and hide errors.
5960 * - Retry an action.
5961 *
5962 * User interface:
5963 * - Renders header with dialog title and one action widget on either side
5964 * (a 'safe' button on the left, and a 'primary' button on the right, both of
5965 * which close the dialog).
5966 * - Displays any action widgets in the footer (none by default).
5967 * - Ability to dismiss errors.
5968 *
5969 * Subclass responsibilities:
5970 * - Register a 'safe' action.
5971 * - Register a 'primary' action.
5972 * - Add content to the dialog.
5973 *
5974 * @abstract
5975 * @class
5976 * @extends OO.ui.Dialog
5977 *
5978 * @constructor
5979 * @param {Object} [config] Configuration options
5980 */
5981 OO.ui.ProcessDialog = function OoUiProcessDialog( config ) {
5982 // Parent constructor
5983 OO.ui.ProcessDialog.super.call( this, config );
5984
5985 // Initialization
5986 this.$element.addClass( 'oo-ui-processDialog' );
5987 };
5988
5989 /* Setup */
5990
5991 OO.inheritClass( OO.ui.ProcessDialog, OO.ui.Dialog );
5992
5993 /* Methods */
5994
5995 /**
5996 * Handle dismiss button click events.
5997 *
5998 * Hides errors.
5999 */
6000 OO.ui.ProcessDialog.prototype.onDismissErrorButtonClick = function () {
6001 this.hideErrors();
6002 };
6003
6004 /**
6005 * Handle retry button click events.
6006 *
6007 * Hides errors and then tries again.
6008 */
6009 OO.ui.ProcessDialog.prototype.onRetryButtonClick = function () {
6010 this.hideErrors();
6011 this.executeAction( this.currentAction.getAction() );
6012 };
6013
6014 /**
6015 * @inheritdoc
6016 */
6017 OO.ui.ProcessDialog.prototype.onActionResize = function ( action ) {
6018 if ( this.actions.isSpecial( action ) ) {
6019 this.fitLabel();
6020 }
6021 return OO.ui.ProcessDialog.super.prototype.onActionResize.call( this, action );
6022 };
6023
6024 /**
6025 * @inheritdoc
6026 */
6027 OO.ui.ProcessDialog.prototype.initialize = function () {
6028 // Parent method
6029 OO.ui.ProcessDialog.super.prototype.initialize.call( this );
6030
6031 // Properties
6032 this.$navigation = this.$( '<div>' );
6033 this.$location = this.$( '<div>' );
6034 this.$safeActions = this.$( '<div>' );
6035 this.$primaryActions = this.$( '<div>' );
6036 this.$otherActions = this.$( '<div>' );
6037 this.dismissButton = new OO.ui.ButtonWidget( {
6038 $: this.$,
6039 label: OO.ui.msg( 'ooui-dialog-process-dismiss' )
6040 } );
6041 this.retryButton = new OO.ui.ButtonWidget( {
6042 $: this.$,
6043 label: OO.ui.msg( 'ooui-dialog-process-retry' )
6044 } );
6045 this.$errors = this.$( '<div>' );
6046 this.$errorsTitle = this.$( '<div>' );
6047
6048 // Events
6049 this.dismissButton.connect( this, { click: 'onDismissErrorButtonClick' } );
6050 this.retryButton.connect( this, { click: 'onRetryButtonClick' } );
6051
6052 // Initialization
6053 this.title.$element.addClass( 'oo-ui-processDialog-title' );
6054 this.$location
6055 .append( this.title.$element )
6056 .addClass( 'oo-ui-processDialog-location' );
6057 this.$safeActions.addClass( 'oo-ui-processDialog-actions-safe' );
6058 this.$primaryActions.addClass( 'oo-ui-processDialog-actions-primary' );
6059 this.$otherActions.addClass( 'oo-ui-processDialog-actions-other' );
6060 this.$errorsTitle
6061 .addClass( 'oo-ui-processDialog-errors-title' )
6062 .text( OO.ui.msg( 'ooui-dialog-process-error' ) );
6063 this.$errors
6064 .addClass( 'oo-ui-processDialog-errors' )
6065 .append( this.$errorsTitle, this.dismissButton.$element, this.retryButton.$element );
6066 this.$content
6067 .addClass( 'oo-ui-processDialog-content' )
6068 .append( this.$errors );
6069 this.$navigation
6070 .addClass( 'oo-ui-processDialog-navigation' )
6071 .append( this.$safeActions, this.$location, this.$primaryActions );
6072 this.$head.append( this.$navigation );
6073 this.$foot.append( this.$otherActions );
6074 };
6075
6076 /**
6077 * @inheritdoc
6078 */
6079 OO.ui.ProcessDialog.prototype.attachActions = function () {
6080 var i, len, other, special, others;
6081
6082 // Parent method
6083 OO.ui.ProcessDialog.super.prototype.attachActions.call( this );
6084
6085 special = this.actions.getSpecial();
6086 others = this.actions.getOthers();
6087 if ( special.primary ) {
6088 this.$primaryActions.append( special.primary.$element );
6089 special.primary.toggleFramed( true );
6090 }
6091 if ( others.length ) {
6092 for ( i = 0, len = others.length; i < len; i++ ) {
6093 other = others[i];
6094 this.$otherActions.append( other.$element );
6095 other.toggleFramed( true );
6096 }
6097 }
6098 if ( special.safe ) {
6099 this.$safeActions.append( special.safe.$element );
6100 special.safe.toggleFramed( true );
6101 }
6102
6103 this.fitLabel();
6104 this.$body.css( 'bottom', this.$foot.outerHeight( true ) );
6105 };
6106
6107 /**
6108 * @inheritdoc
6109 */
6110 OO.ui.ProcessDialog.prototype.executeAction = function ( action ) {
6111 OO.ui.ProcessDialog.super.prototype.executeAction.call( this, action )
6112 .fail( this.showErrors.bind( this ) );
6113 };
6114
6115 /**
6116 * Fit label between actions.
6117 *
6118 * @chainable
6119 */
6120 OO.ui.ProcessDialog.prototype.fitLabel = function () {
6121 var width = Math.max(
6122 this.$safeActions.is( ':visible' ) ? this.$safeActions.width() : 0,
6123 this.$primaryActions.is( ':visible' ) ? this.$primaryActions.width() : 0
6124 );
6125 this.$location.css( { paddingLeft: width, paddingRight: width } );
6126
6127 return this;
6128 };
6129
6130 /**
6131 * Handle errors that occured durring accept or reject processes.
6132 *
6133 * @param {OO.ui.Error[]} errors Errors to be handled
6134 */
6135 OO.ui.ProcessDialog.prototype.showErrors = function ( errors ) {
6136 var i, len, $item,
6137 items = [],
6138 recoverable = true;
6139
6140 for ( i = 0, len = errors.length; i < len; i++ ) {
6141 if ( !errors[i].isRecoverable() ) {
6142 recoverable = false;
6143 }
6144 $item = this.$( '<div>' )
6145 .addClass( 'oo-ui-processDialog-error' )
6146 .append( errors[i].getMessage() );
6147 items.push( $item[0] );
6148 }
6149 this.$errorItems = this.$( items );
6150 if ( recoverable ) {
6151 this.retryButton.clearFlags().setFlags( this.currentAction.getFlags() );
6152 } else {
6153 this.currentAction.setDisabled( true );
6154 }
6155 this.retryButton.toggle( recoverable );
6156 this.$errorsTitle.after( this.$errorItems );
6157 this.$errors.show().scrollTop( 0 );
6158 };
6159
6160 /**
6161 * Hide errors.
6162 */
6163 OO.ui.ProcessDialog.prototype.hideErrors = function () {
6164 this.$errors.hide();
6165 this.$errorItems.remove();
6166 this.$errorItems = null;
6167 };
6168
6169 /**
6170 * Layout containing a series of pages.
6171 *
6172 * @class
6173 * @extends OO.ui.Layout
6174 *
6175 * @constructor
6176 * @param {Object} [config] Configuration options
6177 * @cfg {boolean} [continuous=false] Show all pages, one after another
6178 * @cfg {boolean} [autoFocus=true] Focus on the first focusable element when changing to a page
6179 * @cfg {boolean} [outlined=false] Show an outline
6180 * @cfg {boolean} [editable=false] Show controls for adding, removing and reordering pages
6181 */
6182 OO.ui.BookletLayout = function OoUiBookletLayout( config ) {
6183 // Initialize configuration
6184 config = config || {};
6185
6186 // Parent constructor
6187 OO.ui.BookletLayout.super.call( this, config );
6188
6189 // Properties
6190 this.currentPageName = null;
6191 this.pages = {};
6192 this.ignoreFocus = false;
6193 this.stackLayout = new OO.ui.StackLayout( { $: this.$, continuous: !!config.continuous } );
6194 this.autoFocus = config.autoFocus === undefined || !!config.autoFocus;
6195 this.outlineVisible = false;
6196 this.outlined = !!config.outlined;
6197 if ( this.outlined ) {
6198 this.editable = !!config.editable;
6199 this.outlineControlsWidget = null;
6200 this.outlineWidget = new OO.ui.OutlineWidget( { $: this.$ } );
6201 this.outlinePanel = new OO.ui.PanelLayout( { $: this.$, scrollable: true } );
6202 this.gridLayout = new OO.ui.GridLayout(
6203 [ this.outlinePanel, this.stackLayout ],
6204 { $: this.$, widths: [ 1, 2 ] }
6205 );
6206 this.outlineVisible = true;
6207 if ( this.editable ) {
6208 this.outlineControlsWidget = new OO.ui.OutlineControlsWidget(
6209 this.outlineWidget, { $: this.$ }
6210 );
6211 }
6212 }
6213
6214 // Events
6215 this.stackLayout.connect( this, { set: 'onStackLayoutSet' } );
6216 if ( this.outlined ) {
6217 this.outlineWidget.connect( this, { select: 'onOutlineWidgetSelect' } );
6218 }
6219 if ( this.autoFocus ) {
6220 // Event 'focus' does not bubble, but 'focusin' does
6221 this.stackLayout.onDOMEvent( 'focusin', this.onStackLayoutFocus.bind( this ) );
6222 }
6223
6224 // Initialization
6225 this.$element.addClass( 'oo-ui-bookletLayout' );
6226 this.stackLayout.$element.addClass( 'oo-ui-bookletLayout-stackLayout' );
6227 if ( this.outlined ) {
6228 this.outlinePanel.$element
6229 .addClass( 'oo-ui-bookletLayout-outlinePanel' )
6230 .append( this.outlineWidget.$element );
6231 if ( this.editable ) {
6232 this.outlinePanel.$element
6233 .addClass( 'oo-ui-bookletLayout-outlinePanel-editable' )
6234 .append( this.outlineControlsWidget.$element );
6235 }
6236 this.$element.append( this.gridLayout.$element );
6237 } else {
6238 this.$element.append( this.stackLayout.$element );
6239 }
6240 };
6241
6242 /* Setup */
6243
6244 OO.inheritClass( OO.ui.BookletLayout, OO.ui.Layout );
6245
6246 /* Events */
6247
6248 /**
6249 * @event set
6250 * @param {OO.ui.PageLayout} page Current page
6251 */
6252
6253 /**
6254 * @event add
6255 * @param {OO.ui.PageLayout[]} page Added pages
6256 * @param {number} index Index pages were added at
6257 */
6258
6259 /**
6260 * @event remove
6261 * @param {OO.ui.PageLayout[]} pages Removed pages
6262 */
6263
6264 /* Methods */
6265
6266 /**
6267 * Handle stack layout focus.
6268 *
6269 * @param {jQuery.Event} e Focusin event
6270 */
6271 OO.ui.BookletLayout.prototype.onStackLayoutFocus = function ( e ) {
6272 var name, $target;
6273
6274 // Find the page that an element was focused within
6275 $target = $( e.target ).closest( '.oo-ui-pageLayout' );
6276 for ( name in this.pages ) {
6277 // Check for page match, exclude current page to find only page changes
6278 if ( this.pages[name].$element[0] === $target[0] && name !== this.currentPageName ) {
6279 this.setPage( name );
6280 break;
6281 }
6282 }
6283 };
6284
6285 /**
6286 * Handle stack layout set events.
6287 *
6288 * @param {OO.ui.PanelLayout|null} page The page panel that is now the current panel
6289 */
6290 OO.ui.BookletLayout.prototype.onStackLayoutSet = function ( page ) {
6291 var $input, layout = this;
6292 if ( page ) {
6293 page.scrollElementIntoView( { complete: function () {
6294 if ( layout.autoFocus ) {
6295 // Set focus to the first input if nothing on the page is focused yet
6296 if ( !page.$element.find( ':focus' ).length ) {
6297 $input = page.$element.find( ':input:first' );
6298 if ( $input.length ) {
6299 $input[0].focus();
6300 }
6301 }
6302 }
6303 } } );
6304 }
6305 };
6306
6307 /**
6308 * Handle outline widget select events.
6309 *
6310 * @param {OO.ui.OptionWidget|null} item Selected item
6311 */
6312 OO.ui.BookletLayout.prototype.onOutlineWidgetSelect = function ( item ) {
6313 if ( item ) {
6314 this.setPage( item.getData() );
6315 }
6316 };
6317
6318 /**
6319 * Check if booklet has an outline.
6320 *
6321 * @return {boolean}
6322 */
6323 OO.ui.BookletLayout.prototype.isOutlined = function () {
6324 return this.outlined;
6325 };
6326
6327 /**
6328 * Check if booklet has editing controls.
6329 *
6330 * @return {boolean}
6331 */
6332 OO.ui.BookletLayout.prototype.isEditable = function () {
6333 return this.editable;
6334 };
6335
6336 /**
6337 * Check if booklet has a visible outline.
6338 *
6339 * @return {boolean}
6340 */
6341 OO.ui.BookletLayout.prototype.isOutlineVisible = function () {
6342 return this.outlined && this.outlineVisible;
6343 };
6344
6345 /**
6346 * Hide or show the outline.
6347 *
6348 * @param {boolean} [show] Show outline, omit to invert current state
6349 * @chainable
6350 */
6351 OO.ui.BookletLayout.prototype.toggleOutline = function ( show ) {
6352 if ( this.outlined ) {
6353 show = show === undefined ? !this.outlineVisible : !!show;
6354 this.outlineVisible = show;
6355 this.gridLayout.layout( show ? [ 1, 2 ] : [ 0, 1 ], [ 1 ] );
6356 }
6357
6358 return this;
6359 };
6360
6361 /**
6362 * Get the outline widget.
6363 *
6364 * @param {OO.ui.PageLayout} page Page to be selected
6365 * @return {OO.ui.PageLayout|null} Closest page to another
6366 */
6367 OO.ui.BookletLayout.prototype.getClosestPage = function ( page ) {
6368 var next, prev, level,
6369 pages = this.stackLayout.getItems(),
6370 index = $.inArray( page, pages );
6371
6372 if ( index !== -1 ) {
6373 next = pages[index + 1];
6374 prev = pages[index - 1];
6375 // Prefer adjacent pages at the same level
6376 if ( this.outlined ) {
6377 level = this.outlineWidget.getItemFromData( page.getName() ).getLevel();
6378 if (
6379 prev &&
6380 level === this.outlineWidget.getItemFromData( prev.getName() ).getLevel()
6381 ) {
6382 return prev;
6383 }
6384 if (
6385 next &&
6386 level === this.outlineWidget.getItemFromData( next.getName() ).getLevel()
6387 ) {
6388 return next;
6389 }
6390 }
6391 }
6392 return prev || next || null;
6393 };
6394
6395 /**
6396 * Get the outline widget.
6397 *
6398 * @return {OO.ui.OutlineWidget|null} Outline widget, or null if boolet has no outline
6399 */
6400 OO.ui.BookletLayout.prototype.getOutline = function () {
6401 return this.outlineWidget;
6402 };
6403
6404 /**
6405 * Get the outline controls widget. If the outline is not editable, null is returned.
6406 *
6407 * @return {OO.ui.OutlineControlsWidget|null} The outline controls widget.
6408 */
6409 OO.ui.BookletLayout.prototype.getOutlineControls = function () {
6410 return this.outlineControlsWidget;
6411 };
6412
6413 /**
6414 * Get a page by name.
6415 *
6416 * @param {string} name Symbolic name of page
6417 * @return {OO.ui.PageLayout|undefined} Page, if found
6418 */
6419 OO.ui.BookletLayout.prototype.getPage = function ( name ) {
6420 return this.pages[name];
6421 };
6422
6423 /**
6424 * Get the current page name.
6425 *
6426 * @return {string|null} Current page name
6427 */
6428 OO.ui.BookletLayout.prototype.getPageName = function () {
6429 return this.currentPageName;
6430 };
6431
6432 /**
6433 * Add a page to the layout.
6434 *
6435 * When pages are added with the same names as existing pages, the existing pages will be
6436 * automatically removed before the new pages are added.
6437 *
6438 * @param {OO.ui.PageLayout[]} pages Pages to add
6439 * @param {number} index Index to insert pages after
6440 * @fires add
6441 * @chainable
6442 */
6443 OO.ui.BookletLayout.prototype.addPages = function ( pages, index ) {
6444 var i, len, name, page, item, currentIndex,
6445 stackLayoutPages = this.stackLayout.getItems(),
6446 remove = [],
6447 items = [];
6448
6449 // Remove pages with same names
6450 for ( i = 0, len = pages.length; i < len; i++ ) {
6451 page = pages[i];
6452 name = page.getName();
6453
6454 if ( Object.prototype.hasOwnProperty.call( this.pages, name ) ) {
6455 // Correct the insertion index
6456 currentIndex = $.inArray( this.pages[name], stackLayoutPages );
6457 if ( currentIndex !== -1 && currentIndex + 1 < index ) {
6458 index--;
6459 }
6460 remove.push( this.pages[name] );
6461 }
6462 }
6463 if ( remove.length ) {
6464 this.removePages( remove );
6465 }
6466
6467 // Add new pages
6468 for ( i = 0, len = pages.length; i < len; i++ ) {
6469 page = pages[i];
6470 name = page.getName();
6471 this.pages[page.getName()] = page;
6472 if ( this.outlined ) {
6473 item = new OO.ui.OutlineItemWidget( name, page, { $: this.$ } );
6474 page.setOutlineItem( item );
6475 items.push( item );
6476 }
6477 }
6478
6479 if ( this.outlined && items.length ) {
6480 this.outlineWidget.addItems( items, index );
6481 this.updateOutlineWidget();
6482 }
6483 this.stackLayout.addItems( pages, index );
6484 this.emit( 'add', pages, index );
6485
6486 return this;
6487 };
6488
6489 /**
6490 * Remove a page from the layout.
6491 *
6492 * @fires remove
6493 * @chainable
6494 */
6495 OO.ui.BookletLayout.prototype.removePages = function ( pages ) {
6496 var i, len, name, page,
6497 items = [];
6498
6499 for ( i = 0, len = pages.length; i < len; i++ ) {
6500 page = pages[i];
6501 name = page.getName();
6502 delete this.pages[name];
6503 if ( this.outlined ) {
6504 items.push( this.outlineWidget.getItemFromData( name ) );
6505 page.setOutlineItem( null );
6506 }
6507 }
6508 if ( this.outlined && items.length ) {
6509 this.outlineWidget.removeItems( items );
6510 this.updateOutlineWidget();
6511 }
6512 this.stackLayout.removeItems( pages );
6513 this.emit( 'remove', pages );
6514
6515 return this;
6516 };
6517
6518 /**
6519 * Clear all pages from the layout.
6520 *
6521 * @fires remove
6522 * @chainable
6523 */
6524 OO.ui.BookletLayout.prototype.clearPages = function () {
6525 var i, len,
6526 pages = this.stackLayout.getItems();
6527
6528 this.pages = {};
6529 this.currentPageName = null;
6530 if ( this.outlined ) {
6531 this.outlineWidget.clearItems();
6532 for ( i = 0, len = pages.length; i < len; i++ ) {
6533 pages[i].setOutlineItem( null );
6534 }
6535 }
6536 this.stackLayout.clearItems();
6537
6538 this.emit( 'remove', pages );
6539
6540 return this;
6541 };
6542
6543 /**
6544 * Set the current page by name.
6545 *
6546 * @fires set
6547 * @param {string} name Symbolic name of page
6548 */
6549 OO.ui.BookletLayout.prototype.setPage = function ( name ) {
6550 var selectedItem,
6551 $focused,
6552 page = this.pages[name];
6553
6554 if ( name !== this.currentPageName ) {
6555 if ( this.outlined ) {
6556 selectedItem = this.outlineWidget.getSelectedItem();
6557 if ( selectedItem && selectedItem.getData() !== name ) {
6558 this.outlineWidget.selectItem( this.outlineWidget.getItemFromData( name ) );
6559 }
6560 }
6561 if ( page ) {
6562 if ( this.currentPageName && this.pages[this.currentPageName] ) {
6563 this.pages[this.currentPageName].setActive( false );
6564 // Blur anything focused if the next page doesn't have anything focusable - this
6565 // is not needed if the next page has something focusable because once it is focused
6566 // this blur happens automatically
6567 if ( this.autoFocus && !page.$element.find( ':input' ).length ) {
6568 $focused = this.pages[this.currentPageName].$element.find( ':focus' );
6569 if ( $focused.length ) {
6570 $focused[0].blur();
6571 }
6572 }
6573 }
6574 this.currentPageName = name;
6575 this.stackLayout.setItem( page );
6576 page.setActive( true );
6577 this.emit( 'set', page );
6578 }
6579 }
6580 };
6581
6582 /**
6583 * Call this after adding or removing items from the OutlineWidget.
6584 *
6585 * @chainable
6586 */
6587 OO.ui.BookletLayout.prototype.updateOutlineWidget = function () {
6588 // Auto-select first item when nothing is selected anymore
6589 if ( !this.outlineWidget.getSelectedItem() ) {
6590 this.outlineWidget.selectItem( this.outlineWidget.getFirstSelectableItem() );
6591 }
6592
6593 return this;
6594 };
6595
6596 /**
6597 * Layout made of a field and optional label.
6598 *
6599 * @class
6600 * @extends OO.ui.Layout
6601 * @mixins OO.ui.LabelElement
6602 *
6603 * Available label alignment modes include:
6604 * - left: Label is before the field and aligned away from it, best for when the user will be
6605 * scanning for a specific label in a form with many fields
6606 * - right: Label is before the field and aligned toward it, best for forms the user is very
6607 * familiar with and will tab through field checking quickly to verify which field they are in
6608 * - top: Label is before the field and above it, best for when the user will need to fill out all
6609 * fields from top to bottom in a form with few fields
6610 * - inline: Label is after the field and aligned toward it, best for small boolean fields like
6611 * checkboxes or radio buttons
6612 *
6613 * @constructor
6614 * @param {OO.ui.Widget} fieldWidget Field widget
6615 * @param {Object} [config] Configuration options
6616 * @cfg {string} [align='left'] Alignment mode, either 'left', 'right', 'top' or 'inline'
6617 * @cfg {string} [help] Explanatory text shown as a '?' icon.
6618 */
6619 OO.ui.FieldLayout = function OoUiFieldLayout( fieldWidget, config ) {
6620 // Config initialization
6621 config = $.extend( { align: 'left' }, config );
6622
6623 // Parent constructor
6624 OO.ui.FieldLayout.super.call( this, config );
6625
6626 // Mixin constructors
6627 OO.ui.LabelElement.call( this, config );
6628
6629 // Properties
6630 this.$field = this.$( '<div>' );
6631 this.fieldWidget = fieldWidget;
6632 this.align = null;
6633 if ( config.help ) {
6634 this.popupButtonWidget = new OO.ui.PopupButtonWidget( {
6635 $: this.$,
6636 classes: [ 'oo-ui-fieldLayout-help' ],
6637 framed: false,
6638 icon: 'info'
6639 } );
6640
6641 this.popupButtonWidget.getPopup().$body.append(
6642 this.$( '<div>' )
6643 .text( config.help )
6644 .addClass( 'oo-ui-fieldLayout-help-content' )
6645 );
6646 this.$help = this.popupButtonWidget.$element;
6647 } else {
6648 this.$help = this.$( [] );
6649 }
6650
6651 // Events
6652 if ( this.fieldWidget instanceof OO.ui.InputWidget ) {
6653 this.$label.on( 'click', this.onLabelClick.bind( this ) );
6654 }
6655 this.fieldWidget.connect( this, { disable: 'onFieldDisable' } );
6656
6657 // Initialization
6658 this.$element.addClass( 'oo-ui-fieldLayout' );
6659 this.$field
6660 .addClass( 'oo-ui-fieldLayout-field' )
6661 .toggleClass( 'oo-ui-fieldLayout-disable', this.fieldWidget.isDisabled() )
6662 .append( this.fieldWidget.$element );
6663 this.setAlignment( config.align );
6664 };
6665
6666 /* Setup */
6667
6668 OO.inheritClass( OO.ui.FieldLayout, OO.ui.Layout );
6669 OO.mixinClass( OO.ui.FieldLayout, OO.ui.LabelElement );
6670
6671 /* Methods */
6672
6673 /**
6674 * Handle field disable events.
6675 *
6676 * @param {boolean} value Field is disabled
6677 */
6678 OO.ui.FieldLayout.prototype.onFieldDisable = function ( value ) {
6679 this.$element.toggleClass( 'oo-ui-fieldLayout-disabled', value );
6680 };
6681
6682 /**
6683 * Handle label mouse click events.
6684 *
6685 * @param {jQuery.Event} e Mouse click event
6686 */
6687 OO.ui.FieldLayout.prototype.onLabelClick = function () {
6688 this.fieldWidget.simulateLabelClick();
6689 return false;
6690 };
6691
6692 /**
6693 * Get the field.
6694 *
6695 * @return {OO.ui.Widget} Field widget
6696 */
6697 OO.ui.FieldLayout.prototype.getField = function () {
6698 return this.fieldWidget;
6699 };
6700
6701 /**
6702 * Set the field alignment mode.
6703 *
6704 * @param {string} value Alignment mode, either 'left', 'right', 'top' or 'inline'
6705 * @chainable
6706 */
6707 OO.ui.FieldLayout.prototype.setAlignment = function ( value ) {
6708 if ( value !== this.align ) {
6709 // Default to 'left'
6710 if ( [ 'left', 'right', 'top', 'inline' ].indexOf( value ) === -1 ) {
6711 value = 'left';
6712 }
6713 // Reorder elements
6714 if ( value === 'inline' ) {
6715 this.$element.append( this.$field, this.$label, this.$help );
6716 } else {
6717 this.$element.append( this.$help, this.$label, this.$field );
6718 }
6719 // Set classes. The following classes can be used here:
6720 // * oo-ui-fieldLayout-align-left
6721 // * oo-ui-fieldLayout-align-right
6722 // * oo-ui-fieldLayout-align-top
6723 // * oo-ui-fieldLayout-align-inline
6724 if ( this.align ) {
6725 this.$element.removeClass( 'oo-ui-fieldLayout-align-' + this.align );
6726 }
6727 this.$element.addClass( 'oo-ui-fieldLayout-align-' + value );
6728 this.align = value;
6729 }
6730
6731 return this;
6732 };
6733
6734 /**
6735 * Layout made of a fieldset and optional legend.
6736 *
6737 * Just add OO.ui.FieldLayout items.
6738 *
6739 * @class
6740 * @extends OO.ui.Layout
6741 * @mixins OO.ui.LabelElement
6742 * @mixins OO.ui.IconElement
6743 * @mixins OO.ui.GroupElement
6744 *
6745 * @constructor
6746 * @param {Object} [config] Configuration options
6747 * @cfg {OO.ui.FieldLayout[]} [items] Items to add
6748 */
6749 OO.ui.FieldsetLayout = function OoUiFieldsetLayout( config ) {
6750 // Config initialization
6751 config = config || {};
6752
6753 // Parent constructor
6754 OO.ui.FieldsetLayout.super.call( this, config );
6755
6756 // Mixin constructors
6757 OO.ui.IconElement.call( this, config );
6758 OO.ui.LabelElement.call( this, config );
6759 OO.ui.GroupElement.call( this, config );
6760
6761 // Initialization
6762 this.$element
6763 .addClass( 'oo-ui-fieldsetLayout' )
6764 .prepend( this.$icon, this.$label, this.$group );
6765 if ( $.isArray( config.items ) ) {
6766 this.addItems( config.items );
6767 }
6768 };
6769
6770 /* Setup */
6771
6772 OO.inheritClass( OO.ui.FieldsetLayout, OO.ui.Layout );
6773 OO.mixinClass( OO.ui.FieldsetLayout, OO.ui.IconElement );
6774 OO.mixinClass( OO.ui.FieldsetLayout, OO.ui.LabelElement );
6775 OO.mixinClass( OO.ui.FieldsetLayout, OO.ui.GroupElement );
6776
6777 /**
6778 * Layout with an HTML form.
6779 *
6780 * @class
6781 * @extends OO.ui.Layout
6782 *
6783 * @constructor
6784 * @param {Object} [config] Configuration options
6785 * @cfg {string} [method] HTML form `method` attribute
6786 * @cfg {string} [action] HTML form `action` attribute
6787 * @cfg {string} [enctype] HTML form `enctype` attribute
6788 */
6789 OO.ui.FormLayout = function OoUiFormLayout( config ) {
6790 // Configuration initialization
6791 config = config || {};
6792
6793 // Parent constructor
6794 OO.ui.FormLayout.super.call( this, config );
6795
6796 // Events
6797 this.$element.on( 'submit', this.onFormSubmit.bind( this ) );
6798
6799 // Initialization
6800 this.$element
6801 .addClass( 'oo-ui-formLayout' )
6802 .attr( {
6803 method: config.method,
6804 action: config.action,
6805 enctype: config.enctype
6806 } );
6807 };
6808
6809 /* Setup */
6810
6811 OO.inheritClass( OO.ui.FormLayout, OO.ui.Layout );
6812
6813 /* Events */
6814
6815 /**
6816 * @event submit
6817 */
6818
6819 /* Static Properties */
6820
6821 OO.ui.FormLayout.static.tagName = 'form';
6822
6823 /* Methods */
6824
6825 /**
6826 * Handle form submit events.
6827 *
6828 * @param {jQuery.Event} e Submit event
6829 * @fires submit
6830 */
6831 OO.ui.FormLayout.prototype.onFormSubmit = function () {
6832 this.emit( 'submit' );
6833 return false;
6834 };
6835
6836 /**
6837 * Layout made of proportionally sized columns and rows.
6838 *
6839 * @class
6840 * @extends OO.ui.Layout
6841 *
6842 * @constructor
6843 * @param {OO.ui.PanelLayout[]} panels Panels in the grid
6844 * @param {Object} [config] Configuration options
6845 * @cfg {number[]} [widths] Widths of columns as ratios
6846 * @cfg {number[]} [heights] Heights of rows as ratios
6847 */
6848 OO.ui.GridLayout = function OoUiGridLayout( panels, config ) {
6849 var i, len, widths;
6850
6851 // Config initialization
6852 config = config || {};
6853
6854 // Parent constructor
6855 OO.ui.GridLayout.super.call( this, config );
6856
6857 // Properties
6858 this.panels = [];
6859 this.widths = [];
6860 this.heights = [];
6861
6862 // Initialization
6863 this.$element.addClass( 'oo-ui-gridLayout' );
6864 for ( i = 0, len = panels.length; i < len; i++ ) {
6865 this.panels.push( panels[i] );
6866 this.$element.append( panels[i].$element );
6867 }
6868 if ( config.widths || config.heights ) {
6869 this.layout( config.widths || [ 1 ], config.heights || [ 1 ] );
6870 } else {
6871 // Arrange in columns by default
6872 widths = this.panels.map( function () { return 1; } );
6873 this.layout( widths, [ 1 ] );
6874 }
6875 };
6876
6877 /* Setup */
6878
6879 OO.inheritClass( OO.ui.GridLayout, OO.ui.Layout );
6880
6881 /* Events */
6882
6883 /**
6884 * @event layout
6885 */
6886
6887 /**
6888 * @event update
6889 */
6890
6891 /* Methods */
6892
6893 /**
6894 * Set grid dimensions.
6895 *
6896 * @param {number[]} widths Widths of columns as ratios
6897 * @param {number[]} heights Heights of rows as ratios
6898 * @fires layout
6899 * @throws {Error} If grid is not large enough to fit all panels
6900 */
6901 OO.ui.GridLayout.prototype.layout = function ( widths, heights ) {
6902 var x, y,
6903 xd = 0,
6904 yd = 0,
6905 cols = widths.length,
6906 rows = heights.length;
6907
6908 // Verify grid is big enough to fit panels
6909 if ( cols * rows < this.panels.length ) {
6910 throw new Error( 'Grid is not large enough to fit ' + this.panels.length + 'panels' );
6911 }
6912
6913 // Sum up denominators
6914 for ( x = 0; x < cols; x++ ) {
6915 xd += widths[x];
6916 }
6917 for ( y = 0; y < rows; y++ ) {
6918 yd += heights[y];
6919 }
6920 // Store factors
6921 this.widths = [];
6922 this.heights = [];
6923 for ( x = 0; x < cols; x++ ) {
6924 this.widths[x] = widths[x] / xd;
6925 }
6926 for ( y = 0; y < rows; y++ ) {
6927 this.heights[y] = heights[y] / yd;
6928 }
6929 // Synchronize view
6930 this.update();
6931 this.emit( 'layout' );
6932 };
6933
6934 /**
6935 * Update panel positions and sizes.
6936 *
6937 * @fires update
6938 */
6939 OO.ui.GridLayout.prototype.update = function () {
6940 var x, y, panel, width, height, dimensions,
6941 i = 0,
6942 top = 0,
6943 left = 0,
6944 cols = this.widths.length,
6945 rows = this.heights.length;
6946
6947 for ( y = 0; y < rows; y++ ) {
6948 height = this.heights[y];
6949 for ( x = 0; x < cols; x++ ) {
6950 width = this.widths[x];
6951 panel = this.panels[i];
6952 dimensions = {
6953 width: Math.round( width * 100 ) + '%',
6954 height: Math.round( height * 100 ) + '%',
6955 top: Math.round( top * 100 ) + '%'
6956 };
6957 // If RTL, reverse:
6958 if ( OO.ui.Element.getDir( this.$.context ) === 'rtl' ) {
6959 dimensions.right = Math.round( left * 100 ) + '%';
6960 } else {
6961 dimensions.left = Math.round( left * 100 ) + '%';
6962 }
6963 // HACK: Work around IE bug by setting visibility: hidden; if width or height is zero
6964 if ( width === 0 || height === 0 ) {
6965 dimensions.visibility = 'hidden';
6966 } else {
6967 dimensions.visibility = '';
6968 }
6969 panel.$element.css( dimensions );
6970 i++;
6971 left += width;
6972 }
6973 top += height;
6974 left = 0;
6975 }
6976
6977 this.emit( 'update' );
6978 };
6979
6980 /**
6981 * Get a panel at a given position.
6982 *
6983 * The x and y position is affected by the current grid layout.
6984 *
6985 * @param {number} x Horizontal position
6986 * @param {number} y Vertical position
6987 * @return {OO.ui.PanelLayout} The panel at the given postion
6988 */
6989 OO.ui.GridLayout.prototype.getPanel = function ( x, y ) {
6990 return this.panels[ ( x * this.widths.length ) + y ];
6991 };
6992
6993 /**
6994 * Layout that expands to cover the entire area of its parent, with optional scrolling and padding.
6995 *
6996 * @class
6997 * @extends OO.ui.Layout
6998 *
6999 * @constructor
7000 * @param {Object} [config] Configuration options
7001 * @cfg {boolean} [scrollable=false] Allow vertical scrolling
7002 * @cfg {boolean} [padded=false] Pad the content from the edges
7003 * @cfg {boolean} [expanded=true] Expand size to fill the entire parent element
7004 */
7005 OO.ui.PanelLayout = function OoUiPanelLayout( config ) {
7006 // Config initialization
7007 config = $.extend( {
7008 scrollable: false,
7009 padded: false,
7010 expanded: true
7011 }, config );
7012
7013 // Parent constructor
7014 OO.ui.PanelLayout.super.call( this, config );
7015
7016 // Initialization
7017 this.$element.addClass( 'oo-ui-panelLayout' );
7018 if ( config.scrollable ) {
7019 this.$element.addClass( 'oo-ui-panelLayout-scrollable' );
7020 }
7021 if ( config.padded ) {
7022 this.$element.addClass( 'oo-ui-panelLayout-padded' );
7023 }
7024 if ( config.expanded ) {
7025 this.$element.addClass( 'oo-ui-panelLayout-expanded' );
7026 }
7027 };
7028
7029 /* Setup */
7030
7031 OO.inheritClass( OO.ui.PanelLayout, OO.ui.Layout );
7032
7033 /**
7034 * Page within an booklet layout.
7035 *
7036 * @class
7037 * @extends OO.ui.PanelLayout
7038 *
7039 * @constructor
7040 * @param {string} name Unique symbolic name of page
7041 * @param {Object} [config] Configuration options
7042 * @param {string} [outlineItem] Outline item widget
7043 */
7044 OO.ui.PageLayout = function OoUiPageLayout( name, config ) {
7045 // Configuration initialization
7046 config = $.extend( { scrollable: true }, config );
7047
7048 // Parent constructor
7049 OO.ui.PageLayout.super.call( this, config );
7050
7051 // Properties
7052 this.name = name;
7053 this.outlineItem = config.outlineItem || null;
7054 this.active = false;
7055
7056 // Initialization
7057 this.$element.addClass( 'oo-ui-pageLayout' );
7058 };
7059
7060 /* Setup */
7061
7062 OO.inheritClass( OO.ui.PageLayout, OO.ui.PanelLayout );
7063
7064 /* Events */
7065
7066 /**
7067 * @event active
7068 * @param {boolean} active Page is active
7069 */
7070
7071 /* Methods */
7072
7073 /**
7074 * Get page name.
7075 *
7076 * @return {string} Symbolic name of page
7077 */
7078 OO.ui.PageLayout.prototype.getName = function () {
7079 return this.name;
7080 };
7081
7082 /**
7083 * Check if page is active.
7084 *
7085 * @return {boolean} Page is active
7086 */
7087 OO.ui.PageLayout.prototype.isActive = function () {
7088 return this.active;
7089 };
7090
7091 /**
7092 * Get outline item.
7093 *
7094 * @return {OO.ui.OutlineItemWidget|null} Outline item widget
7095 */
7096 OO.ui.PageLayout.prototype.getOutlineItem = function () {
7097 return this.outlineItem;
7098 };
7099
7100 /**
7101 * Set outline item.
7102 *
7103 * @localdoc Subclasses should override #setupOutlineItem instead of this method to adjust the
7104 * outline item as desired; this method is called for setting (with an object) and unsetting
7105 * (with null) and overriding methods would have to check the value of `outlineItem` to avoid
7106 * operating on null instead of an OO.ui.OutlineItemWidget object.
7107 *
7108 * @param {OO.ui.OutlineItemWidget|null} outlineItem Outline item widget, null to clear
7109 * @chainable
7110 */
7111 OO.ui.PageLayout.prototype.setOutlineItem = function ( outlineItem ) {
7112 this.outlineItem = outlineItem || null;
7113 if ( outlineItem ) {
7114 this.setupOutlineItem();
7115 }
7116 return this;
7117 };
7118
7119 /**
7120 * Setup outline item.
7121 *
7122 * @localdoc Subclasses should override this method to adjust the outline item as desired.
7123 *
7124 * @param {OO.ui.OutlineItemWidget} outlineItem Outline item widget to setup
7125 * @chainable
7126 */
7127 OO.ui.PageLayout.prototype.setupOutlineItem = function () {
7128 return this;
7129 };
7130
7131 /**
7132 * Set page active state.
7133 *
7134 * @param {boolean} Page is active
7135 * @fires active
7136 */
7137 OO.ui.PageLayout.prototype.setActive = function ( active ) {
7138 active = !!active;
7139
7140 if ( active !== this.active ) {
7141 this.active = active;
7142 this.$element.toggleClass( 'oo-ui-pageLayout-active', active );
7143 this.emit( 'active', this.active );
7144 }
7145 };
7146
7147 /**
7148 * Layout containing a series of mutually exclusive pages.
7149 *
7150 * @class
7151 * @extends OO.ui.PanelLayout
7152 * @mixins OO.ui.GroupElement
7153 *
7154 * @constructor
7155 * @param {Object} [config] Configuration options
7156 * @cfg {boolean} [continuous=false] Show all pages, one after another
7157 * @cfg {string} [icon=''] Symbolic icon name
7158 * @cfg {OO.ui.Layout[]} [items] Layouts to add
7159 */
7160 OO.ui.StackLayout = function OoUiStackLayout( config ) {
7161 // Config initialization
7162 config = $.extend( { scrollable: true }, config );
7163
7164 // Parent constructor
7165 OO.ui.StackLayout.super.call( this, config );
7166
7167 // Mixin constructors
7168 OO.ui.GroupElement.call( this, $.extend( {}, config, { $group: this.$element } ) );
7169
7170 // Properties
7171 this.currentItem = null;
7172 this.continuous = !!config.continuous;
7173
7174 // Initialization
7175 this.$element.addClass( 'oo-ui-stackLayout' );
7176 if ( this.continuous ) {
7177 this.$element.addClass( 'oo-ui-stackLayout-continuous' );
7178 }
7179 if ( $.isArray( config.items ) ) {
7180 this.addItems( config.items );
7181 }
7182 };
7183
7184 /* Setup */
7185
7186 OO.inheritClass( OO.ui.StackLayout, OO.ui.PanelLayout );
7187 OO.mixinClass( OO.ui.StackLayout, OO.ui.GroupElement );
7188
7189 /* Events */
7190
7191 /**
7192 * @event set
7193 * @param {OO.ui.Layout|null} item Current item or null if there is no longer a layout shown
7194 */
7195
7196 /* Methods */
7197
7198 /**
7199 * Get the current item.
7200 *
7201 * @return {OO.ui.Layout|null}
7202 */
7203 OO.ui.StackLayout.prototype.getCurrentItem = function () {
7204 return this.currentItem;
7205 };
7206
7207 /**
7208 * Unset the current item.
7209 *
7210 * @private
7211 * @param {OO.ui.StackLayout} layout
7212 * @fires set
7213 */
7214 OO.ui.StackLayout.prototype.unsetCurrentItem = function () {
7215 var prevItem = this.currentItem;
7216 if ( prevItem === null ) {
7217 return;
7218 }
7219
7220 this.currentItem = null;
7221 this.emit( 'set', null );
7222 };
7223
7224 /**
7225 * Add items.
7226 *
7227 * Adding an existing item (by value) will move it.
7228 *
7229 * @param {OO.ui.Layout[]} items Items to add
7230 * @param {number} [index] Index to insert items after
7231 * @chainable
7232 */
7233 OO.ui.StackLayout.prototype.addItems = function ( items, index ) {
7234 // Mixin method
7235 OO.ui.GroupElement.prototype.addItems.call( this, items, index );
7236
7237 if ( !this.currentItem && items.length ) {
7238 this.setItem( items[0] );
7239 }
7240
7241 return this;
7242 };
7243
7244 /**
7245 * Remove items.
7246 *
7247 * Items will be detached, not removed, so they can be used later.
7248 *
7249 * @param {OO.ui.Layout[]} items Items to remove
7250 * @chainable
7251 * @fires set
7252 */
7253 OO.ui.StackLayout.prototype.removeItems = function ( items ) {
7254 // Mixin method
7255 OO.ui.GroupElement.prototype.removeItems.call( this, items );
7256
7257 if ( $.inArray( this.currentItem, items ) !== -1 ) {
7258 if ( this.items.length ) {
7259 this.setItem( this.items[0] );
7260 } else {
7261 this.unsetCurrentItem();
7262 }
7263 }
7264
7265 return this;
7266 };
7267
7268 /**
7269 * Clear all items.
7270 *
7271 * Items will be detached, not removed, so they can be used later.
7272 *
7273 * @chainable
7274 * @fires set
7275 */
7276 OO.ui.StackLayout.prototype.clearItems = function () {
7277 this.unsetCurrentItem();
7278 OO.ui.GroupElement.prototype.clearItems.call( this );
7279
7280 return this;
7281 };
7282
7283 /**
7284 * Show item.
7285 *
7286 * Any currently shown item will be hidden.
7287 *
7288 * FIXME: If the passed item to show has not been added in the items list, then
7289 * this method drops it and unsets the current item.
7290 *
7291 * @param {OO.ui.Layout} item Item to show
7292 * @chainable
7293 * @fires set
7294 */
7295 OO.ui.StackLayout.prototype.setItem = function ( item ) {
7296 var i, len;
7297
7298 if ( item !== this.currentItem ) {
7299 if ( !this.continuous ) {
7300 for ( i = 0, len = this.items.length; i < len; i++ ) {
7301 this.items[i].$element.css( 'display', '' );
7302 }
7303 }
7304 if ( $.inArray( item, this.items ) !== -1 ) {
7305 if ( !this.continuous ) {
7306 item.$element.css( 'display', 'block' );
7307 }
7308 this.currentItem = item;
7309 this.emit( 'set', item );
7310 } else {
7311 this.unsetCurrentItem();
7312 }
7313 }
7314
7315 return this;
7316 };
7317
7318 /**
7319 * Horizontal bar layout of tools as icon buttons.
7320 *
7321 * @class
7322 * @extends OO.ui.ToolGroup
7323 *
7324 * @constructor
7325 * @param {OO.ui.Toolbar} toolbar
7326 * @param {Object} [config] Configuration options
7327 */
7328 OO.ui.BarToolGroup = function OoUiBarToolGroup( toolbar, config ) {
7329 // Parent constructor
7330 OO.ui.BarToolGroup.super.call( this, toolbar, config );
7331
7332 // Initialization
7333 this.$element.addClass( 'oo-ui-barToolGroup' );
7334 };
7335
7336 /* Setup */
7337
7338 OO.inheritClass( OO.ui.BarToolGroup, OO.ui.ToolGroup );
7339
7340 /* Static Properties */
7341
7342 OO.ui.BarToolGroup.static.titleTooltips = true;
7343
7344 OO.ui.BarToolGroup.static.accelTooltips = true;
7345
7346 OO.ui.BarToolGroup.static.name = 'bar';
7347
7348 /**
7349 * Popup list of tools with an icon and optional label.
7350 *
7351 * @abstract
7352 * @class
7353 * @extends OO.ui.ToolGroup
7354 * @mixins OO.ui.IconElement
7355 * @mixins OO.ui.IndicatorElement
7356 * @mixins OO.ui.LabelElement
7357 * @mixins OO.ui.TitledElement
7358 * @mixins OO.ui.ClippableElement
7359 *
7360 * @constructor
7361 * @param {OO.ui.Toolbar} toolbar
7362 * @param {Object} [config] Configuration options
7363 * @cfg {string} [header] Text to display at the top of the pop-up
7364 */
7365 OO.ui.PopupToolGroup = function OoUiPopupToolGroup( toolbar, config ) {
7366 // Configuration initialization
7367 config = config || {};
7368
7369 // Parent constructor
7370 OO.ui.PopupToolGroup.super.call( this, toolbar, config );
7371
7372 // Mixin constructors
7373 OO.ui.IconElement.call( this, config );
7374 OO.ui.IndicatorElement.call( this, config );
7375 OO.ui.LabelElement.call( this, config );
7376 OO.ui.TitledElement.call( this, config );
7377 OO.ui.ClippableElement.call( this, $.extend( {}, config, { $clippable: this.$group } ) );
7378
7379 // Properties
7380 this.active = false;
7381 this.dragging = false;
7382 this.onBlurHandler = this.onBlur.bind( this );
7383 this.$handle = this.$( '<span>' );
7384
7385 // Events
7386 this.$handle.on( {
7387 'mousedown touchstart': this.onHandlePointerDown.bind( this ),
7388 'mouseup touchend': this.onHandlePointerUp.bind( this )
7389 } );
7390
7391 // Initialization
7392 this.$handle
7393 .addClass( 'oo-ui-popupToolGroup-handle' )
7394 .append( this.$icon, this.$label, this.$indicator );
7395 // If the pop-up should have a header, add it to the top of the toolGroup.
7396 // Note: If this feature is useful for other widgets, we could abstract it into an
7397 // OO.ui.HeaderedElement mixin constructor.
7398 if ( config.header !== undefined ) {
7399 this.$group
7400 .prepend( this.$( '<span>' )
7401 .addClass( 'oo-ui-popupToolGroup-header' )
7402 .text( config.header )
7403 );
7404 }
7405 this.$element
7406 .addClass( 'oo-ui-popupToolGroup' )
7407 .prepend( this.$handle );
7408 };
7409
7410 /* Setup */
7411
7412 OO.inheritClass( OO.ui.PopupToolGroup, OO.ui.ToolGroup );
7413 OO.mixinClass( OO.ui.PopupToolGroup, OO.ui.IconElement );
7414 OO.mixinClass( OO.ui.PopupToolGroup, OO.ui.IndicatorElement );
7415 OO.mixinClass( OO.ui.PopupToolGroup, OO.ui.LabelElement );
7416 OO.mixinClass( OO.ui.PopupToolGroup, OO.ui.TitledElement );
7417 OO.mixinClass( OO.ui.PopupToolGroup, OO.ui.ClippableElement );
7418
7419 /* Static Properties */
7420
7421 /* Methods */
7422
7423 /**
7424 * @inheritdoc
7425 */
7426 OO.ui.PopupToolGroup.prototype.setDisabled = function () {
7427 // Parent method
7428 OO.ui.PopupToolGroup.super.prototype.setDisabled.apply( this, arguments );
7429
7430 if ( this.isDisabled() && this.isElementAttached() ) {
7431 this.setActive( false );
7432 }
7433 };
7434
7435 /**
7436 * Handle focus being lost.
7437 *
7438 * The event is actually generated from a mouseup, so it is not a normal blur event object.
7439 *
7440 * @param {jQuery.Event} e Mouse up event
7441 */
7442 OO.ui.PopupToolGroup.prototype.onBlur = function ( e ) {
7443 // Only deactivate when clicking outside the dropdown element
7444 if ( this.$( e.target ).closest( '.oo-ui-popupToolGroup' )[0] !== this.$element[0] ) {
7445 this.setActive( false );
7446 }
7447 };
7448
7449 /**
7450 * @inheritdoc
7451 */
7452 OO.ui.PopupToolGroup.prototype.onPointerUp = function ( e ) {
7453 // e.which is 0 for touch events, 1 for left mouse button
7454 if ( !this.isDisabled() && e.which <= 1 ) {
7455 this.setActive( false );
7456 }
7457 return OO.ui.PopupToolGroup.super.prototype.onPointerUp.call( this, e );
7458 };
7459
7460 /**
7461 * Handle mouse up events.
7462 *
7463 * @param {jQuery.Event} e Mouse up event
7464 */
7465 OO.ui.PopupToolGroup.prototype.onHandlePointerUp = function () {
7466 return false;
7467 };
7468
7469 /**
7470 * Handle mouse down events.
7471 *
7472 * @param {jQuery.Event} e Mouse down event
7473 */
7474 OO.ui.PopupToolGroup.prototype.onHandlePointerDown = function ( e ) {
7475 // e.which is 0 for touch events, 1 for left mouse button
7476 if ( !this.isDisabled() && e.which <= 1 ) {
7477 this.setActive( !this.active );
7478 }
7479 return false;
7480 };
7481
7482 /**
7483 * Switch into active mode.
7484 *
7485 * When active, mouseup events anywhere in the document will trigger deactivation.
7486 */
7487 OO.ui.PopupToolGroup.prototype.setActive = function ( value ) {
7488 value = !!value;
7489 if ( this.active !== value ) {
7490 this.active = value;
7491 if ( value ) {
7492 this.getElementDocument().addEventListener( 'mouseup', this.onBlurHandler, true );
7493
7494 // Try anchoring the popup to the left first
7495 this.$element.addClass( 'oo-ui-popupToolGroup-active oo-ui-popupToolGroup-left' );
7496 this.toggleClipping( true );
7497 if ( this.isClippedHorizontally() ) {
7498 // Anchoring to the left caused the popup to clip, so anchor it to the right instead
7499 this.toggleClipping( false );
7500 this.$element
7501 .removeClass( 'oo-ui-popupToolGroup-left' )
7502 .addClass( 'oo-ui-popupToolGroup-right' );
7503 this.toggleClipping( true );
7504 }
7505 } else {
7506 this.getElementDocument().removeEventListener( 'mouseup', this.onBlurHandler, true );
7507 this.$element.removeClass(
7508 'oo-ui-popupToolGroup-active oo-ui-popupToolGroup-left oo-ui-popupToolGroup-right'
7509 );
7510 this.toggleClipping( false );
7511 }
7512 }
7513 };
7514
7515 /**
7516 * Drop down list layout of tools as labeled icon buttons.
7517 *
7518 * This layout allows some tools to be collapsible, controlled by a "More" / "Fewer" option at the
7519 * bottom of the main list. These are not automatically positioned at the bottom of the list; you
7520 * may want to use the 'promote' and 'demote' configuration options to achieve this.
7521 *
7522 * @class
7523 * @extends OO.ui.PopupToolGroup
7524 *
7525 * @constructor
7526 * @param {OO.ui.Toolbar} toolbar
7527 * @param {Object} [config] Configuration options
7528 * @cfg {Array} [allowCollapse] List of tools that can be collapsed. Remaining tools will be always
7529 * shown.
7530 * @cfg {Array} [forceExpand] List of tools that *may not* be collapsed. All remaining tools will be
7531 * allowed to be collapsed.
7532 * @cfg {boolean} [expanded=false] Whether the collapsible tools are expanded by default
7533 */
7534 OO.ui.ListToolGroup = function OoUiListToolGroup( toolbar, config ) {
7535 // Properties (must be set before parent constructor, which calls #populate)
7536 this.allowCollapse = config.allowCollapse;
7537 this.forceExpand = config.forceExpand;
7538 this.expanded = config.expanded !== undefined ? config.expanded : false;
7539 this.collapsibleTools = [];
7540
7541 // Parent constructor
7542 OO.ui.ListToolGroup.super.call( this, toolbar, config );
7543
7544 // Initialization
7545 this.$element.addClass( 'oo-ui-listToolGroup' );
7546 };
7547
7548 /* Setup */
7549
7550 OO.inheritClass( OO.ui.ListToolGroup, OO.ui.PopupToolGroup );
7551
7552 /* Static Properties */
7553
7554 OO.ui.ListToolGroup.static.accelTooltips = true;
7555
7556 OO.ui.ListToolGroup.static.name = 'list';
7557
7558 /* Methods */
7559
7560 /**
7561 * @inheritdoc
7562 */
7563 OO.ui.ListToolGroup.prototype.populate = function () {
7564 var i, len, allowCollapse = [];
7565
7566 OO.ui.ListToolGroup.super.prototype.populate.call( this );
7567
7568 // Update the list of collapsible tools
7569 if ( this.allowCollapse !== undefined ) {
7570 allowCollapse = this.allowCollapse;
7571 } else if ( this.forceExpand !== undefined ) {
7572 allowCollapse = OO.simpleArrayDifference( Object.keys( this.tools ), this.forceExpand );
7573 }
7574
7575 this.collapsibleTools = [];
7576 for ( i = 0, len = allowCollapse.length; i < len; i++ ) {
7577 if ( this.tools[ allowCollapse[i] ] !== undefined ) {
7578 this.collapsibleTools.push( this.tools[ allowCollapse[i] ] );
7579 }
7580 }
7581
7582 // Keep at the end, even when tools are added
7583 this.$group.append( this.getExpandCollapseTool().$element );
7584
7585 this.getExpandCollapseTool().toggle( this.collapsibleTools.length !== 0 );
7586
7587 // Calling jQuery's .hide() and then .show() on a detached element caches the default value of its
7588 // 'display' attribute and restores it, and the tool uses a <span> and can be hidden and re-shown.
7589 // Is this a jQuery bug? http://jsfiddle.net/gtj4hu3h/
7590 if ( this.getExpandCollapseTool().$element.css( 'display' ) === 'inline' ) {
7591 this.getExpandCollapseTool().$element.css( 'display', 'inline-block' );
7592 }
7593
7594 this.updateCollapsibleState();
7595 };
7596
7597 OO.ui.ListToolGroup.prototype.getExpandCollapseTool = function () {
7598 if ( this.expandCollapseTool === undefined ) {
7599 var ExpandCollapseTool = function () {
7600 ExpandCollapseTool.super.apply( this, arguments );
7601 };
7602
7603 OO.inheritClass( ExpandCollapseTool, OO.ui.Tool );
7604
7605 ExpandCollapseTool.prototype.onSelect = function () {
7606 this.toolGroup.expanded = !this.toolGroup.expanded;
7607 this.toolGroup.updateCollapsibleState();
7608 this.setActive( false );
7609 };
7610 ExpandCollapseTool.prototype.onUpdateState = function () {
7611 // Do nothing. Tool interface requires an implementation of this function.
7612 };
7613
7614 ExpandCollapseTool.static.name = 'more-fewer';
7615
7616 this.expandCollapseTool = new ExpandCollapseTool( this );
7617 }
7618 return this.expandCollapseTool;
7619 };
7620
7621 /**
7622 * @inheritdoc
7623 */
7624 OO.ui.ListToolGroup.prototype.onPointerUp = function ( e ) {
7625 var ret = OO.ui.ListToolGroup.super.prototype.onPointerUp.call( this, e );
7626
7627 // Do not close the popup when the user wants to show more/fewer tools
7628 if ( this.$( e.target ).closest( '.oo-ui-tool-name-more-fewer' ).length ) {
7629 // Prevent the popup list from being hidden
7630 this.setActive( true );
7631 }
7632
7633 return ret;
7634 };
7635
7636 OO.ui.ListToolGroup.prototype.updateCollapsibleState = function () {
7637 var i, len;
7638
7639 this.getExpandCollapseTool()
7640 .setIcon( this.expanded ? 'collapse' : 'expand' )
7641 .setTitle( OO.ui.msg( this.expanded ? 'ooui-toolgroup-collapse' : 'ooui-toolgroup-expand' ) );
7642
7643 for ( i = 0, len = this.collapsibleTools.length; i < len; i++ ) {
7644 this.collapsibleTools[i].toggle( this.expanded );
7645 }
7646 };
7647
7648 /**
7649 * Drop down menu layout of tools as selectable menu items.
7650 *
7651 * @class
7652 * @extends OO.ui.PopupToolGroup
7653 *
7654 * @constructor
7655 * @param {OO.ui.Toolbar} toolbar
7656 * @param {Object} [config] Configuration options
7657 */
7658 OO.ui.MenuToolGroup = function OoUiMenuToolGroup( toolbar, config ) {
7659 // Configuration initialization
7660 config = config || {};
7661
7662 // Parent constructor
7663 OO.ui.MenuToolGroup.super.call( this, toolbar, config );
7664
7665 // Events
7666 this.toolbar.connect( this, { updateState: 'onUpdateState' } );
7667
7668 // Initialization
7669 this.$element.addClass( 'oo-ui-menuToolGroup' );
7670 };
7671
7672 /* Setup */
7673
7674 OO.inheritClass( OO.ui.MenuToolGroup, OO.ui.PopupToolGroup );
7675
7676 /* Static Properties */
7677
7678 OO.ui.MenuToolGroup.static.accelTooltips = true;
7679
7680 OO.ui.MenuToolGroup.static.name = 'menu';
7681
7682 /* Methods */
7683
7684 /**
7685 * Handle the toolbar state being updated.
7686 *
7687 * When the state changes, the title of each active item in the menu will be joined together and
7688 * used as a label for the group. The label will be empty if none of the items are active.
7689 */
7690 OO.ui.MenuToolGroup.prototype.onUpdateState = function () {
7691 var name,
7692 labelTexts = [];
7693
7694 for ( name in this.tools ) {
7695 if ( this.tools[name].isActive() ) {
7696 labelTexts.push( this.tools[name].getTitle() );
7697 }
7698 }
7699
7700 this.setLabel( labelTexts.join( ', ' ) || ' ' );
7701 };
7702
7703 /**
7704 * Tool that shows a popup when selected.
7705 *
7706 * @abstract
7707 * @class
7708 * @extends OO.ui.Tool
7709 * @mixins OO.ui.PopupElement
7710 *
7711 * @constructor
7712 * @param {OO.ui.Toolbar} toolbar
7713 * @param {Object} [config] Configuration options
7714 */
7715 OO.ui.PopupTool = function OoUiPopupTool( toolbar, config ) {
7716 // Parent constructor
7717 OO.ui.PopupTool.super.call( this, toolbar, config );
7718
7719 // Mixin constructors
7720 OO.ui.PopupElement.call( this, config );
7721
7722 // Initialization
7723 this.$element
7724 .addClass( 'oo-ui-popupTool' )
7725 .append( this.popup.$element );
7726 };
7727
7728 /* Setup */
7729
7730 OO.inheritClass( OO.ui.PopupTool, OO.ui.Tool );
7731 OO.mixinClass( OO.ui.PopupTool, OO.ui.PopupElement );
7732
7733 /* Methods */
7734
7735 /**
7736 * Handle the tool being selected.
7737 *
7738 * @inheritdoc
7739 */
7740 OO.ui.PopupTool.prototype.onSelect = function () {
7741 if ( !this.isDisabled() ) {
7742 this.popup.toggle();
7743 }
7744 this.setActive( false );
7745 return false;
7746 };
7747
7748 /**
7749 * Handle the toolbar state being updated.
7750 *
7751 * @inheritdoc
7752 */
7753 OO.ui.PopupTool.prototype.onUpdateState = function () {
7754 this.setActive( false );
7755 };
7756
7757 /**
7758 * Mixin for OO.ui.Widget subclasses to provide OO.ui.GroupElement.
7759 *
7760 * Use together with OO.ui.ItemWidget to make disabled state inheritable.
7761 *
7762 * @abstract
7763 * @class
7764 * @extends OO.ui.GroupElement
7765 *
7766 * @constructor
7767 * @param {Object} [config] Configuration options
7768 */
7769 OO.ui.GroupWidget = function OoUiGroupWidget( config ) {
7770 // Parent constructor
7771 OO.ui.GroupWidget.super.call( this, config );
7772 };
7773
7774 /* Setup */
7775
7776 OO.inheritClass( OO.ui.GroupWidget, OO.ui.GroupElement );
7777
7778 /* Methods */
7779
7780 /**
7781 * Set the disabled state of the widget.
7782 *
7783 * This will also update the disabled state of child widgets.
7784 *
7785 * @param {boolean} disabled Disable widget
7786 * @chainable
7787 */
7788 OO.ui.GroupWidget.prototype.setDisabled = function ( disabled ) {
7789 var i, len;
7790
7791 // Parent method
7792 // Note: Calling #setDisabled this way assumes this is mixed into an OO.ui.Widget
7793 OO.ui.Widget.prototype.setDisabled.call( this, disabled );
7794
7795 // During construction, #setDisabled is called before the OO.ui.GroupElement constructor
7796 if ( this.items ) {
7797 for ( i = 0, len = this.items.length; i < len; i++ ) {
7798 this.items[i].updateDisabled();
7799 }
7800 }
7801
7802 return this;
7803 };
7804
7805 /**
7806 * Mixin for widgets used as items in widgets that inherit OO.ui.GroupWidget.
7807 *
7808 * Item widgets have a reference to a OO.ui.GroupWidget while they are attached to the group. This
7809 * allows bidrectional communication.
7810 *
7811 * Use together with OO.ui.GroupWidget to make disabled state inheritable.
7812 *
7813 * @abstract
7814 * @class
7815 *
7816 * @constructor
7817 */
7818 OO.ui.ItemWidget = function OoUiItemWidget() {
7819 //
7820 };
7821
7822 /* Methods */
7823
7824 /**
7825 * Check if widget is disabled.
7826 *
7827 * Checks parent if present, making disabled state inheritable.
7828 *
7829 * @return {boolean} Widget is disabled
7830 */
7831 OO.ui.ItemWidget.prototype.isDisabled = function () {
7832 return this.disabled ||
7833 ( this.elementGroup instanceof OO.ui.Widget && this.elementGroup.isDisabled() );
7834 };
7835
7836 /**
7837 * Set group element is in.
7838 *
7839 * @param {OO.ui.GroupElement|null} group Group element, null if none
7840 * @chainable
7841 */
7842 OO.ui.ItemWidget.prototype.setElementGroup = function ( group ) {
7843 // Parent method
7844 // Note: Calling #setElementGroup this way assumes this is mixed into an OO.ui.Element
7845 OO.ui.Element.prototype.setElementGroup.call( this, group );
7846
7847 // Initialize item disabled states
7848 this.updateDisabled();
7849
7850 return this;
7851 };
7852
7853 /**
7854 * Mixin that adds a menu showing suggested values for a text input.
7855 *
7856 * Subclasses must handle `select` and `choose` events on #lookupMenu to make use of selections.
7857 *
7858 * @class
7859 * @abstract
7860 *
7861 * @constructor
7862 * @param {OO.ui.TextInputWidget} input Input widget
7863 * @param {Object} [config] Configuration options
7864 * @cfg {jQuery} [$overlay] Overlay for dropdown; defaults to relative positioning
7865 */
7866 OO.ui.LookupInputWidget = function OoUiLookupInputWidget( input, config ) {
7867 // Config intialization
7868 config = config || {};
7869
7870 // Properties
7871 this.lookupInput = input;
7872 this.$overlay = config.$overlay || this.$element;
7873 this.lookupMenu = new OO.ui.TextInputMenuWidget( this, {
7874 $: OO.ui.Element.getJQuery( this.$overlay ),
7875 input: this.lookupInput,
7876 $container: config.$container
7877 } );
7878 this.lookupCache = {};
7879 this.lookupQuery = null;
7880 this.lookupRequest = null;
7881 this.populating = false;
7882
7883 // Events
7884 this.lookupInput.$input.on( {
7885 focus: this.onLookupInputFocus.bind( this ),
7886 blur: this.onLookupInputBlur.bind( this ),
7887 mousedown: this.onLookupInputMouseDown.bind( this )
7888 } );
7889 this.lookupInput.connect( this, { change: 'onLookupInputChange' } );
7890
7891 // Initialization
7892 this.$element.addClass( 'oo-ui-lookupWidget' );
7893 this.lookupMenu.$element.addClass( 'oo-ui-lookupWidget-menu' );
7894 this.$overlay.append( this.lookupMenu.$element );
7895 };
7896
7897 /* Methods */
7898
7899 /**
7900 * Handle input focus event.
7901 *
7902 * @param {jQuery.Event} e Input focus event
7903 */
7904 OO.ui.LookupInputWidget.prototype.onLookupInputFocus = function () {
7905 this.openLookupMenu();
7906 };
7907
7908 /**
7909 * Handle input blur event.
7910 *
7911 * @param {jQuery.Event} e Input blur event
7912 */
7913 OO.ui.LookupInputWidget.prototype.onLookupInputBlur = function () {
7914 this.lookupMenu.toggle( false );
7915 };
7916
7917 /**
7918 * Handle input mouse down event.
7919 *
7920 * @param {jQuery.Event} e Input mouse down event
7921 */
7922 OO.ui.LookupInputWidget.prototype.onLookupInputMouseDown = function () {
7923 this.openLookupMenu();
7924 };
7925
7926 /**
7927 * Handle input change event.
7928 *
7929 * @param {string} value New input value
7930 */
7931 OO.ui.LookupInputWidget.prototype.onLookupInputChange = function () {
7932 this.openLookupMenu();
7933 };
7934
7935 /**
7936 * Get lookup menu.
7937 *
7938 * @return {OO.ui.TextInputMenuWidget}
7939 */
7940 OO.ui.LookupInputWidget.prototype.getLookupMenu = function () {
7941 return this.lookupMenu;
7942 };
7943
7944 /**
7945 * Open the menu.
7946 *
7947 * @chainable
7948 */
7949 OO.ui.LookupInputWidget.prototype.openLookupMenu = function () {
7950 var value = this.lookupInput.getValue();
7951
7952 if ( this.lookupMenu.$input.is( ':focus' ) && $.trim( value ) !== '' ) {
7953 this.populateLookupMenu();
7954 this.lookupMenu.toggle( true );
7955 } else {
7956 this.lookupMenu
7957 .clearItems()
7958 .toggle( false );
7959 }
7960
7961 return this;
7962 };
7963
7964 /**
7965 * Populate lookup menu with current information.
7966 *
7967 * @chainable
7968 */
7969 OO.ui.LookupInputWidget.prototype.populateLookupMenu = function () {
7970 var widget = this;
7971
7972 if ( !this.populating ) {
7973 this.populating = true;
7974 this.getLookupMenuItems()
7975 .done( function ( items ) {
7976 widget.lookupMenu.clearItems();
7977 if ( items.length ) {
7978 widget.lookupMenu
7979 .addItems( items )
7980 .toggle( true );
7981 widget.initializeLookupMenuSelection();
7982 widget.openLookupMenu();
7983 } else {
7984 widget.lookupMenu.toggle( true );
7985 }
7986 widget.populating = false;
7987 } )
7988 .fail( function () {
7989 widget.lookupMenu.clearItems();
7990 widget.populating = false;
7991 } );
7992 }
7993
7994 return this;
7995 };
7996
7997 /**
7998 * Set selection in the lookup menu with current information.
7999 *
8000 * @chainable
8001 */
8002 OO.ui.LookupInputWidget.prototype.initializeLookupMenuSelection = function () {
8003 if ( !this.lookupMenu.getSelectedItem() ) {
8004 this.lookupMenu.selectItem( this.lookupMenu.getFirstSelectableItem() );
8005 }
8006 this.lookupMenu.highlightItem( this.lookupMenu.getSelectedItem() );
8007 };
8008
8009 /**
8010 * Get lookup menu items for the current query.
8011 *
8012 * @return {jQuery.Promise} Promise object which will be passed menu items as the first argument
8013 * of the done event
8014 */
8015 OO.ui.LookupInputWidget.prototype.getLookupMenuItems = function () {
8016 var widget = this,
8017 value = this.lookupInput.getValue(),
8018 deferred = $.Deferred();
8019
8020 if ( value && value !== this.lookupQuery ) {
8021 // Abort current request if query has changed
8022 if ( this.lookupRequest ) {
8023 this.lookupRequest.abort();
8024 this.lookupQuery = null;
8025 this.lookupRequest = null;
8026 }
8027 if ( value in this.lookupCache ) {
8028 deferred.resolve( this.getLookupMenuItemsFromData( this.lookupCache[value] ) );
8029 } else {
8030 this.lookupQuery = value;
8031 this.lookupRequest = this.getLookupRequest()
8032 .always( function () {
8033 widget.lookupQuery = null;
8034 widget.lookupRequest = null;
8035 } )
8036 .done( function ( data ) {
8037 widget.lookupCache[value] = widget.getLookupCacheItemFromData( data );
8038 deferred.resolve( widget.getLookupMenuItemsFromData( widget.lookupCache[value] ) );
8039 } )
8040 .fail( function () {
8041 deferred.reject();
8042 } );
8043 this.pushPending();
8044 this.lookupRequest.always( function () {
8045 widget.popPending();
8046 } );
8047 }
8048 }
8049 return deferred.promise();
8050 };
8051
8052 /**
8053 * Get a new request object of the current lookup query value.
8054 *
8055 * @abstract
8056 * @return {jqXHR} jQuery AJAX object, or promise object with an .abort() method
8057 */
8058 OO.ui.LookupInputWidget.prototype.getLookupRequest = function () {
8059 // Stub, implemented in subclass
8060 return null;
8061 };
8062
8063 /**
8064 * Handle successful lookup request.
8065 *
8066 * Overriding methods should call #populateLookupMenu when results are available and cache results
8067 * for future lookups in #lookupCache as an array of #OO.ui.MenuItemWidget objects.
8068 *
8069 * @abstract
8070 * @param {Mixed} data Response from server
8071 */
8072 OO.ui.LookupInputWidget.prototype.onLookupRequestDone = function () {
8073 // Stub, implemented in subclass
8074 };
8075
8076 /**
8077 * Get a list of menu item widgets from the data stored by the lookup request's done handler.
8078 *
8079 * @abstract
8080 * @param {Mixed} data Cached result data, usually an array
8081 * @return {OO.ui.MenuItemWidget[]} Menu items
8082 */
8083 OO.ui.LookupInputWidget.prototype.getLookupMenuItemsFromData = function () {
8084 // Stub, implemented in subclass
8085 return [];
8086 };
8087
8088 /**
8089 * Set of controls for an OO.ui.OutlineWidget.
8090 *
8091 * Controls include moving items up and down, removing items, and adding different kinds of items.
8092 *
8093 * @class
8094 * @extends OO.ui.Widget
8095 * @mixins OO.ui.GroupElement
8096 * @mixins OO.ui.IconElement
8097 *
8098 * @constructor
8099 * @param {OO.ui.OutlineWidget} outline Outline to control
8100 * @param {Object} [config] Configuration options
8101 */
8102 OO.ui.OutlineControlsWidget = function OoUiOutlineControlsWidget( outline, config ) {
8103 // Configuration initialization
8104 config = $.extend( { icon: 'add' }, config );
8105
8106 // Parent constructor
8107 OO.ui.OutlineControlsWidget.super.call( this, config );
8108
8109 // Mixin constructors
8110 OO.ui.GroupElement.call( this, config );
8111 OO.ui.IconElement.call( this, config );
8112
8113 // Properties
8114 this.outline = outline;
8115 this.$movers = this.$( '<div>' );
8116 this.upButton = new OO.ui.ButtonWidget( {
8117 $: this.$,
8118 framed: false,
8119 icon: 'collapse',
8120 title: OO.ui.msg( 'ooui-outline-control-move-up' )
8121 } );
8122 this.downButton = new OO.ui.ButtonWidget( {
8123 $: this.$,
8124 framed: false,
8125 icon: 'expand',
8126 title: OO.ui.msg( 'ooui-outline-control-move-down' )
8127 } );
8128 this.removeButton = new OO.ui.ButtonWidget( {
8129 $: this.$,
8130 framed: false,
8131 icon: 'remove',
8132 title: OO.ui.msg( 'ooui-outline-control-remove' )
8133 } );
8134
8135 // Events
8136 outline.connect( this, {
8137 select: 'onOutlineChange',
8138 add: 'onOutlineChange',
8139 remove: 'onOutlineChange'
8140 } );
8141 this.upButton.connect( this, { click: [ 'emit', 'move', -1 ] } );
8142 this.downButton.connect( this, { click: [ 'emit', 'move', 1 ] } );
8143 this.removeButton.connect( this, { click: [ 'emit', 'remove' ] } );
8144
8145 // Initialization
8146 this.$element.addClass( 'oo-ui-outlineControlsWidget' );
8147 this.$group.addClass( 'oo-ui-outlineControlsWidget-items' );
8148 this.$movers
8149 .addClass( 'oo-ui-outlineControlsWidget-movers' )
8150 .append( this.removeButton.$element, this.upButton.$element, this.downButton.$element );
8151 this.$element.append( this.$icon, this.$group, this.$movers );
8152 };
8153
8154 /* Setup */
8155
8156 OO.inheritClass( OO.ui.OutlineControlsWidget, OO.ui.Widget );
8157 OO.mixinClass( OO.ui.OutlineControlsWidget, OO.ui.GroupElement );
8158 OO.mixinClass( OO.ui.OutlineControlsWidget, OO.ui.IconElement );
8159
8160 /* Events */
8161
8162 /**
8163 * @event move
8164 * @param {number} places Number of places to move
8165 */
8166
8167 /**
8168 * @event remove
8169 */
8170
8171 /* Methods */
8172
8173 /**
8174 * Handle outline change events.
8175 */
8176 OO.ui.OutlineControlsWidget.prototype.onOutlineChange = function () {
8177 var i, len, firstMovable, lastMovable,
8178 items = this.outline.getItems(),
8179 selectedItem = this.outline.getSelectedItem(),
8180 movable = selectedItem && selectedItem.isMovable(),
8181 removable = selectedItem && selectedItem.isRemovable();
8182
8183 if ( movable ) {
8184 i = -1;
8185 len = items.length;
8186 while ( ++i < len ) {
8187 if ( items[i].isMovable() ) {
8188 firstMovable = items[i];
8189 break;
8190 }
8191 }
8192 i = len;
8193 while ( i-- ) {
8194 if ( items[i].isMovable() ) {
8195 lastMovable = items[i];
8196 break;
8197 }
8198 }
8199 }
8200 this.upButton.setDisabled( !movable || selectedItem === firstMovable );
8201 this.downButton.setDisabled( !movable || selectedItem === lastMovable );
8202 this.removeButton.setDisabled( !removable );
8203 };
8204
8205 /**
8206 * Mixin for widgets with a boolean on/off state.
8207 *
8208 * @abstract
8209 * @class
8210 *
8211 * @constructor
8212 * @param {Object} [config] Configuration options
8213 * @cfg {boolean} [value=false] Initial value
8214 */
8215 OO.ui.ToggleWidget = function OoUiToggleWidget( config ) {
8216 // Configuration initialization
8217 config = config || {};
8218
8219 // Properties
8220 this.value = null;
8221
8222 // Initialization
8223 this.$element.addClass( 'oo-ui-toggleWidget' );
8224 this.setValue( !!config.value );
8225 };
8226
8227 /* Events */
8228
8229 /**
8230 * @event change
8231 * @param {boolean} value Changed value
8232 */
8233
8234 /* Methods */
8235
8236 /**
8237 * Get the value of the toggle.
8238 *
8239 * @return {boolean}
8240 */
8241 OO.ui.ToggleWidget.prototype.getValue = function () {
8242 return this.value;
8243 };
8244
8245 /**
8246 * Set the value of the toggle.
8247 *
8248 * @param {boolean} value New value
8249 * @fires change
8250 * @chainable
8251 */
8252 OO.ui.ToggleWidget.prototype.setValue = function ( value ) {
8253 value = !!value;
8254 if ( this.value !== value ) {
8255 this.value = value;
8256 this.emit( 'change', value );
8257 this.$element.toggleClass( 'oo-ui-toggleWidget-on', value );
8258 this.$element.toggleClass( 'oo-ui-toggleWidget-off', !value );
8259 }
8260 return this;
8261 };
8262
8263 /**
8264 * Group widget for multiple related buttons.
8265 *
8266 * Use together with OO.ui.ButtonWidget.
8267 *
8268 * @class
8269 * @extends OO.ui.Widget
8270 * @mixins OO.ui.GroupElement
8271 *
8272 * @constructor
8273 * @param {Object} [config] Configuration options
8274 * @cfg {OO.ui.ButtonWidget} [items] Buttons to add
8275 */
8276 OO.ui.ButtonGroupWidget = function OoUiButtonGroupWidget( config ) {
8277 // Parent constructor
8278 OO.ui.ButtonGroupWidget.super.call( this, config );
8279
8280 // Mixin constructors
8281 OO.ui.GroupElement.call( this, $.extend( {}, config, { $group: this.$element } ) );
8282
8283 // Initialization
8284 this.$element.addClass( 'oo-ui-buttonGroupWidget' );
8285 if ( $.isArray( config.items ) ) {
8286 this.addItems( config.items );
8287 }
8288 };
8289
8290 /* Setup */
8291
8292 OO.inheritClass( OO.ui.ButtonGroupWidget, OO.ui.Widget );
8293 OO.mixinClass( OO.ui.ButtonGroupWidget, OO.ui.GroupElement );
8294
8295 /**
8296 * Generic widget for buttons.
8297 *
8298 * @class
8299 * @extends OO.ui.Widget
8300 * @mixins OO.ui.ButtonElement
8301 * @mixins OO.ui.IconElement
8302 * @mixins OO.ui.IndicatorElement
8303 * @mixins OO.ui.LabelElement
8304 * @mixins OO.ui.TitledElement
8305 * @mixins OO.ui.FlaggedElement
8306 *
8307 * @constructor
8308 * @param {Object} [config] Configuration options
8309 * @cfg {string} [href] Hyperlink to visit when clicked
8310 * @cfg {string} [target] Target to open hyperlink in
8311 */
8312 OO.ui.ButtonWidget = function OoUiButtonWidget( config ) {
8313 // Configuration initialization
8314 config = $.extend( { target: '_blank' }, config );
8315
8316 // Parent constructor
8317 OO.ui.ButtonWidget.super.call( this, config );
8318
8319 // Mixin constructors
8320 OO.ui.ButtonElement.call( this, config );
8321 OO.ui.IconElement.call( this, config );
8322 OO.ui.IndicatorElement.call( this, config );
8323 OO.ui.LabelElement.call( this, config );
8324 OO.ui.TitledElement.call( this, $.extend( {}, config, { $titled: this.$button } ) );
8325 OO.ui.FlaggedElement.call( this, config );
8326
8327 // Properties
8328 this.href = null;
8329 this.target = null;
8330 this.isHyperlink = false;
8331
8332 // Events
8333 this.$button.on( {
8334 click: this.onClick.bind( this ),
8335 keypress: this.onKeyPress.bind( this )
8336 } );
8337
8338 // Initialization
8339 this.$button.append( this.$icon, this.$label, this.$indicator );
8340 this.$element
8341 .addClass( 'oo-ui-buttonWidget' )
8342 .append( this.$button );
8343 this.setHref( config.href );
8344 this.setTarget( config.target );
8345 };
8346
8347 /* Setup */
8348
8349 OO.inheritClass( OO.ui.ButtonWidget, OO.ui.Widget );
8350 OO.mixinClass( OO.ui.ButtonWidget, OO.ui.ButtonElement );
8351 OO.mixinClass( OO.ui.ButtonWidget, OO.ui.IconElement );
8352 OO.mixinClass( OO.ui.ButtonWidget, OO.ui.IndicatorElement );
8353 OO.mixinClass( OO.ui.ButtonWidget, OO.ui.LabelElement );
8354 OO.mixinClass( OO.ui.ButtonWidget, OO.ui.TitledElement );
8355 OO.mixinClass( OO.ui.ButtonWidget, OO.ui.FlaggedElement );
8356
8357 /* Events */
8358
8359 /**
8360 * @event click
8361 */
8362
8363 /* Methods */
8364
8365 /**
8366 * Handles mouse click events.
8367 *
8368 * @param {jQuery.Event} e Mouse click event
8369 * @fires click
8370 */
8371 OO.ui.ButtonWidget.prototype.onClick = function () {
8372 if ( !this.isDisabled() ) {
8373 this.emit( 'click' );
8374 if ( this.isHyperlink ) {
8375 return true;
8376 }
8377 }
8378 return false;
8379 };
8380
8381 /**
8382 * Handles keypress events.
8383 *
8384 * @param {jQuery.Event} e Keypress event
8385 * @fires click
8386 */
8387 OO.ui.ButtonWidget.prototype.onKeyPress = function ( e ) {
8388 if ( !this.isDisabled() && ( e.which === OO.ui.Keys.SPACE || e.which === OO.ui.Keys.ENTER ) ) {
8389 this.emit( 'click' );
8390 if ( this.isHyperlink ) {
8391 return true;
8392 }
8393 }
8394 return false;
8395 };
8396
8397 /**
8398 * Get hyperlink location.
8399 *
8400 * @return {string} Hyperlink location
8401 */
8402 OO.ui.ButtonWidget.prototype.getHref = function () {
8403 return this.href;
8404 };
8405
8406 /**
8407 * Get hyperlink target.
8408 *
8409 * @return {string} Hyperlink target
8410 */
8411 OO.ui.ButtonWidget.prototype.getTarget = function () {
8412 return this.target;
8413 };
8414
8415 /**
8416 * Set hyperlink location.
8417 *
8418 * @param {string|null} href Hyperlink location, null to remove
8419 */
8420 OO.ui.ButtonWidget.prototype.setHref = function ( href ) {
8421 href = typeof href === 'string' ? href : null;
8422
8423 if ( href !== this.href ) {
8424 this.href = href;
8425 if ( href !== null ) {
8426 this.$button.attr( 'href', href );
8427 this.isHyperlink = true;
8428 } else {
8429 this.$button.removeAttr( 'href' );
8430 this.isHyperlink = false;
8431 }
8432 }
8433
8434 return this;
8435 };
8436
8437 /**
8438 * Set hyperlink target.
8439 *
8440 * @param {string|null} target Hyperlink target, null to remove
8441 */
8442 OO.ui.ButtonWidget.prototype.setTarget = function ( target ) {
8443 target = typeof target === 'string' ? target : null;
8444
8445 if ( target !== this.target ) {
8446 this.target = target;
8447 if ( target !== null ) {
8448 this.$button.attr( 'target', target );
8449 } else {
8450 this.$button.removeAttr( 'target' );
8451 }
8452 }
8453
8454 return this;
8455 };
8456
8457 /**
8458 * Button widget that executes an action and is managed by an OO.ui.ActionSet.
8459 *
8460 * @class
8461 * @extends OO.ui.ButtonWidget
8462 * @mixins OO.ui.PendingElement
8463 *
8464 * @constructor
8465 * @param {Object} [config] Configuration options
8466 * @cfg {string} [action] Symbolic action name
8467 * @cfg {string[]} [modes] Symbolic mode names
8468 * @cfg {boolean} [framed=false] Render button with a frame
8469 */
8470 OO.ui.ActionWidget = function OoUiActionWidget( config ) {
8471 // Config intialization
8472 config = $.extend( { framed: false }, config );
8473
8474 // Parent constructor
8475 OO.ui.ActionWidget.super.call( this, config );
8476
8477 // Mixin constructors
8478 OO.ui.PendingElement.call( this, config );
8479
8480 // Properties
8481 this.action = config.action || '';
8482 this.modes = config.modes || [];
8483 this.width = 0;
8484 this.height = 0;
8485
8486 // Initialization
8487 this.$element.addClass( 'oo-ui-actionWidget' );
8488 };
8489
8490 /* Setup */
8491
8492 OO.inheritClass( OO.ui.ActionWidget, OO.ui.ButtonWidget );
8493 OO.mixinClass( OO.ui.ActionWidget, OO.ui.PendingElement );
8494
8495 /* Events */
8496
8497 /**
8498 * @event resize
8499 */
8500
8501 /* Methods */
8502
8503 /**
8504 * Check if action is available in a certain mode.
8505 *
8506 * @param {string} mode Name of mode
8507 * @return {boolean} Has mode
8508 */
8509 OO.ui.ActionWidget.prototype.hasMode = function ( mode ) {
8510 return this.modes.indexOf( mode ) !== -1;
8511 };
8512
8513 /**
8514 * Get symbolic action name.
8515 *
8516 * @return {string}
8517 */
8518 OO.ui.ActionWidget.prototype.getAction = function () {
8519 return this.action;
8520 };
8521
8522 /**
8523 * Get symbolic action name.
8524 *
8525 * @return {string}
8526 */
8527 OO.ui.ActionWidget.prototype.getModes = function () {
8528 return this.modes.slice();
8529 };
8530
8531 /**
8532 * Emit a resize event if the size has changed.
8533 *
8534 * @chainable
8535 */
8536 OO.ui.ActionWidget.prototype.propagateResize = function () {
8537 var width, height;
8538
8539 if ( this.isElementAttached() ) {
8540 width = this.$element.width();
8541 height = this.$element.height();
8542
8543 if ( width !== this.width || height !== this.height ) {
8544 this.width = width;
8545 this.height = height;
8546 this.emit( 'resize' );
8547 }
8548 }
8549
8550 return this;
8551 };
8552
8553 /**
8554 * @inheritdoc
8555 */
8556 OO.ui.ActionWidget.prototype.setIcon = function () {
8557 // Mixin method
8558 OO.ui.IconElement.prototype.setIcon.apply( this, arguments );
8559 this.propagateResize();
8560
8561 return this;
8562 };
8563
8564 /**
8565 * @inheritdoc
8566 */
8567 OO.ui.ActionWidget.prototype.setLabel = function () {
8568 // Mixin method
8569 OO.ui.LabelElement.prototype.setLabel.apply( this, arguments );
8570 this.propagateResize();
8571
8572 return this;
8573 };
8574
8575 /**
8576 * @inheritdoc
8577 */
8578 OO.ui.ActionWidget.prototype.setFlags = function () {
8579 // Mixin method
8580 OO.ui.FlaggedElement.prototype.setFlags.apply( this, arguments );
8581 this.propagateResize();
8582
8583 return this;
8584 };
8585
8586 /**
8587 * @inheritdoc
8588 */
8589 OO.ui.ActionWidget.prototype.clearFlags = function () {
8590 // Mixin method
8591 OO.ui.FlaggedElement.prototype.clearFlags.apply( this, arguments );
8592 this.propagateResize();
8593
8594 return this;
8595 };
8596
8597 /**
8598 * Toggle visibility of button.
8599 *
8600 * @param {boolean} [show] Show button, omit to toggle visibility
8601 * @chainable
8602 */
8603 OO.ui.ActionWidget.prototype.toggle = function () {
8604 // Parent method
8605 OO.ui.ActionWidget.super.prototype.toggle.apply( this, arguments );
8606 this.propagateResize();
8607
8608 return this;
8609 };
8610
8611 /**
8612 * Button that shows and hides a popup.
8613 *
8614 * @class
8615 * @extends OO.ui.ButtonWidget
8616 * @mixins OO.ui.PopupElement
8617 *
8618 * @constructor
8619 * @param {Object} [config] Configuration options
8620 */
8621 OO.ui.PopupButtonWidget = function OoUiPopupButtonWidget( config ) {
8622 // Parent constructor
8623 OO.ui.PopupButtonWidget.super.call( this, config );
8624
8625 // Mixin constructors
8626 OO.ui.PopupElement.call( this, config );
8627
8628 // Initialization
8629 this.$element
8630 .addClass( 'oo-ui-popupButtonWidget' )
8631 .append( this.popup.$element );
8632 };
8633
8634 /* Setup */
8635
8636 OO.inheritClass( OO.ui.PopupButtonWidget, OO.ui.ButtonWidget );
8637 OO.mixinClass( OO.ui.PopupButtonWidget, OO.ui.PopupElement );
8638
8639 /* Methods */
8640
8641 /**
8642 * Handles mouse click events.
8643 *
8644 * @param {jQuery.Event} e Mouse click event
8645 */
8646 OO.ui.PopupButtonWidget.prototype.onClick = function ( e ) {
8647 // Skip clicks within the popup
8648 if ( $.contains( this.popup.$element[0], e.target ) ) {
8649 return;
8650 }
8651
8652 if ( !this.isDisabled() ) {
8653 this.popup.toggle();
8654 // Parent method
8655 OO.ui.PopupButtonWidget.super.prototype.onClick.call( this );
8656 }
8657 return false;
8658 };
8659
8660 /**
8661 * Button that toggles on and off.
8662 *
8663 * @class
8664 * @extends OO.ui.ButtonWidget
8665 * @mixins OO.ui.ToggleWidget
8666 *
8667 * @constructor
8668 * @param {Object} [config] Configuration options
8669 * @cfg {boolean} [value=false] Initial value
8670 */
8671 OO.ui.ToggleButtonWidget = function OoUiToggleButtonWidget( config ) {
8672 // Configuration initialization
8673 config = config || {};
8674
8675 // Parent constructor
8676 OO.ui.ToggleButtonWidget.super.call( this, config );
8677
8678 // Mixin constructors
8679 OO.ui.ToggleWidget.call( this, config );
8680
8681 // Initialization
8682 this.$element.addClass( 'oo-ui-toggleButtonWidget' );
8683 };
8684
8685 /* Setup */
8686
8687 OO.inheritClass( OO.ui.ToggleButtonWidget, OO.ui.ButtonWidget );
8688 OO.mixinClass( OO.ui.ToggleButtonWidget, OO.ui.ToggleWidget );
8689
8690 /* Methods */
8691
8692 /**
8693 * @inheritdoc
8694 */
8695 OO.ui.ToggleButtonWidget.prototype.onClick = function () {
8696 if ( !this.isDisabled() ) {
8697 this.setValue( !this.value );
8698 }
8699
8700 // Parent method
8701 return OO.ui.ToggleButtonWidget.super.prototype.onClick.call( this );
8702 };
8703
8704 /**
8705 * @inheritdoc
8706 */
8707 OO.ui.ToggleButtonWidget.prototype.setValue = function ( value ) {
8708 value = !!value;
8709 if ( value !== this.value ) {
8710 this.setActive( value );
8711 }
8712
8713 // Parent method (from mixin)
8714 OO.ui.ToggleWidget.prototype.setValue.call( this, value );
8715
8716 return this;
8717 };
8718
8719 /**
8720 * Icon widget.
8721 *
8722 * See OO.ui.IconElement for more information.
8723 *
8724 * @class
8725 * @extends OO.ui.Widget
8726 * @mixins OO.ui.IconElement
8727 * @mixins OO.ui.TitledElement
8728 *
8729 * @constructor
8730 * @param {Object} [config] Configuration options
8731 */
8732 OO.ui.IconWidget = function OoUiIconWidget( config ) {
8733 // Config intialization
8734 config = config || {};
8735
8736 // Parent constructor
8737 OO.ui.IconWidget.super.call( this, config );
8738
8739 // Mixin constructors
8740 OO.ui.IconElement.call( this, $.extend( {}, config, { $icon: this.$element } ) );
8741 OO.ui.TitledElement.call( this, $.extend( {}, config, { $titled: this.$element } ) );
8742
8743 // Initialization
8744 this.$element.addClass( 'oo-ui-iconWidget' );
8745 };
8746
8747 /* Setup */
8748
8749 OO.inheritClass( OO.ui.IconWidget, OO.ui.Widget );
8750 OO.mixinClass( OO.ui.IconWidget, OO.ui.IconElement );
8751 OO.mixinClass( OO.ui.IconWidget, OO.ui.TitledElement );
8752
8753 /* Static Properties */
8754
8755 OO.ui.IconWidget.static.tagName = 'span';
8756
8757 /**
8758 * Indicator widget.
8759 *
8760 * See OO.ui.IndicatorElement for more information.
8761 *
8762 * @class
8763 * @extends OO.ui.Widget
8764 * @mixins OO.ui.IndicatorElement
8765 * @mixins OO.ui.TitledElement
8766 *
8767 * @constructor
8768 * @param {Object} [config] Configuration options
8769 */
8770 OO.ui.IndicatorWidget = function OoUiIndicatorWidget( config ) {
8771 // Config intialization
8772 config = config || {};
8773
8774 // Parent constructor
8775 OO.ui.IndicatorWidget.super.call( this, config );
8776
8777 // Mixin constructors
8778 OO.ui.IndicatorElement.call( this, $.extend( {}, config, { $indicator: this.$element } ) );
8779 OO.ui.TitledElement.call( this, $.extend( {}, config, { $titled: this.$element } ) );
8780
8781 // Initialization
8782 this.$element.addClass( 'oo-ui-indicatorWidget' );
8783 };
8784
8785 /* Setup */
8786
8787 OO.inheritClass( OO.ui.IndicatorWidget, OO.ui.Widget );
8788 OO.mixinClass( OO.ui.IndicatorWidget, OO.ui.IndicatorElement );
8789 OO.mixinClass( OO.ui.IndicatorWidget, OO.ui.TitledElement );
8790
8791 /* Static Properties */
8792
8793 OO.ui.IndicatorWidget.static.tagName = 'span';
8794
8795 /**
8796 * Inline menu of options.
8797 *
8798 * Inline menus provide a control for accessing a menu and compose a menu within the widget, which
8799 * can be accessed using the #getMenu method.
8800 *
8801 * Use with OO.ui.MenuItemWidget.
8802 *
8803 * @class
8804 * @extends OO.ui.Widget
8805 * @mixins OO.ui.IconElement
8806 * @mixins OO.ui.IndicatorElement
8807 * @mixins OO.ui.LabelElement
8808 * @mixins OO.ui.TitledElement
8809 *
8810 * @constructor
8811 * @param {Object} [config] Configuration options
8812 * @cfg {Object} [menu] Configuration options to pass to menu widget
8813 */
8814 OO.ui.InlineMenuWidget = function OoUiInlineMenuWidget( config ) {
8815 // Configuration initialization
8816 config = $.extend( { indicator: 'down' }, config );
8817
8818 // Parent constructor
8819 OO.ui.InlineMenuWidget.super.call( this, config );
8820
8821 // Mixin constructors
8822 OO.ui.IconElement.call( this, config );
8823 OO.ui.IndicatorElement.call( this, config );
8824 OO.ui.LabelElement.call( this, config );
8825 OO.ui.TitledElement.call( this, $.extend( {}, config, { $titled: this.$label } ) );
8826
8827 // Properties
8828 this.menu = new OO.ui.MenuWidget( $.extend( { $: this.$, widget: this }, config.menu ) );
8829 this.$handle = this.$( '<span>' );
8830
8831 // Events
8832 this.$element.on( { click: this.onClick.bind( this ) } );
8833 this.menu.connect( this, { select: 'onMenuSelect' } );
8834
8835 // Initialization
8836 this.$handle
8837 .addClass( 'oo-ui-inlineMenuWidget-handle' )
8838 .append( this.$icon, this.$label, this.$indicator );
8839 this.$element
8840 .addClass( 'oo-ui-inlineMenuWidget' )
8841 .append( this.$handle, this.menu.$element );
8842 };
8843
8844 /* Setup */
8845
8846 OO.inheritClass( OO.ui.InlineMenuWidget, OO.ui.Widget );
8847 OO.mixinClass( OO.ui.InlineMenuWidget, OO.ui.IconElement );
8848 OO.mixinClass( OO.ui.InlineMenuWidget, OO.ui.IndicatorElement );
8849 OO.mixinClass( OO.ui.InlineMenuWidget, OO.ui.LabelElement );
8850 OO.mixinClass( OO.ui.InlineMenuWidget, OO.ui.TitledElement );
8851
8852 /* Methods */
8853
8854 /**
8855 * Get the menu.
8856 *
8857 * @return {OO.ui.MenuWidget} Menu of widget
8858 */
8859 OO.ui.InlineMenuWidget.prototype.getMenu = function () {
8860 return this.menu;
8861 };
8862
8863 /**
8864 * Handles menu select events.
8865 *
8866 * @param {OO.ui.MenuItemWidget} item Selected menu item
8867 */
8868 OO.ui.InlineMenuWidget.prototype.onMenuSelect = function ( item ) {
8869 var selectedLabel;
8870
8871 if ( !item ) {
8872 return;
8873 }
8874
8875 selectedLabel = item.getLabel();
8876
8877 // If the label is a DOM element, clone it, because setLabel will append() it
8878 if ( selectedLabel instanceof jQuery ) {
8879 selectedLabel = selectedLabel.clone();
8880 }
8881
8882 this.setLabel( selectedLabel );
8883 };
8884
8885 /**
8886 * Handles mouse click events.
8887 *
8888 * @param {jQuery.Event} e Mouse click event
8889 */
8890 OO.ui.InlineMenuWidget.prototype.onClick = function ( e ) {
8891 // Skip clicks within the menu
8892 if ( $.contains( this.menu.$element[0], e.target ) ) {
8893 return;
8894 }
8895
8896 if ( !this.isDisabled() ) {
8897 if ( this.menu.isVisible() ) {
8898 this.menu.toggle( false );
8899 } else {
8900 this.menu.toggle( true );
8901 }
8902 }
8903 return false;
8904 };
8905
8906 /**
8907 * Base class for input widgets.
8908 *
8909 * @abstract
8910 * @class
8911 * @extends OO.ui.Widget
8912 * @mixins OO.ui.FlaggedElement
8913 *
8914 * @constructor
8915 * @param {Object} [config] Configuration options
8916 * @cfg {string} [name=''] HTML input name
8917 * @cfg {string} [value=''] Input value
8918 * @cfg {boolean} [readOnly=false] Prevent changes
8919 * @cfg {Function} [inputFilter] Filter function to apply to the input. Takes a string argument and returns a string.
8920 */
8921 OO.ui.InputWidget = function OoUiInputWidget( config ) {
8922 // Config intialization
8923 config = $.extend( { readOnly: false }, config );
8924
8925 // Parent constructor
8926 OO.ui.InputWidget.super.call( this, config );
8927
8928 // Mixin constructors
8929 OO.ui.FlaggedElement.call( this, config );
8930
8931 // Properties
8932 this.$input = this.getInputElement( config );
8933 this.value = '';
8934 this.readOnly = false;
8935 this.inputFilter = config.inputFilter;
8936
8937 // Events
8938 this.$input.on( 'keydown mouseup cut paste change input select', this.onEdit.bind( this ) );
8939
8940 // Initialization
8941 this.$input
8942 .attr( 'name', config.name )
8943 .prop( 'disabled', this.isDisabled() );
8944 this.setReadOnly( config.readOnly );
8945 this.$element.addClass( 'oo-ui-inputWidget' ).append( this.$input );
8946 this.setValue( config.value );
8947 };
8948
8949 /* Setup */
8950
8951 OO.inheritClass( OO.ui.InputWidget, OO.ui.Widget );
8952 OO.mixinClass( OO.ui.InputWidget, OO.ui.FlaggedElement );
8953
8954 /* Events */
8955
8956 /**
8957 * @event change
8958 * @param {string} value
8959 */
8960
8961 /* Methods */
8962
8963 /**
8964 * Get input element.
8965 *
8966 * @param {Object} [config] Configuration options
8967 * @return {jQuery} Input element
8968 */
8969 OO.ui.InputWidget.prototype.getInputElement = function () {
8970 return this.$( '<input>' );
8971 };
8972
8973 /**
8974 * Handle potentially value-changing events.
8975 *
8976 * @param {jQuery.Event} e Key down, mouse up, cut, paste, change, input, or select event
8977 */
8978 OO.ui.InputWidget.prototype.onEdit = function () {
8979 var widget = this;
8980 if ( !this.isDisabled() ) {
8981 // Allow the stack to clear so the value will be updated
8982 setTimeout( function () {
8983 widget.setValue( widget.$input.val() );
8984 } );
8985 }
8986 };
8987
8988 /**
8989 * Get the value of the input.
8990 *
8991 * @return {string} Input value
8992 */
8993 OO.ui.InputWidget.prototype.getValue = function () {
8994 return this.value;
8995 };
8996
8997 /**
8998 * Sets the direction of the current input, either RTL or LTR
8999 *
9000 * @param {boolean} isRTL
9001 */
9002 OO.ui.InputWidget.prototype.setRTL = function ( isRTL ) {
9003 if ( isRTL ) {
9004 this.$input.removeClass( 'oo-ui-ltr' );
9005 this.$input.addClass( 'oo-ui-rtl' );
9006 } else {
9007 this.$input.removeClass( 'oo-ui-rtl' );
9008 this.$input.addClass( 'oo-ui-ltr' );
9009 }
9010 };
9011
9012 /**
9013 * Set the value of the input.
9014 *
9015 * @param {string} value New value
9016 * @fires change
9017 * @chainable
9018 */
9019 OO.ui.InputWidget.prototype.setValue = function ( value ) {
9020 value = this.sanitizeValue( value );
9021 if ( this.value !== value ) {
9022 this.value = value;
9023 this.emit( 'change', this.value );
9024 }
9025 // Update the DOM if it has changed. Note that with sanitizeValue, it
9026 // is possible for the DOM value to change without this.value changing.
9027 if ( this.$input.val() !== this.value ) {
9028 this.$input.val( this.value );
9029 }
9030 return this;
9031 };
9032
9033 /**
9034 * Sanitize incoming value.
9035 *
9036 * Ensures value is a string, and converts undefined and null to empty strings.
9037 *
9038 * @param {string} value Original value
9039 * @return {string} Sanitized value
9040 */
9041 OO.ui.InputWidget.prototype.sanitizeValue = function ( value ) {
9042 if ( value === undefined || value === null ) {
9043 return '';
9044 } else if ( this.inputFilter ) {
9045 return this.inputFilter( String( value ) );
9046 } else {
9047 return String( value );
9048 }
9049 };
9050
9051 /**
9052 * Simulate the behavior of clicking on a label bound to this input.
9053 */
9054 OO.ui.InputWidget.prototype.simulateLabelClick = function () {
9055 if ( !this.isDisabled() ) {
9056 if ( this.$input.is( ':checkbox,:radio' ) ) {
9057 this.$input.click();
9058 } else if ( this.$input.is( ':input' ) ) {
9059 this.$input[0].focus();
9060 }
9061 }
9062 };
9063
9064 /**
9065 * Check if the widget is read-only.
9066 *
9067 * @return {boolean}
9068 */
9069 OO.ui.InputWidget.prototype.isReadOnly = function () {
9070 return this.readOnly;
9071 };
9072
9073 /**
9074 * Set the read-only state of the widget.
9075 *
9076 * This should probably change the widgets's appearance and prevent it from being used.
9077 *
9078 * @param {boolean} state Make input read-only
9079 * @chainable
9080 */
9081 OO.ui.InputWidget.prototype.setReadOnly = function ( state ) {
9082 this.readOnly = !!state;
9083 this.$input.prop( 'readOnly', this.readOnly );
9084 return this;
9085 };
9086
9087 /**
9088 * @inheritdoc
9089 */
9090 OO.ui.InputWidget.prototype.setDisabled = function ( state ) {
9091 OO.ui.InputWidget.super.prototype.setDisabled.call( this, state );
9092 if ( this.$input ) {
9093 this.$input.prop( 'disabled', this.isDisabled() );
9094 }
9095 return this;
9096 };
9097
9098 /**
9099 * Focus the input.
9100 *
9101 * @chainable
9102 */
9103 OO.ui.InputWidget.prototype.focus = function () {
9104 this.$input[0].focus();
9105 return this;
9106 };
9107
9108 /**
9109 * Blur the input.
9110 *
9111 * @chainable
9112 */
9113 OO.ui.InputWidget.prototype.blur = function () {
9114 this.$input[0].blur();
9115 return this;
9116 };
9117
9118 /**
9119 * A button that is an input widget. Intended to be used within FormLayouts.
9120 *
9121 * @class
9122 * @extends OO.ui.InputWidget
9123 * @mixins OO.ui.ButtonElement
9124 * @mixins OO.ui.IconElement
9125 * @mixins OO.ui.IndicatorElement
9126 * @mixins OO.ui.LabelElement
9127 * @mixins OO.ui.TitledElement
9128 * @mixins OO.ui.FlaggedElement
9129 *
9130 * @constructor
9131 * @param {Object} [config] Configuration options
9132 * @cfg {string} [type='button'] HTML tag `type` attribute, may be 'button', 'submit' or 'reset'
9133 * @cfg {boolean} [useInputTag=false] Whether to use `<input/>` rather than `<button/>`. Only useful
9134 * if you need IE 6 support in a form with multiple buttons. By using this option, you sacrifice
9135 * icons and indicators, as well as the ability to have non-plaintext label or a label different
9136 * from the value.
9137 */
9138 OO.ui.ButtonInputWidget = function OoUiButtonInputWidget( config ) {
9139 // Configuration initialization
9140 config = $.extend( { type: 'button', useInputTag: false }, config );
9141
9142 // Parent constructor
9143 OO.ui.ButtonInputWidget.super.call( this, config );
9144
9145 // Mixin constructors
9146 OO.ui.ButtonElement.call( this, $.extend( {}, config, { $button: this.$input } ) );
9147 OO.ui.IconElement.call( this, config );
9148 OO.ui.IndicatorElement.call( this, config );
9149 OO.ui.LabelElement.call( this, config );
9150 OO.ui.TitledElement.call( this, $.extend( {}, config, { $titled: this.$input } ) );
9151 OO.ui.FlaggedElement.call( this, config );
9152
9153 // Properties
9154 this.useInputTag = config.useInputTag;
9155
9156 // Events
9157 this.$input.on( {
9158 click: this.onClick.bind( this ),
9159 keypress: this.onKeyPress.bind( this )
9160 } );
9161
9162 // Initialization
9163 if ( !config.useInputTag ) {
9164 this.$input.append( this.$icon, this.$label, this.$indicator );
9165 }
9166 this.$element.addClass( 'oo-ui-buttonInputWidget' );
9167 };
9168
9169 /* Setup */
9170
9171 OO.inheritClass( OO.ui.ButtonInputWidget, OO.ui.InputWidget );
9172 OO.mixinClass( OO.ui.ButtonInputWidget, OO.ui.ButtonElement );
9173 OO.mixinClass( OO.ui.ButtonInputWidget, OO.ui.IconElement );
9174 OO.mixinClass( OO.ui.ButtonInputWidget, OO.ui.IndicatorElement );
9175 OO.mixinClass( OO.ui.ButtonInputWidget, OO.ui.LabelElement );
9176 OO.mixinClass( OO.ui.ButtonInputWidget, OO.ui.TitledElement );
9177 OO.mixinClass( OO.ui.ButtonInputWidget, OO.ui.FlaggedElement );
9178
9179 /* Events */
9180
9181 /**
9182 * @event click
9183 */
9184
9185 /* Methods */
9186
9187 /**
9188 * Get input element.
9189 *
9190 * @param {Object} [config] Configuration options
9191 * @return {jQuery} Input element
9192 */
9193 OO.ui.ButtonInputWidget.prototype.getInputElement = function ( config ) {
9194 var html = '<' + ( config.useInputTag ? 'input' : 'button' ) + ' type="' + config.type + '">';
9195 return this.$( html );
9196 };
9197
9198 /**
9199 * Set the label.
9200 *
9201 * Overridden to support setting the 'value' of `<input/>` elements.
9202 *
9203 * @param {jQuery|string|Function|null} label Label nodes; text; a function that returns nodes or
9204 * text; or null for no label
9205 * @chainable
9206 */
9207 OO.ui.ButtonInputWidget.prototype.setLabel = function ( label ) {
9208 OO.ui.LabelElement.prototype.setLabel.call( this, label );
9209
9210 if ( this.useInputTag ) {
9211 if ( typeof label === 'function' ) {
9212 label = OO.ui.resolveMsg( label );
9213 }
9214 if ( label instanceof jQuery ) {
9215 label = label.text();
9216 }
9217 if ( !label ) {
9218 label = '';
9219 }
9220 this.$input.val( label );
9221 }
9222
9223 return this;
9224 };
9225
9226 /**
9227 * Handles mouse click events.
9228 *
9229 * @param {jQuery.Event} e Mouse click event
9230 * @fires click
9231 */
9232 OO.ui.ButtonInputWidget.prototype.onClick = function () {
9233 if ( !this.isDisabled() ) {
9234 this.emit( 'click' );
9235 }
9236 return false;
9237 };
9238
9239 /**
9240 * Handles keypress events.
9241 *
9242 * @param {jQuery.Event} e Keypress event
9243 * @fires click
9244 */
9245 OO.ui.ButtonInputWidget.prototype.onKeyPress = function ( e ) {
9246 if ( !this.isDisabled() && ( e.which === OO.ui.Keys.SPACE || e.which === OO.ui.Keys.ENTER ) ) {
9247 this.emit( 'click' );
9248 }
9249 return false;
9250 };
9251
9252 /**
9253 * Checkbox input widget.
9254 *
9255 * @class
9256 * @extends OO.ui.InputWidget
9257 *
9258 * @constructor
9259 * @param {Object} [config] Configuration options
9260 */
9261 OO.ui.CheckboxInputWidget = function OoUiCheckboxInputWidget( config ) {
9262 // Parent constructor
9263 OO.ui.CheckboxInputWidget.super.call( this, config );
9264
9265 // Initialization
9266 this.$element.addClass( 'oo-ui-checkboxInputWidget' );
9267 };
9268
9269 /* Setup */
9270
9271 OO.inheritClass( OO.ui.CheckboxInputWidget, OO.ui.InputWidget );
9272
9273 /* Methods */
9274
9275 /**
9276 * Get input element.
9277 *
9278 * @return {jQuery} Input element
9279 */
9280 OO.ui.CheckboxInputWidget.prototype.getInputElement = function () {
9281 return this.$( '<input type="checkbox" />' );
9282 };
9283
9284 /**
9285 * Get checked state of the checkbox
9286 *
9287 * @return {boolean} If the checkbox is checked
9288 */
9289 OO.ui.CheckboxInputWidget.prototype.getValue = function () {
9290 return this.value;
9291 };
9292
9293 /**
9294 * Set checked state of the checkbox
9295 *
9296 * @param {boolean} value New value
9297 */
9298 OO.ui.CheckboxInputWidget.prototype.setValue = function ( value ) {
9299 value = !!value;
9300 if ( this.value !== value ) {
9301 this.value = value;
9302 this.$input.prop( 'checked', this.value );
9303 this.emit( 'change', this.value );
9304 }
9305 };
9306
9307 /**
9308 * @inheritdoc
9309 */
9310 OO.ui.CheckboxInputWidget.prototype.onEdit = function () {
9311 var widget = this;
9312 if ( !this.isDisabled() ) {
9313 // Allow the stack to clear so the value will be updated
9314 setTimeout( function () {
9315 widget.setValue( widget.$input.prop( 'checked' ) );
9316 } );
9317 }
9318 };
9319
9320 /**
9321 * Input widget with a text field.
9322 *
9323 * @class
9324 * @extends OO.ui.InputWidget
9325 * @mixins OO.ui.IconElement
9326 * @mixins OO.ui.IndicatorElement
9327 * @mixins OO.ui.PendingElement
9328 *
9329 * @constructor
9330 * @param {Object} [config] Configuration options
9331 * @cfg {string} [type='text'] HTML tag `type` attribute
9332 * @cfg {string} [placeholder] Placeholder text
9333 * @cfg {boolean} [multiline=false] Allow multiple lines of text
9334 * @cfg {boolean} [autosize=false] Automatically resize to fit content
9335 * @cfg {boolean} [maxRows=10] Maximum number of rows to make visible when autosizing
9336 * @cfg {RegExp|string} [validate] Regular expression (or symbolic name referencing
9337 * one, see #static-validationPatterns)
9338 */
9339 OO.ui.TextInputWidget = function OoUiTextInputWidget( config ) {
9340 // Configuration initialization
9341 config = config || {};
9342
9343 // Parent constructor
9344 OO.ui.TextInputWidget.super.call( this, config );
9345
9346 // Mixin constructors
9347 OO.ui.IconElement.call( this, config );
9348 OO.ui.IndicatorElement.call( this, config );
9349 OO.ui.PendingElement.call( this, config );
9350
9351 // Properties
9352 this.multiline = !!config.multiline;
9353 this.autosize = !!config.autosize;
9354 this.maxRows = config.maxRows !== undefined ? config.maxRows : 10;
9355 this.validate = null;
9356
9357 this.setValidation( config.validate );
9358
9359 // Events
9360 this.$input.on( {
9361 keypress: this.onKeyPress.bind( this ),
9362 blur: this.setValidityFlag.bind( this )
9363 } );
9364 this.$element.on( 'DOMNodeInsertedIntoDocument', this.onElementAttach.bind( this ) );
9365 this.$icon.on( 'mousedown', this.onIconMouseDown.bind( this ) );
9366 this.$indicator.on( 'mousedown', this.onIndicatorMouseDown.bind( this ) );
9367
9368 // Initialization
9369 this.$element
9370 .addClass( 'oo-ui-textInputWidget' )
9371 .append( this.$icon, this.$indicator );
9372 if ( config.placeholder ) {
9373 this.$input.attr( 'placeholder', config.placeholder );
9374 }
9375 this.$element.attr( 'role', 'textbox' );
9376 };
9377
9378 /* Setup */
9379
9380 OO.inheritClass( OO.ui.TextInputWidget, OO.ui.InputWidget );
9381 OO.mixinClass( OO.ui.TextInputWidget, OO.ui.IconElement );
9382 OO.mixinClass( OO.ui.TextInputWidget, OO.ui.IndicatorElement );
9383 OO.mixinClass( OO.ui.TextInputWidget, OO.ui.PendingElement );
9384
9385 /* Static properties */
9386
9387 OO.ui.TextInputWidget.static.validationPatterns = {
9388 'non-empty': /.+/,
9389 integer: /^\d+$/
9390 };
9391
9392 /* Events */
9393
9394 /**
9395 * User presses enter inside the text box.
9396 *
9397 * Not called if input is multiline.
9398 *
9399 * @event enter
9400 */
9401
9402 /**
9403 * User clicks the icon.
9404 *
9405 * @event icon
9406 */
9407
9408 /**
9409 * User clicks the indicator.
9410 *
9411 * @event indicator
9412 */
9413
9414 /* Methods */
9415
9416 /**
9417 * Handle icon mouse down events.
9418 *
9419 * @param {jQuery.Event} e Mouse down event
9420 * @fires icon
9421 */
9422 OO.ui.TextInputWidget.prototype.onIconMouseDown = function ( e ) {
9423 if ( e.which === 1 ) {
9424 this.$input[0].focus();
9425 this.emit( 'icon' );
9426 return false;
9427 }
9428 };
9429
9430 /**
9431 * Handle indicator mouse down events.
9432 *
9433 * @param {jQuery.Event} e Mouse down event
9434 * @fires indicator
9435 */
9436 OO.ui.TextInputWidget.prototype.onIndicatorMouseDown = function ( e ) {
9437 if ( e.which === 1 ) {
9438 this.$input[0].focus();
9439 this.emit( 'indicator' );
9440 return false;
9441 }
9442 };
9443
9444 /**
9445 * Handle key press events.
9446 *
9447 * @param {jQuery.Event} e Key press event
9448 * @fires enter If enter key is pressed and input is not multiline
9449 */
9450 OO.ui.TextInputWidget.prototype.onKeyPress = function ( e ) {
9451 if ( e.which === OO.ui.Keys.ENTER && !this.multiline ) {
9452 this.emit( 'enter' );
9453 }
9454 };
9455
9456 /**
9457 * Handle element attach events.
9458 *
9459 * @param {jQuery.Event} e Element attach event
9460 */
9461 OO.ui.TextInputWidget.prototype.onElementAttach = function () {
9462 this.adjustSize();
9463 };
9464
9465 /**
9466 * @inheritdoc
9467 */
9468 OO.ui.TextInputWidget.prototype.onEdit = function () {
9469 this.adjustSize();
9470
9471 // Parent method
9472 return OO.ui.TextInputWidget.super.prototype.onEdit.call( this );
9473 };
9474
9475 /**
9476 * @inheritdoc
9477 */
9478 OO.ui.TextInputWidget.prototype.setValue = function ( value ) {
9479 // Parent method
9480 OO.ui.TextInputWidget.super.prototype.setValue.call( this, value );
9481
9482 this.setValidityFlag();
9483 this.adjustSize();
9484 return this;
9485 };
9486
9487 /**
9488 * Automatically adjust the size of the text input.
9489 *
9490 * This only affects multi-line inputs that are auto-sized.
9491 *
9492 * @chainable
9493 */
9494 OO.ui.TextInputWidget.prototype.adjustSize = function () {
9495 var $clone, scrollHeight, innerHeight, outerHeight, maxInnerHeight, measurementError, idealHeight;
9496
9497 if ( this.multiline && this.autosize ) {
9498 $clone = this.$input.clone()
9499 .val( this.$input.val() )
9500 // Set inline height property to 0 to measure scroll height
9501 .css( { height: 0 } )
9502 .insertAfter( this.$input );
9503 scrollHeight = $clone[0].scrollHeight;
9504 // Remove inline height property to measure natural heights
9505 $clone.css( 'height', '' );
9506 innerHeight = $clone.innerHeight();
9507 outerHeight = $clone.outerHeight();
9508 // Measure max rows height
9509 $clone.attr( 'rows', this.maxRows ).css( 'height', 'auto' ).val( '' );
9510 maxInnerHeight = $clone.innerHeight();
9511 // Difference between reported innerHeight and scrollHeight with no scrollbars present
9512 // Equals 1 on Blink-based browsers and 0 everywhere else
9513 measurementError = maxInnerHeight - $clone[0].scrollHeight;
9514 $clone.remove();
9515 idealHeight = Math.min( maxInnerHeight, scrollHeight + measurementError );
9516 // Only apply inline height when expansion beyond natural height is needed
9517 if ( idealHeight > innerHeight ) {
9518 // Use the difference between the inner and outer height as a buffer
9519 this.$input.css( 'height', idealHeight + ( outerHeight - innerHeight ) );
9520 } else {
9521 this.$input.css( 'height', '' );
9522 }
9523 }
9524 return this;
9525 };
9526
9527 /**
9528 * Get input element.
9529 *
9530 * @param {Object} [config] Configuration options
9531 * @return {jQuery} Input element
9532 */
9533 OO.ui.TextInputWidget.prototype.getInputElement = function ( config ) {
9534 var type = config.type || 'text';
9535 return config.multiline ? this.$( '<textarea>' ) : this.$( '<input type="' + type + '" />' );
9536 };
9537
9538 /**
9539 * Check if input supports multiple lines.
9540 *
9541 * @return {boolean}
9542 */
9543 OO.ui.TextInputWidget.prototype.isMultiline = function () {
9544 return !!this.multiline;
9545 };
9546
9547 /**
9548 * Check if input automatically adjusts its size.
9549 *
9550 * @return {boolean}
9551 */
9552 OO.ui.TextInputWidget.prototype.isAutosizing = function () {
9553 return !!this.autosize;
9554 };
9555
9556 /**
9557 * Select the contents of the input.
9558 *
9559 * @chainable
9560 */
9561 OO.ui.TextInputWidget.prototype.select = function () {
9562 this.$input.select();
9563 return this;
9564 };
9565
9566 /**
9567 * Sets the validation pattern to use.
9568 * @param {RegExp|string|null} validate Regular expression (or symbolic name referencing
9569 * one, see #static-validationPatterns)
9570 */
9571 OO.ui.TextInputWidget.prototype.setValidation = function ( validate ) {
9572 if ( validate instanceof RegExp ) {
9573 this.validate = validate;
9574 } else {
9575 this.validate = this.constructor.static.validationPatterns[validate] || /.*/;
9576 }
9577 };
9578
9579 /**
9580 * Sets the 'invalid' flag appropriately.
9581 */
9582 OO.ui.TextInputWidget.prototype.setValidityFlag = function () {
9583 var widget = this;
9584 this.isValid().done( function ( valid ) {
9585 widget.setFlags( { invalid: !valid } );
9586 } );
9587 };
9588
9589 /**
9590 * Returns whether or not the current value is considered valid, according to the
9591 * supplied validation pattern.
9592 *
9593 * @return {jQuery.Deferred}
9594 */
9595 OO.ui.TextInputWidget.prototype.isValid = function () {
9596 return $.Deferred().resolve( !!this.getValue().match( this.validate ) ).promise();
9597 };
9598
9599 /**
9600 * Text input with a menu of optional values.
9601 *
9602 * @class
9603 * @extends OO.ui.Widget
9604 *
9605 * @constructor
9606 * @param {Object} [config] Configuration options
9607 * @cfg {Object} [menu] Configuration options to pass to menu widget
9608 * @cfg {Object} [input] Configuration options to pass to input widget
9609 * @cfg {jQuery} [$overlay] Overlay layer; defaults to relative positioning
9610 */
9611 OO.ui.ComboBoxWidget = function OoUiComboBoxWidget( config ) {
9612 // Configuration initialization
9613 config = config || {};
9614
9615 // Parent constructor
9616 OO.ui.ComboBoxWidget.super.call( this, config );
9617
9618 // Properties
9619 this.$overlay = config.$overlay || this.$element;
9620 this.input = new OO.ui.TextInputWidget( $.extend(
9621 { $: this.$, indicator: 'down', disabled: this.isDisabled() },
9622 config.input
9623 ) );
9624 this.menu = new OO.ui.TextInputMenuWidget( this.input, $.extend(
9625 {
9626 $: OO.ui.Element.getJQuery( this.$overlay ),
9627 widget: this,
9628 input: this.input,
9629 disabled: this.isDisabled()
9630 },
9631 config.menu
9632 ) );
9633
9634 // Events
9635 this.input.connect( this, {
9636 change: 'onInputChange',
9637 indicator: 'onInputIndicator',
9638 enter: 'onInputEnter'
9639 } );
9640 this.menu.connect( this, {
9641 choose: 'onMenuChoose',
9642 add: 'onMenuItemsChange',
9643 remove: 'onMenuItemsChange'
9644 } );
9645
9646 // Initialization
9647 this.$element.addClass( 'oo-ui-comboBoxWidget' ).append( this.input.$element );
9648 this.$overlay.append( this.menu.$element );
9649 this.onMenuItemsChange();
9650 };
9651
9652 /* Setup */
9653
9654 OO.inheritClass( OO.ui.ComboBoxWidget, OO.ui.Widget );
9655
9656 /* Methods */
9657
9658 /**
9659 * Handle input change events.
9660 *
9661 * @param {string} value New value
9662 */
9663 OO.ui.ComboBoxWidget.prototype.onInputChange = function ( value ) {
9664 var match = this.menu.getItemFromData( value );
9665
9666 this.menu.selectItem( match );
9667
9668 if ( !this.isDisabled() ) {
9669 this.menu.toggle( true );
9670 }
9671 };
9672
9673 /**
9674 * Handle input indicator events.
9675 */
9676 OO.ui.ComboBoxWidget.prototype.onInputIndicator = function () {
9677 if ( !this.isDisabled() ) {
9678 this.menu.toggle();
9679 }
9680 };
9681
9682 /**
9683 * Handle input enter events.
9684 */
9685 OO.ui.ComboBoxWidget.prototype.onInputEnter = function () {
9686 if ( !this.isDisabled() ) {
9687 this.menu.toggle( false );
9688 }
9689 };
9690
9691 /**
9692 * Handle menu choose events.
9693 *
9694 * @param {OO.ui.OptionWidget} item Chosen item
9695 */
9696 OO.ui.ComboBoxWidget.prototype.onMenuChoose = function ( item ) {
9697 if ( item ) {
9698 this.input.setValue( item.getData() );
9699 }
9700 };
9701
9702 /**
9703 * Handle menu item change events.
9704 */
9705 OO.ui.ComboBoxWidget.prototype.onMenuItemsChange = function () {
9706 this.$element.toggleClass( 'oo-ui-comboBoxWidget-empty', this.menu.isEmpty() );
9707 };
9708
9709 /**
9710 * @inheritdoc
9711 */
9712 OO.ui.ComboBoxWidget.prototype.setDisabled = function ( disabled ) {
9713 // Parent method
9714 OO.ui.ComboBoxWidget.super.prototype.setDisabled.call( this, disabled );
9715
9716 if ( this.input ) {
9717 this.input.setDisabled( this.isDisabled() );
9718 }
9719 if ( this.menu ) {
9720 this.menu.setDisabled( this.isDisabled() );
9721 }
9722
9723 return this;
9724 };
9725
9726 /**
9727 * Label widget.
9728 *
9729 * @class
9730 * @extends OO.ui.Widget
9731 * @mixins OO.ui.LabelElement
9732 *
9733 * @constructor
9734 * @param {Object} [config] Configuration options
9735 */
9736 OO.ui.LabelWidget = function OoUiLabelWidget( config ) {
9737 // Config intialization
9738 config = config || {};
9739
9740 // Parent constructor
9741 OO.ui.LabelWidget.super.call( this, config );
9742
9743 // Mixin constructors
9744 OO.ui.LabelElement.call( this, $.extend( {}, config, { $label: this.$element } ) );
9745 OO.ui.TitledElement.call( this, config );
9746
9747 // Properties
9748 this.input = config.input;
9749
9750 // Events
9751 if ( this.input instanceof OO.ui.InputWidget ) {
9752 this.$element.on( 'click', this.onClick.bind( this ) );
9753 }
9754
9755 // Initialization
9756 this.$element.addClass( 'oo-ui-labelWidget' );
9757 };
9758
9759 /* Setup */
9760
9761 OO.inheritClass( OO.ui.LabelWidget, OO.ui.Widget );
9762 OO.mixinClass( OO.ui.LabelWidget, OO.ui.LabelElement );
9763 OO.mixinClass( OO.ui.LabelWidget, OO.ui.TitledElement );
9764
9765 /* Static Properties */
9766
9767 OO.ui.LabelWidget.static.tagName = 'span';
9768
9769 /* Methods */
9770
9771 /**
9772 * Handles label mouse click events.
9773 *
9774 * @param {jQuery.Event} e Mouse click event
9775 */
9776 OO.ui.LabelWidget.prototype.onClick = function () {
9777 this.input.simulateLabelClick();
9778 return false;
9779 };
9780
9781 /**
9782 * Generic option widget for use with OO.ui.SelectWidget.
9783 *
9784 * @class
9785 * @extends OO.ui.Widget
9786 * @mixins OO.ui.LabelElement
9787 * @mixins OO.ui.FlaggedElement
9788 *
9789 * @constructor
9790 * @param {Mixed} data Option data
9791 * @param {Object} [config] Configuration options
9792 * @cfg {string} [rel] Value for `rel` attribute in DOM, allowing per-option styling
9793 */
9794 OO.ui.OptionWidget = function OoUiOptionWidget( data, config ) {
9795 // Config intialization
9796 config = config || {};
9797
9798 // Parent constructor
9799 OO.ui.OptionWidget.super.call( this, config );
9800
9801 // Mixin constructors
9802 OO.ui.ItemWidget.call( this );
9803 OO.ui.LabelElement.call( this, config );
9804 OO.ui.FlaggedElement.call( this, config );
9805
9806 // Properties
9807 this.data = data;
9808 this.selected = false;
9809 this.highlighted = false;
9810 this.pressed = false;
9811
9812 // Initialization
9813 this.$element
9814 .data( 'oo-ui-optionWidget', this )
9815 .attr( 'rel', config.rel )
9816 .attr( 'role', 'option' )
9817 .addClass( 'oo-ui-optionWidget' )
9818 .append( this.$label );
9819 this.$element
9820 .prepend( this.$icon )
9821 .append( this.$indicator );
9822 };
9823
9824 /* Setup */
9825
9826 OO.inheritClass( OO.ui.OptionWidget, OO.ui.Widget );
9827 OO.mixinClass( OO.ui.OptionWidget, OO.ui.ItemWidget );
9828 OO.mixinClass( OO.ui.OptionWidget, OO.ui.LabelElement );
9829 OO.mixinClass( OO.ui.OptionWidget, OO.ui.FlaggedElement );
9830
9831 /* Static Properties */
9832
9833 OO.ui.OptionWidget.static.selectable = true;
9834
9835 OO.ui.OptionWidget.static.highlightable = true;
9836
9837 OO.ui.OptionWidget.static.pressable = true;
9838
9839 OO.ui.OptionWidget.static.scrollIntoViewOnSelect = false;
9840
9841 /* Methods */
9842
9843 /**
9844 * Check if option can be selected.
9845 *
9846 * @return {boolean} Item is selectable
9847 */
9848 OO.ui.OptionWidget.prototype.isSelectable = function () {
9849 return this.constructor.static.selectable && !this.isDisabled();
9850 };
9851
9852 /**
9853 * Check if option can be highlighted.
9854 *
9855 * @return {boolean} Item is highlightable
9856 */
9857 OO.ui.OptionWidget.prototype.isHighlightable = function () {
9858 return this.constructor.static.highlightable && !this.isDisabled();
9859 };
9860
9861 /**
9862 * Check if option can be pressed.
9863 *
9864 * @return {boolean} Item is pressable
9865 */
9866 OO.ui.OptionWidget.prototype.isPressable = function () {
9867 return this.constructor.static.pressable && !this.isDisabled();
9868 };
9869
9870 /**
9871 * Check if option is selected.
9872 *
9873 * @return {boolean} Item is selected
9874 */
9875 OO.ui.OptionWidget.prototype.isSelected = function () {
9876 return this.selected;
9877 };
9878
9879 /**
9880 * Check if option is highlighted.
9881 *
9882 * @return {boolean} Item is highlighted
9883 */
9884 OO.ui.OptionWidget.prototype.isHighlighted = function () {
9885 return this.highlighted;
9886 };
9887
9888 /**
9889 * Check if option is pressed.
9890 *
9891 * @return {boolean} Item is pressed
9892 */
9893 OO.ui.OptionWidget.prototype.isPressed = function () {
9894 return this.pressed;
9895 };
9896
9897 /**
9898 * Set selected state.
9899 *
9900 * @param {boolean} [state=false] Select option
9901 * @chainable
9902 */
9903 OO.ui.OptionWidget.prototype.setSelected = function ( state ) {
9904 if ( this.constructor.static.selectable ) {
9905 this.selected = !!state;
9906 this.$element.toggleClass( 'oo-ui-optionWidget-selected', state );
9907 if ( state && this.constructor.static.scrollIntoViewOnSelect ) {
9908 this.scrollElementIntoView();
9909 }
9910 this.updateThemeClasses();
9911 }
9912 return this;
9913 };
9914
9915 /**
9916 * Set highlighted state.
9917 *
9918 * @param {boolean} [state=false] Highlight option
9919 * @chainable
9920 */
9921 OO.ui.OptionWidget.prototype.setHighlighted = function ( state ) {
9922 if ( this.constructor.static.highlightable ) {
9923 this.highlighted = !!state;
9924 this.$element.toggleClass( 'oo-ui-optionWidget-highlighted', state );
9925 this.updateThemeClasses();
9926 }
9927 return this;
9928 };
9929
9930 /**
9931 * Set pressed state.
9932 *
9933 * @param {boolean} [state=false] Press option
9934 * @chainable
9935 */
9936 OO.ui.OptionWidget.prototype.setPressed = function ( state ) {
9937 if ( this.constructor.static.pressable ) {
9938 this.pressed = !!state;
9939 this.$element.toggleClass( 'oo-ui-optionWidget-pressed', state );
9940 this.updateThemeClasses();
9941 }
9942 return this;
9943 };
9944
9945 /**
9946 * Make the option's highlight flash.
9947 *
9948 * While flashing, the visual style of the pressed state is removed if present.
9949 *
9950 * @return {jQuery.Promise} Promise resolved when flashing is done
9951 */
9952 OO.ui.OptionWidget.prototype.flash = function () {
9953 var widget = this,
9954 $element = this.$element,
9955 deferred = $.Deferred();
9956
9957 if ( !this.isDisabled() && this.constructor.static.pressable ) {
9958 $element.removeClass( 'oo-ui-optionWidget-highlighted oo-ui-optionWidget-pressed' );
9959 setTimeout( function () {
9960 // Restore original classes
9961 $element
9962 .toggleClass( 'oo-ui-optionWidget-highlighted', widget.highlighted )
9963 .toggleClass( 'oo-ui-optionWidget-pressed', widget.pressed );
9964
9965 setTimeout( function () {
9966 deferred.resolve();
9967 }, 100 );
9968
9969 }, 100 );
9970 }
9971
9972 return deferred.promise();
9973 };
9974
9975 /**
9976 * Get option data.
9977 *
9978 * @return {Mixed} Option data
9979 */
9980 OO.ui.OptionWidget.prototype.getData = function () {
9981 return this.data;
9982 };
9983
9984 /**
9985 * Option widget with an option icon and indicator.
9986 *
9987 * Use together with OO.ui.SelectWidget.
9988 *
9989 * @class
9990 * @extends OO.ui.OptionWidget
9991 * @mixins OO.ui.IconElement
9992 * @mixins OO.ui.IndicatorElement
9993 *
9994 * @constructor
9995 * @param {Mixed} data Option data
9996 * @param {Object} [config] Configuration options
9997 */
9998 OO.ui.DecoratedOptionWidget = function OoUiDecoratedOptionWidget( data, config ) {
9999 // Parent constructor
10000 OO.ui.DecoratedOptionWidget.super.call( this, data, config );
10001
10002 // Mixin constructors
10003 OO.ui.IconElement.call( this, config );
10004 OO.ui.IndicatorElement.call( this, config );
10005
10006 // Initialization
10007 this.$element
10008 .addClass( 'oo-ui-decoratedOptionWidget' )
10009 .prepend( this.$icon )
10010 .append( this.$indicator );
10011 };
10012
10013 /* Setup */
10014
10015 OO.inheritClass( OO.ui.DecoratedOptionWidget, OO.ui.OptionWidget );
10016 OO.mixinClass( OO.ui.OptionWidget, OO.ui.IconElement );
10017 OO.mixinClass( OO.ui.OptionWidget, OO.ui.IndicatorElement );
10018
10019 /**
10020 * Option widget that looks like a button.
10021 *
10022 * Use together with OO.ui.ButtonSelectWidget.
10023 *
10024 * @class
10025 * @extends OO.ui.DecoratedOptionWidget
10026 * @mixins OO.ui.ButtonElement
10027 *
10028 * @constructor
10029 * @param {Mixed} data Option data
10030 * @param {Object} [config] Configuration options
10031 */
10032 OO.ui.ButtonOptionWidget = function OoUiButtonOptionWidget( data, config ) {
10033 // Parent constructor
10034 OO.ui.ButtonOptionWidget.super.call( this, data, config );
10035
10036 // Mixin constructors
10037 OO.ui.ButtonElement.call( this, config );
10038
10039 // Initialization
10040 this.$element.addClass( 'oo-ui-buttonOptionWidget' );
10041 this.$button.append( this.$element.contents() );
10042 this.$element.append( this.$button );
10043 };
10044
10045 /* Setup */
10046
10047 OO.inheritClass( OO.ui.ButtonOptionWidget, OO.ui.DecoratedOptionWidget );
10048 OO.mixinClass( OO.ui.ButtonOptionWidget, OO.ui.ButtonElement );
10049
10050 /* Static Properties */
10051
10052 // Allow button mouse down events to pass through so they can be handled by the parent select widget
10053 OO.ui.ButtonOptionWidget.static.cancelButtonMouseDownEvents = false;
10054
10055 /* Methods */
10056
10057 /**
10058 * @inheritdoc
10059 */
10060 OO.ui.ButtonOptionWidget.prototype.setSelected = function ( state ) {
10061 OO.ui.ButtonOptionWidget.super.prototype.setSelected.call( this, state );
10062
10063 if ( this.constructor.static.selectable ) {
10064 this.setActive( state );
10065 }
10066
10067 return this;
10068 };
10069
10070 /**
10071 * Item of an OO.ui.MenuWidget.
10072 *
10073 * @class
10074 * @extends OO.ui.DecoratedOptionWidget
10075 *
10076 * @constructor
10077 * @param {Mixed} data Item data
10078 * @param {Object} [config] Configuration options
10079 */
10080 OO.ui.MenuItemWidget = function OoUiMenuItemWidget( data, config ) {
10081 // Configuration initialization
10082 config = $.extend( { icon: 'check' }, config );
10083
10084 // Parent constructor
10085 OO.ui.MenuItemWidget.super.call( this, data, config );
10086
10087 // Initialization
10088 this.$element
10089 .attr( 'role', 'menuitem' )
10090 .addClass( 'oo-ui-menuItemWidget' );
10091 };
10092
10093 /* Setup */
10094
10095 OO.inheritClass( OO.ui.MenuItemWidget, OO.ui.DecoratedOptionWidget );
10096
10097 /**
10098 * Section to group one or more items in a OO.ui.MenuWidget.
10099 *
10100 * @class
10101 * @extends OO.ui.DecoratedOptionWidget
10102 *
10103 * @constructor
10104 * @param {Mixed} data Item data
10105 * @param {Object} [config] Configuration options
10106 */
10107 OO.ui.MenuSectionItemWidget = function OoUiMenuSectionItemWidget( data, config ) {
10108 // Parent constructor
10109 OO.ui.MenuSectionItemWidget.super.call( this, data, config );
10110
10111 // Initialization
10112 this.$element.addClass( 'oo-ui-menuSectionItemWidget' );
10113 };
10114
10115 /* Setup */
10116
10117 OO.inheritClass( OO.ui.MenuSectionItemWidget, OO.ui.DecoratedOptionWidget );
10118
10119 /* Static Properties */
10120
10121 OO.ui.MenuSectionItemWidget.static.selectable = false;
10122
10123 OO.ui.MenuSectionItemWidget.static.highlightable = false;
10124
10125 /**
10126 * Items for an OO.ui.OutlineWidget.
10127 *
10128 * @class
10129 * @extends OO.ui.DecoratedOptionWidget
10130 *
10131 * @constructor
10132 * @param {Mixed} data Item data
10133 * @param {Object} [config] Configuration options
10134 * @cfg {number} [level] Indentation level
10135 * @cfg {boolean} [movable] Allow modification from outline controls
10136 */
10137 OO.ui.OutlineItemWidget = function OoUiOutlineItemWidget( data, config ) {
10138 // Config intialization
10139 config = config || {};
10140
10141 // Parent constructor
10142 OO.ui.OutlineItemWidget.super.call( this, data, config );
10143
10144 // Properties
10145 this.level = 0;
10146 this.movable = !!config.movable;
10147 this.removable = !!config.removable;
10148
10149 // Initialization
10150 this.$element.addClass( 'oo-ui-outlineItemWidget' );
10151 this.setLevel( config.level );
10152 };
10153
10154 /* Setup */
10155
10156 OO.inheritClass( OO.ui.OutlineItemWidget, OO.ui.DecoratedOptionWidget );
10157
10158 /* Static Properties */
10159
10160 OO.ui.OutlineItemWidget.static.highlightable = false;
10161
10162 OO.ui.OutlineItemWidget.static.scrollIntoViewOnSelect = true;
10163
10164 OO.ui.OutlineItemWidget.static.levelClass = 'oo-ui-outlineItemWidget-level-';
10165
10166 OO.ui.OutlineItemWidget.static.levels = 3;
10167
10168 /* Methods */
10169
10170 /**
10171 * Check if item is movable.
10172 *
10173 * Movablilty is used by outline controls.
10174 *
10175 * @return {boolean} Item is movable
10176 */
10177 OO.ui.OutlineItemWidget.prototype.isMovable = function () {
10178 return this.movable;
10179 };
10180
10181 /**
10182 * Check if item is removable.
10183 *
10184 * Removablilty is used by outline controls.
10185 *
10186 * @return {boolean} Item is removable
10187 */
10188 OO.ui.OutlineItemWidget.prototype.isRemovable = function () {
10189 return this.removable;
10190 };
10191
10192 /**
10193 * Get indentation level.
10194 *
10195 * @return {number} Indentation level
10196 */
10197 OO.ui.OutlineItemWidget.prototype.getLevel = function () {
10198 return this.level;
10199 };
10200
10201 /**
10202 * Set movability.
10203 *
10204 * Movablilty is used by outline controls.
10205 *
10206 * @param {boolean} movable Item is movable
10207 * @chainable
10208 */
10209 OO.ui.OutlineItemWidget.prototype.setMovable = function ( movable ) {
10210 this.movable = !!movable;
10211 this.updateThemeClasses();
10212 return this;
10213 };
10214
10215 /**
10216 * Set removability.
10217 *
10218 * Removablilty is used by outline controls.
10219 *
10220 * @param {boolean} movable Item is removable
10221 * @chainable
10222 */
10223 OO.ui.OutlineItemWidget.prototype.setRemovable = function ( removable ) {
10224 this.removable = !!removable;
10225 this.updateThemeClasses();
10226 return this;
10227 };
10228
10229 /**
10230 * Set indentation level.
10231 *
10232 * @param {number} [level=0] Indentation level, in the range of [0,#maxLevel]
10233 * @chainable
10234 */
10235 OO.ui.OutlineItemWidget.prototype.setLevel = function ( level ) {
10236 var levels = this.constructor.static.levels,
10237 levelClass = this.constructor.static.levelClass,
10238 i = levels;
10239
10240 this.level = level ? Math.max( 0, Math.min( levels - 1, level ) ) : 0;
10241 while ( i-- ) {
10242 if ( this.level === i ) {
10243 this.$element.addClass( levelClass + i );
10244 } else {
10245 this.$element.removeClass( levelClass + i );
10246 }
10247 }
10248 this.updateThemeClasses();
10249
10250 return this;
10251 };
10252
10253 /**
10254 * Container for content that is overlaid and positioned absolutely.
10255 *
10256 * @class
10257 * @extends OO.ui.Widget
10258 * @mixins OO.ui.LabelElement
10259 *
10260 * @constructor
10261 * @param {Object} [config] Configuration options
10262 * @cfg {number} [width=320] Width of popup in pixels
10263 * @cfg {number} [height] Height of popup, omit to use automatic height
10264 * @cfg {boolean} [anchor=true] Show anchor pointing to origin of popup
10265 * @cfg {string} [align='center'] Alignment of popup to origin
10266 * @cfg {jQuery} [$container] Container to prevent popup from rendering outside of
10267 * @cfg {number} [containerPadding=10] How much padding to keep between popup and container
10268 * @cfg {jQuery} [$content] Content to append to the popup's body
10269 * @cfg {boolean} [autoClose=false] Popup auto-closes when it loses focus
10270 * @cfg {jQuery} [$autoCloseIgnore] Elements to not auto close when clicked
10271 * @cfg {boolean} [head] Show label and close button at the top
10272 * @cfg {boolean} [padded] Add padding to the body
10273 */
10274 OO.ui.PopupWidget = function OoUiPopupWidget( config ) {
10275 // Config intialization
10276 config = config || {};
10277
10278 // Parent constructor
10279 OO.ui.PopupWidget.super.call( this, config );
10280
10281 // Mixin constructors
10282 OO.ui.LabelElement.call( this, config );
10283 OO.ui.ClippableElement.call( this, config );
10284
10285 // Properties
10286 this.visible = false;
10287 this.$popup = this.$( '<div>' );
10288 this.$head = this.$( '<div>' );
10289 this.$body = this.$( '<div>' );
10290 this.$anchor = this.$( '<div>' );
10291 // If undefined, will be computed lazily in updateDimensions()
10292 this.$container = config.$container;
10293 this.containerPadding = config.containerPadding !== undefined ? config.containerPadding : 10;
10294 this.autoClose = !!config.autoClose;
10295 this.$autoCloseIgnore = config.$autoCloseIgnore;
10296 this.transitionTimeout = null;
10297 this.anchor = null;
10298 this.width = config.width !== undefined ? config.width : 320;
10299 this.height = config.height !== undefined ? config.height : null;
10300 this.align = config.align || 'center';
10301 this.closeButton = new OO.ui.ButtonWidget( { $: this.$, framed: false, icon: 'close' } );
10302 this.onMouseDownHandler = this.onMouseDown.bind( this );
10303
10304 // Events
10305 this.closeButton.connect( this, { click: 'onCloseButtonClick' } );
10306
10307 // Initialization
10308 this.toggleAnchor( config.anchor === undefined || config.anchor );
10309 this.$body.addClass( 'oo-ui-popupWidget-body' );
10310 this.$anchor.addClass( 'oo-ui-popupWidget-anchor' );
10311 this.$head
10312 .addClass( 'oo-ui-popupWidget-head' )
10313 .append( this.$label, this.closeButton.$element );
10314 if ( !config.head ) {
10315 this.$head.hide();
10316 }
10317 this.$popup
10318 .addClass( 'oo-ui-popupWidget-popup' )
10319 .append( this.$head, this.$body );
10320 this.$element
10321 .hide()
10322 .addClass( 'oo-ui-popupWidget' )
10323 .append( this.$popup, this.$anchor );
10324 // Move content, which was added to #$element by OO.ui.Widget, to the body
10325 if ( config.$content instanceof jQuery ) {
10326 this.$body.append( config.$content );
10327 }
10328 if ( config.padded ) {
10329 this.$body.addClass( 'oo-ui-popupWidget-body-padded' );
10330 }
10331 this.setClippableElement( this.$body );
10332 };
10333
10334 /* Setup */
10335
10336 OO.inheritClass( OO.ui.PopupWidget, OO.ui.Widget );
10337 OO.mixinClass( OO.ui.PopupWidget, OO.ui.LabelElement );
10338 OO.mixinClass( OO.ui.PopupWidget, OO.ui.ClippableElement );
10339
10340 /* Methods */
10341
10342 /**
10343 * Handles mouse down events.
10344 *
10345 * @param {jQuery.Event} e Mouse down event
10346 */
10347 OO.ui.PopupWidget.prototype.onMouseDown = function ( e ) {
10348 if (
10349 this.isVisible() &&
10350 !$.contains( this.$element[0], e.target ) &&
10351 ( !this.$autoCloseIgnore || !this.$autoCloseIgnore.has( e.target ).length )
10352 ) {
10353 this.toggle( false );
10354 }
10355 };
10356
10357 /**
10358 * Bind mouse down listener.
10359 */
10360 OO.ui.PopupWidget.prototype.bindMouseDownListener = function () {
10361 // Capture clicks outside popup
10362 this.getElementWindow().addEventListener( 'mousedown', this.onMouseDownHandler, true );
10363 };
10364
10365 /**
10366 * Handles close button click events.
10367 */
10368 OO.ui.PopupWidget.prototype.onCloseButtonClick = function () {
10369 if ( this.isVisible() ) {
10370 this.toggle( false );
10371 }
10372 };
10373
10374 /**
10375 * Unbind mouse down listener.
10376 */
10377 OO.ui.PopupWidget.prototype.unbindMouseDownListener = function () {
10378 this.getElementWindow().removeEventListener( 'mousedown', this.onMouseDownHandler, true );
10379 };
10380
10381 /**
10382 * Set whether to show a anchor.
10383 *
10384 * @param {boolean} [show] Show anchor, omit to toggle
10385 */
10386 OO.ui.PopupWidget.prototype.toggleAnchor = function ( show ) {
10387 show = show === undefined ? !this.anchored : !!show;
10388
10389 if ( this.anchored !== show ) {
10390 if ( show ) {
10391 this.$element.addClass( 'oo-ui-popupWidget-anchored' );
10392 } else {
10393 this.$element.removeClass( 'oo-ui-popupWidget-anchored' );
10394 }
10395 this.anchored = show;
10396 }
10397 };
10398
10399 /**
10400 * Check if showing a anchor.
10401 *
10402 * @return {boolean} anchor is visible
10403 */
10404 OO.ui.PopupWidget.prototype.hasAnchor = function () {
10405 return this.anchor;
10406 };
10407
10408 /**
10409 * @inheritdoc
10410 */
10411 OO.ui.PopupWidget.prototype.toggle = function ( show ) {
10412 show = show === undefined ? !this.isVisible() : !!show;
10413
10414 var change = show !== this.isVisible();
10415
10416 // Parent method
10417 OO.ui.PopupWidget.super.prototype.toggle.call( this, show );
10418
10419 if ( change ) {
10420 if ( show ) {
10421 if ( this.autoClose ) {
10422 this.bindMouseDownListener();
10423 }
10424 this.updateDimensions();
10425 this.toggleClipping( true );
10426 } else {
10427 this.toggleClipping( false );
10428 if ( this.autoClose ) {
10429 this.unbindMouseDownListener();
10430 }
10431 }
10432 }
10433
10434 return this;
10435 };
10436
10437 /**
10438 * Set the size of the popup.
10439 *
10440 * Changing the size may also change the popup's position depending on the alignment.
10441 *
10442 * @param {number} width Width
10443 * @param {number} height Height
10444 * @param {boolean} [transition=false] Use a smooth transition
10445 * @chainable
10446 */
10447 OO.ui.PopupWidget.prototype.setSize = function ( width, height, transition ) {
10448 this.width = width;
10449 this.height = height !== undefined ? height : null;
10450 if ( this.isVisible() ) {
10451 this.updateDimensions( transition );
10452 }
10453 };
10454
10455 /**
10456 * Update the size and position.
10457 *
10458 * Only use this to keep the popup properly anchored. Use #setSize to change the size, and this will
10459 * be called automatically.
10460 *
10461 * @param {boolean} [transition=false] Use a smooth transition
10462 * @chainable
10463 */
10464 OO.ui.PopupWidget.prototype.updateDimensions = function ( transition ) {
10465 var popupOffset, originOffset, containerLeft, containerWidth, containerRight,
10466 popupLeft, popupRight, overlapLeft, overlapRight, anchorWidth,
10467 widget = this;
10468
10469 if ( !this.$container ) {
10470 // Lazy-initialize $container if not specified in constructor
10471 this.$container = this.$( this.getClosestScrollableElementContainer() );
10472 }
10473
10474 // Set height and width before measuring things, since it might cause our measurements
10475 // to change (e.g. due to scrollbars appearing or disappearing)
10476 this.$popup.css( {
10477 width: this.width,
10478 height: this.height !== null ? this.height : 'auto'
10479 } );
10480
10481 // Compute initial popupOffset based on alignment
10482 popupOffset = this.width * ( { left: 0, center: -0.5, right: -1 } )[this.align];
10483
10484 // Figure out if this will cause the popup to go beyond the edge of the container
10485 originOffset = Math.round( this.$element.offset().left );
10486 containerLeft = Math.round( this.$container.offset().left );
10487 containerWidth = this.$container.innerWidth();
10488 containerRight = containerLeft + containerWidth;
10489 popupLeft = popupOffset - this.containerPadding;
10490 popupRight = popupOffset + this.containerPadding + this.width + this.containerPadding;
10491 overlapLeft = ( originOffset + popupLeft ) - containerLeft;
10492 overlapRight = containerRight - ( originOffset + popupRight );
10493
10494 // Adjust offset to make the popup not go beyond the edge, if needed
10495 if ( overlapRight < 0 ) {
10496 popupOffset += overlapRight;
10497 } else if ( overlapLeft < 0 ) {
10498 popupOffset -= overlapLeft;
10499 }
10500
10501 // Adjust offset to avoid anchor being rendered too close to the edge
10502 // $anchor.width() doesn't work with the pure CSS anchor (returns 0)
10503 // TODO: Find a measurement that works for CSS anchors and image anchors
10504 anchorWidth = this.$anchor[0].scrollWidth * 2;
10505 if ( popupOffset + this.width < anchorWidth ) {
10506 popupOffset = anchorWidth - this.width;
10507 } else if ( -popupOffset < anchorWidth ) {
10508 popupOffset = -anchorWidth;
10509 }
10510
10511 // Prevent transition from being interrupted
10512 clearTimeout( this.transitionTimeout );
10513 if ( transition ) {
10514 // Enable transition
10515 this.$element.addClass( 'oo-ui-popupWidget-transitioning' );
10516 }
10517
10518 // Position body relative to anchor
10519 this.$popup.css( 'margin-left', popupOffset );
10520
10521 if ( transition ) {
10522 // Prevent transitioning after transition is complete
10523 this.transitionTimeout = setTimeout( function () {
10524 widget.$element.removeClass( 'oo-ui-popupWidget-transitioning' );
10525 }, 200 );
10526 } else {
10527 // Prevent transitioning immediately
10528 this.$element.removeClass( 'oo-ui-popupWidget-transitioning' );
10529 }
10530
10531 // Reevaluate clipping state since we've relocated and resized the popup
10532 this.clip();
10533
10534 return this;
10535 };
10536
10537 /**
10538 * Progress bar widget.
10539 *
10540 * @class
10541 * @extends OO.ui.Widget
10542 *
10543 * @constructor
10544 * @param {Object} [config] Configuration options
10545 * @cfg {number} [progress=0] Initial progress
10546 */
10547 OO.ui.ProgressBarWidget = function OoUiProgressBarWidget( config ) {
10548 // Config intialization
10549 config = config || {};
10550
10551 // Parent constructor
10552 OO.ui.ProgressBarWidget.super.call( this, config );
10553
10554 // Properties
10555 this.$bar = this.$( '<div>' );
10556 this.progress = null;
10557
10558 // Initialization
10559 this.setProgress( config.progress || 0 );
10560 this.$bar.addClass( 'oo-ui-progressBarWidget-bar');
10561 this.$element
10562 .attr( {
10563 role: 'progressbar',
10564 'aria-valuemin': 0,
10565 'aria-valuemax': 100
10566 } )
10567 .addClass( 'oo-ui-progressBarWidget' )
10568 .append( this.$bar );
10569 };
10570
10571 /* Setup */
10572
10573 OO.inheritClass( OO.ui.ProgressBarWidget, OO.ui.Widget );
10574
10575 /* Static Properties */
10576
10577 OO.ui.ProgressBarWidget.static.tagName = 'div';
10578
10579 /* Methods */
10580
10581 /**
10582 * Get progress percent
10583 *
10584 * @return {number} Progress percent
10585 */
10586 OO.ui.ProgressBarWidget.prototype.getProgress = function () {
10587 return this.progress;
10588 };
10589
10590 /**
10591 * Set progress percent
10592 *
10593 * @param {number} progress Progress percent
10594 */
10595 OO.ui.ProgressBarWidget.prototype.setProgress = function ( progress ) {
10596 this.progress = progress;
10597
10598 this.$bar.css( 'width', this.progress + '%' );
10599 this.$element.attr( 'aria-valuenow', this.progress );
10600 };
10601
10602 /**
10603 * Search widget.
10604 *
10605 * Search widgets combine a query input, placed above, and a results selection widget, placed below.
10606 * Results are cleared and populated each time the query is changed.
10607 *
10608 * @class
10609 * @extends OO.ui.Widget
10610 *
10611 * @constructor
10612 * @param {Object} [config] Configuration options
10613 * @cfg {string|jQuery} [placeholder] Placeholder text for query input
10614 * @cfg {string} [value] Initial query value
10615 */
10616 OO.ui.SearchWidget = function OoUiSearchWidget( config ) {
10617 // Configuration intialization
10618 config = config || {};
10619
10620 // Parent constructor
10621 OO.ui.SearchWidget.super.call( this, config );
10622
10623 // Properties
10624 this.query = new OO.ui.TextInputWidget( {
10625 $: this.$,
10626 icon: 'search',
10627 placeholder: config.placeholder,
10628 value: config.value
10629 } );
10630 this.results = new OO.ui.SelectWidget( { $: this.$ } );
10631 this.$query = this.$( '<div>' );
10632 this.$results = this.$( '<div>' );
10633
10634 // Events
10635 this.query.connect( this, {
10636 change: 'onQueryChange',
10637 enter: 'onQueryEnter'
10638 } );
10639 this.results.connect( this, {
10640 highlight: 'onResultsHighlight',
10641 select: 'onResultsSelect'
10642 } );
10643 this.query.$input.on( 'keydown', this.onQueryKeydown.bind( this ) );
10644
10645 // Initialization
10646 this.$query
10647 .addClass( 'oo-ui-searchWidget-query' )
10648 .append( this.query.$element );
10649 this.$results
10650 .addClass( 'oo-ui-searchWidget-results' )
10651 .append( this.results.$element );
10652 this.$element
10653 .addClass( 'oo-ui-searchWidget' )
10654 .append( this.$results, this.$query );
10655 };
10656
10657 /* Setup */
10658
10659 OO.inheritClass( OO.ui.SearchWidget, OO.ui.Widget );
10660
10661 /* Events */
10662
10663 /**
10664 * @event highlight
10665 * @param {Object|null} item Item data or null if no item is highlighted
10666 */
10667
10668 /**
10669 * @event select
10670 * @param {Object|null} item Item data or null if no item is selected
10671 */
10672
10673 /* Methods */
10674
10675 /**
10676 * Handle query key down events.
10677 *
10678 * @param {jQuery.Event} e Key down event
10679 */
10680 OO.ui.SearchWidget.prototype.onQueryKeydown = function ( e ) {
10681 var highlightedItem, nextItem,
10682 dir = e.which === OO.ui.Keys.DOWN ? 1 : ( e.which === OO.ui.Keys.UP ? -1 : 0 );
10683
10684 if ( dir ) {
10685 highlightedItem = this.results.getHighlightedItem();
10686 if ( !highlightedItem ) {
10687 highlightedItem = this.results.getSelectedItem();
10688 }
10689 nextItem = this.results.getRelativeSelectableItem( highlightedItem, dir );
10690 this.results.highlightItem( nextItem );
10691 nextItem.scrollElementIntoView();
10692 }
10693 };
10694
10695 /**
10696 * Handle select widget select events.
10697 *
10698 * Clears existing results. Subclasses should repopulate items according to new query.
10699 *
10700 * @param {string} value New value
10701 */
10702 OO.ui.SearchWidget.prototype.onQueryChange = function () {
10703 // Reset
10704 this.results.clearItems();
10705 };
10706
10707 /**
10708 * Handle select widget enter key events.
10709 *
10710 * Selects highlighted item.
10711 *
10712 * @param {string} value New value
10713 */
10714 OO.ui.SearchWidget.prototype.onQueryEnter = function () {
10715 // Reset
10716 this.results.selectItem( this.results.getHighlightedItem() );
10717 };
10718
10719 /**
10720 * Handle select widget highlight events.
10721 *
10722 * @param {OO.ui.OptionWidget} item Highlighted item
10723 * @fires highlight
10724 */
10725 OO.ui.SearchWidget.prototype.onResultsHighlight = function ( item ) {
10726 this.emit( 'highlight', item ? item.getData() : null );
10727 };
10728
10729 /**
10730 * Handle select widget select events.
10731 *
10732 * @param {OO.ui.OptionWidget} item Selected item
10733 * @fires select
10734 */
10735 OO.ui.SearchWidget.prototype.onResultsSelect = function ( item ) {
10736 this.emit( 'select', item ? item.getData() : null );
10737 };
10738
10739 /**
10740 * Get the query input.
10741 *
10742 * @return {OO.ui.TextInputWidget} Query input
10743 */
10744 OO.ui.SearchWidget.prototype.getQuery = function () {
10745 return this.query;
10746 };
10747
10748 /**
10749 * Get the results list.
10750 *
10751 * @return {OO.ui.SelectWidget} Select list
10752 */
10753 OO.ui.SearchWidget.prototype.getResults = function () {
10754 return this.results;
10755 };
10756
10757 /**
10758 * Generic selection of options.
10759 *
10760 * Items can contain any rendering, and are uniquely identified by a hash of their data. Any widget
10761 * that provides options, from which the user must choose one, should be built on this class.
10762 *
10763 * Use together with OO.ui.OptionWidget.
10764 *
10765 * @class
10766 * @extends OO.ui.Widget
10767 * @mixins OO.ui.GroupElement
10768 *
10769 * @constructor
10770 * @param {Object} [config] Configuration options
10771 * @cfg {OO.ui.OptionWidget[]} [items] Options to add
10772 */
10773 OO.ui.SelectWidget = function OoUiSelectWidget( config ) {
10774 // Config intialization
10775 config = config || {};
10776
10777 // Parent constructor
10778 OO.ui.SelectWidget.super.call( this, config );
10779
10780 // Mixin constructors
10781 OO.ui.GroupWidget.call( this, $.extend( {}, config, { $group: this.$element } ) );
10782
10783 // Properties
10784 this.pressed = false;
10785 this.selecting = null;
10786 this.hashes = {};
10787 this.onMouseUpHandler = this.onMouseUp.bind( this );
10788 this.onMouseMoveHandler = this.onMouseMove.bind( this );
10789
10790 // Events
10791 this.$element.on( {
10792 mousedown: this.onMouseDown.bind( this ),
10793 mouseover: this.onMouseOver.bind( this ),
10794 mouseleave: this.onMouseLeave.bind( this )
10795 } );
10796
10797 // Initialization
10798 this.$element.addClass( 'oo-ui-selectWidget oo-ui-selectWidget-depressed' );
10799 if ( $.isArray( config.items ) ) {
10800 this.addItems( config.items );
10801 }
10802 };
10803
10804 /* Setup */
10805
10806 OO.inheritClass( OO.ui.SelectWidget, OO.ui.Widget );
10807
10808 // Need to mixin base class as well
10809 OO.mixinClass( OO.ui.SelectWidget, OO.ui.GroupElement );
10810 OO.mixinClass( OO.ui.SelectWidget, OO.ui.GroupWidget );
10811
10812 /* Events */
10813
10814 /**
10815 * @event highlight
10816 * @param {OO.ui.OptionWidget|null} item Highlighted item
10817 */
10818
10819 /**
10820 * @event press
10821 * @param {OO.ui.OptionWidget|null} item Pressed item
10822 */
10823
10824 /**
10825 * @event select
10826 * @param {OO.ui.OptionWidget|null} item Selected item
10827 */
10828
10829 /**
10830 * @event choose
10831 * @param {OO.ui.OptionWidget|null} item Chosen item
10832 */
10833
10834 /**
10835 * @event add
10836 * @param {OO.ui.OptionWidget[]} items Added items
10837 * @param {number} index Index items were added at
10838 */
10839
10840 /**
10841 * @event remove
10842 * @param {OO.ui.OptionWidget[]} items Removed items
10843 */
10844
10845 /* Methods */
10846
10847 /**
10848 * Handle mouse down events.
10849 *
10850 * @private
10851 * @param {jQuery.Event} e Mouse down event
10852 */
10853 OO.ui.SelectWidget.prototype.onMouseDown = function ( e ) {
10854 var item;
10855
10856 if ( !this.isDisabled() && e.which === 1 ) {
10857 this.togglePressed( true );
10858 item = this.getTargetItem( e );
10859 if ( item && item.isSelectable() ) {
10860 this.pressItem( item );
10861 this.selecting = item;
10862 this.getElementDocument().addEventListener(
10863 'mouseup',
10864 this.onMouseUpHandler,
10865 true
10866 );
10867 this.getElementDocument().addEventListener(
10868 'mousemove',
10869 this.onMouseMoveHandler,
10870 true
10871 );
10872 }
10873 }
10874 return false;
10875 };
10876
10877 /**
10878 * Handle mouse up events.
10879 *
10880 * @private
10881 * @param {jQuery.Event} e Mouse up event
10882 */
10883 OO.ui.SelectWidget.prototype.onMouseUp = function ( e ) {
10884 var item;
10885
10886 this.togglePressed( false );
10887 if ( !this.selecting ) {
10888 item = this.getTargetItem( e );
10889 if ( item && item.isSelectable() ) {
10890 this.selecting = item;
10891 }
10892 }
10893 if ( !this.isDisabled() && e.which === 1 && this.selecting ) {
10894 this.pressItem( null );
10895 this.chooseItem( this.selecting );
10896 this.selecting = null;
10897 }
10898
10899 this.getElementDocument().removeEventListener(
10900 'mouseup',
10901 this.onMouseUpHandler,
10902 true
10903 );
10904 this.getElementDocument().removeEventListener(
10905 'mousemove',
10906 this.onMouseMoveHandler,
10907 true
10908 );
10909
10910 return false;
10911 };
10912
10913 /**
10914 * Handle mouse move events.
10915 *
10916 * @private
10917 * @param {jQuery.Event} e Mouse move event
10918 */
10919 OO.ui.SelectWidget.prototype.onMouseMove = function ( e ) {
10920 var item;
10921
10922 if ( !this.isDisabled() && this.pressed ) {
10923 item = this.getTargetItem( e );
10924 if ( item && item !== this.selecting && item.isSelectable() ) {
10925 this.pressItem( item );
10926 this.selecting = item;
10927 }
10928 }
10929 return false;
10930 };
10931
10932 /**
10933 * Handle mouse over events.
10934 *
10935 * @private
10936 * @param {jQuery.Event} e Mouse over event
10937 */
10938 OO.ui.SelectWidget.prototype.onMouseOver = function ( e ) {
10939 var item;
10940
10941 if ( !this.isDisabled() ) {
10942 item = this.getTargetItem( e );
10943 this.highlightItem( item && item.isHighlightable() ? item : null );
10944 }
10945 return false;
10946 };
10947
10948 /**
10949 * Handle mouse leave events.
10950 *
10951 * @private
10952 * @param {jQuery.Event} e Mouse over event
10953 */
10954 OO.ui.SelectWidget.prototype.onMouseLeave = function () {
10955 if ( !this.isDisabled() ) {
10956 this.highlightItem( null );
10957 }
10958 return false;
10959 };
10960
10961 /**
10962 * Get the closest item to a jQuery.Event.
10963 *
10964 * @private
10965 * @param {jQuery.Event} e
10966 * @return {OO.ui.OptionWidget|null} Outline item widget, `null` if none was found
10967 */
10968 OO.ui.SelectWidget.prototype.getTargetItem = function ( e ) {
10969 var $item = this.$( e.target ).closest( '.oo-ui-optionWidget' );
10970 if ( $item.length ) {
10971 return $item.data( 'oo-ui-optionWidget' );
10972 }
10973 return null;
10974 };
10975
10976 /**
10977 * Get selected item.
10978 *
10979 * @return {OO.ui.OptionWidget|null} Selected item, `null` if no item is selected
10980 */
10981 OO.ui.SelectWidget.prototype.getSelectedItem = function () {
10982 var i, len;
10983
10984 for ( i = 0, len = this.items.length; i < len; i++ ) {
10985 if ( this.items[i].isSelected() ) {
10986 return this.items[i];
10987 }
10988 }
10989 return null;
10990 };
10991
10992 /**
10993 * Get highlighted item.
10994 *
10995 * @return {OO.ui.OptionWidget|null} Highlighted item, `null` if no item is highlighted
10996 */
10997 OO.ui.SelectWidget.prototype.getHighlightedItem = function () {
10998 var i, len;
10999
11000 for ( i = 0, len = this.items.length; i < len; i++ ) {
11001 if ( this.items[i].isHighlighted() ) {
11002 return this.items[i];
11003 }
11004 }
11005 return null;
11006 };
11007
11008 /**
11009 * Get an existing item with equivilant data.
11010 *
11011 * @param {Object} data Item data to search for
11012 * @return {OO.ui.OptionWidget|null} Item with equivilent value, `null` if none exists
11013 */
11014 OO.ui.SelectWidget.prototype.getItemFromData = function ( data ) {
11015 var hash = OO.getHash( data );
11016
11017 if ( hash in this.hashes ) {
11018 return this.hashes[hash];
11019 }
11020
11021 return null;
11022 };
11023
11024 /**
11025 * Toggle pressed state.
11026 *
11027 * @param {boolean} pressed An option is being pressed
11028 */
11029 OO.ui.SelectWidget.prototype.togglePressed = function ( pressed ) {
11030 if ( pressed === undefined ) {
11031 pressed = !this.pressed;
11032 }
11033 if ( pressed !== this.pressed ) {
11034 this.$element
11035 .toggleClass( 'oo-ui-selectWidget-pressed', pressed )
11036 .toggleClass( 'oo-ui-selectWidget-depressed', !pressed );
11037 this.pressed = pressed;
11038 }
11039 };
11040
11041 /**
11042 * Highlight an item.
11043 *
11044 * Highlighting is mutually exclusive.
11045 *
11046 * @param {OO.ui.OptionWidget} [item] Item to highlight, omit to deselect all
11047 * @fires highlight
11048 * @chainable
11049 */
11050 OO.ui.SelectWidget.prototype.highlightItem = function ( item ) {
11051 var i, len, highlighted,
11052 changed = false;
11053
11054 for ( i = 0, len = this.items.length; i < len; i++ ) {
11055 highlighted = this.items[i] === item;
11056 if ( this.items[i].isHighlighted() !== highlighted ) {
11057 this.items[i].setHighlighted( highlighted );
11058 changed = true;
11059 }
11060 }
11061 if ( changed ) {
11062 this.emit( 'highlight', item );
11063 }
11064
11065 return this;
11066 };
11067
11068 /**
11069 * Select an item.
11070 *
11071 * @param {OO.ui.OptionWidget} [item] Item to select, omit to deselect all
11072 * @fires select
11073 * @chainable
11074 */
11075 OO.ui.SelectWidget.prototype.selectItem = function ( item ) {
11076 var i, len, selected,
11077 changed = false;
11078
11079 for ( i = 0, len = this.items.length; i < len; i++ ) {
11080 selected = this.items[i] === item;
11081 if ( this.items[i].isSelected() !== selected ) {
11082 this.items[i].setSelected( selected );
11083 changed = true;
11084 }
11085 }
11086 if ( changed ) {
11087 this.emit( 'select', item );
11088 }
11089
11090 return this;
11091 };
11092
11093 /**
11094 * Press an item.
11095 *
11096 * @param {OO.ui.OptionWidget} [item] Item to press, omit to depress all
11097 * @fires press
11098 * @chainable
11099 */
11100 OO.ui.SelectWidget.prototype.pressItem = function ( item ) {
11101 var i, len, pressed,
11102 changed = false;
11103
11104 for ( i = 0, len = this.items.length; i < len; i++ ) {
11105 pressed = this.items[i] === item;
11106 if ( this.items[i].isPressed() !== pressed ) {
11107 this.items[i].setPressed( pressed );
11108 changed = true;
11109 }
11110 }
11111 if ( changed ) {
11112 this.emit( 'press', item );
11113 }
11114
11115 return this;
11116 };
11117
11118 /**
11119 * Choose an item.
11120 *
11121 * Identical to #selectItem, but may vary in subclasses that want to take additional action when
11122 * an item is selected using the keyboard or mouse.
11123 *
11124 * @param {OO.ui.OptionWidget} item Item to choose
11125 * @fires choose
11126 * @chainable
11127 */
11128 OO.ui.SelectWidget.prototype.chooseItem = function ( item ) {
11129 this.selectItem( item );
11130 this.emit( 'choose', item );
11131
11132 return this;
11133 };
11134
11135 /**
11136 * Get an item relative to another one.
11137 *
11138 * @param {OO.ui.OptionWidget} item Item to start at
11139 * @param {number} direction Direction to move in
11140 * @return {OO.ui.OptionWidget|null} Item at position, `null` if there are no items in the menu
11141 */
11142 OO.ui.SelectWidget.prototype.getRelativeSelectableItem = function ( item, direction ) {
11143 var inc = direction > 0 ? 1 : -1,
11144 len = this.items.length,
11145 index = item instanceof OO.ui.OptionWidget ?
11146 $.inArray( item, this.items ) : ( inc > 0 ? -1 : 0 ),
11147 stopAt = Math.max( Math.min( index, len - 1 ), 0 ),
11148 i = inc > 0 ?
11149 // Default to 0 instead of -1, if nothing is selected let's start at the beginning
11150 Math.max( index, -1 ) :
11151 // Default to n-1 instead of -1, if nothing is selected let's start at the end
11152 Math.min( index, len );
11153
11154 while ( len !== 0 ) {
11155 i = ( i + inc + len ) % len;
11156 item = this.items[i];
11157 if ( item instanceof OO.ui.OptionWidget && item.isSelectable() ) {
11158 return item;
11159 }
11160 // Stop iterating when we've looped all the way around
11161 if ( i === stopAt ) {
11162 break;
11163 }
11164 }
11165 return null;
11166 };
11167
11168 /**
11169 * Get the next selectable item.
11170 *
11171 * @return {OO.ui.OptionWidget|null} Item, `null` if ther aren't any selectable items
11172 */
11173 OO.ui.SelectWidget.prototype.getFirstSelectableItem = function () {
11174 var i, len, item;
11175
11176 for ( i = 0, len = this.items.length; i < len; i++ ) {
11177 item = this.items[i];
11178 if ( item instanceof OO.ui.OptionWidget && item.isSelectable() ) {
11179 return item;
11180 }
11181 }
11182
11183 return null;
11184 };
11185
11186 /**
11187 * Add items.
11188 *
11189 * When items are added with the same values as existing items, the existing items will be
11190 * automatically removed before the new items are added.
11191 *
11192 * @param {OO.ui.OptionWidget[]} items Items to add
11193 * @param {number} [index] Index to insert items after
11194 * @fires add
11195 * @chainable
11196 */
11197 OO.ui.SelectWidget.prototype.addItems = function ( items, index ) {
11198 var i, len, item, hash,
11199 remove = [];
11200
11201 for ( i = 0, len = items.length; i < len; i++ ) {
11202 item = items[i];
11203 hash = OO.getHash( item.getData() );
11204 if ( hash in this.hashes ) {
11205 // Remove item with same value
11206 remove.push( this.hashes[hash] );
11207 }
11208 this.hashes[hash] = item;
11209 }
11210 if ( remove.length ) {
11211 this.removeItems( remove );
11212 }
11213
11214 // Mixin method
11215 OO.ui.GroupWidget.prototype.addItems.call( this, items, index );
11216
11217 // Always provide an index, even if it was omitted
11218 this.emit( 'add', items, index === undefined ? this.items.length - items.length - 1 : index );
11219
11220 return this;
11221 };
11222
11223 /**
11224 * Remove items.
11225 *
11226 * Items will be detached, not removed, so they can be used later.
11227 *
11228 * @param {OO.ui.OptionWidget[]} items Items to remove
11229 * @fires remove
11230 * @chainable
11231 */
11232 OO.ui.SelectWidget.prototype.removeItems = function ( items ) {
11233 var i, len, item, hash;
11234
11235 for ( i = 0, len = items.length; i < len; i++ ) {
11236 item = items[i];
11237 hash = OO.getHash( item.getData() );
11238 if ( hash in this.hashes ) {
11239 // Remove existing item
11240 delete this.hashes[hash];
11241 }
11242 if ( item.isSelected() ) {
11243 this.selectItem( null );
11244 }
11245 }
11246
11247 // Mixin method
11248 OO.ui.GroupWidget.prototype.removeItems.call( this, items );
11249
11250 this.emit( 'remove', items );
11251
11252 return this;
11253 };
11254
11255 /**
11256 * Clear all items.
11257 *
11258 * Items will be detached, not removed, so they can be used later.
11259 *
11260 * @fires remove
11261 * @chainable
11262 */
11263 OO.ui.SelectWidget.prototype.clearItems = function () {
11264 var items = this.items.slice();
11265
11266 // Clear all items
11267 this.hashes = {};
11268 // Mixin method
11269 OO.ui.GroupWidget.prototype.clearItems.call( this );
11270 this.selectItem( null );
11271
11272 this.emit( 'remove', items );
11273
11274 return this;
11275 };
11276
11277 /**
11278 * Select widget containing button options.
11279 *
11280 * Use together with OO.ui.ButtonOptionWidget.
11281 *
11282 * @class
11283 * @extends OO.ui.SelectWidget
11284 *
11285 * @constructor
11286 * @param {Object} [config] Configuration options
11287 */
11288 OO.ui.ButtonSelectWidget = function OoUiButtonSelectWidget( config ) {
11289 // Parent constructor
11290 OO.ui.ButtonSelectWidget.super.call( this, config );
11291
11292 // Initialization
11293 this.$element.addClass( 'oo-ui-buttonSelectWidget' );
11294 };
11295
11296 /* Setup */
11297
11298 OO.inheritClass( OO.ui.ButtonSelectWidget, OO.ui.SelectWidget );
11299
11300 /**
11301 * Overlaid menu of options.
11302 *
11303 * Menus are clipped to the visible viewport. They do not provide a control for opening or closing
11304 * the menu.
11305 *
11306 * Use together with OO.ui.MenuItemWidget.
11307 *
11308 * @class
11309 * @extends OO.ui.SelectWidget
11310 * @mixins OO.ui.ClippableElement
11311 *
11312 * @constructor
11313 * @param {Object} [config] Configuration options
11314 * @cfg {OO.ui.InputWidget} [input] Input to bind keyboard handlers to
11315 * @cfg {OO.ui.Widget} [widget] Widget to bind mouse handlers to
11316 * @cfg {boolean} [autoHide=true] Hide the menu when the mouse is pressed outside the menu
11317 */
11318 OO.ui.MenuWidget = function OoUiMenuWidget( config ) {
11319 // Config intialization
11320 config = config || {};
11321
11322 // Parent constructor
11323 OO.ui.MenuWidget.super.call( this, config );
11324
11325 // Mixin constructors
11326 OO.ui.ClippableElement.call( this, $.extend( {}, config, { $clippable: this.$group } ) );
11327
11328 // Properties
11329 this.flashing = false;
11330 this.visible = false;
11331 this.newItems = null;
11332 this.autoHide = config.autoHide === undefined || !!config.autoHide;
11333 this.$input = config.input ? config.input.$input : null;
11334 this.$widget = config.widget ? config.widget.$element : null;
11335 this.$previousFocus = null;
11336 this.isolated = !config.input;
11337 this.onKeyDownHandler = this.onKeyDown.bind( this );
11338 this.onDocumentMouseDownHandler = this.onDocumentMouseDown.bind( this );
11339
11340 // Initialization
11341 this.$element
11342 .hide()
11343 .attr( 'role', 'menu' )
11344 .addClass( 'oo-ui-menuWidget' );
11345 };
11346
11347 /* Setup */
11348
11349 OO.inheritClass( OO.ui.MenuWidget, OO.ui.SelectWidget );
11350 OO.mixinClass( OO.ui.MenuWidget, OO.ui.ClippableElement );
11351
11352 /* Methods */
11353
11354 /**
11355 * Handles document mouse down events.
11356 *
11357 * @param {jQuery.Event} e Key down event
11358 */
11359 OO.ui.MenuWidget.prototype.onDocumentMouseDown = function ( e ) {
11360 if ( !$.contains( this.$element[0], e.target ) && ( !this.$widget || !$.contains( this.$widget[0], e.target ) ) ) {
11361 this.toggle( false );
11362 }
11363 };
11364
11365 /**
11366 * Handles key down events.
11367 *
11368 * @param {jQuery.Event} e Key down event
11369 */
11370 OO.ui.MenuWidget.prototype.onKeyDown = function ( e ) {
11371 var nextItem,
11372 handled = false,
11373 highlightItem = this.getHighlightedItem();
11374
11375 if ( !this.isDisabled() && this.isVisible() ) {
11376 if ( !highlightItem ) {
11377 highlightItem = this.getSelectedItem();
11378 }
11379 switch ( e.keyCode ) {
11380 case OO.ui.Keys.ENTER:
11381 this.chooseItem( highlightItem );
11382 handled = true;
11383 break;
11384 case OO.ui.Keys.UP:
11385 nextItem = this.getRelativeSelectableItem( highlightItem, -1 );
11386 handled = true;
11387 break;
11388 case OO.ui.Keys.DOWN:
11389 nextItem = this.getRelativeSelectableItem( highlightItem, 1 );
11390 handled = true;
11391 break;
11392 case OO.ui.Keys.ESCAPE:
11393 if ( highlightItem ) {
11394 highlightItem.setHighlighted( false );
11395 }
11396 this.toggle( false );
11397 handled = true;
11398 break;
11399 }
11400
11401 if ( nextItem ) {
11402 this.highlightItem( nextItem );
11403 nextItem.scrollElementIntoView();
11404 }
11405
11406 if ( handled ) {
11407 e.preventDefault();
11408 e.stopPropagation();
11409 return false;
11410 }
11411 }
11412 };
11413
11414 /**
11415 * Bind key down listener.
11416 */
11417 OO.ui.MenuWidget.prototype.bindKeyDownListener = function () {
11418 if ( this.$input ) {
11419 this.$input.on( 'keydown', this.onKeyDownHandler );
11420 } else {
11421 // Capture menu navigation keys
11422 this.getElementWindow().addEventListener( 'keydown', this.onKeyDownHandler, true );
11423 }
11424 };
11425
11426 /**
11427 * Unbind key down listener.
11428 */
11429 OO.ui.MenuWidget.prototype.unbindKeyDownListener = function () {
11430 if ( this.$input ) {
11431 this.$input.off( 'keydown' );
11432 } else {
11433 this.getElementWindow().removeEventListener( 'keydown', this.onKeyDownHandler, true );
11434 }
11435 };
11436
11437 /**
11438 * Choose an item.
11439 *
11440 * This will close the menu when done, unlike selectItem which only changes selection.
11441 *
11442 * @param {OO.ui.OptionWidget} item Item to choose
11443 * @chainable
11444 */
11445 OO.ui.MenuWidget.prototype.chooseItem = function ( item ) {
11446 var widget = this;
11447
11448 // Parent method
11449 OO.ui.MenuWidget.super.prototype.chooseItem.call( this, item );
11450
11451 if ( item && !this.flashing ) {
11452 this.flashing = true;
11453 item.flash().done( function () {
11454 widget.toggle( false );
11455 widget.flashing = false;
11456 } );
11457 } else {
11458 this.toggle( false );
11459 }
11460
11461 return this;
11462 };
11463
11464 /**
11465 * @inheritdoc
11466 */
11467 OO.ui.MenuWidget.prototype.addItems = function ( items, index ) {
11468 var i, len, item;
11469
11470 // Parent method
11471 OO.ui.MenuWidget.super.prototype.addItems.call( this, items, index );
11472
11473 // Auto-initialize
11474 if ( !this.newItems ) {
11475 this.newItems = [];
11476 }
11477
11478 for ( i = 0, len = items.length; i < len; i++ ) {
11479 item = items[i];
11480 if ( this.isVisible() ) {
11481 // Defer fitting label until item has been attached
11482 item.fitLabel();
11483 } else {
11484 this.newItems.push( item );
11485 }
11486 }
11487
11488 // Reevaluate clipping
11489 this.clip();
11490
11491 return this;
11492 };
11493
11494 /**
11495 * @inheritdoc
11496 */
11497 OO.ui.MenuWidget.prototype.removeItems = function ( items ) {
11498 // Parent method
11499 OO.ui.MenuWidget.super.prototype.removeItems.call( this, items );
11500
11501 // Reevaluate clipping
11502 this.clip();
11503
11504 return this;
11505 };
11506
11507 /**
11508 * @inheritdoc
11509 */
11510 OO.ui.MenuWidget.prototype.clearItems = function () {
11511 // Parent method
11512 OO.ui.MenuWidget.super.prototype.clearItems.call( this );
11513
11514 // Reevaluate clipping
11515 this.clip();
11516
11517 return this;
11518 };
11519
11520 /**
11521 * @inheritdoc
11522 */
11523 OO.ui.MenuWidget.prototype.toggle = function ( visible ) {
11524 visible = ( visible === undefined ? !this.visible : !!visible ) && !!this.items.length;
11525
11526 var i, len,
11527 change = visible !== this.isVisible(),
11528 elementDoc = this.getElementDocument(),
11529 widgetDoc = this.$widget ? this.$widget[0].ownerDocument : null;
11530
11531 // Parent method
11532 OO.ui.MenuWidget.super.prototype.toggle.call( this, visible );
11533
11534 if ( change ) {
11535 if ( visible ) {
11536 this.bindKeyDownListener();
11537
11538 // Change focus to enable keyboard navigation
11539 if ( this.isolated && this.$input && !this.$input.is( ':focus' ) ) {
11540 this.$previousFocus = this.$( ':focus' );
11541 this.$input[0].focus();
11542 }
11543 if ( this.newItems && this.newItems.length ) {
11544 for ( i = 0, len = this.newItems.length; i < len; i++ ) {
11545 this.newItems[i].fitLabel();
11546 }
11547 this.newItems = null;
11548 }
11549 this.toggleClipping( true );
11550
11551 // Auto-hide
11552 if ( this.autoHide ) {
11553 elementDoc.addEventListener(
11554 'mousedown', this.onDocumentMouseDownHandler, true
11555 );
11556 // Support $widget being in a different document
11557 if ( widgetDoc && widgetDoc !== elementDoc ) {
11558 widgetDoc.addEventListener(
11559 'mousedown', this.onDocumentMouseDownHandler, true
11560 );
11561 }
11562 }
11563 } else {
11564 this.unbindKeyDownListener();
11565 if ( this.isolated && this.$previousFocus ) {
11566 this.$previousFocus[0].focus();
11567 this.$previousFocus = null;
11568 }
11569 elementDoc.removeEventListener(
11570 'mousedown', this.onDocumentMouseDownHandler, true
11571 );
11572 // Support $widget being in a different document
11573 if ( widgetDoc && widgetDoc !== elementDoc ) {
11574 widgetDoc.removeEventListener(
11575 'mousedown', this.onDocumentMouseDownHandler, true
11576 );
11577 }
11578 this.toggleClipping( false );
11579 }
11580 }
11581
11582 return this;
11583 };
11584
11585 /**
11586 * Menu for a text input widget.
11587 *
11588 * This menu is specially designed to be positioned beneath the text input widget. Even if the input
11589 * is in a different frame, the menu's position is automatically calculated and maintained when the
11590 * menu is toggled or the window is resized.
11591 *
11592 * @class
11593 * @extends OO.ui.MenuWidget
11594 *
11595 * @constructor
11596 * @param {OO.ui.TextInputWidget} input Text input widget to provide menu for
11597 * @param {Object} [config] Configuration options
11598 * @cfg {jQuery} [$container=input.$element] Element to render menu under
11599 */
11600 OO.ui.TextInputMenuWidget = function OoUiTextInputMenuWidget( input, config ) {
11601 // Parent constructor
11602 OO.ui.TextInputMenuWidget.super.call( this, config );
11603
11604 // Properties
11605 this.input = input;
11606 this.$container = config.$container || this.input.$element;
11607 this.onWindowResizeHandler = this.onWindowResize.bind( this );
11608
11609 // Initialization
11610 this.$element.addClass( 'oo-ui-textInputMenuWidget' );
11611 };
11612
11613 /* Setup */
11614
11615 OO.inheritClass( OO.ui.TextInputMenuWidget, OO.ui.MenuWidget );
11616
11617 /* Methods */
11618
11619 /**
11620 * Handle window resize event.
11621 *
11622 * @param {jQuery.Event} e Window resize event
11623 */
11624 OO.ui.TextInputMenuWidget.prototype.onWindowResize = function () {
11625 this.position();
11626 };
11627
11628 /**
11629 * @inheritdoc
11630 */
11631 OO.ui.TextInputMenuWidget.prototype.toggle = function ( visible ) {
11632 visible = visible === undefined ? !this.isVisible() : !!visible;
11633
11634 var change = visible !== this.isVisible();
11635
11636 if ( change && visible ) {
11637 // Make sure the width is set before the parent method runs.
11638 // After this we have to call this.position(); again to actually
11639 // position ourselves correctly.
11640 this.position();
11641 }
11642
11643 // Parent method
11644 OO.ui.TextInputMenuWidget.super.prototype.toggle.call( this, visible );
11645
11646 if ( change ) {
11647 if ( this.isVisible() ) {
11648 this.position();
11649 this.$( this.getElementWindow() ).on( 'resize', this.onWindowResizeHandler );
11650 } else {
11651 this.$( this.getElementWindow() ).off( 'resize', this.onWindowResizeHandler );
11652 }
11653 }
11654
11655 return this;
11656 };
11657
11658 /**
11659 * Position the menu.
11660 *
11661 * @chainable
11662 */
11663 OO.ui.TextInputMenuWidget.prototype.position = function () {
11664 var $container = this.$container,
11665 pos = OO.ui.Element.getRelativePosition( $container, this.$element.offsetParent() );
11666
11667 // Position under input
11668 pos.top += $container.height();
11669 this.$element.css( pos );
11670
11671 // Set width
11672 this.setIdealSize( $container.width() );
11673 // We updated the position, so re-evaluate the clipping state
11674 this.clip();
11675
11676 return this;
11677 };
11678
11679 /**
11680 * Structured list of items.
11681 *
11682 * Use with OO.ui.OutlineItemWidget.
11683 *
11684 * @class
11685 * @extends OO.ui.SelectWidget
11686 *
11687 * @constructor
11688 * @param {Object} [config] Configuration options
11689 */
11690 OO.ui.OutlineWidget = function OoUiOutlineWidget( config ) {
11691 // Config intialization
11692 config = config || {};
11693
11694 // Parent constructor
11695 OO.ui.OutlineWidget.super.call( this, config );
11696
11697 // Initialization
11698 this.$element.addClass( 'oo-ui-outlineWidget' );
11699 };
11700
11701 /* Setup */
11702
11703 OO.inheritClass( OO.ui.OutlineWidget, OO.ui.SelectWidget );
11704
11705 /**
11706 * Switch that slides on and off.
11707 *
11708 * @class
11709 * @extends OO.ui.Widget
11710 * @mixins OO.ui.ToggleWidget
11711 *
11712 * @constructor
11713 * @param {Object} [config] Configuration options
11714 * @cfg {boolean} [value=false] Initial value
11715 */
11716 OO.ui.ToggleSwitchWidget = function OoUiToggleSwitchWidget( config ) {
11717 // Parent constructor
11718 OO.ui.ToggleSwitchWidget.super.call( this, config );
11719
11720 // Mixin constructors
11721 OO.ui.ToggleWidget.call( this, config );
11722
11723 // Properties
11724 this.dragging = false;
11725 this.dragStart = null;
11726 this.sliding = false;
11727 this.$glow = this.$( '<span>' );
11728 this.$grip = this.$( '<span>' );
11729
11730 // Events
11731 this.$element.on( 'click', this.onClick.bind( this ) );
11732
11733 // Initialization
11734 this.$glow.addClass( 'oo-ui-toggleSwitchWidget-glow' );
11735 this.$grip.addClass( 'oo-ui-toggleSwitchWidget-grip' );
11736 this.$element
11737 .addClass( 'oo-ui-toggleSwitchWidget' )
11738 .append( this.$glow, this.$grip );
11739 };
11740
11741 /* Setup */
11742
11743 OO.inheritClass( OO.ui.ToggleSwitchWidget, OO.ui.Widget );
11744 OO.mixinClass( OO.ui.ToggleSwitchWidget, OO.ui.ToggleWidget );
11745
11746 /* Methods */
11747
11748 /**
11749 * Handle mouse down events.
11750 *
11751 * @param {jQuery.Event} e Mouse down event
11752 */
11753 OO.ui.ToggleSwitchWidget.prototype.onClick = function ( e ) {
11754 if ( !this.isDisabled() && e.which === 1 ) {
11755 this.setValue( !this.value );
11756 }
11757 };
11758
11759 }( OO ) );