Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been searching for some examples, but have come up short:

I'm trying to implement JQuery-File-Upload on a project I'm working on, but am getting lost as to how to get it to work with nested attributes.

Quick overview:

2 Models:

Comment [has_many :attachments]
Attachment [belongs_to :comment]

Comment accepts_nested_attributes_for :attachments. Also - I'm using Dragonfly.

I've reviewed the Rails 3 guides on the JQuery-File-Upload site, but they assume it's a singular model, so it's all built around a form. Does anyone have any examples of their implementation or is there an existing tutorial that I haven't yet stumbled across?

I'm sure someone has had a similar issue... is JQuery-File-Upload to appropriate tool or should I look at something else?

share|improve this question
Hey, I am having a similar issue where I cannot seem to use JQuery-File-Upload with nested_form gem. Were you able to find a solution to this? – Engin Erdogan Apr 2 '12 at 13:47
You're asking for AJAX-upload specifically, as in the file sends while the user is still filling out the rest of the form, yes? Are you working with images or just files in general? And, does the Attachment model have anything in it other than the files -- any validations etc? – Andrew Apr 21 '12 at 0:42

1 Answer

I have a similar setup running with Carrierwave. Here's what I have. I'm using Images as a nested resource for Projects.

Project.rb:

has_many :images, :dependent => :destroy
accepts_nested_attributes_for :images, :allow_destroy => true

Image.rb:

 include Rails.application.routes.url_helpers
  mount_uploader :image, ImageUploader

  belongs_to :project

  #one convenient method to pass jq_upload the necessary information
  def to_jq_upload
  {
    "name" => read_attribute(:image),
    "size" => image.size,
    "url" => image.url,
    "thumbnail_url" => image.thumb.url,
    "delete_url" => image_path(:id => id),
    "delete_type" => "DELETE" 
   }
  end

Images_controller.rb:

 def create
    @image = Image.new(params[:image])
    @image.project_id = params[:project_id]
    @project = Project.find(params[:project_id])
    @image.position = @project.images.count + 1
    if @image.save
      render :json => [ @image.to_jq_upload ].to_json
    else
      render :json => [ @image.to_jq_upload.merge({ :error => "custom_failure" }) ].to_json
    end
  end

Be aware, this was a *!@^%! to get working.

UPDATE: projects/_form.html.erb

<div id="fileupload" class="image_add">
    <%= form_for Image.new, :html => {:multipart => true} do |f| %>
        <div class="fileupload-buttonbar">
            <label class="fileinput-button">
                <span>Add files...</span>
                <%= hidden_field_tag :project_id, @project.id %>
                <%= f.file_field :image %>
            </label>
            <button type="submit" class="start">Start Upload</button>
            <button type="reset" class="cancel">Cancel Upload</button>
            <button type="button" class="delete">Delete Files</button>
        </div>
    <% end %>
    <div class="fileupload-content">
        <div class="dropzone-container">
            <div class="dropzone">Drop Image Files Here</div>
        </div>
        <table class="files"></table>
    </div>
</div>
share|improve this answer
Hey thanks for the this answer. I'm trying to get the same solution going. Can you post the form view too? Thanks! – Marc Oct 19 '12 at 17:58
It is a huge *#&*(# to get working. I'm trying to figure out how to structure the form. Nested form doesn't seem to work out... <input id="post_images_attributes_0_post_picture" name="post[images_attributes][0][post_picture][]" type="file" /> – Marc Oct 19 '12 at 19:09
1  
Sure Marc, It's been a long time since I've looked at this code, but here's the form code for Image uploading. I'm just passing the project_id in a hidden_field_tag so I can grab it later. Best of luck! – Stone Oct 19 '12 at 20:54
PS - I might have rewritten the form code to not be nested now that I look back at it. Anyways, this is what I have live. Hopefully, the extra info is helpful. – Stone Oct 19 '12 at 20:55
I see. So you aren't creating the project with the images at the same time? I'm trying to submit (using your example) a new project with several images. Any ideas? – Marc Oct 19 '12 at 22:43
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.