# See the Pagy documentation: https://ddnexus.github.io/pagy/docs/extras/bulma # frozen_string_literal: true require_relative 'js_tools' class Pagy # :nodoc: # Frontend modules are specially optimized for performance. # The resulting code may not look very elegant, but produces the best benchmarks module BulmaExtra # Pagination for bulma: it returns the html with the series of links to the pages def pagy_bulma_nav(pagy, id: nil, classes: 'pagy-bulma nav pagination is-centered', aria_label: nil, **vars) id = %( id="#{id}") if id a = pagy_anchor(pagy, **vars) html = %() end # Javascript pagination for bulma: it returns a nav with a data-pagy attribute used by the Pagy.nav javascript def pagy_bulma_nav_js(pagy, id: nil, classes: 'pagy-bulma nav-js pagination is-centered', aria_label: nil, **vars) sequels = pagy.sequels(**vars) id = %( id="#{id}") if id a = pagy_anchor(pagy, **vars) tokens = { 'before' => %(#{bulma_prev_next_html(pagy, a)}