0

我是 ruby​​ 和 rails 的新手,所以我想问一个关于约定的问题。

我有一个在表格中生成项目列表的视图,我被要求进行更改,并在这样做时在视图中添加了一个案例语句,我认为这不是正确的做事方式,所以我认为我会仔细检查。

我所做的更改只是tr根据最后一个表列的值添加一个类。

列表.rhtml

<table width="100%">
    <tr>
        <th style="width: 80px;">ID #</th>
        <th>Organisation</th>
        <th>Product</th>
        <th>Carrier</th>
        <th>Carrier Ref</th>
        <th>Post Code</th>
        <th>Status</th>
    </tr>

    <%= render :partial => 'circuit/list_item', :collection => @circuits %>

</table>

list_item.rhtml

<%
# code I have added
@tr_class = ''

case list_item.status
when 'Handover'
  @tr_class = ''
when 'Unprocessed'
  @tr_class = 'high_priority'
when 'Ceased'
  @tr_class = 'low_priority'
else
  @tr_class = ''
end
# end of newly added code
%>

<!-- the class part is new aswell -->
<tr class="<%= @tr_class %>">
    <td><a href='/circuit/update/<%= list_item.id %>'><%= list_item.id_padded %></a></td>
    <td><%= list_item.organisation.name if list_item.has_organisation? %></td>
    <td><%= list_item.product_name %></td>
    <td><%= list_item.carrier.name %></td>
    <td><%= list_item.carrier_reference %></td>
    <td><%= list_item.b_end_postcode %></td>
    <td><%= list_item.status %></td>
</tr>

有没有一种 Rails 模式或约定可以让 case 语句脱离这个视图?

4

1 回答 1

4

如果正确理解您的问题,我认为您应该将case语句放在辅助函数中:

应用程序/helpers/list_helper.rb

module ListHelper
  def tr_class_for_status(status)
    case status
    when 'Unprocessed'
      'high_priority'
    when 'Ceased'
      'low_priority'
    else
      ''
    end
  end
end

_list_item.rhtml

<tr class="<%= tr_class_for_status(list_item.status) %>">
于 2013-07-23T10:09:31.563 回答