mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-30 04:51:01 +00:00
Merge pull request #2002 from wallabag/feature-display-itemsNumber
Feature display items number
This commit is contained in:
commit
8f8654913c
10 changed files with 95 additions and 5 deletions
|
@ -308,6 +308,10 @@ nav input {
|
||||||
margin: 0 1rem;
|
margin: 0 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
span.numberItems {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
/* ==========================================================================
|
/* ==========================================================================
|
||||||
* 3 = Filters slider
|
* 3 = Filters slider
|
||||||
* ========================================================================== */
|
* ========================================================================== */
|
||||||
|
|
|
@ -49,6 +49,7 @@ wallabag_core:
|
||||||
language: en
|
language: en
|
||||||
rss_limit: 50
|
rss_limit: 50
|
||||||
reading_speed: 1
|
reading_speed: 1
|
||||||
|
cache_lifetime: 10
|
||||||
|
|
||||||
wallabag_user:
|
wallabag_user:
|
||||||
registration_enabled: "%fosuser_registration%"
|
registration_enabled: "%fosuser_registration%"
|
||||||
|
|
|
@ -40,3 +40,11 @@ swiftmailer:
|
||||||
transport: smtp
|
transport: smtp
|
||||||
host: 'localhost'
|
host: 'localhost'
|
||||||
port: 1025
|
port: 1025
|
||||||
|
|
||||||
|
# If you want to use cache for queries used in WallabagExtension
|
||||||
|
# Uncomment the following lines
|
||||||
|
#doctrine:
|
||||||
|
# orm:
|
||||||
|
# metadata_cache_driver: apcu
|
||||||
|
# result_cache_driver: apcu
|
||||||
|
# query_cache_driver: apcu
|
||||||
|
|
|
@ -16,6 +16,9 @@ services:
|
||||||
wallabag.twig_extension:
|
wallabag.twig_extension:
|
||||||
class: Wallabag\CoreBundle\Twig\WallabagExtension
|
class: Wallabag\CoreBundle\Twig\WallabagExtension
|
||||||
public: false
|
public: false
|
||||||
|
arguments:
|
||||||
|
- "@wallabag_core.entry_repository"
|
||||||
|
- "@security.token_storage"
|
||||||
tags:
|
tags:
|
||||||
- { name: twig.extension }
|
- { name: twig.extension }
|
||||||
|
|
||||||
|
|
|
@ -36,6 +36,9 @@ class Configuration implements ConfigurationInterface
|
||||||
->end()
|
->end()
|
||||||
->scalarNode('paypal_url')
|
->scalarNode('paypal_url')
|
||||||
->end()
|
->end()
|
||||||
|
->integerNode('cache_lifetime')
|
||||||
|
->defaultValue(10)
|
||||||
|
->end()
|
||||||
->end()
|
->end()
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,7 @@ class WallabagCoreExtension extends Extension
|
||||||
$container->setParameter('wallabag_core.reading_speed', $config['reading_speed']);
|
$container->setParameter('wallabag_core.reading_speed', $config['reading_speed']);
|
||||||
$container->setParameter('wallabag_core.version', $config['version']);
|
$container->setParameter('wallabag_core.version', $config['version']);
|
||||||
$container->setParameter('wallabag_core.paypal_url', $config['paypal_url']);
|
$container->setParameter('wallabag_core.paypal_url', $config['paypal_url']);
|
||||||
|
$container->setParameter('wallabag_core.cache_lifetime', $config['cache_lifetime']);
|
||||||
|
|
||||||
$loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
|
$loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
|
||||||
$loader->load('services.yml');
|
$loader->load('services.yml');
|
||||||
|
|
|
@ -3,12 +3,15 @@
|
||||||
namespace Wallabag\CoreBundle\Repository;
|
namespace Wallabag\CoreBundle\Repository;
|
||||||
|
|
||||||
use Doctrine\ORM\EntityRepository;
|
use Doctrine\ORM\EntityRepository;
|
||||||
|
use Doctrine\ORM\Query;
|
||||||
use Pagerfanta\Adapter\DoctrineORMAdapter;
|
use Pagerfanta\Adapter\DoctrineORMAdapter;
|
||||||
use Pagerfanta\Pagerfanta;
|
use Pagerfanta\Pagerfanta;
|
||||||
use Wallabag\CoreBundle\Entity\Tag;
|
use Wallabag\CoreBundle\Entity\Tag;
|
||||||
|
|
||||||
class EntryRepository extends EntityRepository
|
class EntryRepository extends EntityRepository
|
||||||
{
|
{
|
||||||
|
private $lifeTime;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return a query builder to used by other getBuilderFor* method.
|
* Return a query builder to used by other getBuilderFor* method.
|
||||||
*
|
*
|
||||||
|
@ -308,4 +311,25 @@ class EntryRepository extends EntityRepository
|
||||||
|
|
||||||
return $qb->getQuery()->getSingleScalarResult();
|
return $qb->getQuery()->getSingleScalarResult();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function setLifeTime($lifeTime)
|
||||||
|
{
|
||||||
|
$this->lifeTime = $lifeTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Enable cache for a query.
|
||||||
|
*
|
||||||
|
* @param Query $query
|
||||||
|
*
|
||||||
|
* @return Query
|
||||||
|
*/
|
||||||
|
public function enableCache(Query $query)
|
||||||
|
{
|
||||||
|
$query->useQueryCache(true);
|
||||||
|
$query->useResultCache(true);
|
||||||
|
$query->setResultCacheLifetime($this->lifeTime);
|
||||||
|
|
||||||
|
return $query;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -81,6 +81,8 @@ services:
|
||||||
factory: [ "@doctrine.orm.default_entity_manager", getRepository ]
|
factory: [ "@doctrine.orm.default_entity_manager", getRepository ]
|
||||||
arguments:
|
arguments:
|
||||||
- WallabagCoreBundle:Entry
|
- WallabagCoreBundle:Entry
|
||||||
|
calls:
|
||||||
|
- [ setLifeTime, [ "%wallabag_core.cache_lifetime%" ] ]
|
||||||
|
|
||||||
wallabag_core.tag_repository:
|
wallabag_core.tag_repository:
|
||||||
class: Wallabag\CoreBundle\Repository\TagRepository
|
class: Wallabag\CoreBundle\Repository\TagRepository
|
||||||
|
|
|
@ -35,16 +35,16 @@
|
||||||
{% set currentRoute = app.request.attributes.get('_route') %}
|
{% set currentRoute = app.request.attributes.get('_route') %}
|
||||||
|
|
||||||
<li class="bold {% if currentRoute == 'unread' or currentRoute == 'homepage' %}active{% endif %}">
|
<li class="bold {% if currentRoute == 'unread' or currentRoute == 'homepage' %}active{% endif %}">
|
||||||
<a class="waves-effect" href="{{ path('unread') }}">{{ 'menu.left.unread'|trans }}</a>
|
<a class="waves-effect" href="{{ path('unread') }}">{{ 'menu.left.unread'|trans }} <span class="numberItems grey-text">{{ unreadEntries }}</span></a>
|
||||||
</li>
|
</li>
|
||||||
<li class="bold {% if currentRoute == 'starred' %}active{% endif %}">
|
<li class="bold {% if currentRoute == 'starred' %}active{% endif %}">
|
||||||
<a class="waves-effect" href="{{ path('starred') }}">{{ 'menu.left.starred'|trans }}</a>
|
<a class="waves-effect" href="{{ path('starred') }}">{{ 'menu.left.starred'|trans }} <span class="numberItems grey-text">{{ starredEntries }}</span></a>
|
||||||
</li>
|
</li>
|
||||||
<li class="bold {% if currentRoute == 'archive' %}active{% endif %}">
|
<li class="bold {% if currentRoute == 'archive' %}active{% endif %}">
|
||||||
<a class="waves-effect" href="{{ path('archive') }}">{{ 'menu.left.archive'|trans }}</a>
|
<a class="waves-effect" href="{{ path('archive') }}">{{ 'menu.left.archive'|trans }} <span class="numberItems grey-text">{{ archivedEntries }}</span></a>
|
||||||
</li>
|
</li>
|
||||||
<li class="bold border-bottom {% if currentRoute == 'all' %}active{% endif %}">
|
<li class="bold border-bottom {% if currentRoute == 'all' %}active{% endif %}">
|
||||||
<a class="waves-effect" href="{{ path('all') }}">{{ 'menu.left.all_articles'|trans }}</a>
|
<a class="waves-effect" href="{{ path('all') }}">{{ 'menu.left.all_articles'|trans }} <span class="numberItems grey-text">{{ allEntries }}</span></a>
|
||||||
</li>
|
</li>
|
||||||
<li class="bold border-bottom {% if currentRoute == 'tags' %}active{% endif %}">
|
<li class="bold border-bottom {% if currentRoute == 'tags' %}active{% endif %}">
|
||||||
<a class="waves-effect" href="{{ path('tag') }}">{{ 'menu.left.tags'|trans }}</a>
|
<a class="waves-effect" href="{{ path('tag') }}">{{ 'menu.left.tags'|trans }}</a>
|
||||||
|
|
|
@ -2,8 +2,20 @@
|
||||||
|
|
||||||
namespace Wallabag\CoreBundle\Twig;
|
namespace Wallabag\CoreBundle\Twig;
|
||||||
|
|
||||||
class WallabagExtension extends \Twig_Extension
|
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
|
||||||
|
use Wallabag\CoreBundle\Repository\EntryRepository;
|
||||||
|
|
||||||
|
class WallabagExtension extends \Twig_Extension implements \Twig_Extension_GlobalsInterface
|
||||||
{
|
{
|
||||||
|
private $tokenStorage;
|
||||||
|
private $repository;
|
||||||
|
|
||||||
|
public function __construct(EntryRepository $repository = null, TokenStorageInterface $tokenStorage = null)
|
||||||
|
{
|
||||||
|
$this->repository = $repository;
|
||||||
|
$this->tokenStorage = $tokenStorage;
|
||||||
|
}
|
||||||
|
|
||||||
public function getFilters()
|
public function getFilters()
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
|
@ -16,6 +28,38 @@ class WallabagExtension extends \Twig_Extension
|
||||||
return preg_replace('/^www\./i', '', $url);
|
return preg_replace('/^www\./i', '', $url);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getGlobals()
|
||||||
|
{
|
||||||
|
$user = $this->tokenStorage->getToken() ? $this->tokenStorage->getToken()->getUser() : null;
|
||||||
|
|
||||||
|
if (null === $user || !is_object($user)) {
|
||||||
|
return array();
|
||||||
|
}
|
||||||
|
|
||||||
|
$unreadEntries = $this->repository->enableCache(
|
||||||
|
$this->repository->getBuilderForUnreadByUser($user->getId())->getQuery()
|
||||||
|
);
|
||||||
|
|
||||||
|
$starredEntries = $this->repository->enableCache(
|
||||||
|
$this->repository->getBuilderForStarredByUser($user->getId())->getQuery()
|
||||||
|
);
|
||||||
|
|
||||||
|
$archivedEntries = $this->repository->enableCache(
|
||||||
|
$this->repository->getBuilderForArchiveByUser($user->getId())->getQuery()
|
||||||
|
);
|
||||||
|
|
||||||
|
$allEntries = $this->repository->enableCache(
|
||||||
|
$this->repository->getBuilderForAllByUser($user->getId())->getQuery()
|
||||||
|
);
|
||||||
|
|
||||||
|
return array(
|
||||||
|
'unreadEntries' => count($unreadEntries->getResult()),
|
||||||
|
'starredEntries' => count($starredEntries->getResult()),
|
||||||
|
'archivedEntries' => count($archivedEntries->getResult()),
|
||||||
|
'allEntries' => count($allEntries->getResult()),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
public function getName()
|
public function getName()
|
||||||
{
|
{
|
||||||
return 'wallabag_extension';
|
return 'wallabag_extension';
|
||||||
|
|
Loading…
Reference in a new issue