Skip to content
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

Merged
merged 11 commits into from
Nov 8, 2024
Merged

生理周期登録機能 #49

merged 11 commits into from
Nov 8, 2024

Conversation

sarii0213
Copy link
Owner

概要

UIの変更

スクリーンショット 2024-10-31 0 17 16

追加したgem

  • kaminari

詳細

  • 生理周期登録機能の実装(periods table, period model, periods controller, views)
  • ページネーション実装(生理周期一覧とvision boardにもページネーション追加)

その他

def create
@period = Period.new(period_params)
if @period.save
redirect_to periods_path, notice: '生理周期を登録しました'
Copy link
Owner Author

@sarii0213 sarii0213 Oct 30, 2024

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')
Copy link
Owner Author

@sarii0213 sarii0213 Oct 30, 2024

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)

Copy link
Owner Author

@sarii0213 sarii0213 Nov 5, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Collaborator

@DaichiSaito DaichiSaito left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 👍

@sarii0213 sarii0213 merged commit 11566e1 into main Nov 8, 2024
5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

生理周期登録機能
2 participants