DBBooleanColourfull   A
last analyzed

Complexity

Total Complexity 6

Size/Duplication

Total Lines 57
Duplicated Lines 0 %

Importance

Changes 3
Bugs 0 Features 0
Metric Value
wmc 6
eloc 20
c 3
b 0
f 0
dl 0
loc 57
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A NiceAndColourfullInner() 0 14 4
A NiceAndColourfullInvertedColours() 0 3 1
A NiceAndColourfull() 0 3 1
1
<?php
2
3
namespace Sunnysideup\YesNoAnyFilter;
4
5
use SilverStripe\Core\Extension;
6
use SilverStripe\ORM\FieldType\DBBoolean;
7
use SilverStripe\ORM\FieldType\DBField;
8
9
/**
10
 * Class \Sunnysideup\YesNoAnyFilter\DBBooleanColourfull.
11
 *
12
 * @property DBBoolean|DBBooleanColourfull $owner
13
 */
14
class DBBooleanColourfull extends Extension
15
{
16
    //colours from CMS
17
    /**
18
     * @var string
19
     */
20
    private const BAD_COLOUR = '#da273b';
21
22
    /**
23
     * @var string
24
     */
25
    private const GOOD_COLOUR = '#008a00';
26
27
    /**
28
     * @var string
29
     */
30
    private const YES_VALUE = 'Yes';
31
32
    /**
33
     * @var string
34
     */
35
    private const NO_VALUE = 'No';
36
37
    /**
38
     * @var string
39
     */
40
    private const STYLE = 'color: #fff; text-align: center; text-transform: uppercase; font-weight: bold; border-radius: 10px; max-width: 4em;';
41
42
    private static $casting = [
43
        'NiceAndColourfull' => 'HTMLFragment',
44
        'NiceAndColourfullInvertedColours' => 'HTMLFragment',
45
    ];
46
47
    public function NiceAndColourfull()
48
    {
49
        return $this->NiceAndColourfullInner();
50
    }
51
52
    public function NiceAndColourfullInvertedColours()
53
    {
54
        return $this->NiceAndColourfullInner(true);
55
    }
56
57
    protected function NiceAndColourfullInner(?bool $invertColours = false)
58
    {
59
        /** @var DBBoolean $owner */
60
        $owner = $this->getOwner();
61
        $v = (bool) $owner->getValue();
62
        if ($v) {
63
            $bgColour = $invertColours ? self::BAD_COLOUR : self::GOOD_COLOUR;
64
            $text = self::YES_VALUE;
65
        } else {
66
            $bgColour = $invertColours ? self::GOOD_COLOUR : self::BAD_COLOUR;
67
            $text = self::NO_VALUE;
68
        }
69
70
        return DBField::create_field('HTMLFragment', '<span class="boolean-nice-and-colourfull" style="display: block; background-color: ' . $bgColour . '; ' . self::STYLE . ' ">' . $text . '</span>');
71
    }
72
}
73