aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/auth
diff options
context:
space:
mode:
authorLibravatar haraldox <hnaumann+github@gmail.com>2018-01-19 17:26:17 +0100
committerLibravatar haraldox <hnaumann+github@gmail.com>2018-01-19 17:26:17 +0100
commit56520969f508c1db257d7573962ad6b762205e56 (patch)
tree24b13a491da0d72ee8d6010cbb8d8b44aa81c7ac /src/components/auth
parentimplemented check for at least one email address (diff)
downloadferdium-app-56520969f508c1db257d7573962ad6b762205e56.tar.gz
ferdium-app-56520969f508c1db257d7573962ad6b762205e56.tar.zst
ferdium-app-56520969f508c1db257d7573962ad6b762205e56.zip
alternative UX implementation of check for email address count > 0
comment out line 122 to test
Diffstat (limited to 'src/components/auth')
-rw-r--r--src/components/auth/Invite.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/components/auth/Invite.js b/src/components/auth/Invite.js
index 3eb1f2765..c4c35d538 100644
--- a/src/components/auth/Invite.js
+++ b/src/components/auth/Invite.js
@@ -30,6 +30,10 @@ const messages = defineMessages({
30 id: 'invite.skip.label', 30 id: 'invite.skip.label',
31 defaultMessage: '!!!I want to do this later', 31 defaultMessage: '!!!I want to do this later',
32 }, 32 },
33 noEmailAddresses: {
34 id: 'invite.error.noEmails',
35 defaultMessage: '!!!At least one email address is required',
36 }
33}); 37});
34 38
35@observer 39@observer
@@ -64,6 +68,16 @@ export default class Invite extends Component {
64 e.preventDefault(); 68 e.preventDefault();
65 this.form.submit({ 69 this.form.submit({
66 onSuccess: (form) => { 70 onSuccess: (form) => {
71
72 const atLeastOneEmailAddress = form.$('invite')
73 .map(invite => {return invite.$('email').value})
74 .some(email => email.trim() !== '')
75
76 if (!atLeastOneEmailAddress) {
77 form.invalidate('no-email-addresses')
78 return
79 }
80
67 this.props.onSubmit({ invites: form.values().invite }); 81 this.props.onSubmit({ invites: form.values().invite });
68 }, 82 },
69 onError: () => {}, 83 onError: () => {},
@@ -97,6 +111,11 @@ export default class Invite extends Component {
97 </div> 111 </div>
98 </div> 112 </div>
99 ))} 113 ))}
114 {form.error === 'no-email-addresses' && (
115 <p className="franz-form__error invite-form__error">
116 {intl.formatMessage(messages.noEmailAddresses)}
117 </p>
118 )}
100 <Button 119 <Button
101 type="submit" 120 type="submit"
102 className="auth__button" 121 className="auth__button"