| Total Complexity | 137 |
| Total Lines | 760 |
| Duplicated Lines | 0 % |
| Changes | 45 | ||
| Bugs | 5 | Features | 4 |
Complex classes like DataTable often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use DataTable, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 27 | class DataTable extends Widget { |
||
| 28 | use TableTrait,DataTableFieldAsTrait,HasCheckboxesTrait,BaseTrait; |
||
| 29 | |||
| 30 | protected $_searchField; |
||
| 31 | |||
| 32 | protected $_urls; |
||
| 33 | |||
| 34 | protected $_pagination; |
||
| 35 | |||
| 36 | protected $_compileParts; |
||
| 37 | |||
| 38 | protected $_deleteBehavior; |
||
| 39 | |||
| 40 | protected $_editBehavior; |
||
| 41 | |||
| 42 | protected $_displayBehavior; |
||
| 43 | |||
| 44 | protected $_visibleHover = false; |
||
| 45 | |||
| 46 | protected $_targetSelector; |
||
| 47 | |||
| 48 | protected $_refreshSelector; |
||
| 49 | |||
| 50 | protected $_emptyMessage; |
||
| 51 | |||
| 52 | protected $_json; |
||
| 53 | |||
| 54 | protected $_rowClass = "_element"; |
||
| 55 | |||
| 56 | protected $_sortable; |
||
| 57 | |||
| 58 | protected $_hiddenColumns; |
||
| 59 | |||
| 60 | protected $_colWidths; |
||
| 61 | |||
| 62 | protected $_paginationToolbar; |
||
| 63 | |||
| 64 | protected $_caption; |
||
| 65 | |||
| 66 | protected $_namePrefix; |
||
| 67 | |||
| 68 | public function __construct($identifier, $model, $modelInstance = NULL) { |
||
| 69 | parent::__construct($identifier, $model, $modelInstance); |
||
| 70 | $this->_init(new InstanceViewer($identifier), "table", new HtmlTable($identifier, 0, 0), false); |
||
| 71 | $this->_urls = []; |
||
| 72 | $this->_emptyMessage = new HtmlMessage("", "nothing to display"); |
||
| 73 | $this->_emptyMessage->setIcon("info circle"); |
||
| 74 | } |
||
| 75 | |||
| 76 | public function run(JsUtils $js) { |
||
| 77 | if ($this->_runned !== true) { |
||
| 78 | $offset = $js->scriptCount(); |
||
| 79 | if ($this->_hasCheckboxes && isset($js)) { |
||
| 80 | $this->_runCheckboxes($js); |
||
| 81 | } |
||
| 82 | if ($this->_visibleHover) { |
||
| 83 | $js->execOn("mouseover", "#" . $this->identifier . " tr", "$(event.currentTarget).closest('tr').find('.visibleover').css('visibility', 'visible');", [ |
||
| 84 | "preventDefault" => false, |
||
| 85 | "stopPropagation" => true |
||
| 86 | ]); |
||
| 87 | $js->execOn("mouseout", "#" . $this->identifier . " tr", "$(event.currentTarget).closest('tr').find('.visibleover').css('visibility', 'hidden');$(event.currentTarget).trigger('visibleoverOut');", [ |
||
| 88 | "preventDefault" => false, |
||
| 89 | "stopPropagation" => true |
||
| 90 | ]); |
||
| 91 | } |
||
| 92 | if (\is_array($this->_deleteBehavior)) |
||
| 93 | $this->_generateBehavior("delete", $this->_deleteBehavior, $js); |
||
| 94 | if (\is_array($this->_editBehavior)) |
||
| 95 | $this->_generateBehavior("edit", $this->_editBehavior, $js); |
||
| 96 | if (\is_array($this->_displayBehavior)) { |
||
| 97 | $this->_generateBehavior("display", $this->_displayBehavior, $js); |
||
| 98 | } |
||
| 99 | parent::run($js); |
||
| 100 | if (isset($this->_pagination)) { |
||
| 101 | $this->_associatePaginationBehavior($js, $offset); |
||
| 102 | } |
||
| 103 | $this->_associateSearchFieldBehavior($js, $offset); |
||
| 104 | $this->_runned = true; |
||
| 105 | } |
||
| 106 | } |
||
| 107 | |||
| 108 | protected function _generateBehavior($op, $params, JsUtils $js) { |
||
| 109 | if (isset($this->_urls[$op])) { |
||
| 110 | $params = \array_merge($params, [ |
||
| 111 | "attr" => "data-ajax" |
||
| 112 | ]); |
||
| 113 | $js->ajaxOnClick("#" . $this->identifier . " ._" . $op, $this->_urls[$op], $this->getTargetSelector($op), $params); |
||
| 114 | } |
||
| 115 | } |
||
| 116 | |||
| 117 | /** |
||
| 118 | * |
||
| 119 | * {@inheritdoc} |
||
| 120 | * @see TableTrait::getTable() |
||
| 121 | */ |
||
| 122 | protected function getTable() { |
||
| 123 | return $this->content["table"]; |
||
| 124 | } |
||
| 125 | |||
| 126 | public function refreshTR() { |
||
| 127 | $this->getTable()->refreshTR(); |
||
| 128 | return $this; |
||
| 129 | } |
||
| 130 | |||
| 131 | public function refreshTD($fieldName, $jquery, $view) { |
||
| 132 | $index = $this->_getIndex($fieldName); |
||
| 133 | $this->compile($jquery, $view); |
||
| 134 | return $this->refreshTR() |
||
| 135 | ->getTable() |
||
| 136 | ->getCell(0, $index); |
||
| 137 | } |
||
| 138 | |||
| 139 | public function compile(JsUtils $js = NULL, &$view = NULL) { |
||
| 140 | if (! $this->_generated) { |
||
| 141 | if (isset($this->_buttonsColumn)) { |
||
| 142 | $this->_instanceViewer->sortColumnContent($this->_buttonsColumn, $this->_buttons); |
||
| 143 | } |
||
| 144 | $this->_instanceViewer->setInstance($this->_model); |
||
| 145 | $captions = $this->_instanceViewer->getCaptions(); |
||
| 146 | $table = $this->content["table"]; |
||
| 147 | if ($this->_hasCheckboxes) { |
||
| 148 | $this->_generateMainCheckbox($captions); |
||
| 149 | } |
||
| 150 | $table->setRowCount(0, \count($captions)); |
||
| 151 | $this->_generateHeader($table, $captions); |
||
| 152 | |||
| 153 | if (isset($this->_compileParts)) |
||
| 154 | $table->setCompileParts($this->_compileParts); |
||
| 155 | |||
| 156 | $this->_generateContent($table); |
||
| 157 | |||
| 158 | $this->compileExtraElements($table, $captions); |
||
| 159 | $this->_compileSearchFieldBehavior($js); |
||
| 160 | |||
| 161 | $this->content = JArray::sortAssociative($this->content, [ |
||
| 162 | PositionInTable::BEFORETABLE, |
||
| 163 | "table", |
||
| 164 | PositionInTable::AFTERTABLE |
||
| 165 | ]); |
||
| 166 | if ($this->_caption != null) { |
||
| 167 | $this->wrap("<div class='field'><label>{$this->_caption}</label>", "</div>"); |
||
| 168 | } |
||
| 169 | $this->_compileForm(); |
||
| 170 | $this->_applyStyleAttributes($table); |
||
| 171 | $this->_generated = true; |
||
| 172 | } |
||
| 173 | return parent::compile($js, $view); |
||
| 174 | } |
||
| 175 | |||
| 176 | protected function compileExtraElements($table, $captions) { |
||
| 188 | } |
||
| 189 | } |
||
| 190 | |||
| 191 | protected function _applyStyleAttributes($table) { |
||
| 192 | if (isset($this->_hiddenColumns)) |
||
| 193 | $this->_hideColumns(); |
||
| 194 | if (isset($this->_colWidths)) { |
||
| 195 | foreach ($this->_colWidths as $colIndex => $width) { |
||
| 196 | $table->setColWidth($colIndex, $width); |
||
| 197 | } |
||
| 198 | } |
||
| 199 | } |
||
| 200 | |||
| 201 | protected function _hideColumns() { |
||
| 202 | foreach ($this->_hiddenColumns as $colIndex) { |
||
| 203 | $this->_self->hideColumn($colIndex); |
||
| 204 | } |
||
| 205 | return $this; |
||
| 206 | } |
||
| 207 | |||
| 208 | protected function _generateHeader(HtmlTable $table, $captions) { |
||
| 209 | $gbFields = $this->_instanceViewer->getGroupByFields(); |
||
| 210 | if (\is_array($gbFields)) { |
||
| 211 | $captions = \array_values(JArray::removeByKeys($captions, $gbFields)); |
||
| 212 | } |
||
| 213 | $table->setHeaderValues($captions); |
||
| 214 | if (isset($this->_sortable)) { |
||
| 215 | $table->setSortable($this->_sortable); |
||
| 216 | } |
||
| 217 | } |
||
| 218 | |||
| 219 | protected function _generateContent($table) { |
||
| 220 | $objects = $this->_modelInstance; |
||
| 221 | if (isset($this->_pagination)) { |
||
| 222 | $objects = $this->_pagination->getObjects($this->_modelInstance); |
||
| 223 | } |
||
| 224 | InstanceViewer::setIndex(0); |
||
| 225 | $fields = $this->_instanceViewer->getSimpleProperties(); |
||
| 226 | $groupByFields = $this->_instanceViewer->getGroupByFields(); |
||
| 227 | if (! is_array($groupByFields)) { |
||
| 228 | $table->fromDatabaseObjects($objects, function ($instance) use ($table, $fields) { |
||
| 229 | return $this->_generateRow($instance, $fields, $table); |
||
| 230 | }); |
||
| 231 | } else { |
||
| 232 | $diffFields = \array_values(JArray::removeByKeys($fields, $groupByFields)); |
||
| 233 | $activeValues = \array_combine($groupByFields, \array_fill(0, \count($groupByFields), null)); |
||
| 234 | $uuids = []; |
||
| 235 | $table->fromDatabaseObjects($objects, function ($instance) use ($table, $fields, &$activeValues, $groupByFields, &$uuids, $diffFields) { |
||
| 236 | $this->_instanceViewer->setInstance($instance); |
||
| 237 | foreach ($groupByFields as $index => $gbField) { |
||
| 238 | $this->_generateGroupByRow($index, $gbField, $table, $fields, $activeValues, $uuids); |
||
| 239 | } |
||
| 240 | return $this->_generateRow($instance, $diffFields, $table, null, $uuids); |
||
| 241 | }); |
||
| 242 | } |
||
| 243 | if ($table->getRowCount() == 0) { |
||
| 244 | $result = $table->addRow(); |
||
| 245 | $result->mergeRow(); |
||
| 246 | $result->setValues([ |
||
| 247 | $this->_emptyMessage |
||
| 248 | ]); |
||
| 249 | } |
||
| 250 | } |
||
| 251 | |||
| 252 | protected function _generateGroupByRow($index, $gbField, $table, $fields, &$activeValues, &$uuids) { |
||
| 253 | $newValue = $this->_instanceViewer->getValue($gbField); |
||
| 254 | if ($this->getElementContent($activeValues[$gbField]) !== $this->getElementContent($newValue)) { |
||
| 255 | if ($index == 0) { |
||
| 256 | $uuids = []; |
||
| 257 | } |
||
| 258 | $uuid = uniqid("grp"); |
||
| 259 | $uuids[$gbField] = $uuid; |
||
| 260 | $id = $this->_instanceViewer->getIdentifier(); |
||
| 261 | $result = $table->addMergeRow(sizeof($fields) + 1, $newValue); |
||
| 262 | $result->setIdentifier($this->identifier . "-tr-gb-" . $id); |
||
| 263 | $result->setProperty("data-ajax", $id); |
||
| 264 | $result->setProperty("data-group", $uuid); |
||
| 265 | $result->addToProperty("class", $this->_rowClass); |
||
| 266 | $activeValues[$gbField] = $newValue; |
||
| 267 | } |
||
| 268 | } |
||
| 269 | |||
| 270 | private function getElementContent($elm) { |
||
| 271 | if ($elm instanceof HtmlDoubleElement) { |
||
| 272 | return $elm->getTextContent(); |
||
| 273 | } |
||
| 274 | return $elm; |
||
| 275 | } |
||
| 276 | |||
| 277 | public function getFieldValue($index) { |
||
| 286 | } |
||
| 287 | |||
| 288 | protected function _generateRow($instance, $fields, &$table, $checkedClass = null, $uuids = null) { |
||
| 289 | $this->_instanceViewer->setInstance($instance); |
||
| 290 | InstanceViewer::$index ++; |
||
| 291 | $values = $this->_instanceViewer->getValues(); |
||
| 292 | $id = $this->_instanceViewer->getIdentifier(); |
||
| 293 | $dataAjax = $id; |
||
| 294 | $id = $this->cleanIdentifier($id); |
||
| 295 | if ($this->_hasCheckboxes) { |
||
| 296 | $ck = new HtmlCheckbox("ck-" . $this->identifier . "-" . $id, ""); |
||
| 297 | $checked = false; |
||
| 298 | if (isset($this->_checkedCallback)) { |
||
| 299 | $func = $this->_checkedCallback; |
||
| 300 | $checked = $func($instance); |
||
| 301 | } |
||
| 302 | $ck->setChecked($checked); |
||
| 303 | $field = $ck->getField(); |
||
| 304 | $field->setProperty("value", $dataAjax); |
||
| 305 | $field->setProperty("name", "selection[]"); |
||
| 306 | if (isset($checkedClass)) |
||
| 307 | $field->setClass($checkedClass); |
||
| 308 | \array_unshift($values, $ck); |
||
| 309 | } |
||
| 310 | $result = $table->newRow(); |
||
| 311 | $result->setIdentifier($this->identifier . "-tr-" . $id); |
||
| 312 | $result->setProperty("data-ajax", $dataAjax); |
||
| 313 | $result->setValues($values); |
||
| 314 | $result->addToProperty("class", $this->_rowClass); |
||
| 315 | $result->setPropertyValues("data-field", $fields); |
||
| 316 | if (isset($uuids)) { |
||
| 317 | $result->setProperty("data-child", implode(" ", $uuids)); |
||
| 318 | } |
||
| 319 | return $result; |
||
| 320 | } |
||
| 321 | |||
| 322 | protected function _generatePagination($table) { |
||
| 331 | } |
||
| 332 | |||
| 333 | protected function _associatePaginationBehavior(JsUtils $js = NULL, $offset = null) { |
||
| 334 | if (isset($this->_urls["refresh"])) { |
||
| 335 | $menu = $this->_pagination->getMenu(); |
||
| 336 | if (isset($menu) && isset($js)) { |
||
| 337 | $js->postOnClick("#" . $menu->getIdentifier() . " .item", $this->_urls["refresh"], "{'p':$(this).attr('data-page'),'_model':'" . JString::doubleBackSlashes($this->_model) . "'}", $this->getRefreshSelector(), [ |
||
| 338 | "preventDefault" => false, |
||
| 339 | "jqueryDone" => "replaceWith", |
||
| 340 | "hasLoader" => false, |
||
| 341 | "jsCallback" => '$("#' . $this->identifier . '").trigger("pageChange");$("#' . $this->identifier . '").trigger("activeRowChange");' |
||
| 342 | ]); |
||
| 343 | $page = $_POST["p"] ?? null; |
||
| 344 | if (isset($page)) { |
||
| 345 | $activeClass = $this->getActiveRowClass(); |
||
| 346 | $js->execAtLast('$("#' . $this->getIdentifier() . ' .pagination").children("a.item").removeClass("' . $activeClass . '");$("#' . $this->getIdentifier() . ' .pagination").children("a.item[data-page=' . $page . ']:not(.no-active)").addClass("' . $activeClass . '");'); |
||
| 347 | } |
||
| 348 | } |
||
| 349 | } |
||
| 350 | } |
||
| 351 | |||
| 352 | protected function _compileSearchFieldBehavior(JsUtils $js = NULL) { |
||
| 353 | if (isset($this->_searchField) && isset($js) && isset($this->_urls["refresh"])) { |
||
| 354 | $this->_searchField->postOn("change", $this->_urls["refresh"], "{'s':$(self).val(),'_model':'" . JString::doubleBackSlashes($this->_model) . "'}", "#" . $this->identifier . " tbody", [ |
||
| 355 | "preventDefault" => false, |
||
| 356 | "jqueryDone" => "replaceWith", |
||
| 357 | "hasLoader" => "internal", |
||
| 358 | "jsCallback" => '$("#' . $this->identifier . '").trigger("searchTerminate",[$(self).val()]);' |
||
| 359 | ]); |
||
| 360 | } |
||
| 361 | } |
||
| 362 | |||
| 363 | protected function _associateSearchFieldBehavior(JsUtils $js = NULL, $offset = null) {} |
||
| 364 | |||
| 365 | protected function _getFieldName($index) { |
||
| 366 | $fieldName = parent::_getFieldName($index); |
||
| 367 | if (\is_object($fieldName)) |
||
| 368 | $fieldName = "field-" . $index; |
||
| 369 | if ($this->_namePrefix != null) { |
||
| 370 | $fieldName = $this->_namePrefix . '.' . $fieldName; |
||
| 371 | } |
||
| 372 | return $fieldName . "[]"; |
||
| 373 | } |
||
| 374 | |||
| 375 | protected function _getFieldCaption($index) { |
||
| 376 | return null; |
||
| 377 | } |
||
| 378 | |||
| 379 | protected function applyToolbarPosition(string $position, $table, $captions = NULL) { |
||
| 380 | switch ($position) { |
||
| 381 | case PositionInTable::BEFORETABLE: |
||
| 382 | case PositionInTable::AFTERTABLE: |
||
| 383 | if (isset($this->_compileParts) === false) { |
||
| 384 | $this->content[$position] = $this->_toolbar; |
||
| 385 | } |
||
| 386 | break; |
||
| 387 | case PositionInTable::HEADER: |
||
| 388 | case PositionInTable::FOOTER: |
||
| 389 | case PositionInTable::BODY: |
||
| 390 | $this->addToolbarRow($position, $table, $captions); |
||
| 391 | break; |
||
| 392 | } |
||
| 393 | } |
||
| 394 | |||
| 395 | protected function _setToolbarPosition($table, $captions = NULL) { |
||
| 402 | } |
||
| 403 | } |
||
| 404 | |||
| 405 | /** |
||
| 406 | * Associates a $callback function after the compilation of the field at $index position |
||
| 407 | * The $callback function can take the following arguments : $field=>the compiled field, $instance : the active instance of the object, $index: the field position |
||
| 408 | * |
||
| 409 | * @param int $index |
||
| 410 | * postion of the compiled field |
||
| 411 | * @param callable $callback |
||
| 412 | * function called after the field compilation |
||
| 413 | * @return DataTable |
||
| 414 | */ |
||
| 415 | public function afterCompile($index, $callback) { |
||
| 416 | $this->_instanceViewer->afterCompile($index, $callback); |
||
| 417 | return $this; |
||
| 418 | } |
||
| 419 | |||
| 420 | private function addToolbarRow($part, $table, $captions) { |
||
| 421 | $hasPart = $table->hasPart($part); |
||
| 422 | if ($hasPart) { |
||
| 423 | $row = $table->getPart($part)->addRow(\sizeof($captions)); |
||
| 424 | } else { |
||
| 425 | $row = $table->getPart($part)->getRow(0); |
||
| 426 | } |
||
| 427 | $row->mergeCol(); |
||
| 428 | $row->setValues([ |
||
| 429 | $this->_toolbar |
||
| 430 | ]); |
||
| 431 | } |
||
| 432 | |||
| 433 | /** |
||
| 434 | * |
||
| 435 | * {@inheritdoc} |
||
| 436 | * @see Widget::getHtmlComponent() |
||
| 437 | * @return HtmlTable |
||
| 438 | */ |
||
| 439 | public function getHtmlComponent() { |
||
| 440 | return $this->content["table"]; |
||
| 441 | } |
||
| 442 | |||
| 443 | public function getUrls() { |
||
| 444 | return $this->_urls; |
||
| 445 | } |
||
| 446 | |||
| 447 | /** |
||
| 448 | * Sets the associative array of urls for refreshing, updating or deleting |
||
| 449 | * think of defining the update zone with the setTargetSelector method |
||
| 450 | * |
||
| 451 | * @param string|array $urls |
||
| 452 | * associative array with keys refresh: for refreshing with search field or pagination, edit : for updating a row, delete: for deleting a row |
||
| 453 | * @return DataTable |
||
| 454 | */ |
||
| 455 | public function setUrls($urls) { |
||
| 456 | if (\is_array($urls)) { |
||
| 457 | $this->_urls["refresh"] = JArray::getValue($urls, "refresh", 0); |
||
| 458 | $this->_urls["edit"] = JArray::getValue($urls, "edit", 1); |
||
| 459 | $this->_urls["delete"] = JArray::getValue($urls, "delete", 2); |
||
| 460 | $this->_urls["display"] = JArray::getValue($urls, "display", 3); |
||
| 461 | } else { |
||
| 462 | $this->_urls = [ |
||
| 463 | "refresh" => $urls, |
||
| 464 | "edit" => $urls, |
||
| 465 | "delete" => $urls, |
||
| 466 | "display" => $urls |
||
| 467 | ]; |
||
| 468 | } |
||
| 469 | return $this; |
||
| 470 | } |
||
| 471 | |||
| 472 | /** |
||
| 473 | * Paginates the DataTable element with a Semantic HtmlPaginationMenu component |
||
| 474 | * |
||
| 475 | * @param number $page |
||
| 476 | * the active page number |
||
| 477 | * @param number $total_rowcount |
||
| 478 | * the total number of items |
||
| 479 | * @param number $items_per_page |
||
| 480 | * The number of items per page |
||
| 481 | * @param number $pages_visibles |
||
| 482 | * The number of visible pages in the Pagination component |
||
| 483 | * @return DataTable |
||
| 484 | */ |
||
| 485 | public function paginate($page, $total_rowcount, $items_per_page = 10, $pages_visibles = null) { |
||
| 486 | $this->_pagination = new Pagination($items_per_page, $pages_visibles, $page, $total_rowcount); |
||
| 487 | return $this; |
||
| 488 | } |
||
| 489 | |||
| 490 | /** |
||
| 491 | * Auto Paginates the DataTable element with a Semantic HtmlPaginationMenu component |
||
| 492 | * |
||
| 493 | * @param number $page |
||
| 494 | * the active page number |
||
| 495 | * @param number $items_per_page |
||
| 496 | * The number of items per page |
||
| 497 | * @param number $pages_visibles |
||
| 498 | * The number of visible pages in the Pagination component |
||
| 499 | * @return DataTable |
||
| 500 | */ |
||
| 501 | public function autoPaginate($page = 1, $items_per_page = 10, $pages_visibles = 4) { |
||
| 502 | $this->_pagination = new Pagination($items_per_page, $pages_visibles, $page); |
||
| 503 | return $this; |
||
| 504 | } |
||
| 505 | |||
| 506 | /** |
||
| 507 | * |
||
| 508 | * @param array $compileParts |
||
| 509 | * @return DataTable |
||
| 510 | */ |
||
| 511 | public function refresh($compileParts = [ |
||
| 512 | 'tbody' |
||
| 513 | ]) { |
||
| 514 | $this->_compileParts = $compileParts; |
||
| 515 | return $this; |
||
| 516 | } |
||
| 517 | |||
| 518 | /** |
||
| 519 | * Adds a search input in toolbar |
||
| 520 | * |
||
| 521 | * @param string $position |
||
| 522 | * @return \Ajax\common\html\HtmlDoubleElement |
||
| 523 | */ |
||
| 524 | public function addSearchInToolbar($position = Direction::RIGHT) { |
||
| 525 | return $this->addInToolbar($this->getSearchField()) |
||
| 526 | ->setPosition($position); |
||
| 527 | } |
||
| 528 | |||
| 529 | public function getSearchField() { |
||
| 530 | if (isset($this->_searchField) === false) { |
||
| 531 | $this->_searchField = new HtmlInput("search-" . $this->identifier, "search", "", "Search..."); |
||
| 532 | $this->_searchField->addIcon("search", Direction::RIGHT); |
||
| 533 | } |
||
| 534 | return $this->_searchField; |
||
| 535 | } |
||
| 536 | |||
| 537 | /** |
||
| 538 | * The callback function called after the insertion of each row when fromDatabaseObjects is called |
||
| 539 | * callback function takes the parameters $row : the row inserted and $object: the instance of model used |
||
| 540 | * |
||
| 541 | * @param callable $callback |
||
| 542 | * @return DataTable |
||
| 543 | */ |
||
| 544 | public function onNewRow($callback) { |
||
| 545 | $this->content["table"]->onNewRow($callback); |
||
| 546 | return $this; |
||
| 547 | } |
||
| 548 | |||
| 549 | /** |
||
| 550 | * Returns a form corresponding to the Datatable |
||
| 551 | * |
||
| 552 | * @return \Ajax\semantic\html\collections\form\HtmlForm |
||
| 553 | */ |
||
| 554 | public function asForm() { |
||
| 555 | return $this->getForm(); |
||
| 556 | } |
||
| 557 | |||
| 558 | protected function getTargetSelector($op) { |
||
| 559 | $result = $this->_targetSelector; |
||
| 560 | if (! isset($result[$op])) |
||
| 561 | $result = "#" . $this->identifier; |
||
| 562 | return $result[$op]; |
||
| 563 | } |
||
| 564 | |||
| 565 | /** |
||
| 566 | * Sets the response element selector for Edit and Delete request with ajax |
||
| 567 | * |
||
| 568 | * @param string|array $_targetSelector |
||
| 569 | * string or associative array ["edit"=>"edit_selector","delete"=>"delete_selector"] |
||
| 570 | * @return DataTable |
||
| 571 | */ |
||
| 572 | public function setTargetSelector($_targetSelector) { |
||
| 573 | if (! \is_array($_targetSelector)) { |
||
| 574 | $_targetSelector = [ |
||
| 575 | "edit" => $_targetSelector, |
||
| 576 | "delete" => $_targetSelector |
||
| 577 | ]; |
||
| 578 | } |
||
| 579 | $this->_targetSelector = $_targetSelector; |
||
| 580 | return $this; |
||
| 581 | } |
||
| 582 | |||
| 583 | public function getRefreshSelector() { |
||
| 584 | if (isset($this->_refreshSelector)) |
||
| 585 | return $this->_refreshSelector; |
||
| 586 | return "#" . $this->identifier . " tbody"; |
||
| 587 | } |
||
| 588 | |||
| 589 | /** |
||
| 590 | * |
||
| 591 | * @param string $_refreshSelector |
||
| 592 | * @return DataTable |
||
| 593 | */ |
||
| 594 | public function setRefreshSelector($_refreshSelector) { |
||
| 595 | $this->_refreshSelector = $_refreshSelector; |
||
| 596 | return $this; |
||
| 597 | } |
||
| 598 | |||
| 599 | /** |
||
| 600 | * |
||
| 601 | * {@inheritdoc} |
||
| 602 | * @see \Ajax\common\Widget::show() |
||
| 603 | */ |
||
| 604 | public function show($modelInstance) { |
||
| 605 | if (\is_array($modelInstance)) { |
||
| 606 | if (isset($modelInstance[0]) && \is_array(array_values($modelInstance)[0])) |
||
| 607 | $modelInstance = \json_decode(\json_encode($modelInstance), FALSE); |
||
| 608 | } |
||
| 609 | $this->_modelInstance = $modelInstance; |
||
| 610 | } |
||
| 611 | |||
| 612 | public function getRowClass() { |
||
| 613 | return $this->_rowClass; |
||
| 614 | } |
||
| 615 | |||
| 616 | /** |
||
| 617 | * Sets the default row class (tr class) |
||
| 618 | * |
||
| 619 | * @param string $_rowClass |
||
| 620 | * @return DataTable |
||
| 621 | */ |
||
| 622 | public function setRowClass($_rowClass) { |
||
| 623 | $this->_rowClass = $_rowClass; |
||
| 624 | return $this; |
||
| 625 | } |
||
| 626 | |||
| 627 | /** |
||
| 628 | * Sets the message displayed when there is no record |
||
| 629 | * |
||
| 630 | * @param mixed $_emptyMessage |
||
| 631 | * @return DataTable |
||
| 632 | */ |
||
| 633 | public function setEmptyMessage($_emptyMessage) { |
||
| 634 | $this->_emptyMessage = $_emptyMessage; |
||
| 635 | return $this; |
||
| 636 | } |
||
| 637 | |||
| 638 | public function setSortable($colIndex = NULL) { |
||
| 639 | $this->_sortable = $colIndex; |
||
| 640 | return $this; |
||
| 641 | } |
||
| 642 | |||
| 643 | public function setActiveRowSelector($class = "active", $event = "click", $multiple = false) { |
||
| 644 | $this->_self->setActiveRowSelector($class, $event, $multiple); |
||
| 645 | return $this; |
||
| 646 | } |
||
| 647 | |||
| 648 | public function getActiveRowClass() { |
||
| 649 | return $this->_self->getActiveRowClass(); |
||
| 650 | } |
||
| 651 | |||
| 652 | public function hasActiveRowSelector() { |
||
| 653 | return $this->_self->hasActiveRowSelector(); |
||
| 654 | } |
||
| 655 | |||
| 656 | public function hideColumn($colIndex) { |
||
| 657 | if (! \is_array($this->_hiddenColumns)) |
||
| 658 | $this->_hiddenColumns = []; |
||
| 659 | $this->_hiddenColumns[] = $colIndex; |
||
| 660 | return $this; |
||
| 661 | } |
||
| 662 | |||
| 663 | public function setColWidth($colIndex, $width) { |
||
| 664 | $this->_colWidths[$colIndex] = $width; |
||
| 665 | return $this; |
||
| 666 | } |
||
| 667 | |||
| 668 | public function setColWidths($_colWidths) { |
||
| 669 | $this->_colWidths = $_colWidths; |
||
| 670 | return $this; |
||
| 671 | } |
||
| 672 | |||
| 673 | public function setColAlignment($colIndex, $alignment) { |
||
| 674 | $this->content["table"]->setColAlignment($colIndex, $alignment); |
||
| 675 | return $this; |
||
| 676 | } |
||
| 677 | |||
| 678 | public function trigger($event, $params = "[]") { |
||
| 679 | return $this->getHtmlComponent()->trigger($event, $params); |
||
| 680 | } |
||
| 681 | |||
| 682 | public function onActiveRowChange($jsCode) { |
||
| 683 | $this->getHtmlComponent()->onActiveRowChange($jsCode); |
||
| 684 | return $this; |
||
| 685 | } |
||
| 686 | |||
| 687 | /** |
||
| 688 | * |
||
| 689 | * @return mixed |
||
| 690 | */ |
||
| 691 | public function getDeleteBehavior() { |
||
| 692 | return $this->_deleteBehavior; |
||
| 693 | } |
||
| 694 | |||
| 695 | /** |
||
| 696 | * |
||
| 697 | * @return mixed |
||
| 698 | */ |
||
| 699 | public function getEditBehavior() { |
||
| 700 | return $this->_editBehavior; |
||
| 701 | } |
||
| 702 | |||
| 703 | /** |
||
| 704 | * |
||
| 705 | * @return mixed |
||
| 706 | */ |
||
| 707 | public function getDisplayBehavior() { |
||
| 708 | return $this->_displayBehavior; |
||
| 709 | } |
||
| 710 | |||
| 711 | /** |
||
| 712 | * |
||
| 713 | * @param mixed $_displayBehavior |
||
| 714 | */ |
||
| 715 | public function setDisplayBehavior($_displayBehavior) { |
||
| 716 | $this->_displayBehavior = $_displayBehavior; |
||
| 717 | } |
||
| 718 | |||
| 719 | /** |
||
| 720 | * |
||
| 721 | * @return mixed |
||
| 722 | */ |
||
| 723 | public function getGroupByFields() { |
||
| 724 | return $this->_instanceViewer->getGroupByFields(); |
||
| 725 | } |
||
| 726 | |||
| 727 | /** |
||
| 728 | * |
||
| 729 | * @param mixed $_groupByFields |
||
| 730 | */ |
||
| 731 | public function setGroupByFields($_groupByFields) { |
||
| 732 | $this->_instanceViewer->setGroupByFields($_groupByFields); |
||
| 733 | } |
||
| 734 | |||
| 735 | public function addGroupBy($index) { |
||
| 736 | $index = $this->_getIndex($index); |
||
| 737 | if ($index !== false) { |
||
| 738 | $this->_instanceViewer->addGroupBy($index); |
||
| 739 | } |
||
| 740 | } |
||
| 741 | |||
| 742 | /** |
||
| 743 | * |
||
| 744 | * @param boolean $_visibleHover |
||
| 745 | */ |
||
| 746 | public function setVisibleHover($_visibleHover) { |
||
| 747 | $this->_visibleHover = $_visibleHover; |
||
| 748 | } |
||
| 749 | |||
| 750 | /** |
||
| 751 | * |
||
| 752 | * @return \Ajax\semantic\html\collections\menus\HtmlPaginationMenu |
||
| 753 | */ |
||
| 754 | public function getPaginationToolbar() { |
||
| 755 | return $this->_paginationToolbar; |
||
| 756 | } |
||
| 757 | |||
| 758 | public function setInverted($recursive = true) { |
||
| 759 | $this->getHtmlComponent()->setInverted($recursive); |
||
| 760 | if ($this->_emptyMessage instanceof HtmlSemDoubleElement) { |
||
| 761 | $this->_emptyMessage->setInverted($recursive); |
||
| 762 | } |
||
| 763 | } |
||
| 764 | |||
| 765 | public function setFocusable(bool $focusable) { |
||
| 766 | $this->content["table"]->setFocusable($focusable); |
||
| 767 | } |
||
| 768 | |||
| 769 | public function setFormCaption($caption) { |
||
| 770 | $this->_caption = $caption; |
||
| 771 | } |
||
| 772 | |||
| 773 | /** |
||
| 774 | * |
||
| 775 | * @return mixed |
||
| 776 | */ |
||
| 777 | public function getNamePrefix() { |
||
| 779 | } |
||
| 780 | |||
| 781 | /** |
||
| 782 | * |
||
| 783 | * @param mixed $namePrefix |
||
| 784 | */ |
||
| 785 | public function setNamePrefix($namePrefix): void { |
||
| 786 | $this->_namePrefix = $namePrefix; |
||
| 787 | } |
||
| 788 | } |
||
| 789 |