-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
生理周期登録機能 #49
生理周期登録機能 #49
Conversation
def create | ||
@period = Period.new(period_params) | ||
if @period.save | ||
redirect_to periods_path, notice: '生理周期を登録しました' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
生理周期登録・更新後、生理開始日順に整列させる必要があるため(最新の生理周期を入力するとは限らないため)、create, updateではturbo_streamで生理周期一覧を差し替えるのではなくindexアクションにredirectさせることにした
else | ||
render 'edit' | ||
end | ||
end | ||
|
||
def destroy | ||
@objective.destroy | ||
redirect_to objectives_path | ||
redirect_to objectives_path, notice: t('objective.destroyed') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
turbo_stream, htmlの二重のリクエストにレスポンスが返され、フラッシュメッセージが表示されない
Started DELETE "/objectives/17?_method=delete" for 192.168.65.1 at 2024-10-31 00:37:26 +0900
Processing by ObjectivesController#destroy as TURBO_STREAM
Parameters: {"id"=>"17"}
User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
Objective Load (0.3ms) SELECT "objectives".* FROM "objectives" WHERE "objectives"."user_id" = $1 AND "objectives"."id" = $2 LIMIT $3 [["user_id", 1], ["id", 17], ["LIMIT", 1]]
↳ app/controllers/objectives_controller.rb:44:in `set_objective'
TRANSACTION (0.2ms) BEGIN
↳ app/controllers/objectives_controller.rb:37:in `destroy'
ActiveStorage::Attachment Load (0.2ms) SELECT "active_storage_attachments".* FROM "active_storage_attachments" WHERE "active_storage_attachments"."record_id" = $1 AND "active_storage_attachments"."record_type" = $2 AND "active_storage_attachments"."name" = $3 [["record_id", 17], ["record_type", "Objective"], ["name", "images"]]
↳ app/controllers/objectives_controller.rb:37:in `destroy'
Objective Destroy (0.8ms) DELETE FROM "objectives" WHERE "objectives"."id" = $1 [["id", 17]]
↳ app/controllers/objectives_controller.rb:37:in `destroy'
TRANSACTION (2.7ms) COMMIT
↳ app/controllers/objectives_controller.rb:37:in `destroy'
Redirected to http://localhost:3006/objectives
Completed 302 Found in 28ms (ActiveRecord: 4.8ms (4 queries, 0 cached) | GC: 6.1ms)
Started GET "/objectives" for 192.168.65.1 at 2024-10-31 00:37:26 +0900
Processing by ObjectivesController#index as TURBO_STREAM
User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
Rendering layout layouts/application.html.erb
Rendering objectives/index.html.erb within layouts/application
Objective Load (0.2ms) SELECT "objectives".* FROM "objectives" WHERE "objectives"."user_id" = $1 ORDER BY "objectives"."updated_at" DESC LIMIT $2 OFFSET $3 [["user_id", 1], ["LIMIT", 5], ["OFFSET", 0]]
↳ app/views/objectives/index.html.erb:11
Objective Count (0.2ms) SELECT COUNT(*) FROM "objectives" WHERE "objectives"."user_id" = $1 [["user_id", 1]]
↳ app/views/objectives/index.html.erb:45
Rendered objectives/index.html.erb within layouts/application (Duration: 6.4ms | GC: 2.0ms)
Rendered layouts/_footer_menu.html.erb (Duration: 0.1ms | GC: 0.0ms)
Rendered layout layouts/application.html.erb (Duration: 17.8ms | GC: 5.9ms)
Completed 200 OK in 25ms (Views: 18.0ms | ActiveRecord: 0.6ms (3 queries, 0 cached) | GC: 8.4ms)
Started GET "/objectives" for 192.168.65.1 at 2024-10-31 00:37:26 +0900
Processing by ObjectivesController#index as HTML
User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 ORDER BY "users"."id" ASC LIMIT $2 [["id", 1], ["LIMIT", 1]]
Rendering layout layouts/application.html.erb
Rendering objectives/index.html.erb within layouts/application
Objective Load (0.2ms) SELECT "objectives".* FROM "objectives" WHERE "objectives"."user_id" = $1 ORDER BY "objectives"."updated_at" DESC LIMIT $2 OFFSET $3 [["user_id", 1], ["LIMIT", 5], ["OFFSET", 0]]
↳ app/views/objectives/index.html.erb:11
Objective Count (0.3ms) SELECT COUNT(*) FROM "objectives" WHERE "objectives"."user_id" = $1 [["user_id", 1]]
↳ app/views/objectives/index.html.erb:45
Rendered objectives/index.html.erb within layouts/application (Duration: 5.8ms | GC: 1.1ms)
Rendered layouts/_footer_menu.html.erb (Duration: 1.1ms | GC: 1.0ms)
Rendered layout layouts/application.html.erb (Duration: 14.6ms | GC: 2.9ms)
Completed 200 OK in 20ms (Views: 14.4ms | ActiveRecord: 0.8ms (3 queries, 0 cached) | GC: 3.9ms)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
二重リクエストだとフラッシュメッセージが表示されない
turbo streamでのみリクエストが送られるようにturbo stream custom actionとして`redirect`(Turbo.visit)を設定
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
概要
UIの変更
追加したgem
詳細
その他