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

traPブログについての説明を追記 #279

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions src/components/Form/LabeledForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,46 @@ import RequiredChip from '/@/components/UI/RequiredChip.vue'

interface Props {
label: string
description?: string
required?: boolean
}
defineProps<Props>()
</script>

<template>
<div>
<div :class="$style.container">
<div :class="$style.labelContainer">
<label :class="$style.label">{{ label }}</label>
<required-chip v-if="required" />
</div>
<p v-if="!!description" :class="$style.description">
{{ description }}
</p>
<div :class="$style.form">
<slot />
</div>
</div>
</template>

<style lang="scss" module>
.container {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.labelContainer {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 0.5rem;
}
.label {
font-weight: bold;
font-size: 1.25rem;
}
.description {
font-size: 0.875rem;
margin-left: 0.5rem;
}
.form {
margin-left: 0.5rem;
}
Expand Down
7 changes: 6 additions & 1 deletion src/pages/UserAccountEdit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,12 @@ const deleteAccount = async () => {
:limit="256"
/>
</labeled-form>
<labeled-form label="リンク" required :class="$style.labeledForm">
<labeled-form
label="リンク"
required
:class="$style.labeledForm"
description="traPブログは設定無しで表示されます。"
>
<form-input
v-model="formValues.url"
placeholder="https://"
Expand Down
7 changes: 6 additions & 1 deletion src/pages/UserAccountNew.vue
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,12 @@ const createNewAccount = async () => {
:limit="256"
/>
</labeled-form>
<labeled-form label="リンク" required :class="$style.labeledForm">
<labeled-form
description="traPブログは設定無しで表示されます。"
label="リンク"
required
:class="$style.labeledForm"
>
<form-input
v-model="formValues.url"
Copy link
Collaborator

Choose a reason for hiding this comment

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

このときvalidationがおかしくなっていそうです
https://{ なんか }
を入れると「追加」ができるようになる感じです

そもそも入力欄を消しちゃってもいいのでは…?
という気がします

Copy link
Contributor Author

Choose a reason for hiding this comment

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

よく分からなかったのですが、各フィールドに何を入れたときにどういうバリデーションエラーになってほしいってことですか?

そもそも入力欄を消しちゃってもいいのでは

の入力欄ってサービス名に何を選んだときのどれのことですか?

Copy link
Collaborator

@Pugma Pugma Jun 11, 2024

Choose a reason for hiding this comment

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

Blogを追加する際のURL validationについて言及してました
ここで僕が気になっているのは

  • URL欄を作る必要がないのではないか
    • フロントエンド側ですでにUserID情報は持っているので、改めて入力させるとミスタイプの可能性もあります
  • もしURLを作るにしても、validationがおかしいのではないか
    • https://foo https://hogeでも通ってしまうので、欄を用意するならhttps://trap.jp/author/{ なにか }でvalidationしたほうがよさそう

ってここまで書いていて思ったんですが、このBlogって個人ブログのことを指してますか?
それだとしてもHomePageと若干競合してそうだったのでtrapのものだと勝手に思ってしまってました
image

Copy link
Contributor Author

Choose a reason for hiding this comment

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

HomePageはポートフォリオとかで、Blogはtrap.jpではなくて個人ブログのこと(trap.jpに限らないブログだったけどtrap.jpを別で用意するようにしたのでtrap.jp以外のブログ)を想定してると思います

Copy link
Contributor Author

Choose a reason for hiding this comment

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

ポートフォリオって言ってブログのリンク貼ってる人とかポートフォリオとブログが合体してる人とかもいるので確かにBlogはいらないような気もしてきました
別で持ってる人のことも考えると、HomePageを複数設定できるようにしておけばいいですかね

Copy link
Collaborator

Choose a reason for hiding this comment

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

個人的にはそのような実装のほうがいいと思います
trap.jpのブログに関しては選択とかは必要なくって確定でユーザーページに表示するって感じの仕様になってましたよね確か

Copy link
Contributor Author

Choose a reason for hiding this comment

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

OKです、そうします(多分どこかのPRでHomePageが複数選択できちゃうバグ直してるのですが、そっちにも影響するので見かけたらちょっと待ってもらえると助かります)
そうですね、traPのIDに紐づいて既に公開されているものなので、全員設定の余地なく公開にしています

placeholder="https://"
Expand Down
Loading