{ "version": 3, "sources": ["../../../../../../owl-nest/common/connect/index.ts", "../../../../../../owl-nest/common/connect/src/UnknownUser.tsx", "../../../../../../owl-nest/common/connect/src/validators.ts", "../../../../../../owl-nest/common/connect/src/useAuthFailureMessage.ts", "../../../../../../owl-nest/common/connect/src/ThirdPartyModal.tsx", "../../../../../../owl-nest/common/connect/src/styles.tsx", "../../../../../../owl-nest/common/connect/src/Identity.tsx", "../../../../../../owl-nest/common/connect/src/NewUser.tsx", "../../../../../../owl-nest/common/connect/src/useNewPasswordValidator.ts", "../../../../../../owl-nest/common/connect/src/ExistingUser.tsx", "../../../../../../owl-nest/common/connect/src/Connect.tsx", "../../../../../../owl-nest/common/connect/src/KnownUser.tsx"], "sourcesContent": ["export * from './src/UnknownUser'\nexport * from './src/NewUser'\nexport * from './src/ExistingUser'\nexport * from './src/Connect'\n", "import * as React from 'react'\nimport { Formik, FieldProps, Field } from 'formik'\nimport isEmail from 'validator/lib/isEmail'\n\nimport * as service from '@owl-nest/services'\nimport { t } from '@owl-nest/localize'\nimport * as plume from '@ulule/owl-kit-components/next'\n\nimport { apiErrorGetter, validateRequired } from './validators'\nimport { useAuthFailureMessage } from './useAuthFailureMessage'\nimport { ThirdPartyModal, ThirdPartyService } from './ThirdPartyModal'\nimport { ua } from '@owl-nest/utils'\n\nimport * as S from './styles'\n\ntype Form = { identifier: string }\n\ntype Translations = { cta: string }\n\ntype UnknownUserProps = { auth: service.user.UseAuthUnknown; allowGuest?: boolean; translations?: Translations }\n\nexport function UnknownUser({\n auth,\n allowGuest,\n translations,\n}: UnknownUserProps): React.ReactElement {\n useAuthFailureMessage(auth)\n\n const [error, setError] = React.useState('')\n const [selectedThirdPartyService, setSelectedThirdPartyService] = React.useState(null)\n const [loading, setLoading] = React.useState(false)\n\n const getApiErrors = apiErrorGetter<{ email: string; username: string }>(auth.failure)\n\n const isWebView = ua.isWebview(window.navigator.userAgent)\n\n return (\n <>\n \n initialValues={{ identifier: '' }}\n onSubmit={(values) => {\n if (isEmail(values.identifier)) {\n setLoading(true)\n auth.identify('email', values.identifier, allowGuest)\n } else if (!allowGuest) {\n auth.identify('username', values.identifier)\n setLoading(true)\n } else {\n setLoading(false)\n setError(t('This email is not valid, please correct it.'))\n }\n }}\n validateOnChange={false}\n validateOnBlur={false}\n >\n {({ handleSubmit, validateField }) => {\n const apiError = getApiErrors({\n email: {\n ValueError: t('Enter a valid email address'),\n // FIXME: maybe API should use a better classification than InvalidValueError for bounce email\n InvalidValueError: t(\"This email is invalid and doesn't seem to be reachable\"),\n },\n username: { ValueError: t('Enter a valid username: Letters, digits and - _ only') },\n })\n\n const label = allowGuest ? t('E-mail address') : t('E-mail address or username')\n\n const hasApiError = apiError('email') !== undefined || apiError('username') !== undefined\n\n return (\n \n {!allowGuest && (\n \n {t('To continue, fill in your email or choose to log in with Facebook or Google.')}\n \n )}\n \n {({ field, meta }: FieldProps) => {\n React.useEffect(() => {\n validateField(field.name)\n }, [field.value])\n return (\n \n )\n }}\n \n \n {allowGuest && translations ? translations.cta : t('Continue')}\n \n {!allowGuest && (\n <>\n {t('Or')}\n setSelectedThirdPartyService('facebook')}\n >\n {t('Log in with Facebook')}\n \n {!isWebView && (\n <>\n setSelectedThirdPartyService('google')}\n >\n {t('Log in with Google')}\n \n \n )}\n \n )}\n \n )\n }}\n \n {selectedThirdPartyService && (\n setSelectedThirdPartyService(null)}\n />\n )}\n \n )\n}\n", "import * as React from 'react'\nimport isEmail from 'validator/lib/isEmail'\n\nimport { t } from '@owl-nest/localize'\n\nimport { PasswordFeedback } from './useNewPasswordValidator'\nimport { RequestFailure } from '@owl-nest/api-client'\nimport { ApiError } from '@owl-nest/api-client/latest'\n\nexport function validateNewPassword(\n queryFeedback: (password: string) => Promise,\n): (password: string) => Promise {\n return async (password) => {\n const feedback = await queryFeedback(password)\n if (feedback && (feedback.score === 'worst' || feedback.score === 'bad')) {\n return 'error'\n }\n }\n}\n\nexport function validateEmail(email: string): string | undefined {\n if (!isEmail(email)) {\n return t('Enter a valid email address')\n }\n}\n\nexport function validateRequired(value: any): string | undefined {\n if (!value) {\n return t('This field is required')\n }\n}\n\nexport function apiErrorGetter
(\n failure?: RequestFailure,\n): (messages: { [K in keyof FORM]?: { [s: string]: React.ReactNode | undefined } }) => (\n field: keyof FORM & string,\n) => React.ReactNode {\n const classifications: { [s: string]: string | undefined } = {}\n if (failure && failure.status === 422) {\n const apiError: ApiError = failure.body\n for (const error of apiError) {\n for (const field of error.fieldNames) {\n classifications[field] = error.classification\n }\n }\n }\n if (failure && failure.status === 401) {\n classifications['password'] = failure.body?.type\n }\n\n return (messages) => {\n return (field) => {\n const fieldClassification = classifications[field]\n const fieldMessages = messages[field]\n if (fieldClassification === undefined || fieldMessages === undefined) {\n return undefined\n }\n return fieldMessages[fieldClassification]\n }\n }\n}\n", "import * as React from 'react'\nimport * as service from '@owl-nest/services'\nimport { internalError, alert } from '@owl-nest/redux-wrapper/src/messages/actions'\n\nexport function useAuthFailureMessage(\n auth:\n | service.user.UseAuthExisting\n | service.user.UseAuthNew\n | service.user.UseAuthUnknown\n | service.user.UseAuthKnown,\n): void {\n const dispatch = service.message.useDispatch()\n\n React.useEffect(() => {\n if (!auth.failure) {\n return\n }\n if (auth.failure.status === 429) {\n dispatch(alert('Too many login attempts. Please try later.', { focus: true, context: 'login' }))\n } else if (auth.failure.status >= 500) {\n dispatch(internalError({ context: 'login' }))\n }\n }, [auth.failure])\n}\n", "import * as React from 'react'\nimport { Formik, FieldProps, Field } from 'formik'\nimport styled from 'styled-components'\n\nimport * as env from '@owl-nest/config'\nimport * as plume from '@ulule/owl-kit-components/next'\nimport { t, tc } from '@owl-nest/localize'\n\nconst ThirdPartyForm = styled.form`\n display: flex;\n flex-direction: column;\n align-items: center;\n\n ${plume.CheckboxField} {\n margin: 11px 0 20px;\n\n ${plume.styles.field.Title} {\n color: ${plume.COLORS.GREY_SHADE_3};\n }\n }\n\n ${plume.styles.copy.XS} {\n color: ${plume.COLORS.GREY_SHADE_3};\n }\n\n ${plume.styles.button.Button} {\n margin: 15px 0 30px;\n }\n`\n\ntype ThirdPartyForm = {\n terms: boolean\n privacy: boolean\n}\n\nexport type ThirdPartyService = 'facebook' | 'google'\n\ntype ThirdPartyModalProps = {\n open: boolean\n onClose: () => void\n service: ThirdPartyService\n}\n\nexport function ThirdPartyModal({\n open,\n onClose,\n service,\n}: ThirdPartyModalProps): React.ReactElement {\n const configuration = getConfig(service)\n\n function onSubmit(): void {\n window.location.href = `${configuration.url}?next=${window.location.href}`\n }\n\n function validateTerms(value: boolean): string | undefined {\n if (value !== true) {\n return t('This field is required')\n }\n }\n\n function validatePrivacy(value: boolean): string | undefined {\n if (value !== true) {\n return t('This field is required')\n }\n }\n\n function getConfig(service: ThirdPartyService) {\n const configuration: Record = {\n facebook: {\n label: `I understand that Ulule will contact me via my Facebook account email`,\n url: env.FACEBOOK_LOGIN_URL,\n },\n google: {\n label: `I understand that Ulule will contact me via my Google's account email`,\n url: env.GOOGLE_LOGIN_URL,\n },\n }\n\n return configuration[service]\n }\n\n return (\n \n onSubmit={onSubmit} initialValues={{ terms: false, privacy: false }}>\n {({ handleSubmit }) => {\n return (\n \n \n {({ field, meta }: FieldProps) => {\n return (\n \n ),\n },\n )}\n checked={field.value}\n onChange={field.onChange(field.name)}\n onBlur={field.onBlur}\n error={meta.touched ? meta.error : undefined}\n />\n )\n }}\n \n \n {({ field, meta }: FieldProps) => {\n return (\n \n )\n }}\n \n {t('Continue')}\n \n {tc(\n `The information you provide, with the exception of your password which is encrypted and cannot be read, is intended for the authorized staff of Ulule who is the data controller. Ulule collects your data to manage your user account, allow hosting and administration of fundraising campaigns, marketing and user relationship actions, as well as and fight against fraud, money laundering and terror financing. Depending on the purpose of each treatment, you have certain rights (right of opposition, right of access to your data, right to rectify and erase your data, right to define the fate of your data after your death). To exercise these rights, write to privacy@ulule.com or ULULE SAS, %(ululePostalAddress)s or, for certain rights, go directly to your account. For more details: [link: Ulule Privacy Policy].`,\n {\n ululePostalAddress: t('10 rue de Penthi\u00E8vre, 75008 Paris, France'),\n link: (\n \n ),\n },\n )}\n \n \n )\n }}\n \n \n )\n}\n", "import styled, { css } from 'styled-components'\n\nimport * as plume from '@ulule/owl-kit-components/next'\nimport { Identity } from './Identity'\n\nexport const ExistingUserFormFields = styled.div`\n width: 100%;\n\n ${plume.Button} {\n display: none;\n }\n`\n\nexport const ExistingUserFormBlock = styled.div`\n align-items: baseline;\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n\n ${plume.Link} {\n font-size: 13px; // HACK: Irregular font manipulation\n }\n`\n\nexport const ExistingUserForm = styled.form`\n align-items: center;\n display: flex;\n flex-direction: column;\n\n ${plume.styles.copy.M} {\n width: 100%;\n margin: 0 0 11px;\n }\n\n ${plume.TextField}, ${plume.CheckboxField} {\n margin: 0 0 20px;\n }\n\n ${plume.TextField}, ${ExistingUserFormBlock} {\n width: 100%;\n }\n\n ${plume.Button} {\n margin: 0 0 10px;\n width: 100%;\n }\n\n ${plume.styles.copy.XS} {\n color: ${plume.COLORS.GREY_SHADE_3};\n text-transform: uppercase;\n }\n`\n\nexport const ThirdPartyAuthExistingUserForm = styled.form`\n display: flex;\n flex-direction: column;\n align-items: center;\n\n ${plume.styles.copy.M} {\n width: 100%;\n margin: 0 0 11px;\n }\n\n ${plume.TextField} {\n width: 100%;\n position: relative;\n }\n\n ${plume.Link} {\n position: absolute;\n top: 0;\n right: 0;\n }\n\n ${plume.SocialButton} {\n margin: 30px 0 10px;\n }\n\n ${plume.Callout} {\n margin: 0 0 10px;\n }\n`\n\nexport const ThirdPartyAuthKnownUserForm = styled.form`\n display: flex;\n flex-direction: column;\n align-items: center;\n\n ${Identity} {\n width: 100%;\n padding: 20px 0;\n }\n\n ${plume.SocialButton} {\n margin: 0 0 10px;\n }\n`\n\nexport const IdentityBlock = styled.div`\n display: flex;\n flex-direction: row;\n justify-content: flex-start;\n align-items: center;\n\n ${plume.Link} {\n font-size: 13px; // HACK: Irregular font manipulation\n }\n`\n\nexport const IdentityGroup = styled.div`\n align-items: baseline;\n display: flex;\n flex-direction: column;\n flex: 1;\n justify-content: flex-start;\n margin-left: 18px;\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n flex-direction: row;\n }\n\n @media screen and ${plume.BREAKPOINTS.LAPTOP} {\n flex-direction: column;\n margin-left: 18px;\n }\n`\n\nexport const IdentitySmallText = styled(plume.styles.copy.S)`\n margin: 0;\n`\n\nexport const IdentityUsernameWrapper = styled(plume.styles.copy.Base)`\n font-size: 17px; // HACK: Irregular font manipulation\n line-height: 22px;\n`\n\nexport const KnownUserBlock = styled.div`\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n align-items: baseline;\n\n ${plume.Link} {\n font-size: 13px;\n }\n`\n\nexport const NewUserForm = styled.form`\n align-items: center;\n display: flex;\n flex-direction: column;\n\n ${plume.styles.copy.M} {\n margin: 0 0 11px;\n }\n\n ${plume.TextField}, ${plume.PasswordField}, ${plume.CheckboxField} {\n margin: 0 0 20px;\n }\n\n ${plume.TextField}, ${plume.PasswordField} {\n width: 100%;\n }\n\n ${plume.CheckboxField} {\n ${plume.styles.field.Title} {\n color: ${plume.COLORS.GREY_SHADE_3};\n }\n }\n\n ${plume.styles.button.CallToAction} {\n margin: 0 0 10px;\n }\n\n ${plume.styles.copy.XS} {\n color: ${plume.COLORS.GREY_SHADE_3};\n margin: 10px 0 20px;\n text-transform: uppercase;\n }\n\n ${plume.SocialButton}+${plume.SocialButton} {\n margin-top: 20px;\n }\n`\n\nexport const UluleKnownUserForm = styled.form`\n display: flex;\n flex-direction: column;\n align-items: center;\n\n ${plume.TextField} {\n &::placeholder {\n color: transparent;\n }\n }\n\n ${plume.TextField}, ${KnownUserBlock} {\n margin: 0 0 20px;\n }\n\n ${plume.TextField}, ${KnownUserBlock}, ${Identity} {\n width: 100%;\n }\n\n ${Identity} {\n margin-bottom: 20px;\n }\n\n ${plume.Button} {\n margin: 0 0 10px;\n }\n\n ${plume.styles.copy.XS} {\n color: ${plume.COLORS.GREY_SHADE_3};\n text-transform: uppercase;\n }\n\n ${plume.SocialButton}+${plume.SocialButton} {\n margin-top: 20px;\n }\n`\n\nexport const UnknownUserForm = styled.form`\n align-items: center;\n display: flex;\n flex-direction: column;\n\n ${plume.styles.copy.M} {\n margin: 0 0 11px;\n }\n\n ${plume.TextField} {\n margin: 0px 0 30px;\n width: 100%;\n\n &::placeholder {\n color: transparent;\n }\n }\n\n ${plume.Button} {\n margin: 0 0 10px;\n width: 100%;\n }\n\n ${plume.styles.copy.XS} {\n color: ${plume.COLORS.GREY_SHADE_3};\n text-transform: uppercase;\n margin: 10px 0 20px;\n }\n\n ${plume.SocialButton}+${plume.SocialButton} {\n margin-top: 20px;\n }\n`\n\nexport const Wrapper = styled.div<{ compactMode: boolean }>`\n ${({ compactMode }) => {\n if (compactMode) {\n return css`\n ${plume.TextField} label {\n display: none;\n }\n\n ${plume.Link} {\n margin: 0;\n }\n\n // UnknownUserForm\n ${UnknownUserForm} {\n ${plume.TextField} {\n margin: 0 0 8px;\n width: 100%;\n }\n\n @media screen and ${plume.BREAKPOINTS.LAPTOP} {\n align-items: flex-start;\n flex-direction: row;\n justify-content: space-between;\n\n ${plume.styles.copy.M} {\n margin: 0;\n }\n\n ${plume.TextField} {\n margin: 0;\n margin-right: 16px;\n }\n\n ${plume.Button} {\n margin: 0;\n width: 471px;\n }\n }\n }\n\n // Existing User\n ${ExistingUserForm} {\n ${plume.Button} {\n display: none;\n }\n\n ${ExistingUserFormFields} {\n width: 100%;\n\n ${plume.Button} {\n display: block;\n }\n }\n\n @media screen and ${plume.BREAKPOINTS.LAPTOP} {\n ${plume.TextField} {\n width: calc(50% - 7px);\n margin-right: 7px;\n }\n\n ${ExistingUserFormFields} {\n display: flex;\n justify-content: space-between;\n width: 100%;\n }\n\n ${plume.Button} {\n width: 59%;\n margin-left: 10px;\n }\n\n ${ExistingUserFormBlock} {\n width: 100%;\n\n ${plume.CheckboxField} {\n margin-bottom: 0;\n }\n }\n\n ${plume.Link} {\n ${plume.styles.copy._smallStyle}\n color: ${plume.COLORS.GREY_SHADE_2}; // HACK: Irregular font manipulation\n }\n }\n }\n `\n }\n }}\n`\n", "import * as React from 'react'\nimport styled from 'styled-components'\n\nimport { t } from '@owl-nest/localize'\nimport * as service from '@owl-nest/services'\nimport * as plume from '@ulule/owl-kit-components/next'\n\nimport * as S from './styles'\n\ntype IdentityProps = {\n className?: string\n}\n\nfunction IdentityComponent({ className }: IdentityProps): React.ReactElement | null {\n const auth = service.user.useAuth()\n\n if (auth.type === 'loggedin') {\n return (\n \n \n \n \n {t('Logged in as ')} {auth.user.email}\n \n \n {t('Switch my account')}\n \n \n \n )\n }\n if (auth.type === 'known') {\n return (\n \n \n \n {auth.knownUser.username}\n {t('Not you?')}\n \n \n )\n }\n return null\n}\n\nexport const Identity = styled(IdentityComponent)``\n", "import * as React from 'react'\nimport { Formik, Field, FieldProps } from 'formik'\n\nimport * as service from '@owl-nest/services'\nimport * as plume from '@ulule/owl-kit-components/next'\nimport { SignupUser } from '@owl-nest/auth'\nimport { t, tc } from '@owl-nest/localize'\nimport { useNewPasswordValidator } from './useNewPasswordValidator'\nimport { validateEmail, apiErrorGetter, validateRequired } from './validators'\nimport { useAuthFailureMessage } from './useAuthFailureMessage'\nimport { ThirdPartyModal, ThirdPartyService } from './ThirdPartyModal'\nimport { ua } from '@owl-nest/utils'\n\nimport * as S from './styles'\n\ntype Form = SignupUser & { terms: boolean }\n\ntype NewUserProps = { auth: service.user.UseAuthNew }\n\nexport function NewUser({ auth }: NewUserProps): React.ReactElement {\n useAuthFailureMessage(auth)\n\n const [selectedThirdPartyService, setSelectedThirdPartyService] = React.useState(null)\n\n const [feedback, validateNewPassword] = useNewPasswordValidator()\n\n const getApiErrors = apiErrorGetter(auth.failure)\n\n const isWebView = ua.isWebview(window.navigator.userAgent)\n\n return (\n <>\n \n initialValues={{ email: auth.identifier.value, password: '', terms: false }}\n onSubmit={auth.signup}\n validateOnBlur={false}\n validateOnChange={false}\n >\n {({ handleSubmit, values, validateField }) => {\n const apiError = getApiErrors({\n email: {\n ValueError: t('Enter a valid email address'),\n // FIXME: maybe API should use a better classification than InvalidValueError for bounce email\n InvalidValueError: t(\"This email is invalid and doesn't seem to be reachable\"),\n AlreadyExistsError: tc('This email is already taken. Is it you ? [link: Log in]', {\n link: auth.toExisting(values.email, 'ulule')} />,\n }),\n },\n password: {\n UnusablePasswordError: tc('This email is already taken. Is it you ? [link: Log in]', {\n link: auth.toExisting(values.email, 'facebook')} />,\n }),\n },\n })\n return (\n \n \n {t('To continue, fill in your email or choose to log in with Facebook or Google.')}\n \n \n {({ field, meta }: FieldProps) => {\n React.useEffect(() => {\n if (field.value !== '') {\n validateField(field.name)\n }\n }, [field.value])\n return (\n \n )\n }}\n {' '}\n \n {({ field, meta }: FieldProps) => {\n React.useEffect(() => {\n if (field.value !== '') {\n validateField(field.name)\n }\n }, [field.value])\n return (\n \n )\n }}\n \n \n {({ field, meta }: FieldProps) => {\n return (\n \n ),\n },\n )}\n name={field.name}\n checked={field.value}\n onChange={field.onChange}\n onBlur={field.onBlur}\n error={meta.touched ? meta.error : undefined}\n />\n )\n }}\n \n {t('Continue')}\n {t('Or')}\n setSelectedThirdPartyService('facebook')}\n >\n {t('Log in with Facebook')}\n \n {!isWebView && (\n <>\n setSelectedThirdPartyService('google')}\n >\n {t('Log in with Google')}\n \n \n )}\n \n )\n }}\n \n {selectedThirdPartyService && (\n setSelectedThirdPartyService(null)}\n />\n )}\n \n )\n}\n", "import * as React from 'react'\n\nimport { api, PasswordStrength } from '@owl-nest/api-client/latest'\nimport * as service from '@owl-nest/services'\nimport { t } from '@owl-nest/localize'\n\nimport { validateNewPassword } from './validators'\n\nexport type PasswordFeedback = { score: PasswordStrength; strength: string; suggestions: string[] }\n\ntype PasswordValidator = (\n password: string,\n userInputs?: string[] | undefined,\n) => { feedback: { warning: string; suggestions: string[] } }\n\nlet zxcvbn: PasswordValidator | undefined = undefined\nasync function validate(\n password: string,\n userInputs?: string[] | undefined,\n): Promise<{ feedback: { warning: string; suggestions: string[] } }> {\n if (zxcvbn === undefined) {\n zxcvbn = (await import('zxcvbn')).default\n }\n return zxcvbn(password, userInputs)\n}\n\nexport function useNewPasswordValidator(): [\n PasswordFeedback | undefined,\n (password: string) => Promise,\n] {\n const [feedback, setFeedback] = React.useState(undefined)\n const dispatch = service.message.useDispatch()\n\n const strengths = {\n worst: `\uD83D\uDEAB ${t('Worst')}`,\n bad: `\uD83D\uDC4E ${t('Bad')}`,\n weak: `\uD83D\uDE10 ${t('Weak')}`,\n good: `\uD83D\uDE0A ${t('Good')}`,\n strong: `\uD83E\uDD17 ${t('Strong')}`,\n }\n const messages = {\n worst: t('Risky.'),\n bad: t('Still too weak.'),\n weak: t('Ok but still a bit too weak.'),\n good: t('Your password is secure.'),\n strong: t('Your password is very secure, you are unhackable.'),\n } as const\n\n async function queryFeedback(password: string): Promise {\n const { feedback: zxcvbnFeedback } = await validate(password)\n\n const suggestions = [zxcvbnFeedback.warning, ...zxcvbnFeedback.suggestions].map((key) => {\n return key && t(key) // t('') will throw\n })\n\n if (password === '') {\n const feedback: PasswordFeedback = {\n score: 'worst',\n strength: strengths['worst'],\n suggestions: [messages['worst'], ...suggestions],\n }\n setFeedback(feedback)\n return feedback\n }\n\n const result = await api.post.passwordScore({\n body: { password },\n })\n\n return result.caseOf({\n left: (_error) => {\n /* TODO: log sentry ? */\n dispatch(service.message.internalError())\n return feedback\n },\n right: (success) => {\n const feedback: PasswordFeedback = {\n score: success.body.score,\n strength: strengths[success.body.score],\n suggestions: [messages[success.body.score], ...suggestions],\n }\n setFeedback(feedback)\n return feedback\n },\n })\n }\n\n return [feedback, validateNewPassword(queryFeedback)]\n}\n", "import * as React from 'react'\nimport { Formik, Field, FieldProps } from 'formik'\n\nimport { LoginUser } from '@owl-nest/auth'\nimport { t, tc } from '@owl-nest/localize'\nimport * as service from '@owl-nest/services'\nimport * as env from '@owl-nest/config'\nimport * as plume from '@ulule/owl-kit-components/next'\n\nimport { ua } from '@owl-nest/utils'\nimport { useAuthFailureMessage } from './useAuthFailureMessage'\nimport { validateEmail, apiErrorGetter, validateRequired } from './validators'\n\nimport * as S from './styles'\n\ntype Translations = { cta: string }\n\ntype ExistingUserProps = { auth: service.user.UseAuthExisting; translations?: Translations }\n\nexport function ExistingUser({ auth, translations }: ExistingUserProps): React.ReactElement {\n if (auth.service === 'ulule') {\n return \n } else {\n return \n }\n}\n\nfunction ThirdPartyAuthKnownUserForm({ auth }: ExistingUserProps): React.ReactElement {\n const isWebView = ua.isWebview(window.navigator.userAgent)\n\n return (\n evt.preventDefault()}>\n \n {t('To continue, fill in your email or choose to log in with Facebook or Google.')}\n \n \n \n auth.forget()}>\n {t('Change address')}\n \n \n \n {\n window.location.href = `${env.FACEBOOK_LOGIN_URL}?next=${window.location.href}`\n }}\n >\n {t('Log in with Facebook')}\n \n \n {t('Connect via Facebook to confirm your identity, this Ulule account is associated with Facebook')}\n \n\n {!isWebView && (\n <>\n {\n window.location.href = `${env.GOOGLE_LOGIN_URL}?next=${window.location.href}`\n }}\n >\n {t('Log in with Google')}\n \n \n {t('Connect via Google to confirm your identity, this Ulule account is associated with Google')}\n \n \n )}\n \n )\n}\n\ntype Form = LoginUser\n\nfunction UluleExistingUser({ auth, translations }: ExistingUserProps): React.ReactElement {\n useAuthFailureMessage(auth)\n\n const [loading, setLoading] = React.useState(false)\n const getApiErrors = apiErrorGetter(auth.failure)\n\n return (\n \n initialValues={{ username: auth.identifier.value, password: '', 'stay-connected': false }}\n onSubmit={(user) => {\n setLoading(true)\n auth.login(user)\n }}\n >\n {({ handleSubmit, values, validateField }) => {\n const apiError = getApiErrors({\n password: {\n OAuth2ServerError: tc(\n 'Please enter a correct username and password. Note that both fields are case-sensitive. Do you want to [link: create an account] ?',\n { link: auth.toNew(values.username)} /> },\n ),\n },\n })\n const hasNoApiError =\n apiError('password') === undefined &&\n apiError('stay-connected') === undefined &&\n apiError('username') === undefined\n\n return (\n \n {t('To continue, enter your password.')}\n \n \n {({ field, meta }: FieldProps) => {\n React.useEffect(() => {\n validateField(field.name)\n }, [field.value])\n return (\n \n )\n }}\n \n \n {({ field, meta }: FieldProps) => {\n React.useEffect(() => {\n validateField(field.name)\n }, [field.value])\n return (\n \n )\n }}\n \n \n {t(translations?.cta ?? 'Continue')}\n \n \n\n \n \n {({ field }: FieldProps) => {\n return (\n \n )\n }}\n \n\n {t('Forgot your password?')}\n \n\n {t(translations?.cta ?? 'Continue')}\n \n )\n }}\n \n )\n}\n", "import * as React from 'react'\n\nimport * as plume from '@ulule/owl-kit-components/next'\n\nimport * as service from '@owl-nest/services'\nimport { useTracking, SITE, EVENT_TYPE, CATEGORY } from '@owl-nest/shadow'\nimport { AuthenticatedUser } from '@owl-nest/api-client/latest'\n\nimport { ExistingUser } from './ExistingUser'\nimport { UnknownUser } from './UnknownUser'\nimport { NewUser } from './NewUser'\nimport { KnownUser } from './KnownUser'\nimport { Identity } from './Identity'\n\nimport * as S from './styles'\n\ntype ConnectProps = {\n allowGuest?: boolean\n compactMode?: boolean\n extraFields?: EXTRA_FIELDS[]\n onGuestLoggedIn?: (user: AuthenticatedUser) => void\n onLoggedIn?: (user: AuthenticatedUser) => void\n onSignedUp?: (user: AuthenticatedUser) => void\n translations?: Translations\n}\n\ntype Translations = {\n unknownGuestUser: {\n cta: string\n }\n existingUser: {\n cta: string\n }\n}\n\nexport function Connect({\n allowGuest,\n compactMode = false,\n extraFields = [],\n onGuestLoggedIn,\n onLoggedIn,\n onSignedUp,\n translations,\n}: ConnectProps): React.ReactElement> | null {\n const tracking = useTracking()\n const auth = service.user.useAuth({\n onSignedUp: (user) => {\n tracking.track({\n event: EVENT_TYPE.GENERIC,\n siteCategory: SITE.CONNECT,\n eventCategory: CATEGORY.REGISTRATION,\n eventAction: 'Done',\n eventLabel: 'Ulule',\n ululeUserId: `${user.id}`,\n })\n onSignedUp && onSignedUp(user)\n },\n onGuestLoggedIn,\n onLoggedIn,\n extraFields,\n })\n\n return (\n \n {auth.type === 'initial' ? (\n \n ) : auth.type === 'unknown' ? (\n \n ) : auth.type === 'known' ? (\n \n ) : auth.type === 'existing' ? (\n \n ) : auth.type === 'new' ? (\n \n ) : auth.type === 'loggedin' ? (\n \n ) : (\n <>\n )}\n \n )\n}\n", "import * as React from 'react'\nimport { Formik, Field, FieldProps } from 'formik'\n\nimport { LoginUser } from '@owl-nest/auth'\nimport { t } from '@owl-nest/localize'\nimport * as service from '@owl-nest/services'\nimport * as plume from '@ulule/owl-kit-components/next'\nimport * as env from '@owl-nest/config'\n\nimport { useAuthFailureMessage } from './useAuthFailureMessage'\nimport { apiErrorGetter, validateRequired } from './validators'\nimport { Identity } from './Identity'\nimport { ua } from '@owl-nest/utils'\n\nimport * as S from './styles'\n\ntype KnownUserProps = { auth: service.user.UseAuthKnown }\n\nexport function KnownUser({ auth }: KnownUserProps): React.ReactElement {\n if (auth.knownUser.service === 'ulule') {\n return \n }\n\n return \n}\n\nfunction ThirdPartyKnownUser(): React.ReactElement {\n const isWebView = ua.isWebview(window.navigator.userAgent)\n\n return (\n <>\n evt.preventDefault()}>\n \n {\n window.location.href = `${env.FACEBOOK_LOGIN_URL}?next=${window.location.href}`\n }}\n >\n {t('Log in with Facebook')}\n \n {!isWebView && (\n <>\n {\n window.location.href = `${env.GOOGLE_LOGIN_URL}?next=${window.location.href}`\n }}\n >\n {t('Log in with Google')}\n \n \n )}\n \n \n )\n}\n\ntype Form = LoginUser\n\nfunction UluleKnownUser({ auth }: KnownUserProps): React.ReactElement {\n useAuthFailureMessage(auth)\n\n const getApiErrors = apiErrorGetter(auth.failure)\n\n return (\n \n initialValues={{ username: auth.knownUser.username, password: '', 'stay-connected': false }}\n onSubmit={auth.login}\n >\n {({ handleSubmit, validateField }) => {\n const apiError = getApiErrors({\n password: {\n OAuth2ServerError: t(\n 'Please enter a correct username and password. Note that both fields are case-sensitive.',\n ),\n },\n })\n\n return (\n \n \n \n {({ field, meta }: FieldProps) => {\n React.useEffect(() => {\n validateField(field.name)\n }, [field.value])\n return (\n \n )\n }}\n \n \n \n {({ field }: FieldProps) => {\n return (\n \n )\n }}\n \n {t('Forgot your password?')}\n \n\n {t('Continue')}\n \n )\n }}\n \n )\n}\n"], "mappings": "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", "names": ["init_define_process_env", "init_sentry_release_injection_stub", "init_define_process_env", "init_sentry_release_injection_stub", "React", "import_isEmail", "init_define_process_env", "init_sentry_release_injection_stub", "import_isEmail", "validateNewPassword", "queryFeedback", "password", "feedback", "validateEmail", "email", "isEmail", "validateRequired", "value", "apiErrorGetter", "failure", "_a", "classifications", "apiError", "error", "field", "messages", "fieldClassification", "fieldMessages", "init_define_process_env", "init_sentry_release_injection_stub", "React", "useAuthFailureMessage", "auth", "dispatch", "message_exports", "alert", "internalError", "init_define_process_env", "init_sentry_release_injection_stub", "React", "_a", "ThirdPartyForm", "src_default", "__template", "CheckboxField", "styles_exports", "colors_exports", "ThirdPartyModal", "open", "onClose", "service", "configuration", "getConfig", "onSubmit", "validateTerms", "value", "validatePrivacy", "FACEBOOK_LOGIN_URL", "GOOGLE_LOGIN_URL", "Modal", "Formik", "handleSubmit", "Field", "field", "meta", "Link", "init_define_process_env", "init_sentry_release_injection_stub", "init_define_process_env", "init_sentry_release_injection_stub", "React", "IdentityComponent", "className", "auth", "user_exports", "IdentityBlock", "styles_exports", "IdentityGroup", "IdentitySmallText", "Link", "IdentityUsernameWrapper", "_a", "Identity", "src_default", "__template", "_a", "ExistingUserFormFields", "src_default", "__template", "Button", "_b", "ExistingUserFormBlock", "Link", "_c", "ExistingUserForm", "styles_exports", "TextField", "CheckboxField", "colors_exports", "_d", "ThirdPartyAuthExistingUserForm", "SocialButton", "Callout", "_e", "ThirdPartyAuthKnownUserForm", "Identity", "_f", "IdentityBlock", "_g", "IdentityGroup", "breakpoints_exports", "_h", "IdentitySmallText", "_i", "IdentityUsernameWrapper", "_j", "KnownUserBlock", "_k", "NewUserForm", "PasswordField", "_l", "UluleKnownUserForm", "_m", "UnknownUserForm", "_n", "_o", "Wrapper", "compactMode", "css", "UnknownUser", "auth", "allowGuest", "translations", "useAuthFailureMessage", "error", "setError", "selectedThirdPartyService", "setSelectedThirdPartyService", "loading", "setLoading", "getApiErrors", "apiErrorGetter", "isWebView", "ua_exports", "Formik", "values", "isEmail", "handleSubmit", "validateField", "apiError", "label", "hasApiError", "UnknownUserForm", "styles_exports", "Field", "validateRequired", "field", "meta", "TextField", "Button", "SocialButton", "ThirdPartyModal", "init_define_process_env", "init_sentry_release_injection_stub", "React", "init_define_process_env", "init_sentry_release_injection_stub", "React", "zxcvbn", "validate", "password", "userInputs", "useNewPasswordValidator", "feedback", "setFeedback", "dispatch", "message_exports", "strengths", "messages", "queryFeedback", "zxcvbnFeedback", "suggestions", "key", "api", "_error", "success", "validateNewPassword", "NewUser", "auth", "useAuthFailureMessage", "selectedThirdPartyService", "setSelectedThirdPartyService", "feedback", "validateNewPassword", "useNewPasswordValidator", "getApiErrors", "apiErrorGetter", "isWebView", "ua_exports", "Formik", "handleSubmit", "values", "validateField", "apiError", "Link", "NewUserForm", "styles_exports", "Field", "validateEmail", "field", "meta", "TextField", "PasswordField", "validateRequired", "CheckboxField", "SocialButton", "ThirdPartyModal", "init_define_process_env", "init_sentry_release_injection_stub", "React", "ExistingUser", "auth", "translations", "UluleExistingUser", "ThirdPartyAuthKnownUserForm", "isWebView", "ua_exports", "ThirdPartyAuthExistingUserForm", "evt", "styles_exports", "TextField", "Link", "SocialButton", "FACEBOOK_LOGIN_URL", "Callout", "GOOGLE_LOGIN_URL", "useAuthFailureMessage", "loading", "setLoading", "getApiErrors", "apiErrorGetter", "Formik", "user", "handleSubmit", "values", "validateField", "_a", "_b", "apiError", "hasNoApiError", "ExistingUserForm", "ExistingUserFormFields", "Field", "validateEmail", "validateRequired", "field", "meta", "Button", "ExistingUserFormBlock", "CheckboxField", "PASSWORD_RESET_URL", "init_define_process_env", "init_sentry_release_injection_stub", "React", "init_define_process_env", "init_sentry_release_injection_stub", "React", "KnownUser", "auth", "UluleKnownUser", "ThirdPartyKnownUser", "isWebView", "ua_exports", "ThirdPartyAuthKnownUserForm", "evt", "Identity", "SocialButton", "FACEBOOK_LOGIN_URL", "GOOGLE_LOGIN_URL", "useAuthFailureMessage", "getApiErrors", "apiErrorGetter", "Formik", "handleSubmit", "validateField", "apiError", "UluleKnownUserForm", "Field", "validateRequired", "field", "meta", "TextField", "KnownUserBlock", "CheckboxField", "Link", "PASSWORD_RESET_URL", "Button", "Connect", "allowGuest", "compactMode", "extraFields", "onGuestLoggedIn", "onLoggedIn", "onSignedUp", "translations", "tracking", "useTracking", "auth", "user_exports", "user", "Wrapper", "Spinner", "UnknownUser", "KnownUser", "ExistingUser", "NewUser", "Identity"] }