rails/actiontext
Sean Doyle f9c51ec385 Rename text_area to textarea
Follow-up to [#52432][]
Related to [#52430][]

Helpers like `text_area_tag` construct [textarea][] elements. This
commit renames all view helper and form builder methods to replace
occurrences of `text_area` with `textarea`.

In the same style, this commit also renames the `rich_text`-prefixed
helpers to utilize a `textarea` suffix instead of the existing
`text_area` suffix.

To preserve backwards compatibility, this commit defines aliases for the
existing `text_area` format.

[#52432]: https://github.com/rails/rails/pull/52432
[#52430]: https://github.com/rails/rails/issues/52430
[textarea]: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea
2024-07-31 18:53:02 +02:00
..
app Rename text_area to textarea 2024-07-31 18:53:02 +02:00
bin Remove unused webpacker related files 2023-09-08 11:22:09 +00:00
db/migrate Ensure installed migrations comply with `rubocop-rails-omakase` 2024-01-04 08:53:23 +01:00
lib Rename text_area to textarea 2024-07-31 18:53:02 +02:00
test Rename text_area to textarea 2024-07-31 18:53:02 +02:00
.gitignore Ignore local .sqlite3 files that are created under storage directory 2022-12-27 11:35:26 +09:00
CHANGELOG.md Rename text_area to textarea 2024-07-31 18:53:02 +02:00
MIT-LICENSE Remove Copyright years (#47467) 2023-02-23 11:38:16 +01:00
README.md 🔗 Remove RDoc auto-link from Rails module everywhere 2023-06-23 10:49:30 +09:00
Rakefile Enable Rails minitest plugin in our rake tasks 2024-05-23 16:16:37 +00:00
actiontext.gemspec Bump the required Ruby version to 3.1.0 2023-12-31 08:54:03 +01:00
package.json Depend on activestorage 8.0.0-alpha 2024-05-31 23:04:54 +00:00
rollup.config.js fix using actiontext.js in sprocket 2023-11-07 00:36:53 -03:00

README.md

Action Text

Action Text brings rich text content and editing to \Rails. It includes the Trix editor that handles everything from formatting to links to quotes to lists to embedded images and galleries. The rich text content generated by the Trix editor is saved in its own RichText model that's associated with any existing Active Record model in the application. Any embedded images (or other attachments) are automatically stored using Active Storage and associated with the included RichText model.

You can read more about Action Text in the Action Text Overview guide.

Development

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

License

Action Text is released under the MIT License.