blob: 8a21ed843bc935a517aed17286aa8580318f1f1c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Active Text
π€ΈββοΈπ°π
## Installing
Assumes a Rails 5.2+ application with Active Storage and Webpacker installed.
1. Install the gem:
```ruby
# Gemfile
gem "activetext", github: "basecamp/activetext", require: "active_text"
gem "mini_magick" # for Active Storage variants
```
1. Install the npm package:
```js
// package.json
"dependencies": {
"activetext": "basecamp/activetext"
}
```
```sh
$ yarn install
```
```js
// app/javascript/packs/application.js
import "activetext"
```
1. Declare text columns as Active Text attributes:
```ruby
# app/models/message.rb
class Message < ActiveRecord::Base
active_text_attribute :content
end
```
1. Replace form `text_area`s with `active_text_field`s:
```erb
<%# app/views/messages/_form.html.erb %>
<%= form_with(model: message) do |form| %>
β¦
<div class="field">
<%= form.label :content %>
<%= form.active_text_field :content %>
</div>
β¦
<% end %>
```
|