hyperoslo / hyperoslo/activeadmin_polymorphic

Image Upload

Open
#17 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
Ruby
Stars
20
Forks
8
PR merge metrics
No merged PRs in 30d

Description

Hi,

I have an application with the models Section and Element with polymorphic associations to Paragraph and Image.

```
class Section < ActiveRecord::Base
has_many :elements
end
```

```
class Element < ActiveRecord::Base
belongs_to :section
belongs_to :implementation, polymorphic: true
accepts_nested_attributes_for :implementation
end
```

```
class Paragraph < ActiveRecord::Base
has_one :element, as: :implementation
end
```

```
class Image < ActiveRecord::Base
mount_uploader :file, ImageUploader
has_one :element, as: :implementation
end
```

I was able to make the Section form with the Paragraph class. However, with Image class I not able to upload files due to file fields in form are stripped out as you mentioned in the to documentation.

I have already configured carrierwave + remotipart and actually images are uploaded asynchronously from the new image form (outsite the Section form). However, but I was not able to make that work within the Section form. I have noticed that file are still stripped out only when I try to add and send a new Image from the Section form.

Do you have an example or more detailed documentation regarding image uploading?

Thanks in advance

Contributor guide

No contributing guide indexed for this repository

Research direction

The issue names Section, Element, Paragraph, Image, CarrierWave, Remotipart, and the Section form; start by reproducing nested Image creation there and compare it with the standalone new Image form. Done means an example or documentation explains the required setup and image upload works from the Section form.

Written by the indexing model from the issue text.

Assessment

Tech stack
rails, ruby
Domain
backend, documentation
Issue type
Bug
Difficulty
4/5
Estimated time
3-5 days
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
25/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.