mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-22 09:53:35 +02:00
Make tags in part table more pretty. Also added link to tags search.
This commit is contained in:
parent
05d6b0aa93
commit
f5c2a7b728
4 changed files with 78 additions and 4 deletions
|
@ -689,6 +689,9 @@ table.dataTable {
|
||||||
.attach-table-icon:hover {
|
.attach-table-icon:hover {
|
||||||
color: var(--gray-dark);
|
color: var(--gray-dark);
|
||||||
}
|
}
|
||||||
|
.badge-table {
|
||||||
|
margin-right: 0.2em;
|
||||||
|
}
|
||||||
|
|
||||||
/*********************************
|
/*********************************
|
||||||
Workarounds
|
Workarounds
|
||||||
|
|
|
@ -68,14 +68,14 @@ class PartAttachmentsColumn extends AbstractColumn
|
||||||
$count = 5;
|
$count = 5;
|
||||||
foreach ($attachments as $attachment) {
|
foreach ($attachments as $attachment) {
|
||||||
//Only show the first 5 attachments
|
//Only show the first 5 attachments
|
||||||
if (--$count <= 0) {
|
if (--$count < 0) {
|
||||||
continue;
|
break;
|
||||||
}
|
}
|
||||||
/** @var Attachment $attachment */
|
/** @var Attachment $attachment */
|
||||||
$tmp .= sprintf(
|
$tmp .= sprintf(
|
||||||
'<a href="%s" title="%s" class="attach-table-icon" target="_blank" rel="noopener" data-no-ajax>%s</a>',
|
'<a href="%s" title="%s" class="attach-table-icon" target="_blank" rel="noopener" data-no-ajax>%s</a>',
|
||||||
$this->urlGenerator->getViewURL($attachment),
|
$this->urlGenerator->getViewURL($attachment),
|
||||||
$attachment->getName() . ': ' . $attachment->getFilename(),
|
htmlspecialchars($attachment->getName()) . ': ' . htmlspecialchars($attachment->getFilename()),
|
||||||
$this->FAIconGenerator->generateIconHTML(
|
$this->FAIconGenerator->generateIconHTML(
|
||||||
$this->FAIconGenerator->fileExtensionToFAType($attachment->getExtension()),
|
$this->FAIconGenerator->fileExtensionToFAType($attachment->getExtension()),
|
||||||
'fas',
|
'fas',
|
||||||
|
|
70
src/DataTables/Column/TagsColumn.php
Normal file
70
src/DataTables/Column/TagsColumn.php
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -24,6 +24,7 @@ namespace App\DataTables;
|
||||||
use App\DataTables\Column\EntityColumn;
|
use App\DataTables\Column\EntityColumn;
|
||||||
use App\DataTables\Column\LocaleDateTimeColumn;
|
use App\DataTables\Column\LocaleDateTimeColumn;
|
||||||
use App\DataTables\Column\PartAttachmentsColumn;
|
use App\DataTables\Column\PartAttachmentsColumn;
|
||||||
|
use App\DataTables\Column\TagsColumn;
|
||||||
use App\Entity\Attachments\Attachment;
|
use App\Entity\Attachments\Attachment;
|
||||||
use App\Entity\Parts\Category;
|
use App\Entity\Parts\Category;
|
||||||
use App\Entity\Parts\Footprint;
|
use App\Entity\Parts\Footprint;
|
||||||
|
@ -273,7 +274,7 @@ class PartsDataTable implements DataTableTypeInterface
|
||||||
'label' => $this->translator->trans('part.table.mass'),
|
'label' => $this->translator->trans('part.table.mass'),
|
||||||
'visible' => false,
|
'visible' => false,
|
||||||
])
|
])
|
||||||
->add('tags', TextColumn::class, [
|
->add('tags', TagsColumn::class, [
|
||||||
'label' => $this->translator->trans('part.table.tags'),
|
'label' => $this->translator->trans('part.table.tags'),
|
||||||
'visible' => false,
|
'visible' => false,
|
||||||
])
|
])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue