{ "version": 3, "sources": ["../../../../../../owl-nest/common/layout/src/footer/Footer.tsx", "../../../../../../owl-nest/common/layout/src/footer/Body.tsx", "../../../../../../owl-nest/common/layout/src/footer/AccordionSection.tsx", "../../../../../../owl-nest/common/layout/src/footer/constants.ts", "../../../../../../owl-nest/common/layout/src/footer/Toes.tsx", "../../../../../../owl-nest/common/layout/src/footer/Manifesto.tsx", "../../../../../../owl-nest/common/layout/src/baseConfig.ts", "../../../../../../owl-nest/common/layout/src/index.ts", "../../../../../../owl-nest/common/layout/src/modals/ProjectSubmissionModal/index.tsx", "../../../../../../owl-nest/common/layout/src/modals/ProjectSubmissionModal/SubmitForm.tsx", "../../../../../../owl-nest/common/layout/src/modals/ProjectSubmissionModal/SubmitSuccess.tsx", "../../../../../../owl-nest/common/layout/src/PreviewBar.tsx"], "sourcesContent": ["import * as React from 'react'\nimport styled from 'styled-components'\n\nimport * as plume from '@ulule/owl-kit-components/next'\nimport { Lang } from '@owl-nest/api-client/latest'\n\nimport { Body } from './Body'\nimport { Toes } from './Toes'\nimport { Manifesto } from './Manifesto'\n\nimport { NavSection } from '../baseConfig'\n\ntype FooterProps = React.HTMLAttributes & {\n controlledCurrency?: string\n hasCurrencyAndLang?: boolean\n lang: Lang\n navSections: NavSection[]\n withRedirectParam?: boolean\n}\n\nfunction FooterComponent({\n controlledCurrency,\n lang,\n hasCurrencyAndLang = true,\n navSections,\n withRedirectParam,\n ...props\n}: FooterProps): React.ReactElement {\n return (\n
\n \n\n \n\n \n\n \n\n \n
\n )\n}\n\nconst FooterSeparation = styled.hr`\n border-top: 1px solid ${plume.COLORS.GREY_SHADE_5};\n border-bottom: 0px;\n margin: 0;\n`\n\nexport const Footer = styled(FooterComponent)`\n border-top: 1px solid ${plume.COLORS.GREY_SHADE_5};\n background-color: ${plume.COLORS.PRIMARY_WHITE};\n box-sizing: border-box;\n`\n", "import * as React from 'react'\nimport styled from 'styled-components'\n\nimport * as plume from '@ulule/owl-kit-components/next'\n\nimport { t } from '@owl-nest/localize'\nimport { Lang } from '@owl-nest/api-client/latest'\nimport * as hooks from '@owl-nest/hooks'\nimport { MetaSettingDropdown } from '@owl-nest/metasettings'\nimport * as env from '@owl-nest/config'\n\nimport { AccordionSection } from './AccordionSection'\nimport { NavSection } from '../baseConfig'\nimport { footerBreakpoint } from './constants'\n\ntype BodyProps = {\n className?: string\n controlledCurrency?: string\n hasCurrencyAndLang: boolean\n lang: Lang\n navSections: NavSection[]\n withRedirectParam?: boolean\n}\n\nconst PROMISE = Promise.all([env.ALLOWED_LANGUAGES, env.ALLOWED_CURRENCIES])\n\nfunction BodyComponent({\n className,\n controlledCurrency,\n lang,\n navSections,\n hasCurrencyAndLang,\n withRedirectParam,\n}: BodyProps): React.ReactElement {\n const settings = hooks.useUserConfig(env.ULULE_ORIGINS[lang])\n\n const promiseStatus = hooks.useAwait(PROMISE)\n\n const currentLanguage = settings.data?.lang\n const currentCurrency = controlledCurrency ?? settings.data?.currency\n\n if (promiseStatus.status !== hooks.AwaitStatus.SUCCESS) {\n return <>\n }\n\n const languages = promiseStatus.success[0]\n const currencies = promiseStatus.success[1]\n\n return (\n
\n {hasCurrencyAndLang && (\n \n {t('Language and site currency')}\n {currentCurrency && currentLanguage && (\n \n )}\n \n )}\n \n {navSections.map((navConfig, i) => {\n return
\n })}\n \n
\n )\n}\n\ntype SectionProps = {\n lang: Lang\n navConfig: NavSection\n}\n\nfunction Section({ navConfig, lang }: SectionProps) {\n return (\n {navConfig.title} : navConfig.title}>\n \n {navConfig.items\n .filter((navConfig) => {\n if (navConfig.language) {\n return lang === navConfig.language\n }\n return true\n })\n .map((item, i) => {\n return (\n \n \n {item.label}\n \n \n )\n })}\n \n \n )\n}\n\nconst LangAndCurrencyWrapper = styled.div<{ lang: string }>`\n align-items: end;\n display: flex;\n flex-wrap: wrap;\n margin-bottom: 29px;\n\n ${plume.styles.copy.S} {\n /* HACK: Irregular font manipulation. We'll be adding copy.S.semiBold, so this is just by anticipation. */\n color: ${plume.COLORS.GREY_SHADE_2};\n font-weight: 600;\n margin-bottom: 16px;\n margin-right: 18px;\n min-width: 100%;\n }\n\n ${plume.Dropdown} {\n margin-right: 16px;\n }\n\n @media screen and ${(props) => footerBreakpoint(props.lang)} {\n display: flex;\n flex-wrap: nowrap;\n\n ${plume.styles.copy.S} {\n margin-bottom: 0px;\n min-width: auto;\n }\n }\n`\n\nconst LinkItem = styled(plume.styles.copy.S)<{ lang: string }>`\n margin-bottom: 16px;\n\n ${plume.Link} {\n font-weight: 400; //HACK: irregular font manipulation\n }\n\n &:first-child {\n margin-top: 16px;\n }\n\n @media screen and ${(props) => footerBreakpoint(props.lang)} {\n margin-left: 0px;\n margin-bottom: 8px;\n }\n`\n\nconst LinkList = styled.ul`\n margin: 0;\n padding: 0;\n list-style: none;\n`\n\nconst LinkColumn = styled(AccordionSection)<{ lang: string }>`\n margin-bottom: 15px;\n\n @media screen and ${(props) => footerBreakpoint(props.lang)} {\n margin-bottom: 0px;\n }\n`\n\nconst Sections = styled.div<{ lang: string }>`\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n\n @media screen and ${(props) => footerBreakpoint(props.lang)} {\n flex-direction: row;\n }\n`\n\nexport const Body = styled(BodyComponent)<{ lang: Lang }>`\n margin: 0 auto;\n max-width: 450px;\n padding: 33px 20px 0;\n\n @media screen and ${(props) => footerBreakpoint(props.lang)} {\n max-width: ${({ lang }) => (lang === 'fr' ? '900px' : '700px')};\n padding: 30px 0 20px 0;\n }\n`\n", "import * as React from 'react'\nimport styled from 'styled-components'\n\nimport * as plume from '@ulule/owl-kit-components/next'\n\nimport { footerBreakpoint } from './constants'\n\ntype AccordionSectionProps = {\n title: React.ReactNode\n id?: string\n children: React.ReactNode\n className?: string\n}\n\nfunction AccordionSectionComponent({\n title,\n id,\n children,\n className,\n}: AccordionSectionProps): React.ReactElement {\n return (\n \n {children}\n \n )\n}\nexport const AccordionSection = styled(AccordionSectionComponent)<{ lang: string }>`\n ${plume.styles.accordion.Title} {\n a {\n color: inherit;\n pointer-events: none;\n text-decoration: none;\n }\n }\n\n @media screen and ${(props) => footerBreakpoint(props.lang)} {\n border: 0;\n padding: 0;\n\n ${plume.styles.accordion.Title} {\n cursor: default;\n a {\n pointer-events: all;\n cursor: pointer;\n }\n }\n\n ${plume.styles.accordion.Content} {\n max-height: max-content;\n }\n\n ${plume.glyphs.Icon} {\n display: none !important;\n }\n\n ${plume.styles.accordion.Toggler}:checked ~ {\n ${plume.glyphs.Icon} {\n display: none !important;\n }\n }\n }\n`\n", "import * as plume from '@ulule/owl-kit-components/next'\n\nexport function footerBreakpoint(locale: string) {\n return locale === 'fr' ? plume.BREAKPOINTS.LAPTOP : plume.BREAKPOINTS.TABLET\n}\n", "import * as React from 'react'\nimport styled from 'styled-components'\n\nimport * as plume from '@ulule/owl-kit-components/next'\nimport * as api from '@owl-nest/api-client/latest'\nimport { t } from '@owl-nest/localize'\nimport * as env from '@owl-nest/config'\n\nimport { footerBreakpoint } from './constants'\n\ntype ToesProps = {\n className?: string\n lang: api.Lang\n}\n\nfunction ToesComponent({ className, lang }: ToesProps) {\n return (\n
\n \n \n \n\n \n
  • \n \n \n \n
  • \n
  • \n \n \n \n
  • \n
  • \n \n \n \n
  • \n
  • \n \n \n \n
  • \n
  • \n \n \n \n
  • \n
    \n\n \n \n {t('Terms of use')}\n \n \n {t('Cookies')}\n \n \n {t('Privacy')}\n \n \n
    \n )\n}\nexport const Toes = styled(ToesComponent)<{ lang: string }>`\n align-items: center;\n display: flex;\n flex-direction: column;\n justify-content: center;\n margin: 0px auto;\n padding: 33px 0;\n position: relative;\n\n @media screen and ${(props) => footerBreakpoint(props.lang)} {\n align-items: center;\n display: grid;\n grid-template-columns: repeat(3, 1fr);\n margin: 0px auto;\n max-width: 900px;\n min-height: 68px;\n padding: 0;\n width: 100%;\n }\n`\n\nconst LogoLink = styled.a`\n color: ${plume.COLORS.PRIMARY_BLACK};\n\n &:hover {\n color: ${plume.COLORS.PRIMARY_BLACK};\n }\n`\n\nconst LinkItem = styled(plume.styles.copy.XS)`\n margin: 0 6px;\n font-weight: 400; // HACK: Irregular font manipulation. We'll be adding copy.S.regular, so this is just by anticipation.\n\n ${plume.Link} {\n display: block;\n height: fit-content;\n line-height: 0;\n }\n`\n\nconst SocialLinks = styled.ul<{ lang: string }>`\n align-items: center;\n display: flex;\n flex-direction: row;\n height: fit-content;\n justify-content: space-between;\n list-style: none;\n margin: 25px 0 0;\n padding: 0;\n width: 185px;\n\n ${plume.glyphs.Icon} {\n color: ${plume.COLORS.PRIMARY_BLACK};\n display: inline-block;\n fill-rule: evenodd;\n vertical-align: baseline;\n }\n\n ${plume.glyphs.thirdParty.Youtube} {\n position: relative;\n top: 2px;\n }\n\n @media screen and ${(props) => footerBreakpoint(props.lang)} {\n margin: 0 auto;\n }\n`\n\nconst LegalLinks = styled.ul<{ lang: string }>`\n align-items: center;\n color: ${plume.COLORS.PRIMARY_BLACK_HOVER};\n font-weight: 400; // HACK: Irregular font manipulation\n display: flex;\n flex-direction: row;\n justify-content: space-between;\n list-style: none;\n margin: 0;\n padding: 0;\n margin-top: 25px;\n\n @media screen and ${(props) => footerBreakpoint(props.lang)} {\n margin: 0;\n justify-content: end;\n }\n`\n", "import * as React from 'react'\nimport styled from 'styled-components'\n\nimport * as plume from '@ulule/owl-kit-components/next'\nimport * as api from '@owl-nest/api-client/latest'\nimport { t } from '@owl-nest/localize'\nimport * as env from '@owl-nest/config'\n\nimport { footerBreakpoint } from './constants'\n\ntype ManifestoProps = {\n className?: string\n lang: api.Lang\n}\n\nfunction ManifestoComponent({ className, lang }: ManifestoProps) {\n return (\n
    \n {t('Proudly B Corp since 2015')}\n {lang === 'fr' ? : }\n\n \n {t('Read our manifesto')}\n \n
    \n )\n}\n\nexport const Manifesto = styled(ManifestoComponent)`\n align-items: center;\n display: flex;\n flex-wrap: wrap;\n justify-content: center;\n margin: 25px 0;\n\n @media screen and ${(props) => footerBreakpoint(props.lang)} {\n margin: 15px 0;\n }\n\n ${plume.Link} {\n align-items: center;\n display: flex;\n font-size: 13px; // HACK: Irregular font manipulation\n justify-content: center;\n margin-top: 21px;\n text-align: center;\n width: 100%;\n\n @media screen and ${(props) => footerBreakpoint(props.lang)} {\n margin: 15px 0;\n width: fit-content;\n }\n }\n\n ${plume.styles.heading.XXXXXS} {\n text-transform: none; // HACK: Irregular font manipulation\n font-weight: 500; // HACK: Irregular font manipulation\n font-size: 13px; // HACK: Irregular font manipulation\n color: ${plume.COLORS.PRIMARY_BLACK}; // HACK: Irregular font manipulation\n text-align: center;\n max-width: 350px;\n\n @media screen and ${plume.BREAKPOINTS.MOBILE_L} {\n text-align: right;\n }\n }\n\n ${plume.logos.bcorp.FrLogo}, ${plume.logos.bcorp.EnLogo} {\n margin: 0 15px;\n }\n`\n", "import * as api from '@owl-nest/api-client/latest'\nimport { t } from '@owl-nest/localize'\nimport * as env from '@owl-nest/config'\n\nexport type NavSection = {\n items: {\n label: string\n href: string\n openInNewTab?: boolean\n language?: api.Lang\n }[]\n title: string\n href?: string\n}\n\nexport type NavSections = NavSection[]\n\nexport function getNavSectionList(lang: api.Lang): NavSections {\n if (lang === 'fr') {\n return [\n {\n title: 'Ulule Crowdfunding',\n href: 'https://fr.ulule.com',\n items: [\n {\n label: t('Start a fundraising'),\n href: `${env.ULULE_ORIGINS[lang]}/projects/create/`,\n },\n {\n label: 'Voir toutes les collectes',\n href: `${env.ULULE_ORIGINS[lang]}/discover/`,\n },\n {\n label: 'Appels \u00E0 projets',\n href: `${env.ULULE_ORIGINS[lang]}/pages/appel-a-projet/`,\n },\n {\n label: 'Foire aux questions',\n href: 'https://support.ulule.com/hc/fr-fr',\n openInNewTab: true,\n },\n {\n label: 'Bo\u00EEte \u00E0 outils',\n href: `https://outils.ulule.com/`,\n },\n {\n label: 'Les bases du crowdfunding',\n href: 'https://outils.ulule.com/guides/comprendre-crowdfunding-financement-participatif',\n },\n {\n label: 'Bons plans',\n href: 'https://outils.ulule.com/bons-plans',\n },\n {\n label: 'Logo / Kits de campagne',\n href: 'https://ulule.frontify.com/d/EX3dK8qsXgqh/branding-guidelines?#/basics/logotype',\n openInNewTab: true,\n },\n {\n label: 'Statistiques',\n href: `${env.ULULE_ORIGINS[lang]}/stats/`,\n },\n ],\n },\n {\n title: 'Ulule Formation',\n href: 'https://formation.ulule.com',\n items: [\n {\n label: 'Formation entrepreneuriat',\n href: `https://formation.ulule.com/formations/entrepreneuriat`,\n },\n {\n label: 'Formation crowdfunding',\n href: 'https://formation.ulule.com/formations/crowdfunding',\n },\n {\n label: 'Formation marketing digital',\n href: 'https://formation.ulule.com/formations/webmarketing',\n },\n {\n label: 'Bilan de comp\u00E9tences',\n href: 'https://formation.ulule.com/formations/bilan-de-competences',\n },\n {\n label: 'Financer ma formation',\n href: 'https://formation.ulule.com/financer-formation',\n },\n {\n label: 'Ateliers en entreprise',\n href: 'https://partenaires.ulule.com/formations-entreprise',\n },\n {\n label: 'Fresque du climat',\n href: 'https://partenaires.ulule.com/formations/fresque-du-climat',\n },\n {\n label: 'Atelier 2 tonnes',\n href: `https://partenaires.ulule.com/formations/2-tonnes`,\n },\n {\n label: 'Reconversion',\n href: 'https://formation.ulule.com/reconversion',\n },\n ],\n },\n {\n title: 'Ulule Boutique',\n href: 'https://boutique.ulule.com',\n items: [\n {\n label: 'Id\u00E9es cadeaux',\n href: 'https://boutique.ulule.com/idees-cadeaux',\n },\n {\n label: 'S\u00E9lection du moment',\n href: 'https://boutique.ulule.com/produits',\n },\n {\n label: 'Bonnes affaires',\n href: 'https://boutique.ulule.com/produits?hasCompareAtPrice=true',\n },\n {\n label: 'Newsletter Bien ou Bien',\n href: 'https://www.bienoubien.com/infolettre',\n openInNewTab: true,\n },\n {\n label: 'Guide des marques engag\u00E9es',\n href: 'https://www.bienoubien.com/',\n openInNewTab: true,\n },\n ],\n },\n {\n title: '\u00C0 propos d\u2019Ulule',\n items: [\n {\n label: 'D\u00E9couvrir Ulule',\n href: `${env.ULULE_ORIGINS[lang]}/pages/discover/`,\n },\n {\n label: 'Nous contacter',\n href: `${env.ULULE_ORIGINS[lang]}/about/contact/`,\n },\n {\n label: 'Visite vid\u00E9o',\n href: `${env.ULULE_ORIGINS[lang]}/pages/visite`,\n },\n {\n label: 'Devenir partenaire',\n href: 'https://partenaires.ulule.com/',\n },\n {\n label: 'Organiser un appel \u00E0 projets',\n href: 'https://partenaires.ulule.com/organiser-appel-projets',\n },\n {\n label: 'API',\n href: 'https://developers.ulule.com/',\n },\n {\n label: '\u00C9quipe',\n href: `${env.ULULE_ORIGINS[lang]}/about/team/`,\n },\n {\n label: 'Presse',\n href: `${env.ULULE_ORIGINS[lang]}/about/press/`,\n },\n {\n label: 'Newsletter',\n href: `${env.ULULE_ORIGINS[lang]}/newsletter/`,\n },\n ],\n },\n ]\n } else {\n return [\n {\n title: t('Help and resources'),\n items: [\n {\n label: t('Start a fundraising'),\n href: `${env.ULULE_ORIGINS[lang]}/projects/create?utm_source=ulule&utm_medium=footer&utm_campaign=bas_de_homepage`,\n },\n {\n label: t('FAQ'),\n href: `https://support.ulule.com/hc/`,\n },\n {\n label: t('Contact us'),\n href: `${env.ULULE_ORIGINS[lang]}/about/contact-us?utm_source=ulule&utm_medium=footer&utm_campaign=bas_de_homepage`,\n },\n {\n label: t('Statistics'),\n href: `${env.ULULE_ORIGINS[lang]}/stats?utm_source=ulule&utm_medium=footer&utm_campaign=bas_de_homepage`,\n },\n {\n label: t('Open API'),\n href: 'https://developers.ulule.com?utm_source=ulule&utm_medium=footer&utm_campaign=bas_de_homepage',\n },\n {\n label: t('Branding guidelines'),\n href: `https://ulule.frontify.com`,\n },\n ],\n },\n {\n title: t('Focus on'),\n items: [\n /* HACK: Cannot solely rely on i18n.get() on ulule/next since it depends on \"ufe.locale\", which doesn't reflect the real-world value. */\n {\n label: t('How works Ulule?'),\n href: {\n ca: 'https://community.ulule.com/topics/guia-de-creacion-de-tu-campana-de-crowdfunding-16917/#main-30775?utm_source=ulule&utm_medium=footer&utm_campaign=bas_de_homepage',\n de: 'https://support.ulule.com/hc/de-de/articles/211812489',\n en: 'https://support.ulule.com/hc/en-us/articles/211812489-What-is-Ulule-',\n es: 'https://community.ulule.com/topics/guia-de-creacion-de-tu-campana-de-crowdfunding-16917/#main-30775?utm_source=ulule&utm_medium=footer&utm_campaign=bas_de_homepage',\n fr: 'https://formations.ulule.com/bilan-de-competences?utm_source=ulule&utm_medium=footer&utm_campaign=bas_de_homepage',\n it: 'https://community.ulule.com/topics/tre-cerchi-del-finanziamento-collettivo-crowdfunding-8749?utm_source=ulule&utm_medium=footer&utm_campaign=bas_de_homepage',\n nl: 'https://support.ulule.com/hc/nl/articles/211812489-Ulule-wat-is-dat-',\n pt: 'https://support.ulule.com/hc/pt-pt/articles/211812489',\n }[lang],\n },\n {\n label: t('Supported countries'),\n href: {\n ca: 'https://support.ulule.com/hc/ca/articles/10510451394449-Quina-%C3%A9s-la-difer%C3%A8ncia-entre-els-m%C3%A8todes-de-recaptaci%C3%B3-de-fons',\n de: 'https://support.ulule.com/hc/de-de/articles/212423305',\n en: 'https://support.ulule.com/hc/en-us/articles/212423305-From-which-country-can-I-start-a-crowdfunding-campaign-on-Ulule-',\n es: 'https://support.ulule.com/hc/es-es/articles/10510451394449--Cu%C3%A1l-es-la-diferencia-entre-los-tres-m%C3%A9todos-de-recaudaci%C3%B3n',\n fr: 'https://formations.ulule.com/crowdfunding?utm_source=ulule&utm_medium=footer&utm_campaign=bas_de_homepage',\n it: 'https://community.ulule.com/topics/le-campagne-di-crowdfunding-e-il-loro-obiettivo-finanziario-come-calcolarlo-e-quando-perche-applicare-la-strategia-dello-step-by-step-13945?utm_source=ulule&utm_medium=footer&utm_campaign=bas_de_homepage',\n nl: 'https://support.ulule.com/hc/nl/articles/212423305-Vanuit-welk-land-mag-ik-een-campagne-lanceren-op-Ulule-',\n pt: 'https://support.ulule.com/hc/pt-pt/articles/212423305',\n }[lang],\n },\n {\n label: t('Eligible projects'),\n href: {\n ca: 'https://support.ulule.com/hc/ca/articles/212423325',\n de: 'https://support.ulule.com/hc/de-de/articles/212423325',\n en: 'https://support.ulule.com/hc/en-us/articles/212423325-What-kinds-of-projects-are-eligible-',\n es: 'https://support.ulule.com/hc/es-es/articles/212423325',\n fr: 'https://formations.ulule.com/formation-webmarketing?utm_source=ulule&utm_medium=footer&utm_campaign=bas_de_homepage',\n it: 'https://community.ulule.com/topics/il-retroplanning-per-aumentare-le-chance-di-successo-della-propria-campagna-di-crowdfunding-9962?utm_source=ulule&utm_medium=footer&utm_campaign=bas_de_homepage',\n nl: 'https://support.ulule.com/hc/nl/articles/212423325-Welke-projecten-komen-in-aanmerking-',\n pt: 'https://support.ulule.com/hc/pt-pt/articles/212423325',\n }[lang],\n },\n ],\n },\n {\n title: t('About ulule'),\n items: [\n {\n label: t('Discover Ulule'),\n href: `${env.ULULE_ORIGINS[lang]}/pages/discover/?utm_source=ulule&utm_medium=footer&utm_campaign=bas_de_homepage`,\n },\n {\n label: 'Ulule partners',\n href: `https://partenaires.ulule.com/espana`,\n language: 'es',\n },\n {\n label: 'Ulule partners',\n href: `https://partenaires.ulule.com/espana`,\n language: 'ca',\n },\n {\n label: t('Team'),\n href: `${env.ULULE_ORIGINS[lang]}/about/team?utm_source=ulule&utm_medium=footer&utm_campaign=bas_de_homepage`,\n },\n ],\n },\n ]\n }\n}\n", "export { Footer } from './footer/Footer'\nexport * from './modals/ProjectSubmissionModal'\nexport { PreviewBar } from './PreviewBar'\nexport { getNavSectionList, type NavSection } from './baseConfig'\n", "import * as React from 'react'\nimport styled from 'styled-components'\n\nimport { t } from '@owl-nest/localize'\nimport * as plume from '@ulule/owl-kit-components/next'\n\nimport { SubmitForm } from './SubmitForm'\nimport { SubmitSuccess } from './SubmitSuccess'\nimport type { Project, SubmitFormValue } from './types'\n\nenum Status {\n PRISTINE = 'PRISTINE',\n SUBMITTED = 'SUBMITTED',\n SUCCESS = 'SUCCESS',\n FAILURE = 'FAILURE',\n}\n\ntype ProjectSubmissionModalProps = {\n onClose: () => void\n onSuccessClose?: () => void\n onSubmit: (value: SubmitFormValue) => Promise\n open: boolean\n project: Project\n}\n\nexport function ProjectSubmissionModal({\n onClose,\n onSuccessClose,\n onSubmit,\n open,\n project,\n}: ProjectSubmissionModalProps): React.ReactElement {\n const [status, setStatus] = React.useState(Status.PRISTINE)\n const manager = project.manager\n\n return (\n }\n svgScale={0.9}\n >\n {status === Status.PRISTINE ? (\n <>\n \n {t('Later')}\n \n ) : (\n status === Status.SUCCESS && (\n <>\n \n \n {t('Back to project')}\n \n \n )\n )}\n \n )\n\n async function handleSubmit(values: SubmitFormValue) {\n const promise = onSubmit(values)\n setStatus(Status.SUBMITTED)\n\n const status = await promise\n setStatus(status ? Status.SUCCESS : Status.FAILURE)\n }\n}\n\nconst ProjectSubmissionModalWrapper = styled(plume.ModalWithIcon)`\n ${plume.styles.modal.Body} {\n display: flex;\n flex-direction: column;\n justify-content: center;\n }\n`\n", "import * as React from 'react'\nimport * as formik from 'formik'\nimport styled from 'styled-components'\n\nimport * as plume from '@ulule/owl-kit-components/next'\n\nimport * as yup from '@owl-nest/validators'\nimport { t } from '@owl-nest/localize'\nimport { SubmitFormValue } from './types'\n\ntype SubmitFormProps = {\n onSubmit: (values: SubmitFormValue) => void\n}\n\nconst schema = yup.object().shape({\n message: yup.string().max(500).required(),\n})\n\nexport function SubmitForm({ onSubmit }: SubmitFormProps): React.ReactElement {\n const initialValues: SubmitFormValue = {\n message: t(`Hello team, I\u2019ve completed my project!`),\n }\n\n return (\n \n initialValues={initialValues}\n onSubmit={onSubmit}\n validationSchema={schema}\n validateOnChange={false}\n validateOnBlur={false}\n >\n {(formikBag) => {\n return (\n
    \n {t('Submit for review')}\n\n {t('Leave any comments, messages, questions for your coach.')}\n\n \n {({ field, meta }: formik.FieldProps) => {\n return (\n \n )\n }}\n \n\n \n {formikBag.isSubmitting ? : t('Submit')}\n \n
    \n )\n }}\n \n )\n}\n\nconst Form = styled.form`\n text-align: center;\n\n ${plume.styles.heading.XS} {\n margin-bottom: 25px;\n }\n\n ${plume.styles.copy.S} {\n margin-bottom: 10px;\n }\n\n ${plume.Button} {\n width: 100%;\n margin-top: 17px;\n }\n`\n", "import * as React from 'react'\nimport styled from 'styled-components'\n\nimport * as api from '@owl-nest/api-client/latest'\nimport * as model from '@owl-nest/models'\nimport * as plume from '@ulule/owl-kit-components/next'\nimport { t } from '@owl-nest/localize'\n\ntype SubmitSuccessProps = {\n manager?: api.PublicUser\n}\n\nexport function SubmitSuccess({ manager }: SubmitSuccessProps): React.ReactElement {\n return (\n \n {t('Project sent for review')}\n\n \n {t('Your project was successfully sent to %(manager)s, who will review it and get back to you shortly.', {\n manager: manager !== undefined ? model.user.fullName(manager) : 'team',\n })}\n \n\n \n {t('How does review work?')}\n \n \n )\n}\n\nconst SubmitSuccessWrapper = styled.div`\n align-items: center;\n display: flex;\n flex-direction: column;\n text-align: center;\n\n ${plume.ButtonAsLink} {\n margin-top: 15px;\n }\n\n ${plume.styles.heading.XS} {\n margin: 10px 0 20px;\n }\n`\n", "import * as React from 'react'\nimport styled from 'styled-components'\n\nimport { t } from '@owl-nest/localize'\nimport * as plume from '@ulule/owl-kit-components/next'\n\ntype PreviewBarProps = {\n previousEditionPath: string\n onShare?: () => void\n translations?: {\n backToEdition: string\n }\n}\n\nexport function PreviewBar({ previousEditionPath, onShare, translations }: PreviewBarProps): React.ReactElement {\n return (\n \n
    \n \n \n {translations?.backToEdition ?? t('Back to project edition')}\n \n
    \n\n \n \n {t('Preview')}\n \n \n\n {onShare && (\n
    \n \n {t('Share your project')}\n \n \n
    \n )}\n
    \n )\n}\n\nconst HiddenOnMobile = styled.span`\n display: none;\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n display: inline;\n }\n`\n\nconst Wrapper = styled.div`\n display: flex;\n justify-content: space-between;\n background-color: ${plume.COLORS.hexToRgb(plume.COLORS.BRAND_YELLOW, 0.5)};\n padding: 12px;\n position: relative;\n pointer-events: all;\n\n ${plume.glyphs.Icon} {\n margin: 0 8px;\n }\n\n ${plume.glyphs.stroke.Read} {\n position: relative;\n top: -1px;\n }\n\n ${plume.styles.heading.XXXXS} {\n color: ${plume.COLORS.PRIMARY_GREY_900};\n margin-bottom: 5px;\n line-height: unset;\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n margin: 0px;\n }\n }\n\n ${plume.Link}, ${plume.LinkAsButton} {\n text-decoration: none;\n font-weight: 500;\n padding: 0;\n\n &:hover {\n color: ${plume.COLORS.PRIMARY_BLUE_700};\n }\n }\n`\n\nconst CenterSlot = styled.div`\n position: absolute;\n left: 50%;\n transform: translateX(-50%);\n width: 70%;\n text-align: center;\n`\n"], "mappings": "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", "names": ["init_define_process_env", "init_sentry_release_injection_stub", "React", "init_define_process_env", "init_sentry_release_injection_stub", "React", "init_define_process_env", "init_sentry_release_injection_stub", "React", "init_define_process_env", "init_sentry_release_injection_stub", "footerBreakpoint", "locale", "breakpoints_exports", "AccordionSectionComponent", "title", "id", "children", "className", "Accordion", "_a", "AccordionSection", "src_default", "__template", "styles_exports", "props", "footerBreakpoint", "glyphs_exports", "PROMISE", "ALLOWED_LANGUAGES", "ALLOWED_CURRENCIES", "BodyComponent", "className", "controlledCurrency", "lang", "navSections", "hasCurrencyAndLang", "withRedirectParam", "_a", "_b", "settings", "useUserConfig", "ULULE_ORIGINS", "promiseStatus", "useAwait", "currentLanguage", "currentCurrency", "languages", "currencies", "LangAndCurrencyWrapper", "styles_exports", "MetaSettingDropdown", "Sections", "navConfig", "i", "Section", "LinkColumn", "LinkList", "item", "LinkItem", "Link", "src_default", "__template", "colors_exports", "Dropdown", "props", "footerBreakpoint", "_c", "_d", "AccordionSection", "_e", "_f", "Body", "init_define_process_env", "init_sentry_release_injection_stub", "React", "ToesComponent", "className", "lang", "_a", "LogoLink", "ULULE_ORIGINS", "logos_exports", "SocialLinks", "Link", "FACEBOOK_ACCOUNTS", "glyphs_exports", "LegalLinks", "LinkItem", "Toes", "src_default", "__template", "props", "footerBreakpoint", "_b", "colors_exports", "_c", "styles_exports", "_d", "_e", "init_define_process_env", "init_sentry_release_injection_stub", "React", "ManifestoComponent", "className", "lang", "styles_exports", "logos_exports", "Link", "ULULE_ORIGINS", "_a", "Manifesto", "src_default", "__template", "props", "footerBreakpoint", "colors_exports", "breakpoints_exports", "FooterComponent", "_a", "_b", "controlledCurrency", "lang", "hasCurrencyAndLang", "navSections", "withRedirectParam", "props", "__objRest", "__spreadValues", "Body", "FooterSeparation", "Manifesto", "Toes", "src_default", "__template", "colors_exports", "Footer", "init_define_process_env", "init_sentry_release_injection_stub", "getNavSectionList", "lang", "ULULE_ORIGINS", "init_define_process_env", "init_sentry_release_injection_stub", "init_define_process_env", "init_sentry_release_injection_stub", "React", "init_define_process_env", "init_sentry_release_injection_stub", "React", "schema", "create$3", "create$6", "SubmitForm", "onSubmit", "initialValues", "Formik", "formikBag", "Form", "styles_exports", "Field", "field", "meta", "TextAreaField", "Button", "Spinner", "_a", "src_default", "__template", "init_define_process_env", "init_sentry_release_injection_stub", "React", "SubmitSuccess", "manager", "SubmitSuccessWrapper", "styles_exports", "user_exports", "ButtonAsLink", "_a", "src_default", "__template", "ProjectSubmissionModal", "onClose", "onSuccessClose", "onSubmit", "open", "project", "status", "setStatus", "manager", "ProjectSubmissionModalWrapper", "illustrations_exports", "SubmitForm", "handleSubmit", "LinkAsButton", "SubmitSuccess", "values", "promise", "_a", "src_default", "ModalWithIcon", "__template", "styles_exports", "init_define_process_env", "init_sentry_release_injection_stub", "React", "PreviewBar", "previousEditionPath", "onShare", "translations", "_a", "Wrapper", "styles_exports", "Link", "glyphs_exports", "HiddenOnMobile", "CenterSlot", "LinkAsButton", "src_default", "__template", "breakpoints_exports", "_b", "colors_exports", "_c"] }