GroupActionCollection::addGroupSelectAction()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 6
rs 9.4285
cc 2
eloc 3
nc 2
nop 2
1
<?php
2
3
/**
4
 * @copyright   Copyright (c) 2015 ublaboo <[email protected]>
5
 * @author      Pavel Janda <[email protected]>
6
 * @package     Ublaboo
7
 */
8
9
namespace Ublaboo\DataGrid\GroupAction;
10
11
use Nette;
12
use Nette\SmartObject;
13
use Nette\Application\UI\Form;
14
use Ublaboo\DataGrid\DataGrid;
15
use Ublaboo\DataGrid\Exception\DataGridGroupActionException;
16
17
class GroupActionCollection
18
{
19
20
	use SmartObject;
21
22
	const ID_ATTRIBUTE_PREFIX = 'group_action_item_';
23
24
	/**
25
	 * @var GroupAction[]
26
	 */
27
	protected $group_actions = [];
28
29
	/**
30
	 * @var DataGrid
31
	 */
32
	protected $datagrid;
33
34
35
	public function __construct(DataGrid $datagrid)
36
	{
37
		$this->datagrid = $datagrid;
38
	}
39
40
41
	/**
42
	 * Get assambled form
43
	 * @param Nette\Forms\Container $container
44
	 * @return void
45
	 */
46
	public function addToFormContainer($container)
47
	{
48
		/** @var Nette\Application\UI\Form $form */
49
		$form = $container->lookup('Nette\Application\UI\Form');
50
		$translator = $form->getTranslator();
51
		$main_options = [];
52
53
		/**
54
		 * First foreach for filling "main" select
55
		 */
56
		foreach ($this->group_actions as $id => $action) {
57
			$main_options[$id] = $action->getTitle();
58
		}
59
60
		$container->addSelect('group_action', '', $main_options)
61
			->setPrompt('ublaboo_datagrid.choose');
62
63
		/**
64
		 * Second for creating select for each "sub"-action
65
		 */
66
		foreach ($this->group_actions as $id => $action) {
67
			$control = null;
68
69
			if ($action instanceof GroupSelectAction) {
70
				if ($action->hasOptions()) {
71
					if ($action instanceof GroupMultiSelectAction) {
72
						$control = $container->addMultiSelect($id, '', $action->getOptions());
73
						$control->setAttribute('data-datagrid-multiselect-id', static::ID_ATTRIBUTE_PREFIX . $id);
74
						$control->setAttribute('data-style', 'hidden');
75
						$control->setAttribute('data-selected-icon-check', DataGrid::$icon_prefix . 'check');
76
					} else {
77
						$control = $container->addSelect($id, '', $action->getOptions());
78
					}
79
80
					$control->setAttribute('id', static::ID_ATTRIBUTE_PREFIX . $id);
81
				}
82
83
			} elseif ($action instanceof GroupTextAction) {
84
				$control = $container->addText($id, '');
85
86
				$control->setAttribute('id', static::ID_ATTRIBUTE_PREFIX . $id)
87
					->addConditionOn($container['group_action'], Form::EQUAL, $id)
88
						->setRequired($translator->translate('ublaboo_datagrid.choose_input_required'))
89
					->endCondition();
90
91
			} elseif ($action instanceof GroupTextareaAction) {
92
				$control = $container->addTextarea($id, '');
93
94
				$control->setAttribute('id', static::ID_ATTRIBUTE_PREFIX . $id)
95
					->addConditionOn($container['group_action'], Form::EQUAL, $id)
96
						->setRequired($translator->translate('ublaboo_datagrid.choose_input_required'));
97
			}
98
99
			if ($control) {
100
				/**
101
				 * User may set a class to the form control
102
				 */
103
				if ($class = $action->getClass()) {
104
					$control->setAttribute('class', $class);
105
				}
106
107
				/**
108
				 * User may set additional attribtues to the form control
109
				 */
110
				foreach ($action->getAttributes() as $name => $value) {
111
					$control->setAttribute($name, $value);
112
				}
113
			}
114
		}
115
116
		foreach ($this->group_actions as $id => $action) {
117
			$container['group_action']->addCondition(Form::EQUAL, $id)
118
				->toggle(static::ID_ATTRIBUTE_PREFIX . $id);
119
		}
120
121
		$container['group_action']->addCondition(Form::FILLED)
122
			->toggle(strtolower($this->datagrid->getName()) . 'group_action_submit');
0 ignored issues
show
Bug introduced by
Consider using $this->datagrid->name. There is an issue with getName() and APC-enabled PHP versions.
Loading history...
123
124
		$container->addSubmit('submit', 'ublaboo_datagrid.execute')
125
			->setValidationScope([$container])
126
			->setAttribute('id', strtolower($this->datagrid->getName()) . 'group_action_submit');
0 ignored issues
show
Bug introduced by
Consider using $this->datagrid->name. There is an issue with getName() and APC-enabled PHP versions.
Loading history...
127
128
		if ($form instanceof Nette\ComponentModel\IComponent) {
0 ignored issues
show
Bug introduced by
The class Nette\ComponentModel\IComponent does not exist. Did you forget a USE statement, or did you not list all dependencies?

This error could be the result of:

1. Missing dependencies

PHP Analyzer uses your composer.json file (if available) to determine the dependencies of your project and to determine all the available classes and functions. It expects the composer.json to be in the root folder of your repository.

Are you sure this class is defined by one of your dependencies, or did you maybe not list a dependency in either the require or require-dev section?

2. Missing use statement

PHP does not complain about undefined classes in ìnstanceof checks. For example, the following PHP code will work perfectly fine:

if ($x instanceof DoesNotExist) {
    // Do something.
}

If you have not tested against this specific condition, such errors might go unnoticed.

Loading history...
129
			$form->onSubmit[] = [$this, 'submitted'];
130
		}
131
	}
132
133
134
	/**
135
	 * Pass "sub"-form submission forward to custom submit function
136
	 * @param  Form   $form
137
	 * @return void
138
	 */
139
	public function submitted(Form $form)
140
	{
141
		if (!isset($form['group_action']['submit']) || !$form['group_action']['submit']->isSubmittedBy()) {
142
			return;
143
		}
144
145
		$values = $form->getValues();
146
		$values = $values['group_action'];
147
148
		if ($values->group_action === 0 || $values->group_action === null) {
149
			return;
150
		}
151
152
		/**
153
		 * @todo Define items IDs
154
		 */
155
		$http_ids = $form->getHttpData(Form::DATA_LINE | Form::DATA_KEYS, strtolower($this->datagrid->getName()) . '_group_action_item[]');
0 ignored issues
show
Bug introduced by
Consider using $this->datagrid->name. There is an issue with getName() and APC-enabled PHP versions.
Loading history...
156
		$ids = array_keys($http_ids);
157
158
		$id = $values->group_action;
159
		$this->group_actions[$id]->onSelect($ids, isset($values->{$id}) ? $values->{$id} : null);
160
161
		$form['group_action']['group_action']->setValue(null);
162
	}
163
164
165
	/**
166
	 * Add one group action (select box) to collection of actions
167
	 *
168
	 * @param string $title
169
	 * @param array  $options
170
	 *
171
	 * @return GroupAction
172
	 */
173
	public function addGroupSelectAction($title, $options)
174
	{
175
		$id = ($s = sizeof($this->group_actions)) ? ($s + 1) : 1;
176
177
		return $this->group_actions[$id] = new GroupSelectAction($title, $options);
178
	}
179
180
181
	/**
182
	 * Add one group action (multiselect box) to collection of actions
183
	 *
184
	 * @param string $title
185
	 * @param array  $options
186
	 *
187
	 * @return GroupAction
188
	 */
189
	public function addGroupMultiSelectAction($title, $options)
190
	{
191
		$id = ($s = sizeof($this->group_actions)) ? ($s + 1) : 1;
192
193
		return $this->group_actions[$id] = new GroupMultiSelectAction($title, $options);
194
	}
195
196
197
	/**
198
	 * Add one group action (text input) to collection of actions
199
	 *
200
	 * @param string $title
201
	 *
202
	 * @return GroupAction
203
	 */
204
	public function addGroupTextAction($title)
205
	{
206
		$id = ($s = sizeof($this->group_actions)) ? ($s + 1) : 1;
207
208
		return $this->group_actions[$id] = new GroupTextAction($title);
209
	}
210
211
212
	/**
213
	 * Add one group action (textarea) to collection of actions
214
	 *
215
	 * @param string $title
216
	 *
217
	 * @return GroupAction
218
	 */
219
	public function addGroupTextareaAction($title)
220
	{
221
		$id = ($s = sizeof($this->group_actions)) ? ($s + 1) : 1;
222
223
		return $this->group_actions[$id] = new GroupTextareaAction($title);
224
	}
225
226
227
	/**
228
	 * @param  string $title
229
	 * @return GroupAction
230
	 */
231
	public function getGroupAction($title)
232
	{
233
		foreach ($this->group_actions as $action) {
234
			if ($action->getTitle() === $title) {
235
				return $action;
236
			}
237
		}
238
239
		throw new DataGridGroupActionException("Group action $title does not exist.");
240
	}
241
}
242