-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FE] 비밀번호 입력 간소화 및 모바일 숫자 키패드를 적용 (#342)
* refactor: 입력 필드 유효성 검사 규칙 개선 및 단순화 TERN으로 변경하여 정규표현식 사용 - 각 필드의 유효성 검사 규칙을 정규표현식으로 단순화 - 비밀번호 규칙을 4자리 숫자로 변경 - 비밀번호 input type을 number로 설정 * feat: iOS 숫자 키패드 지원을 위한 입력 필드 속성 추가
- Loading branch information
1 parent
4e02d54
commit 97438f7
Showing
4 changed files
with
34 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,11 @@ | ||
export const INPUT_FIELD_RULES = { | ||
meetingName: { | ||
minLength: 1, | ||
maxLength: 10, | ||
}, | ||
nickname: { | ||
minLength: 1, | ||
maxLength: 5, | ||
}, | ||
password: { | ||
minLength: 1, | ||
maxLength: 10, | ||
pattern: /^[a-zA-Z0-9!@#$%]+$/, | ||
}, | ||
export const INPUT_FIELD_PATTERN = { | ||
meetingName: /^.{1,10}$/, // 1~10자 사이의 모든 문자 | ||
nickname: /^.{1,5}$/, // 1~5자 사이의 모든 문자, | ||
password: /^\d{4}$/, // 4자리 숫자 | ||
}; | ||
|
||
export const FIELD_DESCRIPTIONS = { | ||
meetingName: '약속 이름은 1~10자 사이로 입력해 주세요.', | ||
nickname: '닉네임을 1~5자 사이로 입력해 주세요.', | ||
password: | ||
'비밀번호를 1~10자 사이로 입력해 주세요.\n사용 가능한 문자는 알파벳, 숫자, 특수문자(!@#$%)입니다.', | ||
nickname: '닉네임은 1~5자 사이로 입력해 주세요.', | ||
password: '비밀번호는 4자리 숫자로 입력해 주세요.', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters