a547020ce6c06504f6c126a92e24712c85d451f2
[lhc/web/wiklou.git] / resources / src / mediawiki.rcfilters / ui / mw.rcfilters.ui.CapsuleItemWidget.js
1 ( function ( mw, $ ) {
2 /**
3 * Extend OOUI's CapsuleItemWidget to also display a popup on hover.
4 *
5 * @class
6 * @extends OO.ui.CapsuleItemWidget
7 * @mixins OO.ui.mixin.PopupElement
8 *
9 * @constructor
10 * @param {mw.rcfilters.Controller} controller
11 * @param {mw.rcfilters.dm.FilterItem} model Item model
12 * @param {Object} config Configuration object
13 * @cfg {jQuery} [$overlay] A jQuery object serving as overlay for popups
14 */
15 mw.rcfilters.ui.CapsuleItemWidget = function MwRcfiltersUiCapsuleItemWidget( controller, model, config ) {
16 var $popupContent = $( '<div>' )
17 .addClass( 'mw-rcfilters-ui-capsuleItemWidget-popup' ),
18 descLabelWidget = new OO.ui.LabelWidget();
19
20 // Configuration initialization
21 config = config || {};
22
23 this.controller = controller;
24 this.model = model;
25 this.$overlay = config.$overlay || this.$element;
26 this.positioned = false;
27
28 // Parent constructor
29 mw.rcfilters.ui.CapsuleItemWidget.parent.call( this, $.extend( {
30 data: this.model.getName(),
31 label: this.model.getLabel()
32 }, config ) );
33
34 // Mixin constructors
35 OO.ui.mixin.PopupElement.call( this, $.extend( {
36 popup: {
37 padded: true,
38 align: 'center',
39 $content: $popupContent
40 .append( descLabelWidget.$element ),
41 $floatableContainer: this.$element
42 }
43 }, config ) );
44
45 // Set initial text for the popup - the description
46 descLabelWidget.setLabel( this.model.getDescription() );
47
48 this.$highlight = $( '<div>' )
49 .addClass( 'mw-rcfilters-ui-capsuleItemWidget-highlight' );
50
51 // Events
52 this.model.connect( this, { update: 'onModelUpdate' } );
53
54 this.closeButton.connect( this, { click: 'onCapsuleRemovedByUser' } );
55
56 // Initialization
57 this.$overlay.append( this.popup.$element );
58 this.$element
59 .prepend( this.$highlight )
60 .attr( 'aria-haspopup', 'true' )
61 .addClass( 'mw-rcfilters-ui-capsuleItemWidget' )
62 .on( 'mouseover', this.onHover.bind( this, true ) )
63 .on( 'mouseout', this.onHover.bind( this, false ) );
64
65 this.setCurrentMuteState();
66 this.setHighlightColor();
67 };
68
69 OO.inheritClass( mw.rcfilters.ui.CapsuleItemWidget, OO.ui.CapsuleItemWidget );
70 OO.mixinClass( mw.rcfilters.ui.CapsuleItemWidget, OO.ui.mixin.PopupElement );
71
72 /**
73 * Respond to model update event
74 */
75 mw.rcfilters.ui.CapsuleItemWidget.prototype.onModelUpdate = function () {
76 this.setCurrentMuteState();
77
78 this.setHighlightColor();
79 };
80
81 mw.rcfilters.ui.CapsuleItemWidget.prototype.setHighlightColor = function () {
82 var selectedColor = this.model.isHighlightEnabled() ? this.model.getHighlightColor() : null;
83
84 this.$highlight
85 .attr( 'data-color', selectedColor )
86 .toggleClass(
87 'mw-rcfilters-ui-capsuleItemWidget-highlight-highlighted',
88 !!selectedColor
89 );
90 };
91
92 /**
93 * Set the current mute state for this item
94 */
95 mw.rcfilters.ui.CapsuleItemWidget.prototype.setCurrentMuteState = function () {
96 this.$element
97 .toggleClass(
98 'mw-rcfilters-ui-capsuleItemWidget-muted',
99 !this.model.isSelected() ||
100 this.model.isIncluded() ||
101 this.model.isConflicted() ||
102 this.model.isFullyCovered()
103 );
104 };
105
106 /**
107 * Respond to hover event on the capsule item.
108 *
109 * @param {boolean} isHovering Mouse is hovering on the item
110 */
111 mw.rcfilters.ui.CapsuleItemWidget.prototype.onHover = function ( isHovering ) {
112 if ( this.model.getDescription() ) {
113 this.popup.toggle( isHovering );
114
115 if ( isHovering && !this.positioned ) {
116 // Recalculate position to be center of the capsule item
117 this.popup.$element.css( 'margin-left', ( this.$element.width() / 2 ) );
118 this.positioned = true;
119 }
120 }
121 };
122
123 /**
124 * Respond to the user removing the capsule with the close button
125 */
126 mw.rcfilters.ui.CapsuleItemWidget.prototype.onCapsuleRemovedByUser = function () {
127 this.controller.updateFilter( this.model.getName(), false );
128 this.controller.clearHighlightColor( this.model.getName() );
129 };
130
131 /**
132 * Remove and destroy external elements of this widget
133 */
134 mw.rcfilters.ui.CapsuleItemWidget.prototype.destroy = function () {
135 // Destroy the popup
136 this.popup.$element.detach();
137
138 // Disconnect events
139 this.model.disconnect( this );
140 this.closeButton.disconnect( this );
141 };
142 }( mediaWiki, jQuery ) );