-
Notifications
You must be signed in to change notification settings - Fork 114
Add Model support for TreeItemSelector control source data #2023
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from 12 commits
cb6fb64
e160b21
d0742d6
b42a49c
4fe23b7
06a821e
416abe6
09bc291
fb7a1a8
17306b9
faf1f8a
590bbc6
63d04a6
7024eb2
d54c7ee
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,6 +4,7 @@ | |
|
|
||
| namespace Atk4\Ui\Form\Control; | ||
|
|
||
| use Atk4\Data\Model; | ||
| use Atk4\Ui\Form; | ||
| use Atk4\Ui\HtmlTemplate; | ||
| use Atk4\Ui\Js\Jquery; | ||
|
|
@@ -39,6 +40,13 @@ class TreeItemSelector extends Form\Control | |
| */ | ||
| public $loaderCssName = 'atk-tree-loader'; | ||
|
|
||
| /** | ||
| * The field name which includes the parent node's id. | ||
mkrecek234 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| * | ||
| * @var string | ||
| */ | ||
| public $parentIdField = 'parent_id'; | ||
|
|
||
| /** @var bool Allow multiple selection or just one. */ | ||
| public $allowMultiple = true; | ||
|
|
||
|
|
@@ -112,6 +120,36 @@ public function setTreeItems(array $treeItems) | |
| return $this; | ||
| } | ||
|
|
||
| /** | ||
| * @param mixed $parentId | ||
| */ | ||
| protected function addNodes(Model $model, $parentId = null): array | ||
| { | ||
| $result = []; | ||
|
|
||
| $nodeModel = (clone $model)->addCondition($this->parentIdField, $parentId); | ||
|
|
||
| foreach ($nodeModel as $node) { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This implies a DB query (Model::getIterator() which implies SELECT). Recursively. Single query recursive data fetch can be hard to implement and will require RECURSIVE CTE. A good enough compromise might be to fetch +1 tree level collectively at once instead of 1 leaf at each time.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @mvorisek Recursive CTE is an overkill for such a simple task. Or shall I import the whole tree definition table into an array, and do the recursive operation inside the array? That would speed it up as well, and we talk about reasonably sized trees typically (otherwise we would need another treeview component which dynamically loads sub-trees upon click, there are only few Vue components doing this beautifully). Materializing the whole table into an array, I did before to speed up the script, but you did not like it.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It it obvious both extremes - current dummy impl. and whole table materialization is not a solution. The later case can produce OOM error easily, imagine the perf. on table with millions of records. It would be good to impl. recursive iterator in atk4/data Model and use it here.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think your worries are not realistic, as models for this TreeItemSelector are never tables of million entries. And if they are TreeItem is the wrong control as written before: you would need a Tree Control which dynamically loads sub-trees on clicks. As said, Recursive CTE is an overkill for this simple control, unless you see yourself in a position to implement this soon. Even with recursive CTE, the control would not load properly in time with your million-entries example. Otherwise I suggest we go for the faster export variant. Working well in real life with a few hundreds entries.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Michael, let's focus on the solution and please reread my posts above. I did not written CTE is needed, I have written the current demo is awfully slow, which is a fact and I hope we both understand the PR cannot be merged as is. I can also tell that table with millions of records is a realistic usecase, not for display, but imagine any tree features per some item like product. No product will have a lot of features, but the whole table can be huge. And as long as you cannot resolve the "minimal spanning tree" in one query, you cannot fetch the data using a single query. |
||
| if ($node->get($this->parentIdField) === $parentId) { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why this cond?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because we have to set a new parentId condition on an unconditioned model, otherwise will have contradictory conditions |
||
| $newNode = []; | ||
| $newNode['name'] = $node->getTitle(); | ||
| $newNode['id'] = $node->getId(); | ||
| $newNode['parent_id'] = $node->get($this->parentIdField); | ||
| $newNode['nodes'] = $this->addNodes(clone $model, $node->getId()); | ||
|
||
| $result[] = $newNode; | ||
| } | ||
| } | ||
|
|
||
| return $result; | ||
| } | ||
|
|
||
| public function setModel(Model $model): void | ||
| { | ||
| parent::setModel($model); | ||
|
|
||
| $this->treeItems = $this->addNodes($model); | ||
| } | ||
|
|
||
| /** | ||
| * Returns <input ...> tag. | ||
| * | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.