-
Notifications
You must be signed in to change notification settings - Fork 385
/
Copy pathcomments_controller.rb
121 lines (102 loc) · 2.93 KB
/
comments_controller.rb
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# frozen_string_literal: true
class CommentsController < ApplicationController
layout "stimulus_layout"
before_action :set_comment, only: %i[show edit update destroy]
before_action :new_comment, only: %i[new stimulus horizontal_form stacked_form inline_form]
before_action :set_comments, only: %i[index stimulus comment_list]
# GET /comments
# GET /comments.json
def index; end
# GET /comments/1
# GET /comments/1.json
def show; end
# GET /comments/new
def new; end
# GET /comments/1/edit
def edit; end
# POST /comments
# POST /comments.json
def create
@comment = Comment.new(comment_params)
respond_to do |format|
if @comment.save
if turbo_frame_request?
format.html
else
format.html { redirect_to @comment, notice: I18n.t(:comment_was_successfully_created) }
end
format.json { render :show, status: :created, location: @comment }
else
if turbo_frame_request?
format.html
else
format.html { render :new }
end
format.json { render json: @comment.errors, status: :unprocessable_entity }
end
end
end
# PATCH/PUT /comments/1
# PATCH/PUT /comments/1.json
def update
respond_to do |format|
if @comment.update(comment_params)
format.html { redirect_to @comment, notice: I18n.t(:comment_was_successfully_updated) }
format.json { render :show, status: :ok, location: @comment }
else
format.html { render :edit }
format.json { render json: @comment.errors, status: :unprocessable_entity }
end
end
end
# DELETE /comments/1
# DELETE /comments/1.json
def destroy
@comment.destroy!
respond_to do |format|
format.html { redirect_to comments_url, notice: I18n.t(:comment_was_successfully_destroyed) }
format.json { head :no_content }
end
end
def stimulus
@form_type = "horizontal"
end
def comment_list
respond_to do |format|
format.html { render partial: "comments/turbo/comment_list" }
end
end
def horizontal_form
@form_type = "horizontal"
respond_to do |format|
format.html { render partial: "comments/turbo/horizontal_form" }
end
end
def stacked_form
@form_type = "stacked"
respond_to do |format|
format.html { render partial: "comments/turbo/stacked_form" }
end
end
def inline_form
@form_type = "inline"
respond_to do |format|
format.html { render partial: "comments/turbo/inline_form" }
end
end
private
def set_comments
@comments = Comment.all.order("id DESC")
end
# Use callbacks to share common setup or constraints between actions.
def set_comment
@comment = Comment.find(params[:id])
end
def new_comment
@comment = Comment.new
end
# Never trust parameters from the scary internet, only allow the white list through.
def comment_params
params.require(:comment).permit(:author, :text)
end
end