forked from phacility/phabricator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAphrontBarView.php
63 lines (48 loc) · 1.36 KB
/
AphrontBarView.php
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
<?php
abstract class AphrontBarView extends AphrontView {
private $color;
private $caption = '';
const COLOR_DEFAULT = 'default';
const COLOR_WARNING = 'warning';
const COLOR_DANGER = 'danger';
const COLOR_AUTO_BADNESS = 'auto_badness'; // more = bad! :(
const COLOR_AUTO_GOODNESS = 'auto_goodness'; // more = good! :)
const THRESHOLD_DANGER = 0.85;
const THRESHOLD_WARNING = 0.75;
abstract protected function getRatio();
abstract protected function getDefaultColor();
final public function setColor($color) {
$this->color = $color;
return $this;
}
final public function setCaption($text) {
$this->caption = $text;
return $this;
}
final protected function getColor() {
$color = $this->color;
if (!$color) {
$color = $this->getDefaultColor();
}
switch ($color) {
case self::COLOR_DEFAULT:
case self::COLOR_WARNING:
case self::COLOR_DANGER:
return $color;
}
$ratio = $this->getRatio();
if ($color === self::COLOR_AUTO_GOODNESS) {
$ratio = 1.0 - $ratio;
}
if ($ratio >= self::THRESHOLD_DANGER) {
return self::COLOR_DANGER;
} else if ($ratio >= self::THRESHOLD_WARNING) {
return self::COLOR_WARNING;
} else {
return self::COLOR_DEFAULT;
}
}
final protected function getCaption() {
return $this->caption;
}
}