Compare commits
No commits in common. "master" and "version/2.x-dev" have entirely different histories.
master
...
version/2.
7 changed files with 81 additions and 105 deletions
|
@ -1,5 +1,4 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace DigiComp\Menu\MenuService;
|
namespace DigiComp\Menu\MenuService;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -17,10 +16,11 @@ namespace DigiComp\Menu\MenuService;
|
||||||
*/
|
*/
|
||||||
interface ServiceInterface
|
interface ServiceInterface
|
||||||
{
|
{
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param string|null $forPath
|
* @param mixed $forPath
|
||||||
*
|
*
|
||||||
* @return \Iterator
|
* @return array|\Iterator
|
||||||
*/
|
*/
|
||||||
public function getItems(string $forPath = null): \Iterator;
|
public function getItems($forPath = null);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace DigiComp\Menu\MenuService;
|
namespace DigiComp\Menu\MenuService;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -13,38 +12,53 @@ namespace DigiComp\Menu\MenuService;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
use Neos\Flow\Annotations as Flow;
|
use Neos\Flow\Annotations as Flow;
|
||||||
|
use Neos\Flow\Configuration\ConfigurationManager;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @package DigiComp\Menu\Menu
|
||||||
|
*
|
||||||
* @Flow\Scope("singleton")
|
* @Flow\Scope("singleton")
|
||||||
*/
|
*/
|
||||||
class SettingsService implements ServiceInterface
|
class SettingsService implements ServiceInterface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @Flow\InjectConfiguration(type="Menu")
|
* @var \Neos\Flow\Configuration\ConfigurationManager
|
||||||
* @var array
|
|
||||||
*/
|
*/
|
||||||
protected array $menuConfiguration;
|
protected $configurationManager;
|
||||||
|
public function injectConfigurationManager(ConfigurationManager $configurationManager)
|
||||||
|
{
|
||||||
|
$this->configurationManager = $configurationManager;
|
||||||
|
$this->menuConfiguration = $this->configurationManager->getConfiguration('Menu');
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected array $items = [];
|
protected $menuConfiguration;
|
||||||
|
|
||||||
public function getItems(string $forPath = null): \Iterator
|
/**
|
||||||
|
* @var array
|
||||||
|
*/
|
||||||
|
protected $items = array();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $forMenu
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function getItems($forMenu = null)
|
||||||
{
|
{
|
||||||
if ($forPath) {
|
if ($forMenu) {
|
||||||
$items = &$this->menuConfiguration[$forPath];
|
$items = &$this->menuConfiguration[$forMenu];
|
||||||
} else {
|
} else {
|
||||||
$items = &$this->menuConfiguration;
|
$items = &$this->menuConfiguration;
|
||||||
}
|
}
|
||||||
if ($items) {
|
if ($items) {
|
||||||
\uasort(
|
uasort(
|
||||||
$items,
|
$items, function ($a, $b) {
|
||||||
static function ($a, $b) {
|
|
||||||
return $a['sorting'] > $b['sorting'];
|
return $a['sorting'] > $b['sorting'];
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return new \ArrayIterator($items);
|
return $items;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,5 +1,4 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace DigiComp\Menu;
|
namespace DigiComp\Menu;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -12,26 +11,26 @@ namespace DigiComp\Menu;
|
||||||
* source code.
|
* source code.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
use Neos\Flow\Configuration\ConfigurationManager;
|
|
||||||
use Neos\Flow\Core\Bootstrap;
|
use Neos\Flow\Core\Bootstrap;
|
||||||
use Neos\Flow\Package\Package as BasePackage;
|
use Neos\Flow\Package\Package as BasePackage;
|
||||||
|
use Neos\Flow\Configuration\ConfigurationManager;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Package base class of the DigiComp.Menu package.
|
* Package base class of the DigiComp.Menu package.
|
||||||
*/
|
*/
|
||||||
class Package extends BasePackage
|
class Package extends BasePackage
|
||||||
{
|
{
|
||||||
|
|
||||||
public function boot(Bootstrap $bootstrap)
|
public function boot(Bootstrap $bootstrap)
|
||||||
{
|
{
|
||||||
parent::boot($bootstrap);
|
parent::boot($bootstrap);
|
||||||
|
|
||||||
$dispatcher = $bootstrap->getSignalSlotDispatcher();
|
$dispatcher = $bootstrap->getSignalSlotDispatcher();
|
||||||
$dispatcher->connect(
|
$dispatcher->connect(
|
||||||
ConfigurationManager::class,
|
'Neos\Flow\Configuration\ConfigurationManager', 'configurationManagerReady',
|
||||||
'configurationManagerReady',
|
|
||||||
function (ConfigurationManager $configurationManager) {
|
function (ConfigurationManager $configurationManager) {
|
||||||
$configurationManager->registerConfigurationType('Menu');
|
$configurationManager->registerConfigurationType('Menu');
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,5 +1,4 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace DigiComp\Menu\ViewHelpers;
|
namespace DigiComp\Menu\ViewHelpers;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -12,10 +11,8 @@ namespace DigiComp\Menu\ViewHelpers;
|
||||||
* source code.
|
* source code.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
use DigiComp\Menu\MenuService\ServiceInterface;
|
|
||||||
use Neos\Flow\Annotations as Flow;
|
use Neos\Flow\Annotations as Flow;
|
||||||
use Neos\FluidAdaptor\Core\ViewHelper\AbstractViewHelper;
|
use Neos\FluidAdaptor\Core\ViewHelper\AbstractViewHelper;
|
||||||
use Neos\FluidAdaptor\Core\ViewHelper\Exception;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Just adds the return of MenuService
|
* Just adds the return of MenuService
|
||||||
|
@ -23,32 +20,23 @@ use Neos\FluidAdaptor\Core\ViewHelper\Exception;
|
||||||
*/
|
*/
|
||||||
class ItemsViewHelper extends AbstractViewHelper
|
class ItemsViewHelper extends AbstractViewHelper
|
||||||
{
|
{
|
||||||
|
|
||||||
protected $escapeOutput = false;
|
protected $escapeOutput = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @var \DigiComp\Menu\MenuService\ServiceInterface
|
||||||
* @Flow\Inject
|
* @Flow\Inject
|
||||||
* @var ServiceInterface
|
|
||||||
*/
|
*/
|
||||||
protected $menuService;
|
protected $menuService;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws Exception
|
* @param string $as
|
||||||
|
* @param string $for
|
||||||
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function initializeArguments(): void
|
public function render($as = 'items', $for = null)
|
||||||
{
|
{
|
||||||
$this->registerArgument('for', 'string', 'path in Menu.yaml', false);
|
$this->templateVariableContainer->add($as, $this->menuService->getItems($for));
|
||||||
$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();
|
return $this->renderChildren();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace DigiComp\Menu\ViewHelpers;
|
namespace DigiComp\Menu\ViewHelpers;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -13,56 +12,47 @@ namespace DigiComp\Menu\ViewHelpers;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
use Neos\FluidAdaptor\Core\ViewHelper\AbstractViewHelper;
|
use Neos\FluidAdaptor\Core\ViewHelper\AbstractViewHelper;
|
||||||
use Neos\FluidAdaptor\Core\ViewHelper\Exception;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Helps to get useful template variables for process menus
|
* Helps to get useful template variables for process menus
|
||||||
*/
|
*/
|
||||||
class ProgressViewHelper extends AbstractViewHelper
|
class ProgressViewHelper extends AbstractViewHelper
|
||||||
{
|
{
|
||||||
|
|
||||||
protected $escapeOutput = false;
|
protected $escapeOutput = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @throws Exception
|
* @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
|
||||||
*/
|
*/
|
||||||
public function initializeArguments(): void
|
public function render(
|
||||||
{
|
array $links,
|
||||||
$this->registerArgument('for', 'string', 'path in Menu.yaml', false);
|
$activeStep = 1,
|
||||||
$this->registerArgument('as', 'string', 'Name in Frontend', false);
|
$returnable = true,
|
||||||
$this->registerArgument('links', 'array', 'links to show', true);
|
$stepsAs = 'steps',
|
||||||
$this->registerArgument('activeStep', 'int', 'current active link index', false, 1);
|
$backLinkAs = 'backLink',
|
||||||
$this->registerArgument('returnable', 'bool', 'can you go back to the last index', false, true);
|
$activeStepAs = 'activeStep',
|
||||||
$this->registerArgument('stepsAs', 'string', 'variable name of a single step', false, 'steps');
|
$linksAs = 'links',
|
||||||
$this->registerArgument('backLinkAs', 'string', 'variable name of a backlink', false, 'backLink');
|
$activeStepLinkAs = 'activeStepLink',
|
||||||
$this->registerArgument('linksAs', 'string', 'variable name of the links array', false, 'links');
|
$offset = 1,
|
||||||
$this->registerArgument(
|
$linkCount = null
|
||||||
'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
|
//handling famous off by one
|
||||||
$activeStep -= $offset;
|
$activeStep -= $offset;
|
||||||
//make sure our array index is numeric
|
//make sure our array index is numeric
|
||||||
if (\is_iterable($links)) {
|
$links = array_values($links);
|
||||||
$links = \iterator_to_array($links);
|
|
||||||
}
|
|
||||||
$links = \array_values($links);
|
|
||||||
if (!$linkCount) {
|
if (!$linkCount) {
|
||||||
$linkCount = \count($links);
|
$linkCount = count($links);
|
||||||
}
|
}
|
||||||
foreach ($links as $i => &$link) {
|
foreach ($links as $i => &$link) {
|
||||||
$link['completed'] = $activeStep > $i;
|
$link['completed'] = $activeStep > $i;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
Copyright (c) 2021 Ferdinand Kuhl <f.kuhl@digital-competence.de>
|
Copyright (c) 2016 Ferdinand Kuhl <f.kuhl@digital-competence.de>
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
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
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
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
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
|
@ -1,48 +1,33 @@
|
||||||
{
|
{
|
||||||
"name": "digicomp/menu",
|
"name": "digicomp/menu",
|
||||||
|
"type": "typo3-flow-package",
|
||||||
"description": "Helps with the creation of simple fluid based menus",
|
"description": "Helps with the creation of simple fluid based menus",
|
||||||
"type": "neos-package",
|
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"Neos",
|
"flow",
|
||||||
"Flow",
|
"neos",
|
||||||
"menu"
|
"menu"
|
||||||
],
|
],
|
||||||
"homepage": "https://git.digital-competence.de/Packages/DigiComp.Menu",
|
|
||||||
"license": "MIT",
|
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Ferdinand Kuhl",
|
"name": "Ferdinand Kuhl",
|
||||||
"email": "f.kuhl@digital-competence.de",
|
"email": "f.kuhl@digital-competence.de",
|
||||||
"homepage": "https://www.digital-competence.de",
|
"homepage": "http://www.digital-competence.de",
|
||||||
"role": "Developer"
|
"role": "Developer"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"license": "MIT",
|
||||||
|
"homepage": "https://github.com/digicomp/DigiComp.Sequence",
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=7.4.0",
|
"neos/flow": "~4.0|~5.3"
|
||||||
"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": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
"DigiComp\\Menu\\": "Classes/"
|
"DigiComp\\Menu\\": "Classes"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"config": {
|
|
||||||
"sort-packages": true,
|
|
||||||
"platform-check": true
|
|
||||||
},
|
|
||||||
"extra": {
|
"extra": {
|
||||||
"branch-alias": {
|
"branch-alias": {
|
||||||
"dev-develop": "3.0.x-dev",
|
"dev-master": "2.0.x-dev"
|
||||||
"dev-version/2.x-dev": "2.0.x-dev"
|
|
||||||
},
|
|
||||||
"neos": {
|
|
||||||
"package-key": "DigiComp.Menu"
|
|
||||||
},
|
},
|
||||||
"applied-flow-migrations": [
|
"applied-flow-migrations": [
|
||||||
"TYPO3.Fluid-20150214130800",
|
"TYPO3.Fluid-20150214130800",
|
||||||
|
@ -80,4 +65,4 @@
|
||||||
"Neos.Flow-20180415105700"
|
"Neos.Flow-20180415105700"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue