actiontext 6.1.7.8 → 7.0.0.alpha1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of actiontext might be problematic. Click here for more details.

Files changed (36) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +19 -188
  3. data/MIT-LICENSE +1 -1
  4. data/README.md +4 -0
  5. data/app/assets/javascripts/actiontext.js +880 -0
  6. data/app/assets/javascripts/trix.js +5278 -0
  7. data/app/assets/stylesheets/trix.css +375 -0
  8. data/app/helpers/action_text/content_helper.rb +17 -3
  9. data/app/helpers/action_text/tag_helper.rb +5 -7
  10. data/app/models/action_text/encrypted_rich_text.rb +9 -0
  11. data/app/models/action_text/record.rb +1 -1
  12. data/app/models/action_text/rich_text.rb +4 -0
  13. data/app/views/action_text/contents/_content.html.erb +1 -0
  14. data/app/views/layouts/action_text/contents/_content.html.erb +3 -0
  15. data/db/migrate/20180528164100_create_action_text_tables.rb +14 -2
  16. data/lib/action_text/attachable.rb +4 -0
  17. data/lib/action_text/attachment.rb +4 -4
  18. data/lib/action_text/attachment_gallery.rb +14 -9
  19. data/lib/action_text/attachments/caching.rb +1 -1
  20. data/lib/action_text/attachments/minification.rb +1 -1
  21. data/lib/action_text/attribute.rb +18 -2
  22. data/lib/action_text/content.rb +7 -3
  23. data/lib/action_text/encryption.rb +38 -0
  24. data/lib/action_text/engine.rb +14 -0
  25. data/lib/action_text/fixture_set.rb +49 -0
  26. data/lib/action_text/gem_version.rb +4 -4
  27. data/lib/action_text/rendering.rb +1 -1
  28. data/lib/action_text/serialization.rb +0 -2
  29. data/lib/action_text/trix_attachment.rb +3 -3
  30. data/lib/action_text.rb +1 -0
  31. data/lib/generators/action_text/install/install_generator.rb +28 -35
  32. data/lib/generators/action_text/install/templates/actiontext.css +35 -0
  33. data/package.json +13 -3
  34. metadata +28 -23
  35. data/app/views/action_text/content/_layout.html.erb +0 -3
  36. data/lib/generators/action_text/install/templates/actiontext.scss +0 -36
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fd25d6d80912cb5b0457abece4c29eb123b2723d7a82a7a7034e8aa7d8b809eb
4
- data.tar.gz: 14b5e74568cb790a062de5a63d8c8d3cb8c3ef57769c170d696ed9c3b987cae7
3
+ metadata.gz: 2f0735e66acca9916e461de2094203f923aab79749a70eb10de2d060d70f7784
4
+ data.tar.gz: e22fa48ba71858e0bd786690fe7521a99a8edde6194db6955cf1a477a3d7a0eb
5
5
  SHA512:
6
- metadata.gz: dc6be8a996d667a3963a389f1a8918b241d6ee8b5f6bcb6f464583cfa095f573d443203fd27e13d04e7af7c912bf8156e4ab074ca0672339f9451b0df685af93
7
- data.tar.gz: 5281076370a5eeac282c93d6a41a415dd9c69464797787213154afcd39b67e46579e45da65d6b318b350896d94c92a508fbf0b1f61a6651c33c17728a8998c92
6
+ metadata.gz: 6b5ec0e335aa42817f62436ab55e5b5eba6616ccf7ba562f48dac68faf48af82536f843a3f4b5c6c1a85416aea937a455685bc65125b2c0ea0434a71506e0fc0
7
+ data.tar.gz: d15c8203e48105087852dd8f7dfdba4198cb6e62c9e50b053672ece3d0aafc9c45b127092d2c5c674181b50c8ab687640009d6683f3d4ae30c0bdc2bbc5c8af0
data/CHANGELOG.md CHANGED
@@ -1,203 +1,34 @@
1
- ## Rails 6.1.7.8 (June 04, 2024) ##
1
+ ## Rails 7.0.0.alpha1 (September 15, 2021) ##
2
2
 
3
- * No changes.
3
+ * Make the Action Text + Trix JavaScript and CSS available through the asset pipeline.
4
4
 
5
+ *DHH*
5
6
 
6
- ## Rails 6.1.7.7 (February 21, 2024) ##
7
+ * OpenSSL constants are now used for Digest computations.
7
8
 
8
- * No changes.
9
+ *Dirkjan Bussink*
9
10
 
10
-
11
- ## Rails 6.1.7.6 (August 22, 2023) ##
12
-
13
- * No changes.
14
-
15
-
16
- ## Rails 6.1.7.5 (August 22, 2023) ##
17
-
18
- * No changes.
19
-
20
-
21
- ## Rails 6.1.7.4 (June 26, 2023) ##
22
-
23
- * No changes.
24
-
25
-
26
- ## Rails 6.1.7.3 (March 13, 2023) ##
27
-
28
- * No changes.
29
-
30
-
31
- ## Rails 6.1.7.2 (January 24, 2023) ##
32
-
33
- * No changes.
34
-
35
-
36
- ## Rails 6.1.7.1 (January 17, 2023) ##
37
-
38
- * No changes.
39
-
40
-
41
- ## Rails 6.1.7 (September 09, 2022) ##
42
-
43
- * No changes.
44
-
45
-
46
- ## Rails 6.1.6.1 (July 12, 2022) ##
47
-
48
- * No changes.
49
-
50
-
51
- ## Rails 6.1.6 (May 09, 2022) ##
52
-
53
- * No changes.
54
-
55
-
56
- ## Rails 6.1.5.1 (April 26, 2022) ##
57
-
58
- * No changes.
59
-
60
-
61
- ## Rails 6.1.5 (March 09, 2022) ##
62
-
63
- * Fix Action Text extra trix content wrapper.
64
-
65
- *Alexandre Ruban*
66
-
67
-
68
- ## Rails 6.1.4.7 (March 08, 2022) ##
69
-
70
- * No changes.
71
-
72
-
73
- ## Rails 6.1.4.6 (February 11, 2022) ##
74
-
75
- * No changes.
76
-
77
-
78
- ## Rails 6.1.4.5 (February 11, 2022) ##
79
-
80
- * No changes.
81
-
82
-
83
- ## Rails 6.1.4.4 (December 15, 2021) ##
84
-
85
- * No changes.
86
-
87
-
88
- ## Rails 6.1.4.3 (December 14, 2021) ##
89
-
90
- * No changes.
91
-
92
-
93
- ## Rails 6.1.4.2 (December 14, 2021) ##
94
-
95
- * No changes.
96
-
97
-
98
- ## Rails 6.1.4.1 (August 19, 2021) ##
99
-
100
- * No changes.
101
-
102
-
103
- ## Rails 6.1.4 (June 24, 2021) ##
104
-
105
- * Always render attachment partials as HTML with `:html` format inside trix editor.
106
-
107
- *James Brooks*
108
-
109
-
110
- ## Rails 6.1.3.2 (May 05, 2021) ##
111
-
112
- * No changes.
113
-
114
-
115
- ## Rails 6.1.3.1 (March 26, 2021) ##
116
-
117
- * No changes.
118
-
119
-
120
- ## Rails 6.1.3 (February 17, 2021) ##
121
-
122
- * No changes.
123
-
124
-
125
- ## Rails 6.1.2.1 (February 10, 2021) ##
126
-
127
- * No changes.
128
-
129
-
130
- ## Rails 6.1.2 (February 09, 2021) ##
131
-
132
- * No changes.
133
-
134
-
135
- ## Rails 6.1.1 (January 07, 2021) ##
136
-
137
- * No changes.
138
-
139
-
140
- ## Rails 6.1.0 (December 09, 2020) ##
141
-
142
- * Declare `ActionText::FixtureSet.attachment` to generate an
143
- `<action-text-attachment sgid="..."></action-text-attachment>` element with
144
- a valid `sgid` attribute.
145
-
146
- ```ruby
147
- hello_world_review_content:
148
- record: hello_world (Review)
149
- name: content
150
- body: <p><%= ActionText::FixtureSet.attachment("messages", :hello_world) %> is great!</p>
151
- ```
11
+ * Add support for passing `form:` option to `rich_text_area_tag` and
12
+ `rich_text_area` helpers to specify the `<input type="hidden" form="...">`
13
+ value.
152
14
 
153
15
  *Sean Doyle*
154
16
 
155
- * Locate `fill_in_rich_text_area` by `<label>` text
17
+ * Add `config.action_text.attachment_tag_name`, to specify the HTML tag that contains attachments.
156
18
 
157
- In addition to searching for `<trix-editor>` elements with the appropriate
158
- `aria-label` attribute, also support locating elements that match the
159
- corresponding `<label>` element's text.
19
+ *Mark VanLandingham*
160
20
 
161
- *Sean Doyle*
162
-
163
- * Be able to add a default value to `rich_text_area`.
164
-
165
- ```ruby
166
- form.rich_text_area :content, value: "<h1>Hello world</h1>"
167
- #=> <input type="hidden" name="message[content]" id="message_content_trix_input_message_1" value="<h1>Hello world</h1>">
168
- ```
169
-
170
- *Paulo Ancheta*
171
-
172
- * Add method to confirm rich text content existence by adding `?` after rich
173
- text attribute.
174
-
175
- ```ruby
176
- message = Message.create!(body: "<h1>Funny times!</h1>")
177
- message.body? #=> true
178
- ```
21
+ * Expose how we render the HTML _surrounding_ rich text content as an
22
+ extensible `layouts/action_view/contents/_content.html.erb` template to
23
+ encourage user-land customizations, while retaining private API control over how
24
+ the rich text itself is rendered by `action_text/contents/_content.html.erb`
25
+ partial.
179
26
 
180
- *Kyohei Toyoda*
181
-
182
- * The `fill_in_rich_text_area` system test helper locates a Trix editor
183
- and fills it in with the given HTML.
184
-
185
- ```ruby
186
- # <trix-editor id="message_content" ...></trix-editor>
187
- fill_in_rich_text_area "message_content", with: "Hello <em>world!</em>"
188
-
189
- # <trix-editor placeholder="Your message here" ...></trix-editor>
190
- fill_in_rich_text_area "Your message here", with: "Hello <em>world!</em>"
191
-
192
- # <trix-editor aria-label="Message content" ...></trix-editor>
193
- fill_in_rich_text_area "Message content", with: "Hello <em>world!</em>"
27
+ *Sean Doyle*
194
28
 
195
- # <input id="trix_input_1" name="message[content]" type="hidden">
196
- # <trix-editor input="trix_input_1"></trix-editor>
197
- fill_in_rich_text_area "message[content]", with: "Hello <em>world!</em>"
198
- ```
29
+ * Add `with_all_rich_text` method to eager load all rich text associations on a model at once.
199
30
 
200
- *George Claghorn*
31
+ *Matt Swanson*, *DHH*
201
32
 
202
33
 
203
- Please check [6-0-stable](https://github.com/rails/rails/blob/6-0-stable/actiontext/CHANGELOG.md) for previous changes.
34
+ Please check [6-1-stable](https://github.com/rails/rails/blob/6-1-stable/actiontext/CHANGELOG.md) for previous changes.
data/MIT-LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2020-2022 Basecamp, LLC
3
+ Copyright (c) 2020-2021 Basecamp, LLC
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -4,6 +4,10 @@ Action Text brings rich text content and editing to Rails. It includes the [Trix
4
4
 
5
5
  You can read more about Action Text in the [Action Text Overview](https://edgeguides.rubyonrails.org/action_text_overview.html) guide.
6
6
 
7
+ ## Development
8
+
9
+ The JavaScript for Action Text is distributed both as a npm module under @rails/actiontext and via the asset pipeline as actiontext.js (and we mirror Trix as trix.js). To ensure that the latter remains in sync, you must run `yarn build` and checkin the artifacts whenever the JavaScript source or the Trix dependency is bumped. CSS changes must be brought over manually to app/assets/stylesheets/trix.css
10
+
7
11
  ## License
8
12
 
9
13
  Action Text is released under the [MIT License](https://opensource.org/licenses/MIT).