ikuseiGmbH/smart-village-app-cms

View on GitHub
app/views/defect_reports/index.html.erb

Summary

Maintainability
Test Coverage
<div class="d-flex flex-wrap align-items-center row-gap justify-content-between mb-5">
  <h1 class="h3 mb-0 pb-0 font-weight-bold mr-3">Mängelmelder</h1>
</div>

<div class="table-responsive pb-4">
  <table class="table data_table bg-white">
    <thead>
      <tr>
        <th scope="col">ID</th>
        <th scope="col">Titel</th>
        <th scope="col" class="nosort">Inhalt</th>
        <th scope="col">Kategorie</th>
        <th scope="col">Änderungsdatum</th>
        <th scope="col">Erstellungsdatum</th>
        <% if editor? || extended_user? %>
          <th>Datenquelle</th>
        <% end %>
        <% if editor? %>
          <th scope="col" class="nosort">Sichtbarkeit</th>
        <% end %>
        <th scope="col" class="nosort">Aktionen</th>
      </tr>
    </thead>
    <tbody>
      <% @defect_reports.each do |defect_report| %>
        <tr>
          <th scope="row"><%= defect_report.id %></th>
          <td>
            <%= defect_report.content_blocks.first.try(:title) || "" %>
          </td>
          <td>
            <%= link_to(
                  (defect_report.content_blocks.first.try(:body) || "").truncate(30),
                  "#",
                  data: { toggle: "modal", target: "#content_#{defect_report.id}" }
                ) %>
            <%= render(
                  partial: "defect_reports/modal_content",
                  locals: { defect_report: defect_report }
                ) %>
          </td>
          <td><%= defect_report.categories.first.try(:name) || "" %></td>
          <td data-sort="<%= DateTime.parse(defect_report.updated_at).to_i %>">
            <%= to_local_date_time(defect_report.updated_at) %>
          </td>
          <td data-sort="<%= DateTime.parse(defect_report.created_at).to_i %>">
            <%= to_local_date_time(defect_report.created_at) %>
          </td>
          <% if editor? || extended_user? %>
            <td><%= defect_report.data_provider.try(:name) %></td>
          <% end %>
          <% if editor? %>
            <td align="center"><%= visibility_switch(defect_report, "defect_report") %></td>
          <% end %>
          <td align="right" class="text-nowrap">
            <%= link_to defect_report_path(defect_report.id), method: :delete, "data-confirm" => "Diesen Eintrag wirklich löschen?", class: "btn btn-sm btn-danger", title: "Löschen" do %>
              <i class="fas fa-trash"></i>
            <% end %>
          </td>
        </tr>
      <% end %>
    </tbody>
  </table>
</div>