1

正如标题所说,我正在尝试显示向上/向下箭头。目前在 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
4

2 回答 2

1

我不理解您不愿意在这里使用表格。即使它是一个小表格,这仍然表格数据,包含行、列和标题。为什么要用类表的div 结构替换语义表结构?

话虽如此,我会扩展箭头助手以发送箭头用于哪一列:

def arrow(column)
  # as you're not sorting on the column, you don't want to see the arrow at
  # all of the header is not for the sorted column
  return '' if params[:sort] != column
  # ...
end

导致模板看起来像:

<%= sortable "img_name", "Title" %><%= arrow "img_name" %>

尽管您会注意到这里有一些不必要的重复。由于这两个助手总是被调用在一起,所以它们也可以被连接起来:

def sortable(column, title=nil)
  # ...
  capture do
    concat link_to(title, {...})
    concat " "
    concat arrow(column)
  end
end

产生更简单的模板:

<%= sortable "img_name", "Title" %>
于 2013-10-25T20:26:51.350 回答
1

如果其他人想使用 glyphicon 而不是像我这样的图像,这个解决方案可能很有用。在这个例子中,我使用的是FontAwesome

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'

  capture do
    link_to({sort: column, direction: direction}, {class: css_class}) do
      concat title
      concat " "
      concat arrow(column)
    end
  end
end

def arrow(column)
  return '' if params[:sort] != column
  arrow = params[:direction] == 'asc' ? 'down' : 'up'
  "<i class='fa fa-caret-#{arrow}'></i>".html_safe
end

显示.html.erb

<%= sortable "img_name", "Title" %>
于 2016-04-24T01:08:34.517 回答