正如标题所说,我正在尝试显示向上/向下箭头。目前在 Ruby 2.0 / Rails 4.0 上构建
我已经关注了关于排序表格列的 railscasts ( http://railscasts.com/episodes/228-sortable-table-columns ),但他当然使用表格,所以他的箭头可以很好地显示。
我想使用 divs/spans/whatever 其他。(这不是很多数据,也不是需要在表中的那种数据。)
话虽如此,我为我的箭头创建了一个应用程序帮助方法,它们可以工作,但是如果我单击一个 asc,两个箭头都指向上方。如果我为 desc 单击一个,则两个都指向下方。显然,因为params[:direction]
设置为 asc 或 desc,所以两个箭头都设置了。我如何将它们分开?在有点伪代码中:
if title && asc
sort by title and asc && show up arrow (for title only)
if title && desc
sort by title and desc && show down arrow (for title only)
if date posted && asc
sort by created_by and asc && show up arrow (for date posted only)
etc.
我真的不想有一个巨大的 if/then 条件语句,但想要更简单的东西。
(如果迫在眉睫,我将只使用一个表格作为排序依据:部分,但这看起来真的非常愚蠢,这是最后的手段......)
这是我得到的代码:
显示.html.erb
<h3>Images</h3>
<% if @user.images.any? %>
<div class="sortable"><%= sortable "img_name", "Title" %><%= arrow %> |
<%= sortable "created_at", "Date posted" %><%= arrow %>
</div>
<%= render @images %>
<%= will_paginate @images %>
<% end %>
application_helper.rb
def sortable(column, title = nil)
title ||= column.titleize
css_class = column == sort_column ? "current #{sort_direction}" : nil
direction = column == sort_column && sort_direction == "asc" ? "desc" : "asc"
link_to title, {sort: column, direction: direction}, {class: css_class}
end
def arrow
if params[:direction] == 'asc'
image_tag("arrow_up.png", alt: "up arrow", size: "15x15")
elsif params[:direction] == 'desc'
image_tag("arrow_down.png", alt: "down arrow", size: "15x15")
else
# either a blank image to show or just force no-display of image
end
end
users_controller.rb
def show
@user = User.find(params[:id])
@images = @user.images.paginate(page: params[:page]).order(sort_column + " " + sort_direction)
end
private
def sort_column
Image.column_names.include?(params[:sort]) ? params[:sort] : "created_at"
end
def sort_direction
%w[asc desc].include?(params[:direction]) ? params[:direction] : "asc"
end