Module: SimpleFormAttachments::HasAttachments::ClassMethods
- Defined in:
- app/models/concerns/simple_form_attachments/has_attachments.rb
Instance Method Summary collapse
- #attachment_accessor_names ⇒ Object
-
#has_many_attachments(accessor_name, opts = {}) ⇒ Object
———————————————————————.
-
#has_one_attachment(accessor_name, opts = {}) ⇒ Object
———————————————————————.
Instance Method Details
#attachment_accessor_names ⇒ Object
8 9 10 |
# File 'app/models/concerns/simple_form_attachments/has_attachments.rb', line 8 def @@attachment_accessor_names ||= [] end |
#has_many_attachments(accessor_name, opts = {}) ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'app/models/concerns/simple_form_attachments/has_attachments.rb', line 14 def (accessor_name, opts = {}) << accessor_name = { class_name: opts[:class_name] || 'SimpleFormAttachments::Attachment', dependent: opts[:dependent], inverse_of: nil } has_and_belongs_to_many accessor_name, do # FIXME: ideally the relation would return the attachments already sorted, # but that does not seem to be possible at the moment # # or at least we maintain the query and sort on the db level, # but as of not it is not possible to provide custom sort function to mongodb # define_method 'sorted' do target.sort_by { || base.send("#{accessor_name.to_s.singularize}_ids").index(.id) } end end accepts_nested_attributes_for accessor_name define_method "mark_#{accessor_name}_permanent" do send(accessor_name).update_all(temporary: false) end end |
#has_one_attachment(accessor_name, opts = {}) ⇒ Object
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'app/models/concerns/simple_form_attachments/has_attachments.rb', line 44 def (accessor_name, opts = {}) << accessor_name = { class_name: opts[:class_name] || 'SimpleFormAttachments::Attachment', dependent: opts[:dependent] } belongs_to accessor_name, accepts_nested_attributes_for accessor_name define_method "mark_#{accessor_name}_permanent" do send(accessor_name).update(temporary: false) if send(accessor_name) end end |