Last active
March 15, 2018 21:25
-
-
Save dbridges/f18063feb5b59bc3b8003e2165bc4c04 to your computer and use it in GitHub Desktop.
Rails UJS and Stimulus Comment List
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h1 Comments | |
.comment-list data-controller="comment-list" | |
ul.comments-list data-target="comment-list.commentList" | |
= render @comments | |
= form_with model: Comment.new, html: { data: { type: "html", action: "ajax:success->comment-list#onPostSuccess" } } do |form| | |
= form.text_area :message, data: { target: "comment-list.message" } | |
= form.submit "Post Comment" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment