-
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
メニューを新規作成モーダルを実装しました。 #55
Conversation
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.
そろそろ完成!
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.
最後!
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.
お疲れ様!
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.
見ましたー
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.
Approve忘れてた
概要
#47 の内容を実装しました。
デバッグ項目
スクリーンショット
2022-10-20.15-11-20.mp4
参考 URL
Self-Checking points 🚨
レビューを依頼する前に必ず確認してほしいポイントです。
一般的な項目を上げているので、プロジェクト毎に必要なポイントがあれば各リポジトリで追加してください。
共通 (命名)
data
,info
,value
などの汎用的で抽象度の高い変数名を使っていない → 参考s
をつけて複数形にするかxxxList
と命名することで配列であることを明確にしている → 参考共通 (処理系)
is/else文
ではなく、switch文
を使う → 参考共通 (コメント系)
JavaScript (命名)
ローワーキャメルケース
になっている → 参考パスカルケース
になっている → 参考スネークケース
になっている → 参考JavaScript (処理系)
const
を利用している → 参考通常for文
,for-in
,forEach
などは極力利用せず、高階関数を利用している → 参考==(等価演算子)
は使わず===(厳密等価演算子)
を利用している → 参考TypeScript (命名)
パスカルケース
になっている → 参考React (処理系)
パスカルケース
になっている → 参考共通 (その他)
インラインコメント
を付けて、レビュワーが省エネできるように → 参考