Skip to content

Commit 12ffc6f

Browse files
authored
Merge pull request #594 from Floppy/batch-rename
Organize (rename) models in bulk
2 parents 4f57788 + e8b9b95 commit 12ffc6f

File tree

5 files changed

+44
-21
lines changed

5 files changed

+44
-21
lines changed

app/controllers/models_controller.rb

+3-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ def bulk_update_params
7878
:scale_factor,
7979
:creator_id,
8080
:add_tags,
81-
:remove_tags
81+
:remove_tags,
82+
:organize
8283
).compact_blank
8384
end
8485

@@ -89,7 +90,7 @@ def model_params
8990
:name,
9091
:scale_factor,
9192
:tags,
92-
:path,
93+
:organize,
9394
links_attributes: [:id, :url, :_destroy]
9495
)
9596
end

app/models/model.rb

+6-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ class Model < ApplicationRecord
1010
has_many :links, as: :linkable, dependent: :destroy
1111
accepts_nested_attributes_for :links, reject_if: :all_blank, allow_destroy: true
1212

13+
attr_accessor :organize
14+
1315
before_update :move_files
1416

1517
default_scope { order(:name) }
@@ -74,11 +76,12 @@ def create_folder_if_necessary(folder)
7476
end
7577

7678
def move_files
77-
if path_changed?
78-
old_path = File.join(library.path, path_was)
79-
new_path = File.join(library.path, path)
79+
if ActiveModel::Type::Boolean.new.cast(organize)
80+
old_path = File.join(library.path, path)
81+
new_path = File.join(library.path, formatted_path)
8082
create_folder_if_necessary(File.dirname(new_path))
8183
File.rename(old_path, new_path)
84+
self.path = formatted_path
8285
end
8386
end
8487
end

app/views/models/_tags_edit.html.erb

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
<div class="row mb-3 input-group">
1+
<div class="row mb-3">
22
<label for="tags" class="col-sm-2 col-form-label"><%= label %></label>
3-
<div class="form-control col-auto tag-container">
4-
<%= form.text_field :tags,
5-
as: :string,
6-
name: name,
7-
value: value,
8-
data: { tags_edit: "" }
9-
%>
3+
<div class="col-sm-10">
4+
<div class="form-control col-auto tag-container">
5+
<%= form.text_field :tags,
6+
as: :string,
7+
name: name,
8+
value: value,
9+
data: { tags_edit: "" }
10+
%>
11+
</div>
1012
</div>
1113
</div>

app/views/models/bulk_edit.html.erb

+22-5
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
<th>Scale Factor</th>
1515
<th>Tags</th>
1616
<th>Creator</th>
17+
<th>Organize files</th>
1718
</tr>
1819
<% @models.each do |model| %>
1920
<tr>
@@ -22,26 +23,42 @@
2223
<td><%= number_to_percentage model.scale_factor, strip_insignificant_zeros: true %></td>
2324
<td><%= render partial: 'tag', collection: model.tags, locals: {selected: nil, model_id: model.id } %></td>
2425
<td><%= link_to model.creator.name, model.creator if model.creator %></td>
26+
<td><code><%= model.formatted_path if model.formatted_path != model.path %></code></td>
2527
</tr>
2628
<% end %>
2729
</table>
2830

2931
<h3>Select changes to make:</h3>
3032

31-
<div class="row mb-3 input-group">
33+
<div class="row mb-3">
3234
<%= form.label :scale_factor, class: "col-sm-2 col-form-label" %>
33-
<%= form.number_field :scale_factor, class: "form-control col-auto" %>
35+
<div class="col-sm-10">
36+
<%= form.number_field :scale_factor, class: "form-control col-auto" %>
37+
</div>
3438
</div>
3539

36-
<div class="row mb-3 input-group">
40+
<div class="row mb-3">
3741
<%= form.label :creator_id, class: "col-sm-2 col-form-label" %>
38-
<%= form.collection_select :creator_id, @creators, :id, :name, {include_blank: true}, {class: "form-control col-auto form-select"} %>
39-
<%= link_to "New Creator", new_creator_path, class: "btn btn-outline-secondary col-auto" %>
42+
<div class="col-sm-10">
43+
<div class="input-group">
44+
<%= form.collection_select :creator_id, @creators, :id, :name, {include_blank: true}, {class: "form-control col-auto form-select"} %>
45+
<%= link_to "New Creator", new_creator_path, class: "btn btn-outline-secondary col-auto" %>
46+
</div>
47+
</div>
4048
</div>
4149

4250
<%= render 'tags_edit', :form => form, :name => :add_tags, :value => "", :label => "Add Tags" %>
4351
<%= render 'tags_edit', :form => form, :name => :remove_tags, :value => "", :label => "Remove Tags" %>
4452

53+
<div class="row mb-3">
54+
<%= form.label "Organize files", class: "col-sm-2 col-form-label" %>
55+
<div class="col-sm-10">
56+
<div class="form-switch">
57+
<%= form.check_box :organize, class: "form-check-input form-check-inline" %>
58+
</div>
59+
</div>
60+
</div>
61+
4562
<%= form.hidden_field :tag, value: @tag if @tag %>
4663
<%= form.submit "Update Selected Models", class: "btn btn-primary" %>
4764

app/views/models/show.html.erb

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<div class="modal-dialog">
3838
<div class="modal-content">
3939
<div class="modal-header">
40-
<h5 class="modal-title" id="confirmMoveLabel">Move model files</h5>
40+
<h5 class="modal-title" id="confirmMoveLabel">Organize files</h5>
4141
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
4242
</div>
4343
<div class="modal-body">
@@ -53,12 +53,12 @@
5353
</div>
5454
<div class="modal-footer">
5555
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">No, cancel</button>
56-
<%= button_to "Yes, move the files", library_model_path(@library, @model, "model[path]": @model.formatted_path), method: :patch, class: "btn btn-warning" %>
56+
<%= button_to "Yes, move the files", library_model_path(@library, @model, "model[organize]": true), method: :patch, class: "btn btn-warning" %>
5757
</div>
5858
</div>
5959
</div>
6060
</div>
61-
<%= button_tag "Reformat Path", class: "btn btn-warning", "data-bs-toggle": "modal", "data-bs-target": "#confirm-move" %>
61+
<%= button_tag "Organize Files", class: "btn btn-warning", "data-bs-toggle": "modal", "data-bs-target": "#confirm-move" %>
6262
<% end %>
6363
<% end %>
6464

0 commit comments

Comments
 (0)