mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
refactor: improve phone number testing (#3493)
This commit is contained in:
parent
097b1ce56b
commit
230fcffaec
10 changed files with 29 additions and 25 deletions
|
@ -1,7 +1,6 @@
|
|||
import { phoneRegEx, emailRegEx } from '@logto/core-kit';
|
||||
import { emailRegEx, phoneInputRegEx } from '@logto/core-kit';
|
||||
import { ConnectorType } from '@logto/schemas';
|
||||
import { conditional } from '@silverhand/essentials';
|
||||
import classNames from 'classnames';
|
||||
import { useEffect, useState } from 'react';
|
||||
import { useForm } from 'react-hook-form';
|
||||
import { toast } from 'react-hot-toast';
|
||||
|
@ -67,7 +66,12 @@ const SenderTester = ({ connectorId, connectorType, config, className }: Props)
|
|||
return;
|
||||
}
|
||||
|
||||
const data = { config: result.data, ...(isSms ? { phone: sendTo } : { email: sendTo }) };
|
||||
const data = {
|
||||
config: result.data,
|
||||
...(isSms
|
||||
? { phone: sendTo.replace(/[ ()-]/g, '').replace(/\+/g, '00') }
|
||||
: { email: sendTo }),
|
||||
};
|
||||
|
||||
try {
|
||||
await api.post(`api/connectors/${connectorId}/test`, { json: data }).json();
|
||||
|
@ -87,7 +91,7 @@ const SenderTester = ({ connectorId, connectorType, config, className }: Props)
|
|||
className={styles.textField}
|
||||
>
|
||||
<TextInput
|
||||
hasError={Boolean(inputError?.message)}
|
||||
hasError={Boolean(inputError)}
|
||||
type={isSms ? 'tel' : 'email'}
|
||||
placeholder={
|
||||
isSms
|
||||
|
@ -98,7 +102,7 @@ const SenderTester = ({ connectorId, connectorType, config, className }: Props)
|
|||
{...register('sendTo', {
|
||||
required: true,
|
||||
pattern: {
|
||||
value: isSms ? phoneRegEx : emailRegEx,
|
||||
value: isSms ? phoneInputRegEx : emailRegEx,
|
||||
message: t('connector_details.send_error_invalid_format'),
|
||||
},
|
||||
})}
|
||||
|
@ -118,9 +122,8 @@ const SenderTester = ({ connectorId, connectorType, config, className }: Props)
|
|||
/>
|
||||
</Tooltip>
|
||||
</div>
|
||||
<div className={classNames(inputError?.message ? styles.error : styles.description)}>
|
||||
{inputError?.message ?? t('connector_details.test_sender_description')}
|
||||
</div>
|
||||
<div className={styles.description}>{t('connector_details.test_sender_description')}</div>
|
||||
<div className={styles.error}>{inputError?.message}</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
|
|
@ -12,8 +12,8 @@ const connector_details = {
|
|||
edit_config_label: 'Gib deine JSON-Konfiguration ein',
|
||||
test_email_sender: 'Teste den E-Mail Connector',
|
||||
test_sms_sender: 'Teste den SMS Connector',
|
||||
test_email_placeholder: 'Gib eine Test-E-Mail ein',
|
||||
test_sms_placeholder: 'Gib eine Test-Telefonnummer ein',
|
||||
test_email_placeholder: 'john.doe@example.com',
|
||||
test_sms_placeholder: '+49 151 12345678',
|
||||
test_message_sent: 'Testnachricht wurde gesendet',
|
||||
test_sender_description:
|
||||
'Logto verwendet die "Generic"-Vorlage zum Testen. Du erhältst eine Nachricht, wenn dein Connector richtig konfiguriert ist.',
|
||||
|
|
|
@ -12,8 +12,8 @@ const connector_details = {
|
|||
edit_config_label: 'Enter your JSON here',
|
||||
test_email_sender: 'Test your email connector',
|
||||
test_sms_sender: 'Test your SMS connector',
|
||||
test_email_placeholder: 'Enter a test email address',
|
||||
test_sms_placeholder: 'Enter a test phone number',
|
||||
test_email_placeholder: 'john.doe@example.com',
|
||||
test_sms_placeholder: '+1 555-123-4567',
|
||||
test_message_sent: 'Test message sent',
|
||||
test_sender_description:
|
||||
'Logto uses the "Generic" template for testing. You will receive a message if your connector is rightly configured.',
|
||||
|
|
|
@ -12,8 +12,8 @@ const connector_details = {
|
|||
edit_config_label: 'Entrez votre json ici',
|
||||
test_email_sender: 'Testez votre connecteur Email',
|
||||
test_sms_sender: 'Testez votre connecteur SMS',
|
||||
test_email_placeholder: 'Entrez une adresse email de test',
|
||||
test_sms_placeholder: 'Entrez un numéro de téléphone de test',
|
||||
test_email_placeholder: 'john.doe@example.com',
|
||||
test_sms_placeholder: '+33 6 12 34 56 78',
|
||||
test_message_sent: 'Message de test envoyé',
|
||||
test_sender_description:
|
||||
'Logto utilise le modèle "Generic" pour les tests. Tu recevras un message si ton connecteur est correctement configuré.',
|
||||
|
|
|
@ -12,8 +12,8 @@ const connector_details = {
|
|||
edit_config_label: '여기에 JSON을 입력해 주세요.',
|
||||
test_email_sender: '이메일 연동 테스트',
|
||||
test_sms_sender: 'SMS 연동 테스트',
|
||||
test_email_placeholder: '테스트 이메일 주소를 입력해 주세요.',
|
||||
test_sms_placeholder: '테스트 휴대전화번호를 입력해 주세요.',
|
||||
test_email_placeholder: 'john.doe@example.com',
|
||||
test_sms_placeholder: '+82 10-1234-5678',
|
||||
test_message_sent: '테스트 메세지 전송 완료',
|
||||
test_sender_description:
|
||||
'Logto는 "Generic" 템플릿을 사용하여 테스트합니다. 커넥터가 올바르게 구성되면 메시지를 받게 됩니다.',
|
||||
|
|
|
@ -12,8 +12,8 @@ const connector_details = {
|
|||
edit_config_label: 'Digite seu json aqui',
|
||||
test_email_sender: 'Teste seu conector de e-mail',
|
||||
test_sms_sender: 'Teste seu conector SMS',
|
||||
test_email_placeholder: 'Insira um endereço de e-mail de teste',
|
||||
test_sms_placeholder: 'Digite um número de telefone de teste',
|
||||
test_email_placeholder: 'john.doe@example.com',
|
||||
test_sms_placeholder: '+55 11 9 1234-5678',
|
||||
test_message_sent: 'Mensagem de teste enviada',
|
||||
test_sender_description:
|
||||
'O Logto utiliza o modelo "Generic" para testes. Você receberá uma mensagem se o seu conector estiver configurado corretamente.',
|
||||
|
|
|
@ -12,8 +12,8 @@ const connector_details = {
|
|||
edit_config_label: 'Introduza o JSON aqui',
|
||||
test_email_sender: 'Teste o conector de email',
|
||||
test_sms_sender: 'Teste o conector de SMS',
|
||||
test_email_placeholder: 'Insira um endereço de email para o teste',
|
||||
test_sms_placeholder: 'Insira um número de telefone para o teste',
|
||||
test_email_placeholder: 'john.doe@example.com',
|
||||
test_sms_placeholder: '+351 912 345 678',
|
||||
test_message_sent: 'Mensagem de teste enviada',
|
||||
test_sender_description:
|
||||
'O Logto utiliza o modelo "Generic" para testes. Receberás uma mensagem se o teu conector estiver configurado corretamente.',
|
||||
|
|
|
@ -12,8 +12,8 @@ const connector_details = {
|
|||
edit_config_label: 'json girin ',
|
||||
test_email_sender: 'eposta connectorunuzu test edin',
|
||||
test_sms_sender: 'SMS connectorunuzu test edin',
|
||||
test_email_placeholder: 'Test e-posta adresi girin',
|
||||
test_sms_placeholder: 'Test telefon numarası girin',
|
||||
test_email_placeholder: 'john.doe@example.com',
|
||||
test_sms_placeholder: '+90 555 123 45 67',
|
||||
test_message_sent: 'Test mesajı gönderildi',
|
||||
test_sender_description:
|
||||
'Logto testler için "Generic" şablonunu kullanır. Bağlantınız doğru şekilde yapılandırılmışsa bir mesaj alacaksınız.',
|
||||
|
|
|
@ -12,11 +12,11 @@ const connector_details = {
|
|||
edit_config_label: '请在此输入你的 JSON 配置',
|
||||
test_email_sender: '测试你的邮件连接器',
|
||||
test_sms_sender: '测试你的短信连接器',
|
||||
test_email_placeholder: '请输入一个用于测试的邮件地址',
|
||||
test_sms_placeholder: '请输入一个用于测试的手机号码',
|
||||
test_email_placeholder: 'john.doe@example.com',
|
||||
test_sms_placeholder: '+86 131 1234 5678',
|
||||
test_message_sent: '测试信息已发送',
|
||||
test_sender_description:
|
||||
'Logto 使用"Generic"模板进行测试。如果你的连接器正确配置,你将收到一条消息。',
|
||||
'Logto 使用 "Generic" 模板进行测试。如果你的连接器正确配置,你将收到一条消息。',
|
||||
options_change_email: '更换邮件连接器',
|
||||
options_change_sms: '更换短信连接器',
|
||||
connector_deleted: '成功删除连接器',
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
export const emailRegEx = /^\S+@\S+\.\S+$/;
|
||||
export const phoneRegEx = /^\d+$/;
|
||||
export const phoneInputRegEx = /^\+?[\d-( )]+$/;
|
||||
export const usernameRegEx = /^[A-Z_a-z]\w*$/;
|
||||
export const webRedirectUriProtocolRegEx = /^https?:$/;
|
||||
export const mobileUriSchemeProtocolRegEx = /^[a-z][\d_a-z]*(\.[\d_a-z]+)+:$/;
|
||||
|
|
Loading…
Add table
Reference in a new issue