mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
add notification counter in user menu
This commit is contained in:
parent
da0db5ba9a
commit
9b4bf04c9c
@ -10,6 +10,7 @@ use Chill\MainBundle\DependencyInjection\TimelineCompilerClass;
|
|||||||
use Chill\MainBundle\DependencyInjection\RoleProvidersCompilerPass;
|
use Chill\MainBundle\DependencyInjection\RoleProvidersCompilerPass;
|
||||||
use Chill\MainBundle\DependencyInjection\CompilerPass\ExportsCompilerPass;
|
use Chill\MainBundle\DependencyInjection\CompilerPass\ExportsCompilerPass;
|
||||||
use Chill\MainBundle\DependencyInjection\CompilerPass\WidgetsCompilerPass;
|
use Chill\MainBundle\DependencyInjection\CompilerPass\WidgetsCompilerPass;
|
||||||
|
use Chill\MainBundle\DependencyInjection\CompilerPass\NotificationCounterCompilerPass;
|
||||||
|
|
||||||
|
|
||||||
class ChillMainBundle extends Bundle
|
class ChillMainBundle extends Bundle
|
||||||
@ -23,5 +24,6 @@ class ChillMainBundle extends Bundle
|
|||||||
$container->addCompilerPass(new RoleProvidersCompilerPass());
|
$container->addCompilerPass(new RoleProvidersCompilerPass());
|
||||||
$container->addCompilerPass(new ExportsCompilerPass());
|
$container->addCompilerPass(new ExportsCompilerPass());
|
||||||
$container->addCompilerPass(new WidgetsCompilerPass());
|
$container->addCompilerPass(new WidgetsCompilerPass());
|
||||||
|
$container->addCompilerPass(new NotificationCounterCompilerPass());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
39
Controller/UIController.php
Normal file
39
Controller/UIController.php
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2018 Champs Libres Cooperative <info@champs-libres.coop>
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
namespace Chill\MainBundle\Controller;
|
||||||
|
|
||||||
|
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
||||||
|
use Chill\MainBundle\Templating\UI\CountNotificationUser;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @author Julien Fastré <julien.fastre@champs-libres.coop>
|
||||||
|
*/
|
||||||
|
class UIController extends Controller
|
||||||
|
{
|
||||||
|
public function showNotificationUserCounterAction(
|
||||||
|
CountNotificationUser $counter
|
||||||
|
) {
|
||||||
|
$nb = $counter->getSumNotification($this->getUser());
|
||||||
|
|
||||||
|
return $this->render('ChillMainBundle:UI:notification_user_counter.html.twig', [
|
||||||
|
'nb' => $nb
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
}
|
@ -93,7 +93,8 @@ class ChillMainExtension extends Extension implements PrependExtensionInterface,
|
|||||||
$loader->load('services/export.yml');
|
$loader->load('services/export.yml');
|
||||||
$loader->load('services/form.yml');
|
$loader->load('services/form.yml');
|
||||||
$loader->load('services/validator.yml');
|
$loader->load('services/validator.yml');
|
||||||
|
$loader->load('services/widget.yml');
|
||||||
|
$loader->load('services/controller.yml');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getConfiguration(array $config, ContainerBuilder $container)
|
public function getConfiguration(array $config, ContainerBuilder $container)
|
||||||
|
@ -0,0 +1,46 @@
|
|||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2018 Champs Libres Cooperative <info@champs-libres.coop>
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
namespace Chill\MainBundle\DependencyInjection\CompilerPass;
|
||||||
|
|
||||||
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
||||||
|
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
|
||||||
|
use Chill\MainBundle\Templating\UI\CountNotificationUser;
|
||||||
|
use Symfony\Component\DependencyInjection\Reference;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* @author Julien Fastré <julien.fastre@champs-libres.coop>
|
||||||
|
*/
|
||||||
|
class NotificationCounterCompilerPass implements CompilerPassInterface
|
||||||
|
{
|
||||||
|
public function process(ContainerBuilder $container)
|
||||||
|
{
|
||||||
|
if (!$container->hasDefinition(CountNotificationUser::class)) {
|
||||||
|
throw new \LogicException("The service ".CountNotificationUser::class." "
|
||||||
|
. "should be defined");
|
||||||
|
}
|
||||||
|
|
||||||
|
$notificationCounterDefinition = $container->getDefinition(CountNotificationUser::class);
|
||||||
|
|
||||||
|
foreach ($container->findTaggedServiceIds('chill_main.count_notification.user') as $id => $tags) {
|
||||||
|
$notificationCounterDefinition
|
||||||
|
->addMethodCall('addNotificationCounter', [new Reference($id)]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
4
Resources/config/services/controller.yml
Normal file
4
Resources/config/services/controller.yml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
services:
|
||||||
|
Chill\MainBundle\Controller\:
|
||||||
|
resource: '../../../Controller'
|
||||||
|
tags: ['controller.service_arguments']
|
2
Resources/config/services/widget.yml
Normal file
2
Resources/config/services/widget.yml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
services:
|
||||||
|
Chill\MainBundle\Templating\UI\CountNotificationUser: ~
|
@ -20,7 +20,7 @@
|
|||||||
<div class="li-content">
|
<div class="li-content">
|
||||||
<a href="javascript:void(0)" style="font-size: 0.8em; font-family: 'Open Sans'; font-weight:300;">
|
<a href="javascript:void(0)" style="font-size: 0.8em; font-family: 'Open Sans'; font-weight:300;">
|
||||||
{{ 'Welcome' | trans }}<br/>
|
{{ 'Welcome' | trans }}<br/>
|
||||||
<b>{{ app.user.username }}</b>
|
<b>{{ app.user.username }}{{ render(controller('ChillMainBundle:UI:showNotificationUserCounter')) }}</b>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<ul class="submenu width-11-em">
|
<ul class="submenu width-11-em">
|
||||||
|
1
Resources/views/UI/notification_user_counter.html.twig
Normal file
1
Resources/views/UI/notification_user_counter.html.twig
Normal file
@ -0,0 +1 @@
|
|||||||
|
{% if nb > 0 %}<span class="notification-counter">{{ nb }}{% endif %}
|
50
Templating/UI/CountNotificationUser.php
Normal file
50
Templating/UI/CountNotificationUser.php
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2018 Champs Libres Cooperative <info@champs-libres.coop>
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
namespace Chill\MainBundle\Templating\UI;
|
||||||
|
|
||||||
|
use Chill\MainBundle\Entity\User;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show a number of notification to user in the upper right corner
|
||||||
|
*
|
||||||
|
* @author Julien Fastré <julien.fastre@champs-libres.coop>
|
||||||
|
*/
|
||||||
|
class CountNotificationUser
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @var NotificationCounterInterface[]
|
||||||
|
*/
|
||||||
|
protected $counters = [];
|
||||||
|
|
||||||
|
public function addNotificationCounter(NotificationCounterInterface $counter)
|
||||||
|
{
|
||||||
|
$this->counters[] = $counter;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getSumNotification(User $u): int
|
||||||
|
{
|
||||||
|
$sum = 0;
|
||||||
|
|
||||||
|
foreach ($this->counters as $counter) {
|
||||||
|
$sum += $counter->addNotification($u);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $sum;
|
||||||
|
}
|
||||||
|
}
|
32
Templating/UI/NotificationCounterInterface.php
Normal file
32
Templating/UI/NotificationCounterInterface.php
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* Copyright (C) 2018 Champs Libres Cooperative <info@champs-libres.coop>
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
namespace Chill\MainBundle\Templating\UI;
|
||||||
|
|
||||||
|
use Chill\MainBundle\Entity\User;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @author Julien Fastré <julien.fastre@champs-libres.coop>
|
||||||
|
*/
|
||||||
|
interface NotificationCounterInterface
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Add a number of notification
|
||||||
|
*/
|
||||||
|
public function addNotification(User $u): int;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user