2020-04-29 22:59:14 +02:00
|
|
|
<?php
|
2022-11-29 21:21:26 +01:00
|
|
|
/*
|
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 - 2022 Jan Böhmer (https://github.com/jbtronics)
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published
|
|
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-05-10 21:39:31 +02:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2020-04-29 22:59:14 +02:00
|
|
|
/**
|
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 - 2020 Jan Böhmer (https://github.com/jbtronics)
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published
|
|
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Repository;
|
|
|
|
|
|
|
|
use App\Entity\LabelSystem\LabelOptions;
|
|
|
|
use App\Entity\LabelSystem\LabelProfile;
|
|
|
|
use App\Helpers\Trees\TreeViewNode;
|
2022-08-14 19:32:53 +02:00
|
|
|
use InvalidArgumentException;
|
2020-04-29 22:59:14 +02:00
|
|
|
|
|
|
|
class LabelProfileRepository extends NamedDBElementRepository
|
|
|
|
{
|
2020-05-01 20:29:18 +02:00
|
|
|
/**
|
|
|
|
* Find the profiles that are shown in the dropdown for the given type.
|
2020-05-10 21:39:31 +02:00
|
|
|
* You should maybe use the cached version of this in LabelProfileDropdownHelper.
|
2020-05-01 20:29:18 +02:00
|
|
|
*/
|
|
|
|
public function getDropdownProfiles(string $type): array
|
|
|
|
{
|
2020-08-21 21:36:22 +02:00
|
|
|
if (!in_array($type, LabelOptions::SUPPORTED_ELEMENTS, true)) {
|
2022-08-14 19:32:53 +02:00
|
|
|
throw new InvalidArgumentException('Invalid supported_element type given.');
|
2020-05-02 19:47:31 +02:00
|
|
|
}
|
2020-05-10 21:39:31 +02:00
|
|
|
|
2020-08-21 21:38:31 +02:00
|
|
|
return $this->findBy([
|
|
|
|
'options.supported_element' => $type,
|
|
|
|
'show_in_dropdown' => true,
|
|
|
|
], ['name' => 'ASC']);
|
2020-05-01 20:29:18 +02:00
|
|
|
}
|
|
|
|
|
2020-04-29 22:59:14 +02:00
|
|
|
/**
|
|
|
|
* Gets a tree of TreeViewNode elements. The root elements has $parent as parent.
|
|
|
|
* The treeview is generic, that means the href are null and ID values are set.
|
|
|
|
*
|
|
|
|
* @return TreeViewNode[]
|
|
|
|
*/
|
|
|
|
public function getGenericNodeTree(): array
|
|
|
|
{
|
|
|
|
$result = [];
|
|
|
|
|
|
|
|
foreach (LabelOptions::SUPPORTED_ELEMENTS as $type) {
|
|
|
|
$type_children = [];
|
|
|
|
$entities = $this->findForSupportedElement($type);
|
|
|
|
foreach ($entities as $entity) {
|
|
|
|
/** @var LabelProfile $entity */
|
|
|
|
$node = new TreeViewNode($entity->getName(), null, null);
|
|
|
|
$node->setId($entity->getID());
|
|
|
|
$type_children[] = $node;
|
|
|
|
}
|
|
|
|
|
2020-08-21 21:36:22 +02:00
|
|
|
if (!empty($type_children)) {
|
2020-04-29 22:59:14 +02:00
|
|
|
//Use default label e.g. 'part_label'. $$ marks that it will be translated in TreeViewGenerator
|
2020-05-10 21:39:31 +02:00
|
|
|
$tmp = new TreeViewNode('$$'.$type.'.label', null, $type_children);
|
2020-04-29 22:59:14 +02:00
|
|
|
|
|
|
|
$result[] = $tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-05-10 21:39:31 +02:00
|
|
|
* Find all LabelProfiles that can be used with the given type.
|
|
|
|
*
|
2020-08-21 21:36:22 +02:00
|
|
|
* @param string $type see LabelOptions::SUPPORTED_ELEMENTS for valid values
|
2020-05-10 21:39:31 +02:00
|
|
|
* @param array $order_by The way the results should be sorted. By default ordered by
|
2020-04-29 22:59:14 +02:00
|
|
|
*/
|
|
|
|
public function findForSupportedElement(string $type, array $order_by = ['name' => 'ASC']): array
|
|
|
|
{
|
2020-08-21 21:36:22 +02:00
|
|
|
if (!in_array($type, LabelOptions::SUPPORTED_ELEMENTS, true)) {
|
2022-08-14 19:32:53 +02:00
|
|
|
throw new InvalidArgumentException('Invalid supported_element type given.');
|
2020-04-29 22:59:14 +02:00
|
|
|
}
|
2020-05-10 21:39:31 +02:00
|
|
|
|
2020-04-29 22:59:14 +02:00
|
|
|
return $this->findBy(['options.supported_element' => $type], $order_by);
|
|
|
|
}
|
2020-05-10 21:39:31 +02:00
|
|
|
}
|