|
1
|
|
|
<?php |
|
2
|
|
|
/** |
|
3
|
|
|
* CodeEditor for Craft CMS |
|
4
|
|
|
* |
|
5
|
|
|
* Provides a code editor field with Twig & Craft API autocomplete |
|
6
|
|
|
* |
|
7
|
|
|
* @link https://nystudio107.com |
|
|
|
|
|
|
8
|
|
|
* @copyright Copyright (c) 2022 nystudio107 |
|
|
|
|
|
|
9
|
|
|
*/ |
|
|
|
|
|
|
10
|
|
|
|
|
11
|
|
|
namespace nystudio107\codeeditor\autocompletes; |
|
12
|
|
|
|
|
13
|
|
|
use craft\web\twig\variables\Cp; |
|
14
|
|
|
use nystudio107\codeeditor\base\Autocomplete; |
|
15
|
|
|
use nystudio107\codeeditor\models\CompleteItem; |
|
16
|
|
|
use nystudio107\codeeditor\types\AutocompleteTypes; |
|
17
|
|
|
use nystudio107\codeeditor\types\CompleteItemKind; |
|
18
|
|
|
|
|
19
|
|
|
/** |
|
|
|
|
|
|
20
|
|
|
* @author nystudio107 |
|
|
|
|
|
|
21
|
|
|
* @package CodeEditor |
|
|
|
|
|
|
22
|
|
|
* @since 1.0.0 |
|
|
|
|
|
|
23
|
|
|
*/ |
|
|
|
|
|
|
24
|
|
|
class EnvironmentVariableAutocomplete extends Autocomplete |
|
25
|
|
|
{ |
|
26
|
|
|
// Public Properties |
|
27
|
|
|
// ========================================================================= |
|
28
|
|
|
|
|
29
|
|
|
/** |
|
|
|
|
|
|
30
|
|
|
* @var string The name of the autocomplete |
|
31
|
|
|
*/ |
|
32
|
|
|
public $name = 'EnvironmentVariableAutocomplete'; |
|
33
|
|
|
|
|
34
|
|
|
/** |
|
|
|
|
|
|
35
|
|
|
* @var string The type of the autocomplete |
|
36
|
|
|
*/ |
|
37
|
|
|
public $type = AutocompleteTypes::GeneralAutocomplete; |
|
38
|
|
|
|
|
39
|
|
|
/** |
|
|
|
|
|
|
40
|
|
|
* @var bool Whether the autocomplete should be parsed with . -delimited nested sub-properties |
|
41
|
|
|
*/ |
|
42
|
|
|
public $hasSubProperties = false; |
|
43
|
|
|
|
|
44
|
|
|
// Public Methods |
|
45
|
|
|
// ========================================================================= |
|
46
|
|
|
|
|
47
|
|
|
/** |
|
|
|
|
|
|
48
|
|
|
* @inerhitDoc |
|
49
|
|
|
*/ |
|
|
|
|
|
|
50
|
|
|
public function generateCompleteItems(): void |
|
51
|
|
|
{ |
|
52
|
|
|
$cp = new Cp(); |
|
53
|
|
|
$suggestions = $cp->getEnvSuggestions(true); |
|
54
|
|
|
foreach ($suggestions as $suggestion) { |
|
55
|
|
|
foreach ($suggestion['data'] as $item) { |
|
56
|
|
|
$name = $item['name']; |
|
57
|
|
|
$prefix = $name[0]; |
|
58
|
|
|
$trimmedName = ltrim($name, $prefix); |
|
59
|
|
|
CompleteItem::create() |
|
60
|
|
|
->label($name) |
|
61
|
|
|
->insertText($trimmedName) |
|
62
|
|
|
->filterText($trimmedName) |
|
63
|
|
|
->detail($item['hint']) |
|
64
|
|
|
->kind(CompleteItemKind::ConstantKind) |
|
65
|
|
|
->sortText('~' . $name) |
|
66
|
|
|
->add($this); |
|
67
|
|
|
} |
|
68
|
|
|
} |
|
69
|
|
|
} |
|
70
|
|
|
} |
|
71
|
|
|
|