0

我正在使用 Rails、Bulma css 框架和 pagy gem。

<nav class="pagination">
<span class="" style=" margin-left:auto; margin-right:auto; font-weight:700;" > 
<%== pagy_prev_link(@pagy, '‹ Previous', ' id="" class="pagination-link " style=""  ') if @pagy.pages > 1 %>
</span>

<span class="" style="margin-left:auto; margin-right:auto; font-weight:700; ">
<%== pagy_next_link(@pagy, 'Next ›', 'id="" style="" class="pagination-link  " ') if @pagy.pages > 1 %>
</span>
</nav>

问题是无论我尝试什么,我都无法自定义下一个和上一个按钮的外观。现在按钮显示为粗体下一个和上一个,下一个默认为蓝色,因为有超过 1 页。我想把它变成另一种颜色,也让它看起来像布尔玛的按钮。我试过输入“分页链接”来跨越;控制页面所在的位置;摆脱跨度;没用。

我能做些什么?我真的很感激任何帮助。

4

1 回答 1

1

您可以通过使用内容创建来自定义 bulma pagy 导航app/views/pagy/_bulma_nav.html.erb

<style>
  .custom_color_green {
    color: green !important;
    background-color: yellow !important;
  }
</style>
<%#
  This template is i18n-ready: if you don't use i18n, then you can replace the pagy_t
  calls with the actual strings ("&lsaquo; Prev", "Next &rsaquo;", "&hellip;").

  The link variable is set to a proc that returns the link tag.
  Usage: link.call( page_number [, text [, extra_attributes_string ]])
-%>
<% link = pagy_link_proc(pagy) -%>
<%#                            -%><nav class="pagy-bulma-nav pagination is-centered" role="navigation" aria-label="pagination">
<% if pagy.prev                -%>  <%== link.call(pagy.prev, pagy_t('pagy.nav.prev'), 'class="pagination-previous" aria-label="previous page"') %>
<% else                        -%>  <a class="pagination-previous custom_color_green" disabled><%== pagy_t('pagy.nav.prev') %></a>
<% end                         -%>
<% if pagy.next                -%>  <%== link.call(pagy.next, pagy_t('pagy.nav.next'), 'class="pagination-next has-text-danger has-background-success" aria-label="next page"') %>
<% else                        -%>  <a class="pagination-next" disabled><%== pagy_t('pagy.nav.next') %></a>
<% end                         -%>
<%#                            -%>  <ul class="pagination-list">
<% pagy.series.each do |item| # series example: [1, :gap, 7, 8, "9", 10, 11, :gap, 36] -%>
<%   if    item.is_a?(Integer) -%>    <li><%== link.call item, item, %(class="pagination-link" aria-label="goto page #{item}") %></li>
<%   elsif item.is_a?(String)  -%>    <li><%== link.call item, item, %(class="pagination-link is-current" aria-label="page #{item}" aria-current="page") %></li>
<%   elsif item == :gap        -%>    <li><span class="pagination-ellipsis"><%== pagy_t('pagy.nav.gap') %></span></li>
<%   end                       -%>
<% end                         -%>
<%#                            -%>  </ul>
<%#                            -%></nav>

然后将其包含在视图中,示例文件app/views/pages/home.html.erb

Welcome to project railstrace !
<% @records.each do |r| %>
  <p>Name: <%= r.name %> Description: <%= r.description %> </p>
<% end %>
<%== render partial: 'pagy/bulma_nav', locals: {pagy: @pagy} %>

和简单的控制器,例如app/controllers/pages_controller.rb

class PagesController < ApplicationController
  include Pagy::Backend

  def home
    Pagy::VARS[:max_items] = 10 # Set the value you want!
    @pagy, @records = pagy(Trip.all)
  end
end

你会得到这个成功的结果: 在此处输入图像描述

于 2021-05-25T12:18:37.683 回答