Skip to content
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

Frontend part of drop graphql #1514

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
166 changes: 166 additions & 0 deletions src/bundle/Controller/Location/LoadSubItemsController.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,166 @@
<?php

/**
* @copyright Copyright (C) Ibexa AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
declare(strict_types=1);

namespace Ibexa\Bundle\AdminUi\Controller\Location;

use Ibexa\AdminUi\REST\Value\SubItems\ContentInfo;
use Ibexa\AdminUi\REST\Value\SubItems\ContentType;
use Ibexa\AdminUi\REST\Value\SubItems\Owner;
use Ibexa\AdminUi\REST\Value\SubItems\SubItem;
use Ibexa\AdminUi\REST\Value\SubItems\SubItemList;
use Ibexa\AdminUi\REST\Value\SubItems\Thumbnail;
use Ibexa\Contracts\Core\Repository\Exceptions\NotImplementedException;
use Ibexa\Contracts\Core\Repository\LocationService;
use Ibexa\Contracts\Core\Repository\Values\Content\Location;
use Ibexa\Contracts\Core\Repository\Values\Content\LocationList;
use Ibexa\Contracts\Core\Repository\Values\Content\Query;
use Ibexa\Contracts\Core\Repository\Values\Content\Query\Criterion\ParentLocationId;
use Ibexa\Contracts\Core\Repository\Values\Content\Query\SortClause;
use Ibexa\Contracts\Core\Repository\Values\Filter\Filter;
use Ibexa\Contracts\Core\Repository\Values\Filter\FilteringSortClause;
use Ibexa\Core\Base\Exceptions\InvalidArgumentException;
use Ibexa\Rest\Server\Controller as RestController;
use Symfony\Component\HttpFoundation\Request;

final class LoadSubItemsController extends RestController
{
private const SORT_CLAUSE_MAP = [
'ContentId' => SortClause\ContentId::class,
'DateModified' => SortClause\DateModified::class,
'LocationDepth' => SortClause\Location\Depth::class,
'LocationPath' => SortClause\Location\Path::class,
'LocationPriority' => SortClause\Location\Priority::class,
'SectionIdentifier' => SortClause\SectionIdentifier::class,
'SectionName' => SortClause\SectionName::class,
'DatePublished' => SortClause\DatePublished::class,
'ContentName' => SortClause\ContentName::class,
];

public function __construct(readonly private LocationService $locationService)
{
}

public function loadAction(
Request $request,
Location $location,
int $limit,
int $offset
): SubItemList {
$sortOrder = $request->query->getAlpha('sortOrder', Query::SORT_ASC);

$filter = new Filter(new ParentLocationId($location->getId()));
$filter->withLimit($limit);
$filter->withOffset($offset);

$sortClauses = $request->query->get('sortClause') ? [$this->buildSortClause($request->query->get('sortClause'), $sortOrder)] : $this->getDefaultSortClause($location);

foreach ($sortClauses as $sortClause) {
$filter->withSortClause($sortClause);
}

$count = $this->locationService->count($filter);
$children = $this->locationService->find($filter);

return $this->buildSubItemsList(
$count,
$children
);
}

/**
* @return \Ibexa\Contracts\Core\Repository\Values\Filter\FilteringSortClause[]
*/
private function getDefaultSortClause(Location $location): array
{
try {
$sortClauses = $location->getSortClauses();
} catch (NotImplementedException $e) {
return [];
}

return array_filter($sortClauses, static fn ($sortClause) => $sortClause instanceof FilteringSortClause);
}

private function buildSortClause(string $sortClause, string $sortOrder): FilteringSortClause
{
if (!isset(static::SORT_CLAUSE_MAP[$sortClause])) {
throw new InvalidArgumentException('$sortClause', 'Invalid sort clause');
}

$map = static::SORT_CLAUSE_MAP;

$sortClauseInstance = new $map[$sortClause]();
$sortClauseInstance->direction = $sortOrder;

return $sortClauseInstance;
}

private function buildSubItemsList(int $totalCount, LocationList $childrenList): SubItemList
{
$subItems = [];
foreach ($childrenList as $child) {
$content = $child->getContent();
$contentInfo = $child->getContentInfo();
$versionInfo = $content->getVersionInfo();
$owner = $child->getContentInfo()->getOwner();
$subItems[] = new SubItem(
$child->getId(),
$child->remoteId,
$child->isHidden(),
$child->isInvisible(),
$child->priority,
$child->getPathString(),
new Thumbnail(
$content->getThumbnail()?->resource,
$content->getThumbnail()?->mimeType
),
new Owner(
$owner->getId(),
new Thumbnail(
$owner->getThumbnail()?->resource,
$owner->getThumbnail()?->mimeType
),
new ContentType(
$owner->getContentType()->getIdentifier(),
$owner->getContentType()->getName(),
),
$owner->getName(),
),
$versionInfo->getVersionNo(),
$versionInfo->getLanguageCodes(),
new Owner(
$versionInfo->getCreator()->getId(),
new Thumbnail(
$versionInfo->getCreator()->getThumbnail()?->resource,
$versionInfo->getCreator()->getThumbnail()?->mimeType
),
new ContentType(
$versionInfo->getCreator()->getContentType()->getIdentifier(),
$versionInfo->getCreator()->getContentType()->getName(),
),
$versionInfo->getCreator()->getName(),
),
new ContentType(
$content->getContentType()->getIdentifier(),
$content->getContentType()->getName(),
),
new ContentInfo(
$contentInfo->getId(),
$contentInfo->remoteId,
$contentInfo->getMainLanguageCode(),
$contentInfo->getSection()->name,
$contentInfo->publishedDate->getTimestamp(),
$contentInfo->modificationDate->getTimestamp(),
$content->getName()
),
);
}

return new SubItemList($totalCount, $subItems);
}
}
15 changes: 15 additions & 0 deletions src/bundle/Resources/config/routing_rest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,3 +126,18 @@ ibexa.rest.image.download:
methods: GET
requirements:
contentIdList: '^\d+(,\d+)*$'

#
# Subitems
#
ibexa.rest.location.subitems:
path: /location/subitems/{locationId}/{limit}/{offset}
methods: ['GET']
options:
expose: true
requirements:
parentLocationId: \d+
controller: Ibexa\Bundle\AdminUi\Controller\Location\LoadSubItemsController::loadAction
defaults:
limit: 10
offset: 0
2 changes: 2 additions & 0 deletions src/bundle/Resources/config/services/controllers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -261,3 +261,5 @@ services:
$limit: '%ibexa.admin_ui.load_users_with_permission_info.limit%'
tags:
- controller.service_arguments

Ibexa\Bundle\AdminUi\Controller\Location\LoadSubItemsController: ~
33 changes: 33 additions & 0 deletions src/bundle/Resources/config/services/rest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,36 @@ services:
Ibexa\AdminUi\REST\Input\Parser\CriterionProcessor:
parent: Ibexa\Contracts\Rest\Input\Parser\Query\Criterion\BaseCriterionProcessor


#
# Subitems
#
Ibexa\AdminUi\REST\Output\ValueObjectVisitor\SubItems\SubItemList:
parent: Ibexa\Contracts\Rest\Output\ValueObjectVisitor
tags:
- { name: ibexa.rest.output.value_object.visitor, type: Ibexa\AdminUi\REST\Value\SubItems\SubItemList }

Ibexa\AdminUi\REST\Output\ValueObjectVisitor\SubItems\SubItem:
parent: Ibexa\Contracts\Rest\Output\ValueObjectVisitor
tags:
- { name: ibexa.rest.output.value_object.visitor, type: Ibexa\AdminUi\REST\Value\SubItems\SubItem }

Ibexa\AdminUi\REST\Output\ValueObjectVisitor\SubItems\Owner:
parent: Ibexa\Contracts\Rest\Output\ValueObjectVisitor
tags:
- { name: ibexa.rest.output.value_object.visitor, type: Ibexa\AdminUi\REST\Value\SubItems\Owner }

Ibexa\AdminUi\REST\Output\ValueObjectVisitor\SubItems\Thumbnail:
parent: Ibexa\Contracts\Rest\Output\ValueObjectVisitor
tags:
- { name: ibexa.rest.output.value_object.visitor, type: Ibexa\AdminUi\REST\Value\SubItems\Thumbnail }

Ibexa\AdminUi\REST\Output\ValueObjectVisitor\SubItems\ContentType:
parent: Ibexa\Contracts\Rest\Output\ValueObjectVisitor
tags:
- { name: ibexa.rest.output.value_object.visitor, type: Ibexa\AdminUi\REST\Value\SubItems\ContentType }

Ibexa\AdminUi\REST\Output\ValueObjectVisitor\SubItems\ContentInfo:
parent: Ibexa\Contracts\Rest\Output\ValueObjectVisitor
tags:
- { name: ibexa.rest.output.value_object.visitor, type: Ibexa\AdminUi\REST\Value\SubItems\ContentInfo }
8 changes: 4 additions & 4 deletions src/bundle/Resources/public/js/scripts/admin.format.date.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,17 +61,17 @@

const formatEscapedString = function (icuStr) {
// eslint-disable-next-line quotes
if (icuStr === "''") {
return "[']"; // eslint-disable-line quotes
if (icuStr === '\'\'') {
return '[\']'; // eslint-disable-line quotes
}

return icuStr.replace(/'(.*)'/g, '[$1]').replace(/''/g, "'"); // eslint-disable-line quotes
return icuStr.replace(/'(.*)'/g, '[$1]').replace(/''/g, '\''); // eslint-disable-line quotes
};

moment.fn.formatICU = function (format) {
const form = format.replace(formatICUEx, (icuStr) => {
// eslint-disable-next-line quotes
if (icuStr[0] === "'") {
if (icuStr[0] === '\'') {
return formatEscapedString(icuStr);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as middleEllipsisHelper from '@ibexa-admin-ui/src/bundle/Resources/publ
this.container = config.container || config.fieldContainer.querySelector('.ibexa-tag-view-select');

if (!this.container) {
throw new Error("Field Container doesn't exist!"); // eslint-disable-line quotes
throw new Error('Field Container doesn\'t exist!'); // eslint-disable-line quotes
}

this.listContainer = this.container.querySelector('.ibexa-tag-view-select__selected-list');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

this.showPreviewEventName = 'ibexa-image-asset:show-preview';
}

/**
* Creates a new Image Asset
*
Expand Down
5 changes: 3 additions & 2 deletions src/bundle/ui-dev/src/modules/common/thumbnail/thumbnail.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from 'react';

import Icon from '../icon/icon';
import ThumbnailProps from './thumbnail.types';

Expand All @@ -10,15 +11,15 @@ const Thumbnail = ({ thumbnailData, iconExtraClasses, contentTypeIconPath }: Thu

return (
<div className="c-thumbnail__icon-wrapper">
<Icon extraClasses="ibexa-icon--small" customPath={contentTypeIconPath} />
<Icon customPath={contentTypeIconPath} extraClasses="ibexa-icon--small" />
</div>
);
};

if (thumbnailData.mimeType === 'image/svg+xml') {
return (
<div className="c-thumbnail">
<Icon extraClasses={iconExtraClasses} customPath={thumbnailData.resource} />
<Icon customPath={thumbnailData.resource} extraClasses={iconExtraClasses} />
</div>
);
}
Expand Down
Loading
Loading