gpt4 book ai didi

ruby-on-rails - 自定义 will_paginate 渲染器

转载 作者:行者123 更新时间:2023-12-01 11:20:18 25 4
gpt4 key购买 nike

Documentation缺少 will_paginate 自定义渲染器:

There is no documentation how to write your own link renderer, but the source code is pretty self-explanatory. Dive into it, and selectively override methods of the LinkRenderer to adjust them to your needs.



有没有非官方文件?

最佳答案

找到了一篇关于 custom will_paginate renderer 的不错的博客文章

module ApplicationHelper
# change the default link renderer for will_paginate
def will_paginate(collection_or_options = nil, options = {})
if collection_or_options.is_a? Hash
options, collection_or_options = collection_or_options, nil
end
unless options[:renderer]
options = options.merge :renderer => MyCustomLinkRenderer
end
super *[collection_or_options, options].compact
end
end

然后在初始化程序中
class MyCustomLinkRenderer < WillPaginate::ActionView::LinkRenderer do
def container_attributes
{class: "tc cf mv2"}
end

def page_number(page)
if page == current_page
tag(:span, page, class: 'b bg-dark-blue near-white ba b--near-black pa2')
else
link(page, page, class: 'link ba b--near-black near-black pa2', rel: rel_value(page))
end
end

def gap
text = @template.will_paginate_translate(:page_gap) { '&hellip;' }
%(<span class="mr2">#{text}</span>)
end

def previous_page
num = @collection.current_page > 1 && @collection.current_page - 1
previous_or_next_page(num, @options[:previous_label], 'link ba near-black b--near-black pa2')
end

def next_page
num = @collection.current_page < total_pages && @collection.current_page + 1
previous_or_next_page(num, @options[:next_label], 'link ba near-black b--near-black pa2')
end

def previous_or_next_page(page, text, classname)
if page
link(text, page, :class => classname)
else
tag(:span, text, :class => classname + ' bg-dark-blue near-white')
end
end
end

关于ruby-on-rails - 自定义 will_paginate 渲染器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44680975/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com