RoR: список подзаписей - PullRequest
       23

RoR: список подзаписей

1 голос
/ 06 сентября 2010

Схема:

  • persons (id, name, birthyear, gender)

  • pets (id, person_id, name, leg_count)

  • plants (id, person_id, kind, qty)

Я хотел бы сделать отчет только для чтения об этих вещах, сгруппированных по лицам. Перечень персон составлен (без соответствующих записей). Я хотел бы иметь "subtables" на людей. Что-то вроде:

Persons
+----+------+-----------+--------+
| id | name | birthyear | gender |
+----+------+-----------+--------+
|  1 | Joe  | 1980      | M      |
+----+------+-----------+--------+
| Pets                           |
| +----+------+-----------+      |
| | id | name | Leg count |      |
| +----+------+-----------+      |
| |  1 | Rex  |         4 |      |
| +----+------+-----------+      |
| |  2 | Ka   |         0 |      |
| +----+------+-----------+      |
| Plants                         |
| +----+------------+-----+      |
| | id | kind       | qty |      |
| +----+------------+-----+      |
| |  1 | lemon tree |   2 |      |
| +----+------------+-----+      |
+----+------+-----------+--------+
|  2 | Jane | 1982      | F      |
+----+------+-----------+--------+
| Pets                           |
| +----+------+-----------+      |
| | id | name | Leg count |      |
| +----+------+-----------+      |
| |  3 | Sue  |         6 |      |
| +----+------+-----------+      |
| Plants                         |
| +----+------------+-----+      |
| | id | kind       | qty |      |
| +----+------------+-----+      |
| |  2 | Oak tree   |   1 |      |
| +----+------------+-----+      |
+----+------+-----------+--------+

Не могли бы вы помочь мне с некоторыми советами, где и как подключить к рамке? (JRuby (1.5.0), Ruby on Rails (2.3.4), ActiveRecord (2.3.4))

Что сделано

Persons
+----+------+-----------+--------+
| id | name | birthyear | gender |
+----+------+-----------+--------+
|  1 | Joe  | 1980      | M      |
+----+------+-----------+--------+
|  2 | Jane | 1982      | F      |
+----+------+-----------+--------+

Это делается с помощью:

class PersonsReportController < PersonsController
  layout 'simpreport'
  active_scaffold :person do |config|
    c.columns = [:name, :birthyear, :gender, :pets, :plants ]
    c.label = "Report of people and other living creatures"
    [:pets, :plants].each do |col| 
        columns[col].clear_link
    end
    c.list.columns.exclude :pets, :plants
    c.actions.exclude :show
  end
  # ...
end

И я также немного настроил _list_header.rhtml, _list_column_headings.rhtml и _list_actions.rhtml, чтобы убить всю интерактивность (например, порядок и т. Д.).

Ответы [ 2 ]

5 голосов
/ 15 сентября 2010

Я не понимаю код, который вы написали на вашем контроллере, и почему он наследуется от вашего PersonsController.Может быть, вы можете объяснить немного больше, чего вы там пытаетесь достичь?

При этом я бы решил вашу проблему следующим образом:

Модели:

person.rb:

class Person < ActiveRecord::Base
  has_many :pets
  has_many :plants

  def has_pets?
    self.pets.size > 0
  end

  def has_plants?
    self.plants.size > 0
  end

  def has_pets_or_plants?
    self.has_pets? || self.has_plants?
  end
end

pet.rb:

class Pet < ActiveRecord::Base
  belongs_to :person
end

plant.rb:

class Plant < ActiveRecord::Base
  belongs_to :person
end

Контроллер:

reports_controller.rb:

class ReportsController < ApplicationController
  def index
    @persons = Person.find(:all)
  end
end

Просмотр:

reports / index.html.erb:

Persons
<table border="1">
  <tr>
    <td>id</td>
    <td>name</td>
    <td>birthyear</td>
    <td>gender</td>
  </tr>
<% @persons.each do |person| -%>
  <tr>
    <td><%= person.id %></td>
    <td><%= person.name %></td>
    <td><%= person.birthyear %></td>
    <td><%= person.gender %></td>
  </tr>
<% if person.has_pets_or_plants? -%>
  <tr>
    <td colspan="4">
    <% if person.has_pets? -%>
      Pets
      <table border="1">
        <tr>
          <td>id</td>
          <td>name</td>
          <td>leg count</td>
        </tr>
      <% person.pets.each do |pet| -%>
        <tr>
          <td><%= pet.id %></td>
          <td><%= pet.name %></td>
          <td><%= pet.leg_count %></td>
        </tr>
      <% end -%>
      </table>
    <% end -%>
    <% if person.has_plants? -%>
      Plants
      <table border="1">
        <tr>
          <td>id</td>
          <td>kind</td>
          <td>qty</td>
        </tr>
      <% person.plants.each do |plant| -%>
        <tr>
          <td><%= plant.id %></td>
          <td><%= plant.kind %></td>
          <td><%= plant.qty %></td>
        </tr>
      <% end -%>
      </table>
    <% end -%>
    </td>
  </tr>
<% end -%>
<% end -%>
</table>
2 голосов
/ 19 сентября 2010

Вот решение, которое работает внутри ActiveScaffold:

app / controllers / people_controller.rb

class PeopleController < ApplicationController
  active_scaffold :person do |config|
    config.label = "Report of people and other living creatures"
    config.actions.exclude :show, :delete, :edit
    # this sets up clickable links for pets and plants.
    # clicking either link will expand BOTH child object collections.
    config.columns[:pets].set_link('nested', :parameters => {:associations => "pets plants"})
    config.columns[:plants].set_link('nested', :parameters => {:associations => "pets plants"})

    #    uncomment these if you want to allow editing of pets and plants
    #    config.nested.add_link("Person's pets", [:pets])
    #    config.nested.add_link("Person's plants", [:plants])
  end
end

Теперь отчет открывается со свернутыми дочерними таблицами, поэтому мы должны их развернутьиспользуя event.simulate.js из protolicious .

Загрузите protolicious и скопируйте event.simulate.js в ваш каталог public / javascripts.

Сейчасвключите в ваш макет event.simulate.js:

<%= javascript_include_tag :defaults %>
<%= javascript_include_tag "event.simulate.js" %>
<%= active_scaffold_includes %>

И добавьте этот тег сценария в нижней части вашего представления:

<script type="text/javascript">
  // iterates through each ActiveScaffold nested item link and clicks it
  $$('a.nested').each(function(link, index) {
    link.simulate('click');
  });
</script>

Учитывая следующие модели

app / models / person.rb

class Person < ActiveRecord::Base
  has_many :pets
  has_many :plants
end

app / models / pet.rb

class Pet < ActiveRecord::Base
  belongs_to :person
end

app / models / plant.rb

class Plant < ActiveRecord::Base
  belongs_to :person
end
...