Skip to content

Commit 359a554

Browse files
authored
Merge pull request #608 from Floppy/bulk-edit-files
Bulk edit for file properties (up direction, supports, etc)
2 parents e93faf6 + 3e96e67 commit 359a554

File tree

4 files changed

+91
-2
lines changed

4 files changed

+91
-2
lines changed

app/controllers/model_files_controller.rb

+26-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
class ModelFilesController < ApplicationController
22
before_action :get_library
33
before_action :get_model
4-
before_action :get_file
4+
before_action :get_file, except: [:bulk_edit, :bulk_update]
55

66
def show
77
respond_to do |format|
@@ -25,6 +25,23 @@ def update
2525
redirect_to [@library, @model, @file]
2626
end
2727

28+
def bulk_edit
29+
@files = @model.model_files
30+
end
31+
32+
def bulk_update
33+
hash = bulk_update_params
34+
params[:model_files].each_pair do |id, selected|
35+
if selected == "1"
36+
file = @model.model_files.find(id)
37+
if file.update(hash)
38+
file.save
39+
end
40+
end
41+
end
42+
redirect_to edit_library_model_model_files_path(@library, @model)
43+
end
44+
2845
private
2946

3047
def send_file_content
@@ -35,6 +52,14 @@ def send_file_content
3552
head :internal_server_error
3653
end
3754

55+
def bulk_update_params
56+
params.permit(
57+
:printed,
58+
:presupported,
59+
:y_up
60+
).compact_blank
61+
end
62+
3863
def file_params
3964
params.require(:model_file).permit([
4065
:printed,
+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<h1>Bulk Edit Files</h1>
2+
3+
<%= form_with url: library_model_model_files_path(@library, @model), method: :patch do |form| %>
4+
5+
<h3>Select files to change:</h3>
6+
7+
<table class="table table-striped" data-bulk-edit>
8+
<tr>
9+
<th><input type="checkbox" aria-label="Select All" value="0" name="bulk-select-all"></th>
10+
<th></th>
11+
<th>Name</th>
12+
<th>Filename</th>
13+
<th>Printed</th>
14+
<th>Presupported</th>
15+
<th>Y Up</th>
16+
</tr>
17+
<% @model.model_files.each do |file| %>
18+
<tr>
19+
<td><%= form.check_box "model_files[#{file.id}]", { data: { bulk_item: "#{file.id}"}}%></td>
20+
<td><i class="bi bi-<%= image?(file.file_format) ? 'image' : 'box' %>"></td>
21+
<td><%= link_to file.name, [@library, @model, file], title: file.filename %></td>
22+
<td><code><%= file.filename %></code></td>
23+
<td><i class="bi bi-<%= file.printed ? 'check-circle-fill' : 'circle' %>"></td>
24+
<td><i class="bi bi-<%= file.presupported ? 'check-circle-fill' : 'circle' %>"></td>
25+
<td><i class="bi bi-<%= file.y_up ? 'check-circle-fill' : 'circle' %>"></td>
26+
</tr>
27+
<% end %>
28+
</table>
29+
30+
<h3>Select changes to make:</h3>
31+
32+
<div class="row mb-3">
33+
<%= form.label "Printed", class: "col-sm-2 col-form-label" %>
34+
<div class="col-sm-10">
35+
<div class="form-switch">
36+
<%= form.check_box :printed, class: "form-check-input form-check-inline" %>
37+
</div>
38+
</div>
39+
</div>
40+
<div class="row mb-3">
41+
<%= form.label "Presupported", class: "col-sm-2 col-form-label" %>
42+
<div class="col-sm-10">
43+
<div class="form-switch">
44+
<%= form.check_box :presupported, class: "form-check-input form-check-inline" %>
45+
</div>
46+
</div>
47+
</div>
48+
<div class="row mb-3">
49+
<%= form.label "Y Up", class: "col-sm-2 col-form-label" %>
50+
<div class="col-sm-10">
51+
<div class="form-switch">
52+
<%= form.check_box :y_up, class: "form-check-input form-check-inline" %>
53+
</div>
54+
</div>
55+
</div>
56+
<%= form.submit "Update Selected Files", class: "btn btn-primary" %>
57+
58+
<% end %>

app/views/models/show.html.erb

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232

3333
<%= card :secondary, "Actions" do %>
3434
<%= link_to "Edit Details", edit_library_model_path(@library, @model), class: "btn btn-primary" %>
35+
<%= link_to "Bulk Edit", edit_library_model_model_files_path(@library, @model), class: 'btn btn-secondary' %>
3536
<% unless @model.contains_other_models? %>
3637
<div class="modal fade" id="confirm-move" data-bs-backdrop='static' tabindex="-1" aria-labelledby="confirmMoveLabel" aria-hidden="true">
3738
<div class="modal-dialog">

config/routes.rb

+6-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@
1717
get "edit", action: "bulk_edit"
1818
patch "update", action: "bulk_update"
1919
end
20-
resources :model_files, except: [:index, :destroy]
20+
resources :model_files, except: [:index, :destroy] do
21+
collection do
22+
get "edit", action: "bulk_edit"
23+
patch "update", action: "bulk_update"
24+
end
25+
end
2126
end
2227
end
2328
resources :creators

0 commit comments

Comments
 (0)