Skip to content

[v3] Refactor: Cut Redundant Dependency in order to use as Standalone #5

Closed
@weierophinney

Description

@weierophinney

Refactor: Cut Redundant Dependency in order to use as Standalone.

When using Paginator class as Dependency, there is problem.

  • A lot of method is defined, regardless of whether or not to use.
    • json, filter, render, cache
  • ScrollingStyle is static dependecy.
    • it's not need when ScrollingStyle object is passed.
      • eg. $paginator->getPages(new Zend\Paginator\ScrollingStyle\All()))

Above thing is a headache when to use standalone.

So I request refactoring this component.

Introduced below interface, trait, class.

  • PaginatorInterface
  • JsonSerializeTrait, RenderTrait, FilterTrait, CachedTrait
  • SimplePaginator
  • GlobalPaginator

.. And Paginator class can implements like below, without BC break.

class Paginator extends GlobalPaginator
{
    use JsonSerializeTrait,
        RenderTrait,
        FilterTrait,
        CachedTrait;

Only ScrollingStyleInterface implentation must be changed.
BEFORE public function getPages(Paginator $paginator, $pageRange = null);
AFTER public function getPages(PaginatorInterface $paginator, $pageRange = null);


Originally posted by @sasezaki at zendframework/zend-paginator#9

Metadata

Metadata

Assignees

No one assigned

    Labels

    Won't FixThis will not be worked on

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions