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

ユーザーセッティング画面実装 #80

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
Open

Conversation

Kaki256
Copy link
Collaborator

@Kaki256 Kaki256 commented Dec 20, 2024

実装方針とかでおかしな点などあったら教えてください

close #64

@mathsuky mathsuky self-requested a review December 20, 2024 11:23
Copy link
Collaborator

@mathsuky mathsuky left a comment

Choose a reason for hiding this comment

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

実装ありがとうございます!ロジック面,デザイン面とも必要な事項が揃っておりとても良いと思います。

このPR内ではサイドメニューやフォーム,ボタンなどを直接実装してもらっていると思いますが,そちらについては@/components内に定義された各種コンポーネントで再定義していただければと思います。ボタンなどの配置のためのクラスはそのままに,buttoninputなどをそのままコンポーネントで置き換えてもらえればと思います。

自分の周知不足もあり手戻りが多くなってしまって大変申し訳ございませんが,よろしくお願いします:pray:
その他少しですがコメントもしてあるのでご確認をお願いします。

Comment on lines 32 to 38
import GitHubIcon from '@/assets/service_icons/github.svg';
import GoogleIcon from '@/assets/service_icons/google.svg';
import traQIcon from '@/assets/service_icons/traq.svg';
import checkIcon from '@/assets/status_icons/check.svg';
import profileIcon from '@/assets/status_icons/profile.svg';
import accountIcon from '@/assets/status_icons/account.svg';
Copy link
Collaborator

Choose a reason for hiding this comment

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

importは先頭にまとめてしまった方が読みやすいと思います

Comment on lines 8 to 11
function selectItem(item: string) {
selectedItem.value = item;
router.push(`/settings/${item}`);
}
Copy link
Collaborator

Choose a reason for hiding this comment

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

これでも全く問題ないのですが,tOJ-frontの他のコードではarrowを用いた関数式の形式で関数を定義しているので,それに合わせてもらえるとありがたいです:pray:
それぞれ微妙に動作が異なりますが,今回はそのまま書き換えて問題ないと思います。

https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Functions/Arrow_functions
https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Statements/function

Comment on lines 66 to 92
<aside class="gap-3 p-3" style="min-width: 250px;">
<h2 class="h-10 pb-3 text-xl font-medium">設定</h2>
<ul>
<li class="mb-3">
<a
href="/settings/account"
class="flex rounded px-4 py-1"
style="font-weight: 500; background-color: #FFE5E5; color: #8E3535; gap: 5px;"
@click.prevent="selectItem('account')"
>
<img :src="accountIcon" alt="" width="20" height="20" />
<p>アカウント</p>
</a>
</li>
<li class="mb-3">
<a
href="/settings/profile"
class="flex rounded px-4 py-1"
style="font-weight: 500; background-color: white; color: #5F5F5F; gap: 5px;"
@click.prevent="selectItem('profile')"
>
<img :src="profileIcon" alt="" width="20" height="20" style="filter: invert(33%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(95%) contrast(85%);" />
<p>プロフィール</p>
</a>
</li>
</ul>
</aside>
Copy link
Collaborator

Choose a reason for hiding this comment

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

これは僕が周知していなかったのが悪い部分も大きいのですが,ページ左側のメニュー/ボタン/フォームなど多くのページで共通に使われることがわかっているものはすでにコンポーネントとしてcomponents以下に定義されています。このページのメニュー,ボタン,フォームなどもそちらを使って描画していただくようにお願いいたします。少し手戻りが多くなってしまって申し訳ないです:pray_shake:

<div class="flex-col">
<label class="text-sm font-medium" for="username">ユーザー名</label>
<div class="flex items-center gap-2">
<input id="username" v-model="username" type="text" class="h-8 w-48 rounded border" style="border-color: #D8D8D8; padding-left: 10px; color: #3A3A3A;" />
Copy link
Collaborator

Choose a reason for hiding this comment

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

@/components/Controls/Textbox/PlainTextbox.vueを使って再定義をお願いします:pray:

<label class="text-sm font-medium" for="username">ユーザー名</label>
<div class="flex items-center gap-2">
<input id="username" v-model="username" type="text" class="h-8 w-48 rounded border" style="border-color: #D8D8D8; padding-left: 10px; color: #3A3A3A;" />
<button class="h-10 w-20 rounded-lg" style="background-color: #AC004B; color: white;" @click="changeUsername">変更</button>
Copy link
Collaborator

Choose a reason for hiding this comment

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

@/components/Controls/PrimaryButton.vueを使って再定義をお願いします:pray:

<div class="flex-col">
<label class="text-sm font-medium" for="email">メールアドレス</label>
<div class="flex items-center gap-2">
<input id="email" v-model="email" type="email" class="h-8 w-96 rounded border" style="border-color: #D8D8D8; padding-left: 10px; color: #3A3A3A;" />
Copy link
Collaborator

Choose a reason for hiding this comment

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

@/components/Controls/Textbox/EmailTextbox.vueを使って再定義をお願いします:pray:

<label class="text-sm font-medium" for="email">メールアドレス</label>
<div class="flex items-center gap-2">
<input id="email" v-model="email" type="email" class="h-8 w-96 rounded border" style="border-color: #D8D8D8; padding-left: 10px; color: #3A3A3A;" />
<button class="h-10 w-20 rounded-lg" style="background-color: #AC004B; color: white;" @click="changeEmail">変更</button>
Copy link
Collaborator

Choose a reason for hiding this comment

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

@/components/Controls/PrimaryButton.vueを使って再定義をお願いします:pray:

Comment on lines 112 to 137
<h2 class="h-9 border-b-2 pb-2 text-xl font-medium" style="border-color: #D8D8D8B2;">パスワードの変更</h2>
<div class="flex flex-col gap-2">
<div class="flex-col">
<label class="text-sm font-medium" for="current-password">現在のパスワード</label>
<div class="flex items-center ">
<input id="current-password" v-model="currentPassword" type="password" class="h-8 w-72 rounded border" style="border-color: #D8D8D8; padding-left: 10px; color: #3A3A3A;" />
</div>
</div>
<div class="flex-col">
<label class="text-sm font-medium" for="new-password">新しいパスワード</label>
<div class="flex items-center ">
<input id="new-password" v-model="newPassword" type="password" class="h-8 w-72 rounded border" style="border-color: #D8D8D8; padding-left: 10px; color: #3A3A3A;" />
</div>
</div>
<div class="flex-col">
<label class="text-sm font-medium" for="confirm-password">新しいパスワード (確認)</label>
<div class="flex items-center ">
<input id="confirm-password" v-model="confirmPassword" type="password" class="h-8 w-72 rounded border" style="border-color: #D8D8D8; padding-left: 10px; color: #3A3A3A;" />
</div>
</div>
<div>
<button class="h-10 w-20 rounded-lg" style="background-color: #AC004B; color: white;" @click="changePassword">
変更
</button>
</div>
</div>
Copy link
Collaborator

Choose a reason for hiding this comment

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

@/components/Controls/Textbox/PasswordTextbox.vue@/components/Controls/PrimaryButton.vueを使って再定義をお願いします:pray:

Comment on lines 40 to 44
const services = ref<Service[]>([
{ name: 'GitHub', linked: false, ID: '', icon: GitHubIcon },
{ name: 'Google', linked: false, ID: '', icon: GoogleIcon },
{ name: 'traQ', linked: false, ID: '@test_user', icon: traQIcon },
]);
Copy link
Collaborator

Choose a reason for hiding this comment

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

ここの値のlinkedについては,ページのマウント時に/users/meを叩いて,そのときの値を元にlinkされているか決めたいですね。
一旦,GitHubとtraQのlinkedについてはそれぞれ/users/meのレスポンスのgithubIdtraqIdnullかどうかで判定するようにしてみてください。(Googleは連携しているかどうか判定できるプロパティがなかったので別issueに直しておきます。)

参照; https://github.com/traP-jp/traO-Judge-docs/blob/develop/api/backend/frontend-backend.yaml

import { useRouter } from 'vue-router';
const router = useRouter();
const selectedItem = ref<string>(window.location.pathname.split('/').pop() || 'account');
Copy link
Collaborator

Choose a reason for hiding this comment

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

このページが呼び出されるのは/settings/accountだけなのでわざわざパスからとってこなくても良い気がします。(Profileの方も同様に。)

@Kaki256
Copy link
Collaborator Author

Kaki256 commented Dec 28, 2024

コメントの内容反映しました (selectedItem あたりに関しては SideMenuUserSetting.vue に置き換えた段階で不要になったので消えてます)

懸念点

  • fetchUserData() の実装がいまいちわかってない
    • User 型がどこかで定義されていたりしますか
    • モックサーバー立てて 'http://localhost:4010/users/me' にアクセスすることで情報を取れることは確認しましたが、本番用のリンクがこれでいいのかわからない

@mathsuky mathsuky self-requested a review December 31, 2024 05:28
Copy link
Collaborator

@mathsuky mathsuky left a comment

Choose a reason for hiding this comment

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

かなり手戻りが多くなってしまったにも関わらずさっと実装してくださりありがとうございます!レビュー遅れて申し訳ないです。

スタイル周りほとんど完璧です,ありがとうございます!少しだけコメントしてあるので確認お願いいたします。
またAPI周りについて,いただいた質問に対する返答はレビュー中に含めてあるので合わせて確認いただき,実装の修正をお願いできればと思います。

連絡不足で往復が増えてしまって申し訳ないですが,これで最後になると思うのでよろしくお願いいたします:pray:

Comment on lines 76 to 81
<div class="flex-col">
<label class="text-sm font-medium" for="current-password">現在のパスワード</label>
<div class="flex items-center ">
<input id="current-password" v-model="currentPassword" type="password" class="h-8 w-72 rounded border" style="border-color: #D8D8D8; padding-left: 10px; color: #3A3A3A;" />
<PasswordTextbox v-model="currentPassword" />
</div>
</div>
Copy link
Collaborator

Choose a reason for hiding this comment

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

この辺りのlabelとtextboxの塊のところは一つネストを少なくして良さそうです。例えば下のように

          <label class="text-sm font-medium" for="current-password">現在のパスワード</label>
          <PasswordTextbox v-model="currentPassword" autocomplete="current-password" id="current-password" class="w-64" />

他の類似部分もネストを減らしてもらえると良いと思います!

<input id="username" v-model="username" type="text" class="h-8 w-48 rounded border" style="border-color: #D8D8D8; padding-left: 10px; color: #3A3A3A;" />
<button class="h-10 w-20 rounded-lg" style="background-color: #AC004B; color: white;" @click="changeUsername">変更</button>
<PlainTextbox v-model="username" />
<PrimaryButton text="変更" @click="changeUsername" />
</div>
</div>
Copy link
Collaborator

Choose a reason for hiding this comment

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

この辺りはネストを一つ落とせそうです。例えば下のように

        <label class="text-sm font-medium" for="username">ユーザー名</label>
        <div class="flex items-center gap-2">
          <PlainTextbox id="username" v-model="username" />
          <PrimaryButton text="変更" @click="changeUsername" />
        </div>

他の類似部分もネストを減らしてもらえると良いと思います!
また,Textboxに対してforと対応づくidを指定してもらえると助かります:pray:
今まではコンポーネントの実装に抜けがあったのですが,修正PRがマージされているので,最新のmainブランチを取り込んでからidの指定をお願いいたします。(これは他すべてのTextbox系コンポーネントについても同様です。)

console.log('TODO: パスワードの変更を反映する');
}
async function fetchUserData() {
Copy link
Collaborator

Choose a reason for hiding this comment

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

この辺り自前実装してくださってありがとうございます!ただ,APIの関数は基本的に@/api/generated/apis/以下に定義してある自動生成の関数がありますので,こちらを利用する形でお願いいたします:pray:
API定義周りで若干の変更が入っているので,mainの変更をマージしてもらってから作業してもらえると良いと思います。

合わせて,コメントの方でいただいていた質問に回答しておきます。

User 型がどこかで定義されていたりしますか

これは@/api/generated/modelsで定義されています。(このコードであれば明示的にUser型を宣言せずともgetMeを呼び出すだけで事足りるとは思います。)

モックサーバー立てて 'http://localhost:4010/users/me' にアクセスすることで情報を取れることは確認しましたが、本番用のリンクがこれでいいのかわからない

本番用のリンクはまだ確定していないです:gomen:前述した通り,自動生成の関数を利用すれば自動的にベースが設定されますので,このコードを書く上では気にしなくても問題ないです。

</div>
<div class="flex flex-col gap-3 pb-3">
<h2 class="h-9 border-b-2 pb-2 text-xl font-medium" style="border-color: #D8D8D8B2;">外部サービスとの連携</h2>
<div>
Copy link
Collaborator

Choose a reason for hiding this comment

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

このdivはなくても支障がなさそうですので,削ってネストを浅くしてください

<SideMenuUserSetting />
<div class="flex flex-col gap-6 p-3" style="width: 800px;">
<div class="flex flex-col gap-3 pb-3">
<h2 class="h-9 border-b-2 pb-2 text-xl font-medium" style="border-color: #D8D8D8B2;">基本情報</h2>
Copy link
Collaborator

Choose a reason for hiding this comment

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

この部分のカラーコードはtailwind.config.jsに定義してあるので,そちらのカスタムクラスを利用するようにしてください!(他のカラーコードが直書きされている部分も同様に修正をお願いします。)


<template>
<div>
<h2>Settings Account</h2>
<div class="flex gap-12 px-6 py-8" style="font-family: 'Open Sans', 'Noto Sans', sans-serif;">
Copy link
Collaborator

Choose a reason for hiding this comment

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

この部分のフォントスタイルはtailwind.config.jsに定義してあるので,そちらのカスタムクラスを利用するようにしてください!

Comment on lines +111 to +116
<div class="flex-col">
<label class="text-sm font-medium" for="current-password">現在のパスワード</label>
<div class="flex items-center ">
<PasswordTextbox v-model="currentPassword" autocomplete="current-password" />
</div>
</div>
Copy link
Collaborator

Choose a reason for hiding this comment

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

この部分も前述のようにネストが減らせそうなので,例えば以下のようにしてネストを減らしてもらえると助かります

          <label class="text-sm font-medium" for="current-password">現在のパスワード</label>
          <PasswordTextbox v-model="currentPassword"  id="current-password"  autocomplete="current-password" class="w-64" />

他の類似部分も同様に修正をお願いいたします

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