blob: 56238b6c473a21097175b4b473488abf4140aae3 (
plain)
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
|
<?php
namespace OOUI;
/**
* Element containing an indicator.
*
* Indicators are graphics, smaller than normal text. They can be used to describe unique status or
* behavior. Indicators should only be used in exceptional cases; such as a button that opens a menu
* instead of performing an action directly, or an item in a list which has errors that need to be
* resolved.
*
* @abstract
*/
class IndicatorElement extends ElementMixin {
/**
* Symbolic indicator name
*
* @var string|null
*/
protected $indicator = null;
public static $targetPropertyName = 'indicator';
/**
* @param Element $element Element being mixed into
* @param array $config Configuration options
* @param string $config['indicator'] Symbolic indicator name
*/
public function __construct( Element $element, array $config = array() ) {
// Parent constructor
// FIXME 'indicatorElement' is a very stupid way to call '$indicator'
$target = isset( $config['indicatorElement'] )
? $config['indicatorElement']
: new Tag( 'span' );
parent::__construct( $element, $target, $config );
// Initialization
$this->target->addClasses( array( 'oo-ui-indicatorElement-indicator' ) );
$this->setIndicator( isset( $config['indicator'] ) ? $config['indicator'] : null );
}
/**
* Set indicator name.
*
* @param string|null $indicator Symbolic name of indicator to use or null for no indicator
* @chainable
*/
public function setIndicator( $indicator = null ) {
if ( $this->indicator !== null ) {
$this->target->removeClasses( array( 'oo-ui-indicator-' . $this->indicator ) );
}
if ( $indicator !== null ) {
$this->target->addClasses( array( 'oo-ui-indicator-' . $indicator ) );
}
$this->indicator = $indicator;
$this->element->toggleClasses( array( 'oo-ui-indicatorElement' ), (bool)$this->indicator );
return $this;
}
/**
* Get indicator name.
*
* @return string Symbolic name of indicator
*/
public function getIndicator() {
return $this->indicator;
}
public function getConfig( &$config ) {
if ( $this->indicator !== null ) {
$config['indicator'] = $this->indicator;
}
return parent::getConfig( $config );
}
}
|