Make tags in part table more pretty. Also added link to tags search.

This commit is contained in:
Jan Böhmer 2019-11-10 19:38:36 +01:00
parent 05d6b0aa93
commit f5c2a7b728
4 changed files with 78 additions and 4 deletions

View file

@ -689,6 +689,9 @@ table.dataTable {
.attach-table-icon:hover {
color: var(--gray-dark);
}
.badge-table {
margin-right: 0.2em;
}
/*********************************
Workarounds

View file

@ -68,14 +68,14 @@ class PartAttachmentsColumn extends AbstractColumn
$count = 5;
foreach ($attachments as $attachment) {
//Only show the first 5 attachments
if (--$count <= 0) {
continue;
if (--$count < 0) {
break;
}
/** @var Attachment $attachment */
$tmp .= sprintf(
'<a href="%s" title="%s" class="attach-table-icon" target="_blank" rel="noopener" data-no-ajax>%s</a>',
$this->urlGenerator->getViewURL($attachment),
$attachment->getName() . ': ' . $attachment->getFilename(),
htmlspecialchars($attachment->getName()) . ': ' . htmlspecialchars($attachment->getFilename()),
$this->FAIconGenerator->generateIconHTML(
$this->FAIconGenerator->fileExtensionToFAType($attachment->getExtension()),
'fas',

View file

@ -0,0 +1,70 @@
<?php
/**
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
*
* Copyright (C) 2019 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 General Public License
* as published by the Free Software Foundation; either version 2
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
namespace App\DataTables\Column;
use Omines\DataTablesBundle\Column\AbstractColumn;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
class TagsColumn extends AbstractColumn
{
protected $urlGenerator;
public function __construct(UrlGeneratorInterface $urlGenerator)
{
$this->urlGenerator = $urlGenerator;
}
/**
* The normalize function is responsible for converting parsed and processed data to a datatables-appropriate type.
*
* @param mixed $value The single value of the column
* @return mixed
*/
public function normalize($value)
{
if (empty($value)) {
return [];
}
return explode(',', $value);
}
public function render($tags, $context)
{
$html = '';
$count = 10;
foreach ($tags as $tag) {
//Only show max 10 tags
if (--$count < 0) {
break;
}
$html .= sprintf(
'<a href="%s" class="badge badge-primary badge-table">%s</a>',
$this->urlGenerator->generate('part_list_tags', ['tag' => $tag]),
htmlspecialchars($tag)
);
}
return $html;
}
}

View file

@ -24,6 +24,7 @@ namespace App\DataTables;
use App\DataTables\Column\EntityColumn;
use App\DataTables\Column\LocaleDateTimeColumn;
use App\DataTables\Column\PartAttachmentsColumn;
use App\DataTables\Column\TagsColumn;
use App\Entity\Attachments\Attachment;
use App\Entity\Parts\Category;
use App\Entity\Parts\Footprint;
@ -273,7 +274,7 @@ class PartsDataTable implements DataTableTypeInterface
'label' => $this->translator->trans('part.table.mass'),
'visible' => false,
])
->add('tags', TextColumn::class, [
->add('tags', TagsColumn::class, [
'label' => $this->translator->trans('part.table.tags'),
'visible' => false,
])