Compare commits

..

17 commits

Author SHA1 Message Date
c03377c974 update structure of composer.json and update dependencies 2024-10-11 14:30:25 +02:00
Christian Krause
f4d3da82a6 Merge branch 'release/3.0.1' 2023-05-23 17:41:23 +02:00
Christian Krause
e8ea04f323 Fix for iterator arguments 2023-05-23 17:40:07 +02:00
f54dded1e0 left over code style issues 2023-02-07 16:57:50 +01:00
b77e4f391b Only Code-Style and doc-type hints 2023-02-07 16:44:52 +01:00
Dustin Hauer
5cbd1340cd Merge branch 'version/2.x-dev' into develop
* version/2.x-dev:
2023-01-11 12:08:49 +01:00
f32f995f43 Merge tag '3.0.0' into develop
Tagging 3.0.0
2021-08-26 11:20:06 +02:00
13206fec9a Merge branch 'release/3.0.0' 2021-08-26 11:20:02 +02:00
5baf0c080c Merge branch 'feature/flow-6.3' into develop 2021-08-26 11:19:49 +02:00
07233f7750 Updating branch aliases 2021-08-26 11:19:30 +02:00
68e35595f3 Dropping old flow dependencies 2021-06-29 13:09:07 +02:00
6b3f24b0ee Class literal instead of string and updating copyright 2021-06-29 13:07:25 +02:00
27bfb049f3 Adjusting interface and implementation to use \Iterator instead of array 2021-06-08 18:35:42 +02:00
6339e96084 Type hinting and no render method arguments 2021-05-12 02:26:43 +02:00
e436e722c1 phpcbf run 2021-05-12 02:01:22 +02:00
893e6b313a FIX: First steps towards Flow 6.3 compatibility. For now only ItemsViewHelper 2020-10-15 21:13:20 +02:00
ac808d34d6 TASK: Allow Neos Flow 6.3 2020-10-15 14:54:05 +02:00
7 changed files with 105 additions and 81 deletions

View file

@ -1,4 +1,5 @@
<?php
namespace DigiComp\Menu\MenuService;
/*
@ -16,11 +17,10 @@ namespace DigiComp\Menu\MenuService;
*/
interface ServiceInterface
{
/**
* @param mixed $forPath
* @param string|null $forPath
*
* @return array|\Iterator
* @return \Iterator
*/
public function getItems($forPath = null);
public function getItems(string $forPath = null): \Iterator;
}

View file

@ -1,4 +1,5 @@
<?php
namespace DigiComp\Menu\MenuService;
/*
@ -12,53 +13,38 @@ namespace DigiComp\Menu\MenuService;
*/
use Neos\Flow\Annotations as Flow;
use Neos\Flow\Configuration\ConfigurationManager;
/**
* @package DigiComp\Menu\Menu
*
* @Flow\Scope("singleton")
*/
class SettingsService implements ServiceInterface
{
/**
* @var \Neos\Flow\Configuration\ConfigurationManager
* @Flow\InjectConfiguration(type="Menu")
* @var array
*/
protected $configurationManager;
public function injectConfigurationManager(ConfigurationManager $configurationManager)
{
$this->configurationManager = $configurationManager;
$this->menuConfiguration = $this->configurationManager->getConfiguration('Menu');
}
protected array $menuConfiguration;
/**
* @var array
*/
protected $menuConfiguration;
protected array $items = [];
/**
* @var array
*/
protected $items = array();
/**
* @param string $forMenu
* @return array
*/
public function getItems($forMenu = null)
public function getItems(string $forPath = null): \Iterator
{
if ($forMenu) {
$items = &$this->menuConfiguration[$forMenu];
if ($forPath) {
$items = &$this->menuConfiguration[$forPath];
} else {
$items = &$this->menuConfiguration;
}
if ($items) {
uasort(
$items, function ($a, $b) {
\uasort(
$items,
static function ($a, $b) {
return $a['sorting'] > $b['sorting'];
}
);
}
return $items;
return new \ArrayIterator($items);
}
}
}

View file

@ -1,4 +1,5 @@
<?php
namespace DigiComp\Menu;
/*
@ -11,26 +12,26 @@ namespace DigiComp\Menu;
* source code.
*/
use Neos\Flow\Configuration\ConfigurationManager;
use Neos\Flow\Core\Bootstrap;
use Neos\Flow\Package\Package as BasePackage;
use Neos\Flow\Configuration\ConfigurationManager;
/**
* Package base class of the DigiComp.Menu package.
*/
class Package extends BasePackage
{
public function boot(Bootstrap $bootstrap)
{
parent::boot($bootstrap);
$dispatcher = $bootstrap->getSignalSlotDispatcher();
$dispatcher->connect(
'Neos\Flow\Configuration\ConfigurationManager', 'configurationManagerReady',
ConfigurationManager::class,
'configurationManagerReady',
function (ConfigurationManager $configurationManager) {
$configurationManager->registerConfigurationType('Menu');
}
);
}
}
}

View file

@ -1,4 +1,5 @@
<?php
namespace DigiComp\Menu\ViewHelpers;
/*
@ -11,8 +12,10 @@ namespace DigiComp\Menu\ViewHelpers;
* source code.
*/
use DigiComp\Menu\MenuService\ServiceInterface;
use Neos\Flow\Annotations as Flow;
use Neos\FluidAdaptor\Core\ViewHelper\AbstractViewHelper;
use Neos\FluidAdaptor\Core\ViewHelper\Exception;
/**
* Just adds the return of MenuService
@ -20,23 +23,32 @@ use Neos\FluidAdaptor\Core\ViewHelper\AbstractViewHelper;
*/
class ItemsViewHelper extends AbstractViewHelper
{
protected $escapeOutput = false;
/**
* @var \DigiComp\Menu\MenuService\ServiceInterface
* @Flow\Inject
* @var ServiceInterface
*/
protected $menuService;
/**
* @param string $as
* @param string $for
* @return string
* @throws Exception
*/
public function render($as = 'items', $for = null)
public function initializeArguments(): void
{
$this->templateVariableContainer->add($as, $this->menuService->getItems($for));
$this->registerArgument('for', 'string', 'path in Menu.yaml', false);
$this->registerArgument('as', 'string', 'Name in Frontend', false);
}
/**
* @return mixed
*/
public function render()
{
$this->templateVariableContainer->add(
$this->arguments['as'],
$this->menuService->getItems($this->arguments['for'])
);
return $this->renderChildren();
}
}

View file

@ -1,4 +1,5 @@
<?php
namespace DigiComp\Menu\ViewHelpers;
/*
@ -12,47 +13,56 @@ namespace DigiComp\Menu\ViewHelpers;
*/
use Neos\FluidAdaptor\Core\ViewHelper\AbstractViewHelper;
use Neos\FluidAdaptor\Core\ViewHelper\Exception;
/**
* Helps to get useful template variables for process menus
*/
class ProgressViewHelper extends AbstractViewHelper
{
protected $escapeOutput = false;
/**
* @param array $links
* @param int $activeStep
* @param bool $returnable
* @param string $stepsAs
* @param string $backLinkAs
* @param string $activeStepAs
* @param string $linksAs
* @param string $activeStepLinkAs
* @param int $offset
* @param int $linkCount if given overrides count($links)
*
* @return string
* @throws Exception
*/
public function render(
array $links,
$activeStep = 1,
$returnable = true,
$stepsAs = 'steps',
$backLinkAs = 'backLink',
$activeStepAs = 'activeStep',
$linksAs = 'links',
$activeStepLinkAs = 'activeStepLink',
$offset = 1,
$linkCount = null
) {
public function initializeArguments(): void
{
$this->registerArgument('for', 'string', 'path in Menu.yaml', false);
$this->registerArgument('as', 'string', 'Name in Frontend', false);
$this->registerArgument('links', 'array', 'links to show', true);
$this->registerArgument('activeStep', 'int', 'current active link index', false, 1);
$this->registerArgument('returnable', 'bool', 'can you go back to the last index', false, true);
$this->registerArgument('stepsAs', 'string', 'variable name of a single step', false, 'steps');
$this->registerArgument('backLinkAs', 'string', 'variable name of a backlink', false, 'backLink');
$this->registerArgument('linksAs', 'string', 'variable name of the links array', false, 'links');
$this->registerArgument(
'activeStepLinkAs',
'string',
'variable name of the active step link',
false,
'activeStepLink'
);
$this->registerArgument('offset', 'int', 'offset to start with', false, 1);
$this->registerArgument('linkCount', 'int', 'force this number of steps', false);
}
/**
* @return mixed
*/
public function render()
{
$links = $activeStep = $returnable = $stepsAs = $backLinkAs = $activeStepAs = $linksAs =
$activeStepLinkAs = $offset = $linkCount = null;
\extract($this->arguments, \EXTR_OVERWRITE);
//handling famous off by one
$activeStep -= $offset;
//make sure our array index is numeric
$links = array_values($links);
if (\is_iterable($links)) {
$links = \iterator_to_array($links);
}
$links = \array_values($links);
if (!$linkCount) {
$linkCount = count($links);
$linkCount = \count($links);
}
foreach ($links as $i => &$link) {
$link['completed'] = $activeStep > $i;

View file

@ -1,4 +1,4 @@
Copyright (c) 2016 Ferdinand Kuhl <f.kuhl@digital-competence.de>
Copyright (c) 2021 Ferdinand Kuhl <f.kuhl@digital-competence.de>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@ -16,4 +16,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
THE SOFTWARE.

View file

@ -1,33 +1,48 @@
{
"name": "digicomp/menu",
"type": "typo3-flow-package",
"description": "Helps with the creation of simple fluid based menus",
"type": "neos-package",
"keywords": [
"flow",
"neos",
"Neos",
"Flow",
"menu"
],
"homepage": "https://git.digital-competence.de/Packages/DigiComp.Menu",
"license": "MIT",
"authors": [
{
"name": "Ferdinand Kuhl",
"email": "f.kuhl@digital-competence.de",
"homepage": "http://www.digital-competence.de",
"homepage": "https://www.digital-competence.de",
"role": "Developer"
}
],
"license": "MIT",
"homepage": "https://github.com/digicomp/DigiComp.Sequence",
"require": {
"neos/flow": "~4.0|~5.3"
"php": ">=7.4.0",
"neos/flow": "^6.3.21"
},
"require-dev": {
"mikey179/vfsstream": "^1.6.1",
"neos/buildessentials": "^7.0.0",
"phpunit/phpunit": "~8.5",
"vimeo/psalm": "~4.22.0"
},
"autoload": {
"psr-4": {
"DigiComp\\Menu\\": "Classes"
"DigiComp\\Menu\\": "Classes/"
}
},
"config": {
"sort-packages": true,
"platform-check": true
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
"dev-develop": "3.0.x-dev",
"dev-version/2.x-dev": "2.0.x-dev"
},
"neos": {
"package-key": "DigiComp.Menu"
},
"applied-flow-migrations": [
"TYPO3.Fluid-20150214130800",
@ -65,4 +80,4 @@
"Neos.Flow-20180415105700"
]
}
}
}