Merge "maintenance: Document secondary purpose of --server"
[lhc/web/wiklou.git] / resources / lib / oojs-ui / oojs-ui-wikimediaui.js
1 /*!
2 * OOUI v0.26.3
3 * https://www.mediawiki.org/wiki/OOUI
4 *
5 * Copyright 2011–2018 OOUI Team and other contributors.
6 * Released under the MIT license
7 * http://oojs.mit-license.org
8 *
9 * Date: 2018-04-10T22:15:39Z
10 */
11 ( function ( OO ) {
12
13 'use strict';
14
15 /**
16 * @class
17 * @extends OO.ui.Theme
18 *
19 * @constructor
20 */
21 OO.ui.WikimediaUITheme = function OoUiWikimediaUITheme() {
22 // Parent constructor
23 OO.ui.WikimediaUITheme.parent.call( this );
24 };
25
26 /* Setup */
27
28 OO.inheritClass( OO.ui.WikimediaUITheme, OO.ui.Theme );
29
30 /* Methods */
31
32 /**
33 * @inheritdoc
34 */
35 OO.ui.WikimediaUITheme.prototype.getElementClasses = function ( element ) {
36 // Parent method
37 var variant, isFramed, isActive, isToolOrGroup,
38 variants = {
39 warning: false,
40 invert: false,
41 progressive: false,
42 destructive: false
43 },
44 // Parent method
45 classes = OO.ui.WikimediaUITheme.parent.prototype.getElementClasses.call( this, element );
46
47 if (
48 element instanceof OO.ui.IconWidget &&
49 element.$element.hasClass( 'oo-ui-checkboxInputWidget-checkIcon' )
50 ) {
51 // Icon on CheckboxInputWidget
52 variants.invert = true;
53 } else if ( element.supports( [ 'hasFlag' ] ) ) {
54 isFramed = element.supports( [ 'isFramed' ] ) && element.isFramed();
55 isActive = element.supports( [ 'isActive' ] ) && element.isActive();
56 isToolOrGroup =
57 ( OO.ui.Tool && element instanceof OO.ui.Tool ) ||
58 ( OO.ui.ToolGroup && element instanceof OO.ui.ToolGroup );
59 if (
60 // Button with a dark background
61 isFramed && ( isActive || element.isDisabled() || element.hasFlag( 'primary' ) ) ||
62 // Toolbar with a dark background
63 isToolOrGroup && element.hasFlag( 'primary' )
64 ) {
65 // … use white icon / indicator, regardless of other flags
66 variants.invert = true;
67 } else if ( !isFramed && element.isDisabled() ) {
68 // Frameless disabled button, always use black icon / indicator regardless of other flags
69 variants.invert = false;
70 } else if ( !element.isDisabled() ) {
71 // Any other kind of button, use the right colored icon / indicator if available
72 variants.progressive = element.hasFlag( 'progressive' ) ||
73 // Active tools/toolgroups
74 ( isToolOrGroup && isActive ) ||
75 // Pressed or selected outline option widgets
76 (
77 OO.ui.OutlineOptionWidget && element instanceof OO.ui.OutlineOptionWidget &&
78 ( element.isPressed() || element.isSelected() )
79 );
80
81 variants.destructive = element.hasFlag( 'destructive' );
82 variants.warning = element.hasFlag( 'warning' );
83 }
84 }
85
86 for ( variant in variants ) {
87 classes[ variants[ variant ] ? 'on' : 'off' ].push( 'oo-ui-image-' + variant );
88 }
89
90 return classes;
91 };
92
93 /**
94 * @inheritdoc
95 */
96 OO.ui.WikimediaUITheme.prototype.getDialogTransitionDuration = function () {
97 return 250;
98 };
99
100 /* Instantiation */
101
102 OO.ui.theme = new OO.ui.WikimediaUITheme();
103
104 }( OO ) );
105
106 //# sourceMappingURL=oojs-ui-wikimediaui.js.map