создать файл в app / inputs / rich_text_area_input.rb:
class RichTextAreaInput < SimpleForm::Inputs::Base
def input_html_classes
super.push('trix-content')
end
def input(wrapper_options = nil)
merged_input_options = merge_wrapper_options(input_html_options, wrapper_options)
@builder.rich_text_area(attribute_name, merged_input_options)
end
end
в application.s css:
//simple_form input for rich_text_area hight
trix-editor.form-control {
height: auto;
}
Теперь в сообщениях / _form. html .haml, вы можете просто сделать:
= f.input :description, as: :rich_text_area
Все, надеюсь, в какой-то момент simple_form должен добавить его в мастер
Источник 1: https://github.com/heartcombo/simple_form/issues/1638
Источник 2: https://github.com/heartcombo/simple_form/pull/1646