Identify the first, last, previous, and next pages in the pager

Created on 9 July 2024, 9 months ago
Updated 30 August 2024, 7 months ago

When the pager is rendered in Drupal\ui_suite_bootstrap\HookHandler\PreprocessPager::preprocess merges all items (first, last, previous, next, and pages).
On the template, I could not find any way to identify them. For example, if I want to select the first element in my CSS file:

✨ Feature request
Status

Closed: works as designed

Version

5.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States rpayanm

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @rpayanm
  • πŸ‡ΊπŸ‡ΈUnited States rpayanm

    I added a class to each element on this patch. Please review it.

  • Status changed to Needs review 9 months ago
  • πŸ‡ΊπŸ‡ΈUnited States rpayanm
  • Pipeline finished with Success
    9 months ago
    Total: 146s
    #220075
  • πŸ‡«πŸ‡·France pdureau Paris

    Hello Rolando,

    We merge all items because we are implementing Bootstrap 5 which is not making the distinction between first, last and others:

    <nav aria-label="Page navigation example">
      <ul class="pagination">
        <li class="page-item"><a class="page-link" href="#">Previous</a></li>
        <li class="page-item"><a class="page-link" href="#">1</a></li>
        <li class="page-item"><a class="page-link" href="#">2</a></li>
        <li class="page-item"><a class="page-link" href="#">3</a></li>
        <li class="page-item"><a class="page-link" href="#">Next</a></li>
      </ul>
    </nav>
    

    https://getbootstrap.com/docs/5.3/components/pagination/

    I am not saying the proposal will not be accepted, I am just sharing the context.

  • Status changed to Postponed: needs info 8 months ago
  • πŸ‡«πŸ‡·France Grimreaper France πŸ‡«πŸ‡·

    Hi,

    Bootstrap 5 is not expecting such classes in its pagination component.

    If you need such feature for something that Drupal Core provides, could you please explicit which feature it is?

    If it is for your proper needs / design system customizations, it will not be placed inside ui_suite_bootstrap, the problem is that those proposed classes are arbitrary, so please implements your own preprocess pager, which can inherit from src/HookHandler/PreprocessPager.php which is the benefit to have placed hook implementation into PHP classes for easier override.

  • πŸ‡«πŸ‡·France Grimreaper France πŸ‡«πŸ‡·

    Closing, feel free to re-open if needed.

  • Status changed to Closed: works as designed 7 months ago
Production build 0.71.5 2024