Update OOUI to v0.26.0
[lhc/web/wiklou.git] / resources / lib / oojs-ui / oojs-ui-wikimediaui.js
1 /*!
2 * OOUI v0.26.0
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-03-21T00:00:53Z
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 ( element.supports( [ 'hasFlag' ] ) ) {
48 isFramed = element.supports( [ 'isFramed' ] ) && element.isFramed();
49 isActive = element.supports( [ 'isActive' ] ) && element.isActive();
50 isToolOrGroup =
51 ( OO.ui.Tool && element instanceof OO.ui.Tool ) ||
52 ( OO.ui.ToolGroup && element instanceof OO.ui.ToolGroup );
53 if (
54 // Button with a dark background
55 isFramed && ( isActive || element.isDisabled() || element.hasFlag( 'primary' ) ) ||
56 // Toolbar with a dark background
57 isToolOrGroup && element.hasFlag( 'primary' )
58 ) {
59 // … use white icon / indicator, regardless of other flags
60 variants.invert = true;
61 } else if ( !isFramed && element.isDisabled() ) {
62 // Frameless disabled button, always use black icon / indicator regardless of other flags
63 variants.invert = false;
64 } else if ( !element.isDisabled() ) {
65 // Any other kind of button, use the right colored icon / indicator if available
66 variants.progressive = element.hasFlag( 'progressive' ) ||
67 // Active tools/toolgroups
68 ( isToolOrGroup && isActive ) ||
69 // Pressed or selected outline option widgets
70 (
71 OO.ui.OutlineOptionWidget && element instanceof OO.ui.OutlineOptionWidget &&
72 ( element.isPressed() || element.isSelected() )
73 );
74
75 variants.destructive = element.hasFlag( 'destructive' );
76 variants.warning = element.hasFlag( 'warning' );
77 }
78 }
79
80 for ( variant in variants ) {
81 classes[ variants[ variant ] ? 'on' : 'off' ].push( 'oo-ui-image-' + variant );
82 }
83
84 return classes;
85 };
86
87 /**
88 * @inheritdoc
89 */
90 OO.ui.WikimediaUITheme.prototype.getDialogTransitionDuration = function () {
91 return 250;
92 };
93
94 /* Instantiation */
95
96 OO.ui.theme = new OO.ui.WikimediaUITheme();
97
98 }( OO ) );
99
100 //# sourceMappingURL=oojs-ui-wikimediaui.js.map