hyperoslo / hyperoslo/activeadmin_polymorphic

Image Upload

オープン
#17 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
Ruby
スター
20
フォーク
8
PR マージ指標
30日以内にマージされた PR はありません

説明

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

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

調査の方向性

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.

索引モデルが issue の本文から書いたものです。

評価

技術スタック
rails, ruby
領域
backend, documentation
issue の種類
バグ
難易度
4/5
見積もり時間
3〜5日
活発さ
停滞
明瞭さ
説明が足りない
初心者へのやさしさ
25/100

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。