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

Fix/harata ranking today #57

Merged
merged 7 commits into from
Nov 15, 2024
Merged

Fix/harata ranking today #57

merged 7 commits into from
Nov 15, 2024

Conversation

harata-t
Copy link
Contributor

概要

  • このプルリクエストの目的や背景を簡単に説明してください。
    • お題ページに古いお題が表示される
    • スコアがないお題スコアがあるお題 が存在する場合、
      スコアがないお題 には スコアがあるお題 のランキングが表示されている

変更内容

  • どのような変更を行ったのか具体的に記述してください。
    • お題ページに最新のお題を表示する 
    • ランキングページでまだ回答がないお題のランキングは表示せず、文言を表示する

動作確認

  • どのような手順で動作確認を行ったのか記述してください。
    • 複数のお題を作成する
      • 最新のお題が表示されている
      • お題に対するスコアがない場合は文言が表示されている
スクリーンショット 2024-11-15 4 58 09 スクリーンショット 2024-11-15 4 58 26

関連するIssue

  • 関連するIssue番号を記載してください。例: #123

備考

  • その他、レビュワーに伝えたいことがあれば記述してください。

@harata-t harata-t self-assigned this Nov 14, 2024
status: 404,
if (!scores[0]?.assignment){
return new Response(JSON.stringify({}), {
status: 200,
Copy link
Collaborator

Choose a reason for hiding this comment

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

👍

Comment on lines 66 to 68
if (selectedTopic !== 0) {
fetchData(getDate());
}
Copy link
Collaborator

Choose a reason for hiding this comment

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

トピックが0の時(今日のお題がない時)、ローディングが消えないので、対応お願いします

Suggested change
if (selectedTopic !== 0) {
fetchData(getDate());
}
if (selectedTopic !== 0) {
fetchData(getDate());
}
setIsLoading(false);

Comment on lines 75 to 84
if (!Array.isArray(data) || data.length === 0) {
return (
<div
className="flex items-center justify-center h-40 text-lg text-orange-500"
>
まだ投稿がありません!<br />
1位になれるかも!
</div>
);
}
Copy link
Collaborator

Choose a reason for hiding this comment

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

cameraページへ遷移するボタンも置いておくのはどうでしょうか?
(文字サイズと間隔も調整してみました。)

Suggested change
if (!Array.isArray(data) || data.length === 0) {
return (
<div
className="flex items-center justify-center h-40 text-lg text-orange-500"
>
まだ投稿がありません!<br />
1位になれるかも!
</div>
);
}
if (!Array.isArray(data) || data.length === 0) {
return (
<div className="flex flex-col items-center justify-center h-full text-lg text-gray-700 mt-[20vh]">
<p className="text-2xl font-bold mb-4">まだ投稿がありません</p>
<p className="mb-4">今すぐ投稿して1位を目指しましょう!</p>
<p className="text-gray-800 mb-4">
あなたの投稿がトップに表示されるかも!
</p>
<Button
variant="primary"
className="flex items-center justify-center w-3/5 bg-gray-800 hover:bg-gray-700 text-white py-6 space-x-2 mt-4"
onClick={() => router.push("/camera")}
>
<PhotoCameraIcon className="w-6 h-auto" />
<span className="text-lg font-semibold">写真を撮る</span>
</Button>
</div>
);
}

Copy link
Collaborator

@hikahana hikahana left a comment

Choose a reason for hiding this comment

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

LGTM

@harata-t harata-t merged commit cec5028 into main Nov 15, 2024
1 check 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.

4 participants