all files / src/src/layouts/ StackLayout.js

64.71% Statements 55/85
51.11% Branches 23/45
60% Functions 9/15
64.71% Lines 55/85
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305                                                                              716×     716×     716×     716× 716× 716×     716× 716×                                             716× 716×   716×               1104×                                                               212×   212×                             716× 628×       88×     88×   88× 88×     88×                                                                                                                               88× 88×   88× 88× 88×           88×                                                                         1104× 1104× 960× 160×       80×   80×     80× 80×     960× 80× 80×     144× 16× 16×        
/**
 * StackLayouts contain a series of {@link OO.ui.PanelLayout panel layouts}. By default, only one
 * panel is displayed at a time, though the stack layout can also be configured to show all
 * contained panels, one after another, by setting the #continuous option to 'true'.
 *
 *     @example
 *     // A stack layout with two panels, configured to be displayed continuously
 *     const myStack = new OO.ui.StackLayout( {
 *         items: [
 *             new OO.ui.PanelLayout( {
 *                 $content: $( '<p>Panel One</p>' ),
 *                 padded: true,
 *                 framed: true
 *             } ),
 *             new OO.ui.PanelLayout( {
 *                 $content: $( '<p>Panel Two</p>' ),
 *                 padded: true,
 *                 framed: true
 *             } )
 *         ],
 *         continuous: true
 *     } );
 *     $( document.body ).append( myStack.$element );
 *
 * @class
 * @extends OO.ui.PanelLayout
 * @mixes OO.ui.mixin.GroupElement
 *
 * @constructor
 * @param {Object} [config] Configuration options
 * @param {boolean} [config.continuous=false] Show all panels, one after another. By default, only one panel
 *  is displayed at a time.
 * @param {OO.ui.Layout[]} [config.items] Panel layouts to add to the stack layout.
 * @param {boolean} [config.hideUntilFound] Hide panels using hidden="until-found", meaning they will be
 *  shown when matched with the browser's find-and-replace feature if supported.
 */
OO.ui.StackLayout = function OoUiStackLayout( config ) {
	// Configuration initialization
	// Make the layout scrollable in continuous mode, otherwise each
	// panel is responsible for its own scrolling.
	config = $.extend( { scrollable: !!( config && config.continuous ) }, config );
 
	// Parent constructor
	OO.ui.StackLayout.super.call( this, config );
 
	// Mixin constructors
	OO.ui.mixin.GroupElement.call( this, $.extend( { $group: this.$element }, config ) );
 
	// Properties
	this.currentItem = null;
	this.setContinuous( !!config.continuous );
	this.hideUntilFound = !!config.hideUntilFound;
 
	// Initialization
	this.$element.addClass( 'oo-ui-stackLayout' );
	this.addItems( config.items || [] );
};
 
/* Setup */
 
OO.inheritClass( OO.ui.StackLayout, OO.ui.PanelLayout );
OO.mixinClass( OO.ui.StackLayout, OO.ui.mixin.GroupElement );
 
/* Events */
 
/**
 * A 'set' event is emitted when panels are {@link OO.ui.StackLayout#addItems added}, {@link OO.ui.StackLayout#removeItems removed},
 * {@link OO.ui.StackLayout#clearItems cleared} or {@link OO.ui.StackLayout#setItem displayed}.
 *
 * @event OO.ui.StackLayout#set
 * @param {OO.ui.Layout|null} item Current panel or `null` if no panel is shown
 */
 
/* Methods */
 
/**
 * Set the layout to continuous mode or not
 *
 * @param {boolean} continuous Continuous mode
 */
OO.ui.StackLayout.prototype.setContinuous = function ( continuous ) {
	this.continuous = continuous;
	this.$element.toggleClass( 'oo-ui-stackLayout-continuous', !!continuous );
	// Force an update of the attributes used to hide/show items
	this.updateHiddenState( this.items, this.currentItem );
};
 
/**
 * Check if the layout is in continuous mode
 *
 * @return {boolean} The layout is in continuous mode
 */
OO.ui.StackLayout.prototype.isContinuous = function () {
	return this.continuous;
};
 
/**
 * Get the current panel.
 *
 * @return {OO.ui.Layout|null}
 */
OO.ui.StackLayout.prototype.getCurrentItem = function () {
	return this.currentItem;
};
 
/**
 * Unset the current item.
 *
 * @private
 * @param {OO.ui.StackLayout} layout
 * @fires OO.ui.StackLayout#set
 */
OO.ui.StackLayout.prototype.unsetCurrentItem = function () {
	const prevItem = this.currentItem;
	if ( prevItem === null ) {
		return;
	}
 
	this.currentItem = null;
	this.emit( 'set', null );
};
 
/**
 * Set the hideUntilFound config (see contructor)
 *
 * @param {boolean} hideUntilFound
 */
OO.ui.StackLayout.prototype.setHideUntilFound = function ( hideUntilFound ) {
	this.hideUntilFound = hideUntilFound;
	// Force an update of the attributes used to hide/show items
	this.updateHiddenState( this.items, this.currentItem );
};
 
/**
 * Add panel layouts to the stack layout.
 *
 * Panels will be added to the end of the stack layout array unless the optional index parameter
 * specifies a different insertion point. Adding a panel that is already in the stack will move it
 * to the end of the array or the point specified by the index.
 *
 * @param {OO.ui.Layout[]} [items] Panels to add
 * @param {number} [index] Index of the insertion point
 * @chainable
 * @return {OO.ui.StackLayout} The layout, for chaining
 */
OO.ui.StackLayout.prototype.addItems = function ( items, index ) {
	if ( !items || items.length === 0 ) {
		return this;
	}
 
	// Update the visibility
	this.updateHiddenState( items, this.currentItem );
 
	// Mixin method
	OO.ui.mixin.GroupElement.prototype.addItems.call( this, items, index );
 
	Eif ( !this.currentItem ) {
		this.setItem( items[ 0 ] );
	}
 
	return this;
};
 
/**
 * Remove the specified panels from the stack layout.
 *
 * Removed panels are detached from the DOM, not removed, so that they may be reused. To remove all
 * panels, you may wish to use the #clearItems method instead.
 *
 * @param {OO.ui.Layout[]} itemsToRemove Panels to remove
 * @chainable
 * @return {OO.ui.StackLayout} The layout, for chaining
 * @fires OO.ui.StackLayout#set
 */
OO.ui.StackLayout.prototype.removeItems = function ( itemsToRemove ) {
	const isCurrentItemRemoved = itemsToRemove.indexOf( this.currentItem ) !== -1;
 
	let nextItem;
	if ( isCurrentItemRemoved ) {
		let i = this.items.indexOf( this.currentItem );
		do {
			nextItem = this.items[ ++i ];
		} while ( nextItem && itemsToRemove.indexOf( nextItem ) !== -1 );
	}
 
	// Mixin method
	OO.ui.mixin.GroupElement.prototype.removeItems.call( this, itemsToRemove );
 
	if ( isCurrentItemRemoved ) {
		if ( this.items.length ) {
			this.setItem( nextItem || this.items[ this.items.length - 1 ] );
		} else {
			this.unsetCurrentItem();
		}
	}
 
	return this;
};
 
/**
 * Clear all panels from the stack layout.
 *
 * Cleared panels are detached from the DOM, not removed, so that they may be reused. To remove only
 * a subset of panels, use the #removeItems method.
 *
 * @chainable
 * @return {OO.ui.StackLayout} The layout, for chaining
 * @fires OO.ui.StackLayout#set
 */
OO.ui.StackLayout.prototype.clearItems = function () {
	this.unsetCurrentItem();
	OO.ui.mixin.GroupElement.prototype.clearItems.call( this );
 
	return this;
};
 
/**
 * Show the specified panel.
 *
 * If another panel is currently displayed, it will be hidden.
 *
 * @param {OO.ui.Layout} item Panel to show
 * @chainable
 * @return {OO.ui.StackLayout} The layout, for chaining
 * @fires OO.ui.StackLayout#set
 */
OO.ui.StackLayout.prototype.setItem = function ( item ) {
	Eif ( item !== this.currentItem ) {
		this.updateHiddenState( this.items, item );
 
		Eif ( this.items.indexOf( item ) !== -1 ) {
			this.currentItem = item;
			this.emit( 'set', item );
		} else {
			this.unsetCurrentItem();
		}
	}
 
	return this;
};
 
/**
 * Reset the scroll offset of all panels, or the container if continuous
 *
 * @inheritdoc
 */
OO.ui.StackLayout.prototype.resetScroll = function () {
	if ( this.isContinuous() ) {
		// Parent method
		return OO.ui.StackLayout.super.prototype.resetScroll.call( this );
	}
	// Reset each panel
	this.getItems().forEach( function ( panel ) {
		// eslint-disable-next-line no-jquery/no-class-state
		const hidden = panel.$element.hasClass( 'oo-ui-element-hidden' );
		// Scroll can only be reset when panel is visible
		panel.$element.removeClass( 'oo-ui-element-hidden' );
		panel.resetScroll();
		if ( hidden ) {
			panel.$element.addClass( 'oo-ui-element-hidden' );
		}
	} );
 
	return this;
};
 
/**
 * Update the visibility of all items in case of non-continuous view.
 *
 * Ensure all items are hidden except for the selected one.
 * This method does nothing when the stack is continuous.
 *
 * @private
 * @param {OO.ui.Layout[]} items Item list iterate over
 * @param {OO.ui.Layout} [selectedItem] Selected item to show
 */
OO.ui.StackLayout.prototype.updateHiddenState = function ( items, selectedItem ) {
	const layout = this;
	if ( !this.isContinuous() ) {
		items.forEach( function ( item ) {
			if ( !selectedItem || selectedItem !== item ) {
				// If the panel is a TabPanelLayout which has a disabled tab, then
				// fully hide it so we don't search inside it and automatically switch
				// to it.
				const isDisabled = item instanceof OO.ui.TabPanelLayout &&
					item.getTabItem() && item.getTabItem().isDisabled();
				const hideUntilFound = !isDisabled && layout.hideUntilFound;
				// jQuery "fixes" the value of the hidden attribute to always be "hidden"
				// Browsers which don't support 'until-found' will still hide the element
				item.$element[ 0 ].setAttribute( 'hidden', hideUntilFound ? 'until-found' : 'hidden' );
				item.$element.attr( 'aria-hidden', 'true' );
			}
		} );
		if ( selectedItem ) {
			selectedItem.$element[ 0 ].removeAttribute( 'hidden' );
			selectedItem.$element.removeAttr( 'aria-hidden' );
		}
	} else {
		items.forEach( function ( item ) {
			item.$element[ 0 ].removeAttribute( 'hidden' );
			item.$element.removeAttr( 'aria-hidden' );
		} );
	}
};