-
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
フロントエンド側の実装&完成 #13
base: develop
Are you sure you want to change the base?
フロントエンド側の実装&完成 #13
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.
動作等は問題ないです。
コードだけ確認したらmergeで良さそうです
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.
レビューしたので確認お願いします!
あと、 それぞれのコンポーネントに type ファイルを配置しとる理由ってどーゆー理由だったりする??
`} | ||
{...rest} | ||
className="bg-background text-secondary rounded-md shadow-md p-2 hover:bg-orange-600 transition-all" | ||
onClick={props.onClick} |
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.
ここって props.onClick
が渡されなかった場合(undefinedだった場合)ってどうなる?
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.
JSXのbuttonって、undefinedの場合も加味されてるので、基本的にはなにも起きないんですが、それはそれとしてundeifnedのチェックは必要なので修正ました!
const [formData, setFormData] = useState<SubmitTaskData>({ | ||
task_name: "", | ||
content: "", | ||
user_name: "", | ||
}); |
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.
ここはキャメルケースの方が好ましいかも!
backend も スネークケースになっとるならそれも治すように @ryuseifujisaki とかに連絡したほうがいいかもっすね、確か Go もキャメルケースが一般的って聞いた気がするんで!
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.
[fix] スネークケースをキャメルケースに修正で修正しました!
|
||
export interface TaskListCardProps { | ||
tasks: Task[]; | ||
status: 'todo' | 'doing' | 'done'; |
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.
[IMO] めっちゃ小さいことなんやけど、
task とか todoリストとかって、 todo/not started , In progress, Done/Complete とかのイメージかも 🤔
そこまで違和感ないし人によるから、このままでも修正してもどっちでもいいと思う!
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.
僕もそう思ったので修正しました
[fix] statusをToDo/inProgress/Doneに修正
@YushiroDodo63 |
WAHT
HOW
バックエンド
フロント
TEST
make build してね
バックエンドのコードチェック
フロントエンドのコードチェック
タスクが追加できるか
タスクが編集できるか
タスクが削除できるか
スタイルの崩れがないか