{ "version": 3, "sources": ["../../../../../../internal/esbuild/entrypoints/modern/proposals.ts", "sentry-debug-id-stub:_sentry-debug-id-injection-stub?sentry-module-id=7258f17d-3884-4841-9d5c-7b7dd5bc226f", "../../../../../../internal/esbuild/entrypoints/modern/proposals.ts", "../../../../../../owl-nest/ulule/features/proposals/src/index.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/App.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/Layout/index.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/Layout/Header.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/UFE.ts", "../../../../../../owl-nest/ulule/features/proposals/src/Layout/Aside.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/Layout/Footer.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/components/Carousel.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/components/ImageMedia.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/data/carousel.ts", "../../../../../../owl-nest/ulule/features/proposals/src/Layout/PartnerFooter.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/data/partners.ts", "../../../../../../owl-nest/ulule/features/proposals/src/Layout/WideFooter.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/components/CommentCarousel.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/components/CommentCard.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/data/comments.ts", "../../../../../../owl-nest/ulule/features/proposals/src/Layout/Services.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/Duplicate/index.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/hooks/useDuplicate.ts", "../../../../../../owl-nest/ulule/features/proposals/src/hooks/useProposalForm.ts", "../../../../../../owl-nest/ulule/features/proposals/src/hooks/useProposal.ts", "../../../../../../owl-nest/ulule/features/proposals/src/views/FormCreate/index.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/FormCreate/Section.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/FormCreate/DescriptionField.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/FormCreate/GoalField.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/FormCreate/types.ts", "../../../../../../owl-nest/ulule/features/proposals/src/views/FormCreate/rangeLabels.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/FormCreate/RewardTypeField.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/FormCreate/LegalEntityField.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/FormCreate/LinksField.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/FormCreate/createSocialLink.ts", "../../../../../../owl-nest/ulule/features/proposals/src/views/FormCreate/PhoneField.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/FormCreate/EmailField.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/FormCreate/SocialLinkModal.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/FormCreate/LocationModal.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/FormCreate/CommunityField.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/Loading/index.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/Loading/Progress.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/Loading/useLoadingProgress.ts", "../../../../../../owl-nest/ulule/features/proposals/src/views/Loading/PollState.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/Loading/LinkState.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/Loading/DoneState.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/Loading/DuplicateState.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/Loading/StaffDuplicateState.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/Loading/Connect.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/Refused.tsx", "../../../../../../owl-nest/ulule/features/proposals/src/views/StaffDuplicate.tsx"], "sourcesContent": ["\n import \"_sentry-debug-id-injection-stub\";\n import * as OriginalModule from \"./internal/esbuild/entrypoints/modern/proposals.ts\";\n export default OriginalModule.default;\n export * from \"./internal/esbuild/entrypoints/modern/proposals.ts\";", ";{try{let e=\"undefined\"!=typeof window?window:\"undefined\"!=typeof global?global:\"undefined\"!=typeof globalThis?globalThis:\"undefined\"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]=\"a6f47cbb-44f9-4ef8-8b80-307f741039f2\",e._sentryDebugIdIdentifier=\"sentry-dbid-a6f47cbb-44f9-4ef8-8b80-307f741039f2\")}catch(e){}};", "import '@owl-nest/polyfill'\nimport '@owl-nest/proposals'\n", "import * as React from 'react'\nimport * as ReactDOM from 'react-dom/client'\n\nimport { initializeLocalization } from '@owl-nest/localize'\nimport * as logger from '@owl-nest/logger'\nimport { LegacyCompatibleHeader as Header } from '@ulule/header'\nimport * as layout from '@owl-nest/layout'\nimport * as env from '@owl-nest/config'\n\nimport { App } from './App'\n\nfunction renderHeader(): void {\n const headerContainer = document.querySelector('#react-ulule-header')\n\n if (headerContainer) {\n const headerRoot = ReactDOM.createRoot(headerContainer)\n headerRoot.render(
)\n } else {\n logger.err('Header container is missing')\n }\n}\n\nfunction renderFooter(): void {\n const userConfig = env.getUserConfig()\n const footerContainer = document.querySelector('#react-ulule-footer')\n\n if (footerContainer) {\n const footerRoot = ReactDOM.createRoot(footerContainer)\n footerRoot.render()\n } else {\n logger.err('Footer container is missing')\n }\n}\n\nasync function mount(): Promise {\n await env.initUserConfig()\n const userConfig = env.getUserConfig()\n\n await initializeLocalization(userConfig.lang, env.LOCALE_FILES[userConfig.lang])\n\n const appContainer = document.querySelector('#js-app-proposal')\n\n if (appContainer) {\n const appRoot = ReactDOM.createRoot(appContainer)\n appRoot.render()\n }\n\n renderHeader()\n renderFooter()\n}\n\nmount().catch(console.log)\n", "import * as React from 'react'\nimport { Route, Routes, BrowserRouter, useLocation } from 'react-router-dom'\nimport { Layout } from './Layout'\nimport { Duplicate } from './views/Duplicate'\n\nimport { FormCreate } from './views/FormCreate'\nimport { Loading } from './views/Loading'\nimport { Refused } from './views/Refused'\nimport { StaffDuplicate } from './views/StaffDuplicate'\n\nexport function App() {\n return (\n \n \n \n \n } />\n } />\n } />\n } />\n } />\n \n \n \n \n )\n}\n\ntype BackToTopProps = { children: React.ReactNode }\n\nfunction BackToTop({ children }: BackToTopProps) {\n const location = useLocation()\n\n React.useEffect(() => {\n window.scrollTo(0, 0)\n }, [location])\n\n return <>{children}\n}\n", "import * as React from 'react'\nimport styled, { createGlobalStyle } from 'styled-components'\n\nimport * as plume from '@ulule/owl-kit-components/next'\nimport * as env from '@owl-nest/config'\n\nimport { Header } from './Header'\nimport { Aside } from './Aside'\nimport { Footer } from './Footer'\nimport { PartnerFooter } from './PartnerFooter'\nimport { WideFooter } from './WideFooter'\nimport { Services } from './Services'\n\nexport type LayoutProps = {\n children: React.ReactNode\n}\n\nexport function Layout({ children }: LayoutProps): React.ReactElement {\n const userConfig = env.useUserEnv()\n\n if (userConfig.lang === 'fr') {\n return (\n <>\n \n \n \n {children}\n \n {/* */}\n \n\n \n\n \n \n \n\n \n \n )\n } else {\n return (\n <>\n \n \n \n {children}\n \n {/* */}\n \n \n )\n }\n}\n\nconst GlobalStyle = createGlobalStyle`\n body {\n background-color: ${plume.COLORS.PRIMARY_SAND};\n }\n`\n\nconst GridBase = styled.section`\n max-width: 1221px;\n margin: 30px auto 0;\n padding: 58px 16px 0 16px;\n`\n\nconst Grid = styled(GridBase)`\n @media screen and ${plume.BREAKPOINTS.LAPTOP} {\n margin-top: 60px;\n display: grid;\n grid-template:\n 'header .' auto\n 'main aside' auto\n 'partner partner' auto\n 'footer footer' auto / 3.2fr 2fr;\n }\n`\n\nconst GridFr = styled(GridBase)`\n @media screen and ${plume.BREAKPOINTS.LAPTOP} {\n margin-top: 60px;\n display: grid;\n grid-template:\n 'header .' auto\n 'main aside' auto\n 'partner partner' auto / 3.2fr 2fr;\n }\n`\n\nconst GridFrFooter = styled(GridBase)`\n @media screen and ${plume.BREAKPOINTS.LAPTOP} {\n margin-top: 60px;\n display: grid;\n grid-template: 'footer footer' auto / 3.2fr 2fr;\n }\n`\n\nconst GridHeader = styled(Header)`\n grid-area: header;\n margin-bottom: 32px;\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n margin-left: 56px;\n }\n`\n\nconst GridMain = styled.div`\n grid-area: main;\n padding: 24px 16px;\n background-color: ${plume.COLORS.PRIMARY_WHITE};\n margin: 0 -16px;\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n border-radius: 8px;\n padding: 40px 56px 30px 56px;\n display: flex;\n margin: 0;\n margin-bottom: 50px;\n }\n`\n\nconst GridAside = styled(Aside)`\n grid-area: aside;\n margin: 50px auto 0;\n max-width: 450px;\n\n @media screen and ${plume.BREAKPOINTS.LAPTOP} {\n margin: 0 0 0 60px;\n }\n`\n\nconst GridServices = styled(Services)`\n grid-area: services;\n`\n\nconst GridFooter = styled(Footer)`\n grid-area: footer;\n margin: 0px 124px 50px 124px;\n display: none;\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n display: block;\n }\n`\n\nconst CustomPartnerFooter = styled(PartnerFooter)`\n grid-area: partner;\n margin-bottom: 30px;\n`\n\nconst GridWideFooter = styled(WideFooter)`\n display: none;\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n display: block;\n }\n`\n", "import * as React from 'react'\nimport styled from 'styled-components'\n\nimport { t, tc } from '@owl-nest/localize'\nimport * as plume from '@ulule/owl-kit-components/next'\nimport * as service from '@owl-nest/services'\nimport * as UFE from '../UFE'\nimport { QueryStatus, data } from '@owl-nest/hooks'\n\ntype HeaderProps = React.HTMLAttributes\n\nfunction HeaderComponent(props: HeaderProps): React.ReactElement {\n const usePartner = service.partner.usePartner(UFE.AFFILIATION_ID)\n const partner = data(usePartner.response)\n const isPartnerDefault = partner?.is_default\n const partnerLogo = partner?.logo?.versions?.full?.url\n\n // TODO: MISSING TRAD\n React.useEffect(() => {\n if (usePartner.response.status === QueryStatus.PRISTINE) {\n usePartner.query()\n }\n }, [usePartner.response.status])\n\n return (\n
\n \n {tc('Get started [emphasis: on Ulule]', { emphasis: <Emphasis /> })}\n <ArrowDecoration version=\"1.1\" viewBox=\"0 0 161 183\" xmlns=\"http://www.w3.org/2000/svg\">\n <path\n d=\"m111.04 176.83-1e-3 -0.014c-2e-3 -0.083-0.037-0.179-0.097-0.294-0.027-0.051-0.056-0.103-0.088-0.157-3e-3 -6e-3 -6e-3 -0.011-9e-3 -0.017-0.034-0.059-0.07-0.121-0.101-0.184-1.692-3.416-3.36-6.484-5.619-9.584-0.12-0.166-0.268-0.24-0.414-0.256-0.149-0.016-0.305 0.028-0.435 0.116s-0.226 0.216-0.262 0.356c-0.035 0.137-0.018 0.299 0.098 0.469 1.506 2.216 2.732 4.44 3.871 6.761l0.9 1.648 0.133 0.243-0.276-0.022-1.614-0.128-3e-3 -1e-3c-2.769-0.267-5.484-0.402-8.343-0.265-0.2062 9e-3 -0.3415 0.092-0.4247 0.2-0.0858 0.112-0.1252 0.264-0.1125 0.421 0.0255 0.314 0.2506 0.604 0.6448 0.598l0.0023 0.15c3.8441-0.059 7.3971 0.378 11.189 0.975l0.961-1.015zm0 0 3e-3 0.014c0.047 0.226-0.032 0.416-0.187 0.559l-8e-3 8e-3 -7e-3 9e-3c-0.16 0.201-0.407 0.328-0.738 0.276l0.937-0.866z\"\n fill={plume.COLORS.PRIMARY_BLACK}\n stroke={plume.COLORS.PRIMARY_WHITE}\n strokeWidth=\".3\"\n />\n <path\n d=\"m88.115 16.387c-21.902 2.1335-72.08 36.647-54.355 74.849 17.694 38.137 43.798 9.3581 24.466 6.79-16.039-2.131-33.79 12.662-27.926 27.742 6.5855 16.933 31.648 33.935 67.756 44.404\"\n stroke={plume.COLORS.PRIMARY_BLACK}\n strokeDasharray=\"2 4\"\n strokeLinecap=\"square\"\n strokeWidth=\"1.51\"\n fill=\"none\"\n />\n </ArrowDecoration>\n \n \n \n {t('Take a few minutes to describe it so that we can guide you as well as possible.')}\n \n {!isPartnerDefault && partnerLogo && (\n \n {t('In partnership with')}\n \n \n )}\n
\n )\n}\n\nconst Emphasis = styled.em`\n color: ${plume.COLORS.PRIMARY_BLUE};\n font-style: normal;\n display: block;\n`\n\nconst Title = styled(plume.styles.heading.XL)`\n position: relative;\n\n ${Emphasis} {\n white-space: pre;\n }\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n ${plume.styles.heading._xxLargeStyle}\n }\n`\n\nconst Subtitle = styled(plume.styles.heading.XXS)`\n position: relative;\n\n ${plume.glyphs.decoration.Quote} {\n position: absolute;\n height: 14px;\n left: -22px;\n top: -5px;\n }\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n ${plume.glyphs.decoration.Quote} {\n left: -28px;\n }\n }\n`\n\nconst PartnerLabel = styled(plume.styles.heading.XXXXXS)`\n margin: 0 16px 0 0;\n text-transform: uppercase;\n`\n\nconst PartnerLogo = styled.img`\n max-width: 65px;\n max-height: 65px;\n`\n\nconst PartnerBlock = styled.div`\n display: flex;\n align-items: end;\n`\n\nconst ArrowDecoration = styled.svg`\n position: absolute;\n left: -100px;\n height: 170px;\n top: 113px;\n display: none;\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n display: block;\n }\n`\n\nexport const Header = styled(HeaderComponent)`\n display: grid;\n grid-template: 'title title' auto 'subtitle subtitle' auto 'partner partner' auto / 1fr auto;\n\n ${Title} {\n grid-area: title;\n margin-bottom: 30px;\n }\n\n ${Subtitle} {\n grid-area: subtitle;\n max-width: 480px;\n }\n\n ${PartnerBlock} {\n grid-area: partner;\n justify-self: end;\n }\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n grid-template: 'title title' auto 'subtitle partner' auto / 1fr auto;\n }\n`\n", "import * as api from '@owl-nest/api-client/latest'\nimport { lens } from '@owl-nest/config'\nimport { SrcSet } from './components/ImageMedia'\n\nexport type Country = { content: string; flag: string; prefix: number; value: string }\n\ntype Window = {\n UFE: {\n assets: {\n defaultProjectPicture: string\n rocket: string\n fire: string\n spaceBackground: string\n }\n flags: {}\n gtmKey?: string\n urls: {\n join: string\n }\n user: (api.AuthenticatedUser & { is_authenticated: true }) | { is_authenticated: false }\n }\n PROPOSAL_DATA: {\n extraData: { affiliation_id?: number; partner_id: number }\n images: Record\n islands: Record\n countries: Country[]\n currencies: { content: string; value: string }[]\n }\n}\n\nconst windowLens = lens()\n\nexport const FLAGS = windowLens.get('UFE').get('flags').value(window)\n\nexport const URLS = windowLens.get('UFE').get('urls').value(window, { trust: true })\n\nexport const PROPOSAL_IMAGES = windowLens.get('PROPOSAL_DATA').get('images').value(window, { trust: true })\n\nexport const ISLANDS = windowLens.get('PROPOSAL_DATA').get('islands').value(window, { trust: true })\n\nexport const CURRENCIES = windowLens.get('PROPOSAL_DATA').get('currencies').value(window, { trust: true })\n\nexport const USER = windowLens.get('UFE').get('user').value(window, { trust: true })\n\nexport const GTM_KEY = windowLens.get('UFE').get('gtmKey').value(window, { forgive: true })\n\nexport const AFFILIATION_ID = windowLens\n .get('PROPOSAL_DATA')\n .get('extraData')\n .get('affiliation_id')\n .value(window, { forgive: true, silent: true })\n\nexport const PARTNER_ID = windowLens\n .get('PROPOSAL_DATA')\n .get('extraData')\n .get('partner_id')\n .value(window, { trust: true })\n\nexport const ROCKET_IMAGE = windowLens.get('UFE').get('assets').get('rocket').value(window, { trust: true })\n\nexport const FIRE_IMAGE = windowLens.get('UFE').get('assets').get('fire').value(window, { trust: true })\n\nexport const SPACE_BACKGROUND_IMAGE = windowLens\n .get('UFE')\n .get('assets')\n .get('spaceBackground')\n .value(window, { trust: true })\n", "import * as React from 'react'\nimport styled from 'styled-components'\n\nimport { t, tp } from '@owl-nest/localize'\nimport * as plume from '@ulule/owl-kit-components/next'\nimport * as env from '@owl-nest/config'\n\ntype AsideProps = React.HTMLAttributes\n\nfunction AsideComponent(props: AsideProps): React.ReactElement {\n const userConfig = env.useUserEnv()\n\n return (\n
\n {t('Choosing Ulule means')}\n \n \n \n {tp('Coaching', 'Proposal sidebar')}\n {t('Our team advises you throughout your fundraising process.')}\n \n {userConfig.lang === 'fr' && (\n \n \n Formation sur demande\n \n Pour aller plus loin, vous pouvez{' '}\n \n int\u00E9grer une de nos formations\n {' '}\n crowdfunding, webmarketing ou entrepreneuriat.\n \n \n )}\n \n \n \n {t('%(percent)s success rate', {\n percent: '79%',\n })}\n \n {t('8 out of 10 projects meet and often exceed their goal!')}\n \n \n \n {t('Grow your community')}\n {t(\"Carry your project's mission further and higher!\")}\n \n \n
\n )\n}\n\nconst Title = styled(plume.styles.heading.L)`\n margin-bottom: 24px;\n`\n\nconst ReasonList = styled.ul`\n margin: 0;\n padding: 0;\n`\n\nconst ReasonItem = styled.li`\n list-style: none;\n display: grid;\n grid-template: 'illustration title' auto 'illustration description' auto/120px 1fr;\n margin: 0 10px 38px 10px;\n\n ${plume.illustrations.Illustration} {\n grid-area: illustration;\n }\n\n ${plume.styles.heading.S} {\n grid-area: title;\n }\n\n ${plume.styles.copy.M} {\n grid-area: description;\n margin-top: 4px;\n font-weight: 300; /* HACK: Irregular font manipulation. We'll be adding copy.M.Light, so this is just by anticipation. */\n }\n`\n\nexport const Aside = styled(AsideComponent)``\n", "import * as React from 'react'\nimport styled from 'styled-components'\n\nimport * as plume from '@ulule/owl-kit-components/next'\n\nimport { Carousel } from '../components/Carousel'\nimport { items } from '../data/carousel'\n\ntype FooterProps = React.HTMLAttributes\n\nfunction FooterComponent(props: FooterProps): React.ReactElement {\n return (\n
\n Ils & elles ont lanc\u00E9 leur projet...\n \n
\n )\n}\n\nexport const Footer = styled(FooterComponent)``\n", "import * as React from 'react'\nimport styled, { css } from 'styled-components'\nimport { useInView } from 'react-intersection-observer'\n\nimport * as plume from '@ulule/owl-kit-components/next'\n\nimport { ImageMedia, SrcSet } from '../components/ImageMedia'\nimport { useTimeout } from '@owl-nest/hooks'\nimport * as utils from '@owl-nest/utils'\n\ntype CarouselItem = {\n img: SrcSet\n linkProject: string\n name: string\n place: string\n project: string\n text: string\n}\n\ntype CarouselProps = {\n items: CarouselItem[]\n random: boolean\n}\n\nexport function Carousel({ items, random }: CarouselProps): React.ReactElement {\n const [indexActive, setindexActive] = React.useState(0)\n const stableItems = React.useMemo(() => (random ? utils.array.shuffle(items) : items), [random, items])\n\n const stableUpdateIndex = React.useCallback(() => {\n setindexActive((indexActive + 1) % stableItems.length)\n }, [stableItems, indexActive])\n\n useTimeout(stableUpdateIndex, 9000)\n\n const [ref, inView] = useInView({\n triggerOnce: true,\n })\n\n return (\n \n {stableItems.map((item, i) => {\n return (\n \n \n
\n {item.text}\n \n {item.name}{' '}\n \n {item.project}\n \n \n {item.place}\n\n \n {stableItems.map((item, i) => {\n return setindexActive(i)} />\n })}\n \n
\n
\n )\n })}\n
\n )\n}\n\nconst CarouselImage = styled(ImageMedia)<{ inView: boolean }>`\n margin-bottom: 26px;\n width: 100%;\n\n transition: opacity 300ms;\n opacity: ${({ inView }) => (inView ? 1 : 0)};\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n width: 354px;\n height: 100%;\n margin-right: 77px;\n }\n`\n\nconst CarouselItems = styled.div`\n position: relative;\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n margin-top: 53px;\n }\n`\n\nconst CarouselItem = styled.div<{ active: boolean }>`\n transition: 1s ease-out;\n top: 0;\n left: 0;\n\n ${({ active }) => {\n if (active) {\n return css`\n opacity: 1;\n z-index: 1;\n position: relative;\n `\n }\n return css`\n opacity: 0;\n z-index: -1;\n position: absolute;\n `\n }}\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n justify-content: space-between;\n display: flex;\n }\n`\n\nconst CarouselName = styled(plume.styles.heading.XXS)`\n margin-bottom: 3px;\n`\n\nconst CarouselPlace = styled(plume.styles.heading.Card1)``\n\nconst CarouselRegularText = styled(plume.styles.copy.Serif)`\n margin-bottom: 40px;\n\n // HACK: irregular font size, but nothing matches in the DS\n @media screen and ${plume.BREAKPOINTS.LAPTOP} {\n font-size: ${utils.styles.rem(26)};\n line-height: 42px;\n }\n`\n\nconst CarouselSteps = styled.div`\n display: flex;\n margin-top: 27px;\n`\n\nconst CarouselStep = styled.div<{ active: boolean }>`\n height: 10px;\n width: 10px;\n background-color: ${({ active }) => (active ? `${plume.COLORS.PRIMARY_RED}` : `${plume.COLORS.GREY_SHADE_5}`)};\n border-radius: 100%;\n margin: 0px 4px;\n cursor: pointer;\n`\n", "import * as React from 'react'\n\nexport type SrcSet = { '1x': string; '2x': string; '3x': string }\n\ntype ImageMediaProps = Omit, 'src' | 'srcSet'> & {\n srcset: SrcSet\n}\n\nexport const ImageMedia = React.forwardRef(function ImageMedia(\n { srcset, className },\n ref,\n) {\n return (\n \"\"\n )\n})\n", "import * as UFE from '../UFE'\n\nconst { celia, david, lolo, maliki, noob, theo } = UFE.PROPOSAL_IMAGES\n\nexport const items = [\n {\n img: celia,\n linkProject: '/umai-natural/',\n name: 'C\u00E9lia, ',\n place: 'Montargis, France',\n project: 'Uma\u00EF',\n text: 'Ulule c\u2019est surtout une belle communaut\u00E9 et beaucoup d\u2019entraide, une aide pr\u00E9cieuse, quand, en tant que jeune entreprise on ne sait pas toujours par o\u00F9 commencer !',\n },\n {\n img: david,\n linkProject: '/les-miraculeux/',\n name: 'David,',\n place: 'Paris, France',\n project: 'Les Miraculeux',\n text: '\u00C0 la seconde o\u00F9 tu cliques sur \"Publier ma page\" ce qui \u00E9tait un projet devient une entreprise. C\\'est un moment incroyable dont je me souviendrai toujours. Ulule a \u00E9t\u00E9 une v\u00E9ritable rampe de lancement pour les Miraculeux.',\n },\n {\n img: theo,\n linkProject: '/petit-dejeuner-snooze/',\n name: 'Th\u00E9o,',\n place: 'Paris, FRANCE',\n project: 'Snooze',\n text: \"L'accompagnement quotidien de l'\u00E9quipe Ulule et son implication ont \u00E9t\u00E9 primordiaux dans la r\u00E9ussite de notre campagne. Ulule reste aujourd'hui la meilleure chose qui soit arriv\u00E9e dans la vie de Snooze.\",\n },\n {\n img: lolo,\n linkProject: '/lolo-paris/',\n name: 'Oc\u00E9ane & M\u00E9lissa,',\n place: 'Bordeaux, FRANCE',\n project: 'Lolo',\n text: \"Avec Ulule, nous avons b\u00E9n\u00E9fici\u00E9 d'un coaching de qualit\u00E9 avant et pendant notre campagne, et nous avons rejoint une communaut\u00E9 de porteurs de projet passionn\u00E9s !\",\n },\n {\n img: maliki,\n linkProject: '/maliki-officiel/#/projects/online/',\n name: '',\n place: 'Bretagne, France',\n project: 'Maliki',\n text: \"Gr\u00E2ce \u00E0 Ulule, nous publions nos livres en circuit court et sommes compl\u00E8tement autonomes. Nous pouvons d\u00E9bloquer les fonds n\u00E9cessaires pour des projets incroyables ! C'est beaucoup de travail, mais l'ind\u00E9pendance est tellement gratifiante ! On ne remerciera jamais assez nos lecteur\",\n },\n {\n img: noob,\n linkProject: '/noob-le-jeu-video/',\n name: '',\n place: 'Toulon, France',\n project: 'Noob',\n text: \"Noob est un monde de l'imaginaire atypique fond\u00E9 sur deux principes : une ind\u00E9pendance en termes de cr\u00E9ativit\u00E9 et une proximit\u00E9 avec sa communaut\u00E9. \u00C0 ce titre, Ulule est tr\u00E8s vite apparu comme \u00E9tant l'espace id\u00E9al pour donner corps \u00E0 nos projets transm\u00E9dia.\",\n },\n]\n", "import * as React from 'react'\nimport styled from 'styled-components'\n\nimport * as plume from '@ulule/owl-kit-components/next'\nimport { t } from '@owl-nest/localize'\n\nimport { getItems } from '../data/partners'\n\ntype PartnerFooterProps = React.HTMLAttributes\n\nfunction PartnerFooterComponent(props: PartnerFooterProps): React.ReactElement {\n const items = getItems()\n const nbItems = items.length\n\n return (\n \n \n {t(\n \"With Ulule, you can take advantage of our partners' special plans to help you build your project with the best tools available.\",\n )}\n \n \n {items.map((item, i) => {\n return (\n \n \"\"\n {item.text}\n \n )\n })}\n \n \n )\n}\n\nexport const PartnerFooter = styled(PartnerFooterComponent)``\n\nconst Wrapper = styled.div<{ nbItems: number }>`\n background-color: ${plume.COLORS.GREY_SHADE_5};\n border-radius: 6px;\n display: flex;\n flex-direction: column;\n padding-bottom: 32px;\n\n ${plume.styles.heading.S} {\n padding: 32px;\n }\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n flex-direction: row;\n gap: 32px;\n padding: 40px 32px;\n\n ${plume.styles.heading.S} {\n display: flex;\n align-items: center;\n padding: 0px;\n width: ${({ nbItems }) => (nbItems > 1 ? '33%' : '50%')};\n }\n }\n`\n\nconst ItemsWrapper = styled.div<{ nbItems: number }>`\n display: flex;\n flex-direction: column;\n gap: 32px;\n padding: 0px 32px;\n\n ${plume.styles.copy.S} {\n text-align: center;\n }\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n border-left: 2px solid ${plume.COLORS.GREY_SHADE_7};\n flex-direction: row;\n gap: 24px;\n padding-right: 0px;\n width: ${({ nbItems }) => (nbItems > 1 ? '67%' : '50%')};\n flex-wrap: wrap;\n justify-content: center;\n }\n`\n\nconst Item = styled(plume.Link)<{ nbItems: number }>`\n align-items: center;\n display: flex;\n flex-direction: column;\n\n img {\n height: 27px;\n margin-bottom: 16px;\n }\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n flex-basis: ${({ nbItems }) => (nbItems > 1 ? 'calc(50% - 32px)' : '80%')};\n }\n`\n", "import * as UFE from '../UFE'\nimport { t } from '@owl-nest/localize'\n\nconst { boxtal } = UFE.PROPOSAL_IMAGES\n\nexport const getItems = () => {\n return [\n {\n logo: boxtal,\n link: 'https://www.boxtal.com/fr/fr/landing/ulule-cotation?bxclid=eyJzb3VyY2UiOiJ1bHVsZSIsIm1lZGl1bSI6ImJhY2tsaW5rIiwiY2FtcGFpZ24iOiJwYXJ0bmVyc2hpcC11bHVsZS1xdW90ZSIsImNvbnRlbnQiOiJ1bHVsZS1wcm9qZWN0LWNyZWF0aW9uLXBhZ2UifQ==',\n text: t('With Boxtal, access to delivery and software offers usually limited to large e-commerce players.'),\n },\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 { CommentCarousel } from '../components/CommentCarousel'\nimport { COMMENTS_DATA } from '../data/comments'\n\ntype WideFooterProps = { className?: string }\n\nfunction WideFooterComponent({ className }: WideFooterProps) {\n return (\n
\n ... et sont plut\u00F4t satisfaits !\n \n
\n )\n}\n\nexport const WideFooter = styled(WideFooterComponent)`\n background-color: white;\n padding: 34px 0;\n\n ${plume.styles.heading.L} {\n margin: 0 0 48px;\n text-align: center;\n color: ${plume.COLORS.PRIMARY_BLUE_HOVER};\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 { CommentCard } from './CommentCard'\n\nexport type Comment = { icon: string; name: string; title: string; comment: string; rating: number }\n\ntype CommentCarouselProps = { comments: Comment[] }\n\nexport function CommentCarousel({ comments }: CommentCarouselProps) {\n return (\n \n \n {comments.map((comment, idx) => (\n \n ))}\n \n \n {comments.map((comment, idx) => (\n \n ))}\n \n \n )\n}\n\nconst CommentsSlider = styled.div`\n display: flex;\n\n // Add white space at the end of slider mobile\n &:after {\n content: '';\n display: block;\n padding-left: 10px;\n }\n\n @media screen and ${plume.BREAKPOINTS.LAPTOP} {\n animation: slide 60s linear infinite;\n\n &:after {\n display: none;\n }\n }\n\n @keyframes slide {\n from {\n transform: translateX(0%);\n }\n to {\n transform: translateX(-100%);\n }\n }\n`\n\nconst CommentsSliderLaptop = styled(CommentsSlider)`\n display: none;\n\n @media screen and ${plume.BREAKPOINTS.LAPTOP} {\n display: flex;\n }\n`\n\nconst CommentsContainer = styled.div`\n width: 100%;\n height: 340px;\n margin: auto;\n overflow-x: auto;\n position: relative;\n\n @media screen and ${plume.BREAKPOINTS.LAPTOP} {\n width: 100%;\n overflow: hidden;\n align-items: center;\n display: flex;\n\n &:hover {\n ${CommentsSlider} {\n animation-play-state: paused;\n }\n }\n }\n`\n", "import * as React from 'react'\nimport styled from 'styled-components'\n\nimport { BREAKPOINTS, COLORS, glyphs, styles as S } from '@ulule/owl-kit-components/next'\n\ntype Comment = {\n icon: string\n name: string\n title: string\n comment: string\n rating: number\n}\n\ntype CommentCardProps = { info: Comment }\n\nfunction CommentCardComponent({\n info: { icon, name, title, comment, rating },\n}: CommentCardProps): React.ReactElement {\n return (\n \n \n \n {name}\n \n \n \"\"\n \n \n {Array.from(Array(rating)).map((_, idx) => (\n \n ))}\n \n \n {title}\n {comment}\n \n )\n}\n\nexport const CommentCard = styled(CommentCardComponent)``\n\nconst CommentContainer = styled.div`\n width: 306px;\n min-width: 306px;\n min-height: 276px;\n border: 1px solid ${COLORS.GREY_SHADE_5};\n background-color: ${COLORS.PRIMARY_WHITE};\n display: flex;\n flex-direction: column;\n align-items: flex-start;\n padding: 24px;\n margin: 0 12px;\n position: relative;\n\n ${S.heading.XS} {\n margin-top: 10px;\n margin-bottom: 24px;\n }\n\n @media screen and ${BREAKPOINTS.TABLET} {\n min-width: 385px;\n min-height: 280px;\n }\n`\n\nconst User = styled.div`\n display: grid;\n align-items: center;\n grid-template-areas:\n 'img name'\n 'img rating';\n`\n\nconst UserName = styled.div`\n grid-area: name;\n`\n\nconst Icon = styled.div`\n grid-area: img;\n width: 52px;\n height: 52px;\n display: flex;\n align-items: center;\n justify-content: center;\n margin-right: 16px;\n\n > img {\n width: 100%;\n border-radius: 50%;\n }\n`\n\nconst Rating = styled.div`\n display: flex;\n grid-area: rating;\n\n svg {\n fill: ${COLORS.BRAND_ACCENT_YELLOW};\n }\n\n > * {\n transform: scale(0.9);\n width: 18px;\n }\n`\n", "import { Comment } from '../components/CommentCarousel'\n\nexport const COMMENTS_DATA: Comment[] = [\n {\n icon: 'https://img.ulule.com/display/103972c1fe4d42ffae78e4394f92996a325f8462/thumbnail/180x180/avatars/2021/03/22/signature.K1FE3slKWu.jpg',\n name: 'Antoine B.',\n title: 'Excellement bien pass\u00E9',\n comment:\n \"Ma campagne s'est excellement bien pass\u00E9e. Les \u00E9quipes Ulule sont r\u00E9actives et de bon conseils pour mener \u00E0 bien vos projets.\",\n rating: 5,\n },\n {\n icon: 'https://s3-eu-west-1.amazonaws.com/com.ulule.assets/site/build/img/avatars/avatar-purple.png',\n name: 'Audrey R.',\n title: 'A d\u00E9pass\u00E9 toutes mes attentes',\n comment:\n \"En deux jours, vous avez la possibilit\u00E9 de suivre une formation compl\u00E8te sur le crowdfunding. J'avais d\u00E9j\u00E0 assist\u00E9 \u00E0 une conf\u00E9rence dessus mais cela n'a rien \u00E0 voir avec la formation. Il faut vous lancer dedans \u00E0 fond pour en tirer de super b\u00E9n\u00E9fices pour votre projet !\",\n rating: 5,\n },\n {\n icon: 'https://img.ulule.com/display/10b1b17bf20ba4c5ee6a053483c4d6ace35b5d95/thumbnail/180x180/avatars/2020/11/16/moderato_020920_def-04.KtQRJA5X9u.jpg',\n name: 'Moderato',\n title: 'Parti de rien',\n comment:\n \"Parti de rien pour construire une super campagne qui a cartonn\u00E9 avec un super soutien de toute l'\u00E9quipe sur tous les plans pour lancer, animer et en faire un succ\u00E8s !\",\n rating: 5,\n },\n {\n icon: 'https://img.ulule.com/display/73d6015dd80f766b41df97c360149a182d44b1e6/thumbnail/180x180/avatars/2021/10/06/logo-rond-cotele.Q81HvDCDi3.jpg',\n name: 'C\u00F4tel\u00E9 P.',\n title: 'Plateforme de crowdfunding remarquable',\n comment:\n \"Plateforme de crowdfunding remarquable ! L'accompagnement est juste parfait, la facilit\u00E9 d'utilisation et de navigation rendent la plateforme tr\u00E8s agr\u00E9able \u00E0 utiliser ! Bravo \u00E0 toute l'\u00E9quipe qui travaille dur pour ce si beau r\u00E9sultat !\",\n rating: 5,\n },\n {\n icon: 'https://img.ulule.com/display/3bd5188faaa919b711dec4328907e52f77e390a7/thumbnail/180x180/avatars/2018/07/02/laureferrandis.193104.jpg',\n name: 'Laure F.',\n title: \"Bien entour\u00E9e par l'\u00E9quipe d'Ulule\",\n comment:\n \"Bien entour\u00E9e par l'\u00E9quipe d'Ulule pour construire mon projet, j'ai pu le mener \u00E0 bien en toute confiance.\",\n rating: 5,\n },\n {\n icon: 'https://img.ulule.com/display/7e88b91a13746200242b4c725b462855173203b3/thumbnail/180x180/avatars/2016/06/13/solenne-21.145541.145556.jpg',\n name: 'Fabrique O.',\n title: 'Une plateforme de projets au top',\n comment:\n 'Une plateforme de projets au top ! Accompagnement, r\u00E9activit\u00E9, clart\u00E9 : tout est parfait pour porter son projet dans les meilleures conditions.',\n rating: 5,\n },\n {\n icon: 'https://s3-eu-west-1.amazonaws.com/com.ulule.assets/site/build/img/avatars/avatar-purple.png',\n name: 'Ali\u00E9norDm',\n title: 'Super pour soutenir des projets',\n comment:\n \"Plateforme bien con\u00E7ue pour soutenir des projets, avec les paliers, les sections news, commentaires, etc. Sur tous les projets que j'ai soutenus, un seul n'a toujours pas abouti (enregistrement d'album musical) et je ne pense pas qu'Ulule puisse intervenir.\",\n rating: 5,\n },\n {\n icon: 'https://img.ulule.com/display/b92e086d7f899a9c63b4a2327b5f4661743b0075/thumbnail/180x180/avatars/2013/04/16/corinneprose.jpg',\n name: 'corinneprose',\n title: 'La meilleure plateforme de crowdfunding !',\n comment: \"Toujours d'excellents projets auxquels je suis ravie de participer !\",\n rating: 5,\n },\n {\n icon: 'https://img.ulule.com/display/cab159a11475a3531a37b627ebea82d068e251e4/thumbnail/180x180/avatars/2015/11/15/matthiassabani.113055.jpg',\n name: 'Matthias S.',\n title: \"Des projets d'avenir\",\n comment:\n \"Un site permettant de financer des activit\u00E9s et des projets d'aujourd'hui comme ceux de demain. O\u00F9 comment assister \u00E0 la naissance et au suivi des sorties de demain.\",\n rating: 5,\n },\n {\n icon: 'https://s3-eu-west-1.amazonaws.com/com.ulule.assets/site/build/img/avatars/avatar-blue.png',\n name: 'Corinne S.',\n title: 'Des projets innovants',\n comment: 'La plateforme permet de contribuer pour des projets originaux et \u00E9thiques',\n rating: 5,\n },\n {\n icon: 'https://s3-eu-west-1.amazonaws.com/com.ulule.assets/site/build/img/avatars/avatar-blue.png',\n name: 'Claudine A.',\n title: 'Un petit rayon de soleil',\n comment:\n \"Quand je re\u00E7ois un mail d'Ulule, vite je l'ouvre ! C'est un petit rayon de soleil. On y decouvre des nouveaut\u00E9s qui vont dans le sens actuel du bien-\u00EAtre pour nous et pour la soci\u00E9t\u00E9. Ulule a toujours de beaux projets dont le financement participatif d\u00E9passe largement l'objectif annonc\u00E9. Bravo \u00E0 la jeune \u00E9quipe.\",\n rating: 5,\n },\n {\n icon: 'https://img.ulule.com/display/5bc276a9307c16e26e07f51aaaeb038ea82c0dac/thumbnail/180x180/avatars/2018/02/27/odeporte.152043.152051.png',\n name: 'Olivier D.',\n title: 'Vive la bd avec Ulule',\n comment:\n \"J'aime la bd d\u00E9dicac\u00E9e et avec Ulule je compl\u00E8te ma collection personnelle avec des oeuvres d'arts magnifiques et pleins de cadeaux sur le th\u00E8me de mes nouveaux h\u00E9ros ! Sans compter sur les auteurs tous plus sympathiques les uns que les autres... j'en ai rencontr\u00E9 certains sur des salons et festivals ces derni\u00E8res ann\u00E9es. \u00C0 tous un grand MERCI !!\",\n rating: 5,\n },\n {\n icon: 'https://img.ulule.com/display/f454a16cb8f8a20207ab6f5a2f183714023206de/thumbnail/180x180/avatars/2020/11/19/photo-de-profil.YeCEQqTT51.png',\n name: 'Laetitia G.',\n title: 'G\u00E9nial',\n comment:\n \"Le principe m\u00EAme d'Ulule est g\u00E9nial et j'adore parcourir les diff\u00E9rentes cat\u00E9gories \u00E0 la recherche d'un beau projet qui me fera de l'oeil. J'ai d\u00E9j\u00E0 fait de tr\u00E8s belles d\u00E9couvertes ici. Continuez comme \u00E7a !\",\n rating: 5,\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 * as UFE from '../UFE'\nimport * as duvet from '@ulule/duvet'\n\ntype ServicesProps = {\n className?: string\n}\n\nfunction ServicesComponent({ className }: ServicesProps): React.ReactElement {\n const listItems = [\n {\n title: (\n \n Se lancer en crowdfunding = \uD83D\uDCB0 + \uD83D\uDC40 + \uD83D\uDE80\n \n ),\n description:\n 'Faire participer sa communaut\u00E9, son public ou ses proches \u00E0 la naissance d\u2019un projet est \u00E0 la fois une fa\u00E7on de faire conna\u00EEtre son projet, de lui donner corps, et d\u2019obtenir du financement. Des dizaines de milliers de projets se sont lanc\u00E9s sur Ulule, avec un taux de succ\u00E8s record.',\n image: {\n src: UFE.PROPOSAL_IMAGES.launch['1x'],\n srcSet: `${UFE.PROPOSAL_IMAGES.launch['2x']} 2x, ${UFE.PROPOSAL_IMAGES.launch['3x']} 3x`,\n },\n },\n {\n title: (\n \n Des formations pour se lancer ou aller plus loin\n \n ),\n description: (\n <>\n Au plus pr\u00E8s des cr\u00E9ateurs et des cr\u00E9atrices, Ulule d\u00E9veloppe des formations au sein de son organisme\n certifi\u00E9. Ulule propose bien s\u00FBr{' '}\n \n une formation sur le financement participatif\n \n , et \u00E9galement des formations pour d\u00E9velopper ses comp\u00E9tences (ex{' '}\n \n formation marketing\n \n ) et favoriser le passage \u00E0 l'action.,\n \n ),\n image: {\n src: UFE.PROPOSAL_IMAGES.learning['1x'],\n srcSet: `${UFE.PROPOSAL_IMAGES.learning['2x']} 2x, ${UFE.PROPOSAL_IMAGES.learning['3x']} 3x`,\n },\n },\n {\n title: (\n \n Des partenaires pour votre projet\n \n ),\n description: (\n <>\n Ulule s\u2019est donn\u00E9 pour ambition de rassembler toutes les bonnes volont\u00E9s pour favoriser le lancement et le\n d\u00E9veloppement de projets cr\u00E9atifs et durables. De nombreuses marques et entreprises proposent ainsi des{' '}\n \n appels \u00E0 projets\n {' '}\n th\u00E9matiques ou g\u00E9ographiques auxquels vous pourrez participer en lan\u00E7ant votre projet sur Ulule.,\n \n ),\n image: {\n src: UFE.PROPOSAL_IMAGES.partners['1x'],\n srcSet: `${UFE.PROPOSAL_IMAGES.partners['2x']} 2x, ${UFE.PROPOSAL_IMAGES.partners['3x']} 3x`,\n },\n },\n ]\n\n return (\n
\n \n Pourquoi lancer un projet sur Ulule ?\n \n\n \n Leader du financement participatif (crowdfunding), Ulule propose toute une gamme d'outils et de services pour\n donner vie aux projets cr\u00E9atifs et durables\n \n\n \n\n \n Je lance mon projet\n \n
\n )\n}\n\nconst Description = styled(plume.styles.copy.S)`\n margin: 24px auto 50px;\n max-width: 587px;\n text-align: center;\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n text-align: center;\n }\n`\n\nexport const Services = styled(ServicesComponent)`\n background-color: ${plume.COLORS.PRIMARY_GREY_000};\n padding: 37px 16px 16px;\n\n ${plume.ButtonAsLink} {\n text-align: center;\n display: block;\n margin: 30px 0;\n\n ${plume.styles.button.Button} {\n font-size: 17px; // HACK: Irregular font manipulation\n }\n }\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n padding: 37px 16px;\n\n ${plume.ButtonAsLink} {\n margin: 30px 0 0 0;\n }\n }\n\n @media screen and ${plume.BREAKPOINTS.LAPTOP} {\n padding: 65px 0px 54px;\n }\n`\n", "import * as React from 'react'\nimport { useNavigate } from 'react-router-dom'\nimport styled from 'styled-components'\n\nimport * as plume from '@ulule/owl-kit-components/next'\nimport * as duvet from '@ulule/duvet'\nimport * as api from '@owl-nest/api-client/latest'\nimport * as models from '@owl-nest/models'\nimport * as hooks from '@owl-nest/hooks'\nimport * as service from '@owl-nest/services'\nimport { t, tnc } from '@owl-nest/localize'\n\nimport { useDuplicate } from '../../hooks/useDuplicate'\nimport { useProposalForm } from '../../hooks/useProposalForm'\nimport * as UFE from '../../UFE'\nimport { useProposal } from '../../hooks/useProposal'\n\nexport function Duplicate(): React.ReactElement {\n const duplicate = useDuplicate()\n const partner = hooks.data(service.partner.usePartner(UFE.AFFILIATION_ID).response)\n const { token, create } = useProposalForm()\n const proposalQuery = useProposal(token)\n const navigate = useNavigate()\n\n if (duplicate === undefined) {\n return \n }\n\n const projectName = models.project.name(duplicate)\n const needModeration = duplicate.answer_code === api.ProjectAnswerCode.NEED_MODERATION\n const hasCurrentPartner = (duplicate.partnerships ?? []).some(\n (partnership) => partnership.partner.id === UFE.PARTNER_ID,\n )\n const acceptedSamePartner = duplicate.answer_code === api.ProjectAnswerCode.ACCEPTED && hasCurrentPartner\n const acceptedDifferentPartner = duplicate.answer_code === api.ProjectAnswerCode.ACCEPTED && !hasCurrentPartner\n\n return (\n \n {t('You already have an ongoing project!')}\n \n {needModeration && t('This project is awaiting moderation, a Ulule coach will contact you soon.')}\n {acceptedSamePartner &&\n tnc(\n 'You are already participating in %(partner)s with this project.',\n 'You are already participating in %(partner)s with your project %(title)s.',\n projectName ? 2 : 1,\n {\n partner: partner?.name,\n title: projectName,\n },\n )}\n {acceptedDifferentPartner &&\n tnc(\n 'If you want to participate in %(partner)s with this project, contact your coach.',\n 'If you want to participate in %(partner)s with your project %(title)s, contact your coach.',\n projectName ? 2 : 1,\n {\n partner: partner?.name,\n title: projectName,\n },\n )}\n \n goToProject(duplicate)}\n rates={{}}\n project={duplicate}\n targetCurrency=\"\"\n projectTranslation={{\n addToMyList: '',\n backed: '',\n backerCount: '',\n comingSoon: models.project.comingSoonLabel(duplicate, true),\n created: '',\n finished: '',\n highlights: '',\n listed: '',\n shortCountdown: '',\n progressInfo: '',\n status: models.project.getStatus(duplicate),\n }}\n />\n {acceptedDifferentPartner ? (\n goToDiscussion(duplicate)}>{t('Contact my coach')}\n ) : (\n goToProject(duplicate)}>{t('See my project')}\n )}\n \n {t('Confirm creation of a new project')}\n \n \n )\n\n async function createProposal(): Promise {\n // if the proposal does not already exists (we arrived to Duplicate screen\n // right before submitting the form) we create it and navigate to Loading\n // screen\n if (token === undefined) {\n const response = await create()\n response.next((proposal) => navigate(`/${proposal.token}/loading`, { replace: true }))\n }\n // if the proposal already exists (we arrived to Duplicate screen from\n // Loading screen right after connecting) we link the proposal to the user\n // (since we are guaranteed to be loggedin)\n else {\n await proposalQuery.update({}, { withToken: true })\n navigate(`/${token}/loading`, { replace: true })\n }\n }\n\n async function goToDiscussion(project: api.Project): Promise {\n await proposalQuery.refuse()\n location.href = `/projects/${project?.id}/discussion`\n }\n\n async function goToProject(project: api.Project): Promise {\n await proposalQuery.refuse()\n location.href = project.absolute_url\n }\n}\n\nconst Wrapper = styled.div`\n align-items: center;\n display: flex;\n flex-direction: column;\n width: 100%;\n\n > ${plume.styles.copy.M} {\n margin: 14px 0 28px 0;\n }\n\n > ${plume.styles.heading.M}, > ${plume.styles.copy.M} {\n text-align: center;\n }\n\n > ${plume.Button} {\n margin: 30px 0 17px 0;\n }\n\n ${plume.MembershipProjectCard} {\n height: 271px;\n width: 311px;\n }\n`\n", "import * as service from '@owl-nest/services'\nimport * as hooks from '@owl-nest/hooks'\nimport * as api from '@owl-nest/api-client/latest'\n\nimport * as UFE from '../UFE'\n\nexport function useDuplicate(): api.Project<'answer_code' | 'partnerships'> | undefined {\n const user = service.user.useAuthenticatedUser({ extraFields: ['projects', 'projects.answer_code', 'projects.partnerships'] })\n\n const { response } = service.partner.usePartner(UFE.AFFILIATION_ID)\n const partner = hooks.data(response)\n\n if (user !== undefined) {\n const hasPartner = partner?.id !== undefined\n const isPartnerDefault = partner?.is_default ?? false\n\n const duplicate = (user.projects ?? []).find((project) => {\n return (\n project.answer_code === 'need-moderation' ||\n (hasPartner &&\n !isPartnerDefault &&\n ![api.ProjectStatus.ONLINE, api.ProjectStatus.REFUSED].includes(project.status) &&\n project.answer_code === 'accepted')\n )\n })\n\n return duplicate\n }\n\n return undefined\n}\n", "import * as jotai from 'jotai'\n\nimport * as hooks from '@owl-nest/hooks'\nimport * as api from '@owl-nest/api-client/latest'\nimport * as service from '@owl-nest/services'\nimport { Either } from '@owl-nest/monad'\nimport * as shadow from '@owl-nest/shadow'\nimport * as env from '@owl-nest/config'\n\nimport * as UFE from '../UFE'\nimport { setInitialProposal, useProposal } from './useProposal'\n\nexport type Form = {\n description: string\n projectType?: api.ProposalTypeNumber\n goal?: { min?: number; max?: number }\n rewardType?: api.RewardType\n legalEntity?: api.LegalEntity\n links: {\n list: api.Link[]\n url: string\n noSocial: boolean\n }\n communityRange?: { min?: number; max?: number }\n phone: { number: string; country?: string }\n email: string\n location: {\n country?: string\n currency?: string\n }\n}\n\nconst PROPOSAL_FORM_ATOM = jotai.atom<{ form: Form; token?: string } | undefined>(undefined)\n\nexport function useProposalForm() {\n const store = jotai.useStore()\n const user = service.user.useAuthenticatedUser()\n const userConfig = env.useUserEnv()\n const [value, setValue] = jotai.useAtom(PROPOSAL_FORM_ATOM)\n const proposalQuery = useProposal(value?.token, { withToken: user !== undefined })\n const currentProposal = hooks.data(proposalQuery.response)\n const tracking = shadow.useTracking()\n\n return { values: value?.form, token: value?.token, persist, create }\n\n function persist(form: Form) {\n setValue((state) => ({ ...state, form }))\n }\n\n async function create(form: Form | undefined = value?.form): Promise> {\n if (form === undefined) {\n throw Error(\"Can't create a proposal with an empty form\")\n }\n\n if (currentProposal !== undefined && currentProposal.token === value?.token) {\n const response = await proposalQuery.update(\n {\n country: form.location.country ?? env.USER_COUNTRY,\n currency: form.location.currency,\n description: form.description,\n email: form.email,\n goal_range: form.goal,\n lang: userConfig.lang,\n legal_entity_type: form.legalEntity,\n link_ids: form.links.list.map((link) => link.id),\n phone_number: form.phone.number,\n rewards_type: form.rewardType,\n },\n { withToken: user !== undefined },\n )\n\n if (response.status === hooks.QueryStatus.SUCCESS) {\n return Either.right(response.data)\n }\n }\n\n const proposal = await service.proposal.createProposal(\n {\n auto_validation: true,\n community_range: form.communityRange,\n country: form.location.country ?? env.USER_COUNTRY,\n currency: form.location.currency,\n description: form.description,\n email: form.email,\n goal_range: form.goal,\n lang: userConfig.lang,\n legal_entity_type: form.legalEntity,\n link_ids: form.links.list.map((link) => link.id),\n partner_id: UFE.PARTNER_ID,\n phone_number: form.phone.number,\n rewards_type: form.rewardType,\n switch_okpal_to_donation: true,\n type: Number(form.projectType),\n },\n { user },\n )\n\n return proposal.next((proposal) => {\n setValue((value) => {\n if (value !== undefined) {\n return { ...value, token: proposal.token }\n }\n })\n setInitialProposal(store, proposal, user)\n\n tracking.track({\n event: shadow.EVENT_TYPE.GENERIC,\n eventCategory: shadow.CATEGORY.PROJECT_PROPOSAL_TRACKING,\n eventAction: 'step1',\n })\n\n return proposal\n })\n }\n}\n", "import * as jotai from 'jotai'\n\nimport * as service from '@owl-nest/services'\nimport * as api from '@owl-nest/api-client/latest'\n\nconst EXTRA_FIELDS = ['links'] as ['links']\n\nexport function setInitialProposal(\n store: ReturnType,\n proposal: api.Proposal,\n user?: api.AuthenticatedUser,\n): void {\n return service.proposal.setInitialProposal(store, proposal, user, EXTRA_FIELDS)\n}\n\nexport function useProposal(\n token?: string,\n config: Omit, 'extraFields'> = {},\n): service.proposal.UseProposal<(typeof EXTRA_FIELDS)[number]> {\n const useProposal = service.proposal.useProposal(token, Object.assign({}, config, { extraFields: EXTRA_FIELDS }))\n\n return { ...useProposal, query, update }\n\n function query(config: Omit, 'extraFields'> = {}) {\n return useProposal.query(Object.assign({}, config, { extraFields: EXTRA_FIELDS }))\n }\n\n function update(\n patch: api.UpdateProposal,\n config: Omit, 'extraFields'> = {},\n ) {\n return useProposal.update(patch, Object.assign({}, config, { extraFields: EXTRA_FIELDS }))\n }\n}\n", "import * as React from 'react'\nimport * as formik from 'formik'\nimport styled from 'styled-components'\nimport { useNavigate } from 'react-router-dom'\n\nimport * as plume from '@ulule/owl-kit-components/next'\nimport { t, tc } from '@owl-nest/localize'\nimport * as geolocation from '@owl-nest/geolocation'\nimport * as shadow from '@owl-nest/shadow'\nimport { scroll } from '@owl-nest/utils'\nimport * as hooks from '@owl-nest/hooks'\nimport * as service from '@owl-nest/services'\nimport * as env from '@owl-nest/config'\n\nimport { Section, SectionContent } from './Section'\nimport * as UFE from '../../UFE'\nimport { DescriptionField } from './DescriptionField'\nimport { GoalField } from './GoalField'\nimport { RewardTypeField } from './RewardTypeField'\nimport { LegalEntityField } from './LegalEntityField'\nimport { LinksField, Link } from './LinksField'\nimport { PhoneField } from './PhoneField'\nimport { EmailField } from './EmailField'\nimport { SocialLinkModal } from './SocialLinkModal'\nimport { LocationModal } from './LocationModal'\nimport { validationSchema } from './types'\nimport { goalRangeLabel } from './rangeLabels'\nimport { createSocialLink } from './createSocialLink'\nimport { useDuplicate } from '../../hooks/useDuplicate'\nimport { Form, useProposalForm } from '../../hooks/useProposalForm'\nimport { CommunityField } from './CommunityField'\n\nexport function FormCreate() {\n const fix = geolocation.useFix()\n const navigate = useNavigate()\n const duplicate = useDuplicate()\n const proposalForm = useProposalForm()\n const userConfig = env.useUserEnv()\n\n const [isLocationModalOpen, setIsLocationModalOpen] = React.useState(false)\n const [isSocialLinkModalOpen, setIsSocialLinkModalOpen] = React.useState(false)\n const [isFullDisclaimerOpen, setIsFullDisclaimerOpen] = React.useState(false)\n\n const tracker = shadow.useFormTracking(\n shadow.CATEGORY.PROJECT_FORM,\n {\n description: { value: 'formPitch', error: 'formPitchError' },\n legalEntity: { value: 'formOwner', error: 'formOwnerError' },\n goal: { value: 'formAmount', error: 'formAmountError' },\n links: { value: 'formSocial', error: 'formSocialError' },\n rewardType: { value: 'formReward', error: 'formRewardError' },\n email: { value: 'formContactEmail', error: 'formContactEmailError' },\n phone: { value: 'formContactTel', error: 'formContactTelError' },\n },\n UFE.GTM_KEY,\n )\n\n if (fix.status === hooks.Status.LOADING) {\n return \n }\n\n return (\n \n {(formikBag) => {\n const user = service.user.useAuthenticatedUser()\n React.useEffect(() => {\n if (user !== undefined && formikBag.values.email === '') {\n formikBag.setFieldValue('email', user.email)\n }\n }, [user, formikBag.values.email])\n\n const needLocation =\n formikBag.values.location.country === undefined || formikBag.values.location.currency === undefined\n\n useAfterSubmit(() => {\n if (!formikBag.isValid) {\n tracker.pushErrorEvent('projectFormError', formikBag.errors)\n }\n }, formikBag)\n\n hooks.useScrollToFirstError(formikBag)\n\n hooks.useBeforeUnload(() => {\n if (isFormDirty(formikBag, user !== undefined)) {\n return t('You have unsaved changes.Are you sure you want to discard them ?')\n }\n })\n\n return (\n <>\n \n \n \n \n \n \n\n \n \n \n \n \n \n \n\n
\n {t('Start on Ulule')}\n\n \n {t('Your project will be associated with the country of %(country)s and the currency %(currency)s.', {\n country:\n env.COUNTRIES.find((country) => country.code === formikBag.values.location.country)?.label() ??\n 'N/A',\n currency: formikBag.values.location.currency ?? 'N/A',\n })}{' '}\n setIsLocationModalOpen(true)}>\n {t('Change country and/or currency.')}\n \n .\n \n \n {t(\n 'Ulule collects your data to manage your user account, allow hosting and administration of fundraising campaigns, marketing and user relationship actions, as well as fight against fraud, money laundering and terror financing. You have rights over this data.',\n )}{' '}\n setIsFullDisclaimerOpen(true)} open={isFullDisclaimerOpen}>\n {t('Read all treatments, rights and recommendations.')}\n \n \n \n {tc(\n `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 [br][br]IMPORTANT: By describing your project, you could:\n [br]- reveal information about you, sometimes sensitive or very personal (religious or philosophical convictions, sexual orientation, political opinions, state of health, etc.). If your project proposal is accepted, this information will automatically be included in your project page and you can modify it before launch of the fundraising campaign. But once your project is published, this information will become public and accessible to everyone. Ulule therefore invites you to be careful when describing your project to protect your privacy ;\n [br]- communicate information about third parties (your employees, someone whom your project aims to help, etc.). The processing of these data must be done in compliance with laws and regulations. You must verify that you have the right to communicate this data to Ulule and the public (for example by having the written agreement of these third parties) and communicate to them the information on the processing of their data by Ulule contained in [link: Ulule Privacy Policy].`,\n {\n ululePostalAddress: t('10 rue de Penthi\u00E8vre, 75008 Paris, France'),\n br:
,\n link: (\n \n ),\n },\n )}\n
\n
\n
\n\n {\n tracker.pushFormEvent({ eventLabel: 'add', eventAction: 'alert_social_links' })\n setIsSocialLinkModalOpen(false)\n scroll.scrollToHashWithOffset('#socialLinks', { offset: parseInt(plume.SIZES.HEADER_HEIGHT) })\n }}\n onDismiss={() => {\n tracker.pushFormEvent({ eventLabel: 'submit', eventAction: 'alert_social_links' })\n formikBag.setFieldValue('links.noSocial', true)\n setIsSocialLinkModalOpen(false)\n formikBag.submitForm()\n }}\n />\n\n setIsLocationModalOpen(false)}\n />\n \n )\n }}\n \n )\n\n async function handleSubmit(values: Form, formikBag: formik.FormikHelpers
) {\n // create the link for any value left in the url field (the user might\n // have forgotten to click the \"add\" button)\n if (values.links.url.length !== 0) {\n const response = await createSocialLink(values.links.url)\n response.next((link) => values.links.list.push(link))\n formikBag.setFieldValue('links.url', '')\n }\n\n const hasLinks = values.links.list.length > 0\n const hasAtLeastOneCrawlableLink = hasLinks && values.links.list.find((link) => link.crawlable)\n\n if (values.links.noSocial === false && !hasAtLeastOneCrawlableLink) {\n setIsSocialLinkModalOpen(true)\n tracker.pushFormEvent({\n eventLabel: 'display',\n eventAction: 'alert_social_links',\n })\n return\n }\n\n tracker.pushFormEvent({\n eventLabel: `${values.legalEntity} - ${\n goalRangeLabel(values.goal ?? {}, values.location.currency ?? userConfig.currency).label\n } - ${hasLinks ? 'link' : 'not on social media'} - ${values.rewardType}`,\n eventAction: 'submit',\n eventCallback: async () => {\n // save the form content for futur use (if the user hit previous)\n proposalForm.persist(values)\n\n if (duplicate) {\n navigate(`/current/duplicate`)\n } else {\n const proposal = await proposalForm.create(values)\n\n proposal.caseOf({\n left: (failure) => {\n //TODO: handle post proposal error\n },\n right: (proposal) => {\n navigate(`/${proposal.token}/loading`)\n },\n })\n }\n },\n })\n }\n}\n\nfunction getLocation(fix?: geolocation.GeolocationFix) {\n if (fix === undefined) {\n return {}\n }\n\n const supportedCountry = env.COUNTRIES.find((country) => country.code === fix.country_code)\n\n if (supportedCountry !== undefined) {\n return { country: supportedCountry.code, currency: env.CURRENCIES_COUNTRY[supportedCountry.code] }\n }\n\n // if fix.country_code is not found in UFE.COUNTRIES, maybe it's an island of a country\n for (const [country, islandCodes] of Object.entries(UFE.ISLANDS)) {\n if (islandCodes.includes(fix.country_code)) {\n return { country, currency: env.CURRENCIES_COUNTRY[country] }\n }\n }\n\n return {}\n}\n\nfunction useAfterSubmit(effect: React.EffectCallback, formikBag: formik.FormikProps): void {\n const wasSubmitting = hooks.usePrevious(formikBag.isSubmitting)\n\n React.useEffect(() => {\n // right after submit is done\n if (wasSubmitting && !formikBag.isSubmitting) {\n return effect()\n }\n }, [formikBag.isSubmitting])\n}\n\nfunction isFormDirty(formikBag: formik.FormikProps, isAuthentifiedUser: boolean): boolean {\n const hasChanged =\n formikBag.values.description !== formikBag.initialValues.description ||\n formikBag.values.goal !== formikBag.initialValues.goal ||\n formikBag.values.rewardType !== formikBag.initialValues.rewardType ||\n formikBag.values.legalEntity !== formikBag.initialValues.legalEntity ||\n formikBag.values.phone.number !== formikBag.initialValues.phone.number ||\n formikBag.values.phone.country !== formikBag.initialValues.phone.country ||\n formikBag.values.goal !== formikBag.initialValues.goal ||\n formikBag.values.links.list.length !== formikBag.initialValues.links.list.length\n\n return isAuthentifiedUser ? hasChanged : hasChanged || formikBag.values.email !== formikBag.initialValues.email\n}\n\nconst FormWrapper = styled.form`\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n margin-right: 34px;\n }\n\n ${plume.SelectField} {\n margin-top: 22px;\n z-index: 2;\n position: relative;\n\n ${plume.Select} {\n max-width: 326px;\n }\n }\n`\n\nconst ToggleableSmallText = styled(plume.styles.copy.XS)<{ open?: boolean }>`\n display: ${({ open }) => (open ? 'block' : 'none')};\n`\n\nconst Footer = styled.div`\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n margin-left: 68px;\n }\n\n ${plume.Button} {\n margin-bottom: 16px;\n }\n\n ${plume.styles.copy.XS} {\n color: ${plume.COLORS.GREY_SHADE_2};\n margin-bottom: 16px;\n\n ${plume.LinkAsButton} {\n padding: 0;\n font-size: inherit;\n }\n }\n`\n\nconst TermsButton = styled(plume.LinkAsButton)<{ open: boolean }>`\n display: ${({ open }) => (open ? 'none' : 'inline')};\n`\n\nconst BaseSection = styled(Section)`\n ${plume.styles.field.Title} {\n margin-bottom: 16px;\n }\n\n ${plume.CheckboxField} {\n ${plume.styles.field.Title} {\n // HACK: since field groups and fields share the same style for their title,\n // it is impossible to simply change the title of group fields without\n // changing field titles. Earlier in the code we overloaded the style\n // plume.styles.field.Title because we want the \"top\" title of field to be\n // bigger. So we want the title of text fields, select fields, radio group\n // and checkbox group to be bigger, but not the title of radio field and\n // checkbox field.\n // Therefore for those two specific fields we have again to override the title\n // to set the styles back to the initial value.\n // Since this issue is caused by an architectural issue in some components\n // of the DS that should be fixed, the fix here is barebone and not really\n // maintenable on design (hurry and fix the underlying issue before the\n // technical debt blow in your face!)\n // 2024 edit: yup, just like he ^ said! Good luck next time! No but seriously,\n // we will take time to properly fix this.\n ${plume.styles.copy._smallStyle};\n margin-bottom: 0;\n }\n }\n\n ${plume.RadioField} {\n ${plume.styles.field.Title} {\n margin-bottom: 0;\n }\n }\n\n ${plume.Field} {\n width: 100%;\n }\n`\n\nconst UserSection = styled(BaseSection)`\n ${Link}:last-child, ${plume.CheckboxField} {\n margin-bottom: 50px;\n }\n\n ${plume.CheckboxField} {\n margin-top: -4px;\n }\n\n ${SectionContent} {\n overflow: visible;\n }\n\n ${SectionContent} > ${plume.PhoneField}, ${SectionContent} > ${plume.TextField} {\n margin-top: 32px;\n }\n\n ${plume.SmallRadioList} {\n ${plume.Field} {\n width: auto;\n }\n\n flex-wrap: wrap;\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n flex-wrap: nowrap;\n }\n }\n`\n\nconst ProjectSection = styled(BaseSection)`\n ${plume.TextAreaField} {\n max-width: 500px;\n }\n\n ${plume.RadioGroupField} {\n margin-top: 22px;\n\n ${plume.BigRadioList}:has(> :last-child:nth-child(2)) {\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n display: flex;\n flex-direction: row;\n gap: 8px;\n }\n }\n\n ${plume.BigRadioList}:has(> :last-child:nth-child(4)) {\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n display: grid;\n grid-gap: 24px;\n grid-template: 1fr 1fr/1fr 1fr;\n }\n }\n\n ${plume.RadioField} {\n display: flex;\n width: 100%;\n\n &:not(:last-child) {\n margin-bottom: 16px;\n }\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n &:not(:last-child) {\n margin-bottom: 0;\n }\n }\n\n ${plume.styles.field.Title}, ${plume.styles.field.Description} {\n margin-right: 60px;\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n margin-right: 0;\n }\n }\n\n ${plume.illustrations.Illustration} {\n display: block;\n margin-bottom: 9px;\n position: absolute;\n right: 10px;\n top: 50%;\n transform: translateY(-50%);\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n position: static;\n transform: none;\n }\n }\n }\n }\n`\n", "import * as React from 'react'\nimport styled, { css } from 'styled-components'\n\nimport * as plume from '@ulule/owl-kit-components/next'\n\nimport * as UFE from '../../UFE'\n\ntype SectionProps = {\n children: React.ReactNode\n} & React.HTMLAttributes\n\nfunction SectionComponent({ children, ...props }: SectionProps): React.ReactElement {\n return (\n
\n {children}\n
\n )\n}\n\nconst SectionIndex = styled(plume.styles.heading.M)`\n color: ${plume.COLORS.PRIMARY_BLUE};\n background: ${plume.COLORS.BLUE_SHADE_1};\n border-radius: 50%;\n align-self: center;\n height: 45px;\n width: 45px;\n display: flex;\n justify-content: center;\n align-items: baseline;\n margin-right: 16px;\n line-height: 39px; // vertical center hack for font\n font-weight: 900; // HACK: irregular font manipulation\n`\n\nconst SectionTitle = styled(plume.styles.heading.M)``\n\nexport const SectionContent = styled.div`\n padding-top: 27px;\n padding-bottom: 30px;\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n padding: 0 0 30px 68px;\n }\n`\n\nexport const Section = styled(SectionComponent)`\n display: grid;\n grid-template: 'index title' auto 'content content' auto / min-content 1fr;\n\n ${SectionIndex} {\n grid-area: index;\n }\n\n ${SectionTitle} {\n grid-area: title;\n align-self: center;\n }\n\n ${SectionContent} {\n grid-area: content;\n overflow: hidden;\n }\n`\n", "import * as React from 'react'\nimport * as formik from 'formik'\n\nimport * as plume from '@ulule/owl-kit-components/next'\nimport * as shadow from '@owl-nest/shadow'\nimport { t } from '@owl-nest/localize'\n\nimport { TrackedFields } from './types'\nimport { Form } from '../../hooks/useProposalForm'\n\nimport * as UFE from '../../UFE'\n\ntype DescriptionFieldProps = {\n tracker: shadow.FormTracker\n}\n\nexport function DescriptionField({ tracker }: DescriptionFieldProps) {\n return (\n \n {({ field, meta }: formik.FieldProps) => {\n return (\n {\n tracker.description.markFilled()\n field.onChange(event)\n }}\n error={meta.touched && meta.error}\n />\n )\n }}\n \n )\n}\n", "import * as React from 'react'\nimport * as formik from 'formik'\nimport styled from 'styled-components'\n\nimport * as api from '@owl-nest/api-client/latest'\nimport * as plume from '@ulule/owl-kit-components/next'\nimport * as shadow from '@owl-nest/shadow'\nimport { t, tp } from '@owl-nest/localize'\n\nimport { TrackedFields, GOAL_RANGES } from './types'\nimport { goalRangeLabel } from './rangeLabels'\nimport { Form } from '../../hooks/useProposalForm'\nimport * as UFE from '../../UFE'\n\ntype GoalFieldProps = {\n tracker: shadow.FormTracker\n}\n\nexport function GoalField({ tracker }: GoalFieldProps) {\n return (\n <>\n \n {({ field, meta }: formik.FieldProps) => {\n return (\n \n \n \n {tp('Monthly', 'Project launch form')}\n {t('New!')}\n \n }\n {...onChangeAndValue(api.ProposalTypeNumber.MEMBERSHIP, field.value)}\n />\n \n )\n\n function onChangeAndValue(value: any, fieldValue: any) {\n return {\n onChange: (event: React.ChangeEvent) => {\n field.onChange(event)\n },\n value,\n checked: String(value) === fieldValue,\n }\n }\n }}\n \n\n \n {({ field, meta, form }: formik.FieldProps) => {\n return (\n \n \n )\n}\n\nconst GoalSelectField = styled(plume.SelectField)<{ hidden?: boolean }>`\n display: ${({ hidden = true }) => hidden && 'none'};\n`\n\nconst RadioLabelWithFlag = styled.span`\n display: inline-flex;\n gap: 10px;\n\n ${plume.Tag} {\n margin-bottom: -2px;\n margin-top: 2px;\n }\n`\n", "import * as api from '@owl-nest/api-client/latest'\nimport { t } from '@owl-nest/localize'\nimport * as yup from '@owl-nest/validators'\n\nimport * as UFE from '../../UFE'\n\nexport const COMMUNITY_SIZE_RANGES = [\n { max: 200 },\n { min: 200, max: 1000 },\n { min: 1000, max: 10000 },\n { min: 10000, max: 50000 },\n { min: 50000, max: 100000 },\n { min: 100000 },\n]\n\nexport const GOAL_RANGES = [\n { max: 3500 },\n { min: 3500, max: 8000 },\n { min: 8000, max: 15000 },\n { min: 15000, max: 30000 },\n { min: 30000 },\n {},\n { min: -1 },\n]\n\nexport const validationSchema = yup.object({\n description: yup.string().max(1000).required(),\n projectType: yup.number().oneOf([api.ProposalTypeNumber.MEMBERSHIP, api.ProposalTypeNumber.PROJECT]).required(),\n goal: yup.mixed().when('projectType', {\n is: api.ProposalTypeNumber.PROJECT,\n then: (schema) => schema.required(),\n otherwise: (schema) => schema,\n }),\n rewardType: yup\n .string()\n .oneOf([api.RewardType.CONCRETE, api.RewardType.NONE, api.RewardType.SYMBOLIC, api.RewardType.UNDEFINED])\n .required(),\n legalEntity: yup\n .string()\n .oneOf([api.LegalEntity.ASSOCIATION, api.LegalEntity.BUSINESS, api.LegalEntity.PERSONAL])\n .required(),\n links: yup\n .object({\n url: yup.url().max(200, ({ max }) =>\n t('This URL is too long, please limit it to a maximum of %(len)d characters', {\n len: max,\n }).required(),\n ),\n })\n .required(),\n phone: yup.object({\n number: yup.phone().size().required(),\n }),\n email: yup.email().required(),\n location: yup\n .object({\n country: yup.string().required(),\n currency: yup.string().required(),\n })\n .required(),\n})\n\nexport const trackedFields = {\n description: { value: 'formPitch', error: 'formPitchError' },\n legalEntity: { value: 'formOwner', error: 'formOwnerError' },\n goal: { value: 'formAmount', error: 'formAmountError' },\n links: { value: 'formSocial', error: 'formSocialError' },\n rewardType: { value: 'formReward', error: 'formRewardError' },\n email: { value: 'formContactEmail', error: 'formContactEmailError' },\n phone: { value: 'formContactTel', error: 'formContactTelError' },\n} as const\n\nexport type TrackedFields = typeof trackedFields\n", "import * as React from 'react'\n\nimport * as plume from '@ulule/owl-kit-components/next'\nimport * as utils from '@owl-nest/utils'\nimport { t, tc } from '@owl-nest/localize'\nimport * as env from '@owl-nest/config'\n\nexport function communityRangeLabel(range: { min?: number; max?: number }) {\n const maximum = range.max ? utils.text.numberToLocaleString(range.max) : undefined\n const minimum = range.min ? utils.text.numberToLocaleString(range.min) : undefined\n\n if (minimum !== undefined && maximum !== undefined) {\n return {\n label: t('Between %(minAmount)s and %(maxAmount)s', { minAmount: minimum, maxAmount: maximum }),\n content: tc('Between [minAmount] and [maxAmount]', {\n minAmount: ,\n maxAmount: ,\n }),\n }\n }\n\n if (maximum !== undefined) {\n return {\n label: t('Less than %(maxAmount)s', { maxAmount: maximum }),\n content: tc('Less than [maxAmount]', { maxAmount: }),\n }\n }\n\n if (minimum !== undefined) {\n return {\n label: t('More than %(minAmount)s', { minAmount: minimum }),\n content: tc('More than [minAmount]', { minAmount: }),\n }\n }\n\n return { label: t('I don\u2019t know'), content: t('I don\u2019t know') }\n}\n\nexport function goalRangeLabel(range: { min?: number; max?: number }, currency: string) {\n const minAmount = plume.accounting.localeMoney(range.min, {\n currency: currency,\n lang: env.getUserConfig().lang,\n })\n\n const maxAmount = plume.accounting.localeMoney(range.max, {\n currency: currency,\n lang: env.getUserConfig().lang,\n })\n\n if (range.min !== undefined && range.max !== undefined) {\n return {\n label: t('Between %(minAmount)s and %(maxAmount)s', { minAmount, maxAmount }),\n content: tc('Between [minAmount] and [maxAmount]', {\n minAmount: ,\n maxAmount: ,\n }),\n }\n }\n\n if (range.max !== undefined) {\n return {\n label: t('Less than %(maxAmount)s', { maxAmount }),\n content: tc('Less than [maxAmount]', { maxAmount: }),\n }\n }\n\n if (range.min !== undefined) {\n if (range.min === -1) {\n return {\n label: t('I don\u2019t have a minimum'),\n content: t('I don\u2019t have a minimum'),\n }\n }\n\n return {\n label: t('More than %(minAmount)s', { minAmount }),\n content: tc('More than [minAmount]', { minAmount: }),\n }\n }\n\n return { label: t('I don\u2019t know'), content: t('I don\u2019t know') }\n}\n", "import * as React from 'react'\nimport * as formik from 'formik'\n\nimport * as api from '@owl-nest/api-client/latest'\nimport * as plume from '@ulule/owl-kit-components/next'\nimport * as shadow from '@owl-nest/shadow'\nimport { t } from '@owl-nest/localize'\n\nimport { TrackedFields } from './types'\nimport { Form } from '../../hooks/useProposalForm'\n\ntype RewardTypeProps = {\n tracker: shadow.FormTracker\n}\n\nexport function RewardTypeField({ tracker }: RewardTypeProps) {\n return (\n \n {({ field, meta }: formik.FieldProps) => {\n return (\n \n \n \n {t('Material rewards')}\n \n }\n description={t('An item, a product, a service, pre-sales, an experience, etc')}\n />\n \n \n {t('Mainly symbolic rewards')}\n \n }\n description={t('Thanks, goodies, small gifts, etc.')}\n />\n \n \n {t('No rewards')}\n \n }\n description={t('I only want donations (with or without tax exemption)')}\n />\n \n \n {t('I\u2019m not sure yet')}\n \n }\n description={t('If eligible, our team will help you find the project-type that works best for you')}\n />\n \n )\n\n function onChangeAndValue(value: any, fieldValue: any) {\n return {\n onChange: (event: React.ChangeEvent) => {\n tracker.rewardType.setValue(value)\n field.onChange(event)\n },\n value,\n checked: value === fieldValue,\n }\n }\n }}\n \n )\n}\n", "import * as React from 'react'\nimport * as formik from 'formik'\n\nimport * as plume from '@ulule/owl-kit-components/next'\nimport * as shadow from '@owl-nest/shadow'\nimport { t } from '@owl-nest/localize'\nimport * as api from '@owl-nest/api-client/latest'\n\nimport { TrackedFields } from './types'\nimport { Form } from '../../hooks/useProposalForm'\n\ntype LegalEntityFieldProps = {\n tracker: shadow.FormTracker\n}\n\nexport function LegalEntityField({ tracker }: LegalEntityFieldProps) {\n return (\n \n {({ field, meta }: formik.FieldProps) => {\n return (\n \n \n \n \n \n )\n function onChangeAndValue(value: any, fieldValue: any) {\n return {\n onChange: (event: React.ChangeEvent) => {\n tracker.legalEntity.setValue(value)\n field.onChange(event)\n },\n value,\n checked: value === fieldValue,\n }\n }\n }}\n \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'\nimport * as shadow from '@owl-nest/shadow'\nimport * as api from '@owl-nest/api-client/latest'\nimport * as yup from '@owl-nest/validators'\nimport { t } from '@owl-nest/localize'\n\nimport { TrackedFields, validationSchema } from './types'\nimport { createSocialLink } from './createSocialLink'\nimport { Form } from '../../hooks/useProposalForm'\n\ntype LinksFieldProps = {\n tracker: shadow.FormTracker\n}\n\nexport function LinksField({ tracker }: LinksFieldProps) {\n return (\n \n {({ form, ...arrayHelpers }: formik.FieldArrayRenderProps) => {\n return (\n <>\n arrayHelpers.push(link)} />\n\n {(form.values as Form).links.list.map((link, index) => {\n return (\n \n \n \n {link.url}\n \n {\n arrayHelpers.remove(index)\n }}\n >\n \n \n \n )\n })}\n\n {(form.values as Form).links.list.length === 0 && (\n \n {({ field, form }: formik.FieldProps) => {\n return (\n {\n if (event.currentTarget.checked) {\n tracker.links.setValue('not on social media')\n } else {\n tracker.links.markEmpty()\n }\n form.setFieldValue(field.name, event.currentTarget.checked)\n }}\n onBlur={field.onBlur}\n />\n )\n }}\n \n )}\n \n )\n }}\n \n )\n}\n\ntype LinksUrlField = {\n tracker: shadow.FormTracker\n onAddLink: (link: api.Link) => void\n}\n\nfunction AddLinkField({ tracker, onAddLink }: LinksUrlField) {\n return (\n \n {({ field, meta, form }: formik.FieldProps) => {\n const disabledAddLink = Boolean(meta.touched && meta.error)\n\n return (\n \n {t('Social media and website links')}\n {\n if (event.key === 'Enter') {\n addLink()\n }\n }}\n error={meta.touched && meta.error}\n {...field}\n onChange={(event) => {\n // Using `setFieldError` to reset the error onChange to avoid\n // locking out the user. If the user input an invalid url and\n // add it, because of the `addLink` function, the field becomes\n // invalid. When the field is invalid, the button is disabled,\n // so the user can't add the fixed link that would pass the\n // field to valid.\n //\n // The fix is to reset the error on change. That way, after the\n // error is displayed, on the first keystroke the user makes to\n // correct the url, the field turns valid again, enabling the\n // add button\n form.setFieldError(field.name, '')\n field.onChange(event)\n }}\n />\n \n {t('Add')}\n \n \n )\n\n async function validate(): Promise {\n try {\n await (yup.reach(validationSchema, 'links.url') as any).validate(field.value)\n } catch (error: unknown) {\n if (error instanceof yup.ValidationError) {\n return error.errors[0]\n }\n }\n return undefined\n }\n\n async function addLink(): Promise {\n if (disabledAddLink) {\n return\n }\n\n const error = await validate()\n\n if (error !== undefined) {\n form.setFieldError('links.url', error)\n return\n }\n\n const response = await createSocialLink(field.value)\n response.next((link) => {\n tracker.links.setValue('link')\n form.setFieldValue(field.name, '')\n form.setFieldValue('links.noSocial', false)\n onAddLink(link)\n })\n }\n }}\n \n )\n}\n\nconst LineField = styled.div`\n margin-top: 32px;\n display: grid;\n grid-template: 'title title' auto 'field button' 1fr/1fr max-content;\n\n & > ${plume.styles.field.Title} {\n grid-area: title;\n }\n\n ${plume.TextField} {\n margin-top: 0;\n grid-area: field;\n }\n\n ${plume.Button} {\n grid-area: button;\n margin-left: 10px;\n }\n`\n\nexport const Link = styled.div`\n display: flex;\n align-items: center;\n background-color: ${plume.COLORS.GREY_SHADE_6};\n margin-top: 14px;\n padding: 10px;\n\n ${plume.Link} {\n ${plume.styles.copy._smallStyle}\n flex: 1;\n margin: 0px 15px;\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n }\n\n ${plume.glyphs.stroke.Link} {\n color: ${plume.COLORS.PRIMARY_BLUE};\n flex: 0 0 auto;\n }\n\n ${plume.glyphs.stroke.Trash} {\n color: ${plume.COLORS.GREY_SHADE_3};\n }\n\n ${plume.styles.button.UnstyledButton} {\n line-height: 15px;\n flex: 0 0 auto;\n }\n`\n", "import * as service from '@owl-nest/services'\n\nexport async function createSocialLink(url: string) {\n return await service.link.createLink(toValidUrl(url))\n}\n\nfunction toValidUrl(url: string): string {\n if (url && !url.match(/^((https?):)\\/\\//i)) {\n return `https://${url}`\n }\n return url\n}\n", "import * as React from 'react'\nimport * as formik from 'formik'\n\nimport * as plume from '@ulule/owl-kit-components/next'\nimport * as shadow from '@owl-nest/shadow'\nimport { t } from '@owl-nest/localize'\nimport * as env from '@owl-nest/config'\n\nimport { TrackedFields } from './types'\nimport { Form } from '../../hooks/useProposalForm'\n\ntype PhoneFieldProps = {\n tracker: shadow.FormTracker\n}\n\nexport function PhoneField({ tracker }: PhoneFieldProps) {\n return (\n \n {({ field, meta, form }: formik.FieldProps) => {\n return (\n {\n form.setFieldValue('phone', value)\n tracker.phone.markFilled()\n }}\n countries={env.COUNTRIES}\n value={field.value}\n error={meta.touched && (meta.error as any)?.number}\n />\n )\n }}\n \n )\n}\n", "import * as React from 'react'\nimport * as formik from 'formik'\n\nimport * as plume from '@ulule/owl-kit-components/next'\nimport * as shadow from '@owl-nest/shadow'\nimport { t } from '@ulule/localize'\n\nimport { TrackedFields } from './types'\nimport { Form } from '../../hooks/useProposalForm'\n\ntype EmailFieldProps = {\n disabled: boolean\n tracker: shadow.FormTracker\n}\n\nexport function EmailField({ tracker, disabled }: EmailFieldProps) {\n return (\n \n {({ field, meta }: formik.FieldProps) => {\n return (\n {\n tracker.email.markFilled()\n field.onChange(event)\n }}\n error={meta.touched && meta.error}\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 plume from '@ulule/owl-kit-components/next'\n\ntype SocialLinkModalProps = {\n className?: string\n open: boolean\n onAddLink: () => void\n onDismiss: () => void\n}\n\nfunction SocialLinkModalComponent({ className, open, onAddLink, onDismiss }: SocialLinkModalProps): React.ReactElement {\n return (\n }\n buttons={[\n {\n type: 'button',\n props: {\n onClick: onAddLink,\n children: t('Add a social network'),\n },\n },\n {\n type: 'linkAsButton',\n props: {\n onClick: onDismiss,\n kind: 'secondary',\n children: t('Submit without social network'),\n },\n },\n ]}\n >\n {t('Do you have social networks related to your project?')}\n \n {t('Share any web link related to your project that could help us coach you.')}\n \n \n )\n}\n\nexport const SocialLinkModal = styled(SocialLinkModalComponent)`\n ${plume.styles.modal.Body} {\n display: flex;\n flex-direction: column;\n }\n\n ${plume.styles.heading.S} {\n text-align: center;\n margin: 15px;\n }\n\n ${plume.styles.copy.S} {\n text-align: center;\n margin-bottom: 15px;\n }\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n ${plume.styles.modal.Wrapper} {\n max-width: 450px;\n }\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'\nimport * as yup from '@owl-nest/validators'\nimport { t } from '@owl-nest/localize'\nimport * as env from '@owl-nest/config'\n\nimport * as UFE from '../../UFE'\nimport { validationSchema } from './types'\nimport { Form } from '../../hooks/useProposalForm'\n\ntype LocationModalProps = {\n className?: string\n open: boolean\n needLocation: boolean\n onClose: () => void\n}\n\nfunction LocationModalComponent({ className, open, needLocation, onClose }: LocationModalProps) {\n return (\n \n \n {({ field, form }: formik.FieldProps) => {\n return (\n {\n form.setFieldValue(field.name, values)\n onClose()\n }}\n validationSchema={yup.reach(validationSchema, 'location')}\n validateOnBlur={false}\n validateOnChange={false}\n >\n {(formikBag) => {\n return (\n <>\n {t('Change country and/or currency.')}\n\n \n {({ field, meta, form }: formik.FieldProps) => {\n return (\n {\n form.setFieldValue(field.name, selected[0].value)\n }}\n error={meta.touched && meta.error}\n height={180}\n >\n {env.COUNTRIES.map((country) => {\n return (\n \n {country.label()}\n \n )\n })}\n \n )\n }}\n \n\n \n {({ field, meta, form }: formik.FieldProps) => {\n return (\n {\n form.setFieldValue(field.name, selected[0].value)\n }}\n error={meta.touched && meta.error}\n height={180}\n >\n {UFE.CURRENCIES.map((currency) => {\n return (\n \n {currency.content}\n \n )\n })}\n \n )\n }}\n \n\n \n {t('Save')}\n \n {!needLocation && (\n \n {t('Cancel')}\n \n )}\n \n )\n }}\n \n )\n }}\n \n \n )\n}\n\nconst SelectField = styled(plume.SelectField)<{ index: number }>`\n z-index: ${({ index }) => index};\n`\n\nexport const LocationModal = styled(LocationModalComponent)`\n ${plume.styles.modal.Body} {\n display: flex;\n flex-direction: column;\n }\n\n ${plume.styles.heading.S} {\n text-align: center;\n margin-bottom: 16px;\n }\n\n ${plume.SelectField} {\n margin-bottom: 16px;\n }\n\n ${plume.Button} {\n margin-top: 28px;\n position: static;\n }\n\n @media screen and ${plume.BREAKPOINTS.LAPTOP} {\n ${plume.styles.modal.Body} {\n padding-left: 105px;\n padding-right: 105px;\n display: flex;\n flex-direction: column;\n }\n }\n`\n", "import * as React from 'react'\nimport * as formik from 'formik'\n\nimport * as plume from '@ulule/owl-kit-components/next'\nimport { t } from '@owl-nest/localize'\n\nimport { Form } from '../../hooks/useProposalForm'\nimport { communityRangeLabel } from './rangeLabels'\n\nimport { COMMUNITY_SIZE_RANGES } from './types'\n\nexport function CommunityField() {\n return (\n \n {({ field, form, meta }: formik.FieldProps) => {\n return (\n {\n form.setFieldValue(field.name, selected[0].value)\n }}\n placeholder={t('Select an option')}\n selected={field.value ? [field.value] : []}\n >\n {COMMUNITY_SIZE_RANGES.map((range, index) => {\n const { content, label } = communityRangeLabel(range)\n return (\n \n {content}\n \n )\n })}\n \n )\n }}\n \n )\n}\n", "import * as React from 'react'\nimport { useParams } from 'react-router-dom'\n\nimport * as service from '@owl-nest/services'\nimport * as model from '@owl-nest/models'\nimport * as api from '@owl-nest/api-client/latest'\nimport * as hooks from '@owl-nest/hooks'\n\nimport { useDuplicate } from '../../hooks/useDuplicate'\nimport { Progress } from './Progress'\nimport { PollState } from './PollState'\nimport { LinkState } from './LinkState'\nimport { DoneState } from './DoneState'\nimport { DuplicateState } from './DuplicateState'\nimport { StaffDuplicateState } from './StaffDuplicateState'\nimport { Connect } from './Connect'\nimport { useProposal } from '../../hooks/useProposal'\n\nexport function Loading(): React.ReactElement {\n const params = useParams<{ token: string }>()\n const workflow = useWorkflow(params.token)\n\n switch (workflow.status) {\n case 'poll':\n return (\n \n \n \n )\n case 'connect':\n return \n case 'staff-duplicate':\n return (\n \n \n \n )\n case 'duplicate':\n return (\n \n \n \n )\n case 'link':\n return (\n \n \n \n )\n case 'done':\n return (\n \n \n \n )\n }\n\n return \n}\n\ntype Workflow =\n | { status: 'failure' }\n | { status: 'poll' }\n | { status: 'connect'; proposal: api.Proposal }\n | { status: 'done'; proposal: api.Proposal }\n | { status: 'staff-duplicate'; proposal: api.Proposal }\n | { status: 'duplicate'; proposal: api.Proposal }\n | { status: 'link' }\n\nfunction useWorkflow(token?: string): Workflow {\n const auth = service.user.useAuth()\n const duplicate = useDuplicate()\n\n const proposalQuery = useProposal(token, { withToken: service.user.isLoggedIn(auth) })\n\n if (proposalQuery.response.status === hooks.QueryStatus.FAILURE) {\n // TODO handle error\n return { status: 'failure' }\n }\n\n const proposal = hooks.data(proposalQuery.response)\n\n if (proposal === undefined || !model.proposal.isReady(proposal)) {\n return { status: 'poll' }\n }\n\n if (!model.proposal.isInvalid(proposal) && model.proposal.isPending(proposal)) {\n if (!service.user.isLoggedIn(auth)) {\n return { status: 'connect', proposal }\n }\n\n if (auth.user.is_staff && auth.user.email !== proposal.email) {\n return { status: 'staff-duplicate', proposal }\n }\n\n if (duplicate !== undefined) {\n return { status: 'duplicate', proposal }\n }\n\n return { status: 'link' }\n }\n\n return { status: 'done', proposal }\n}\n", "import * as React from 'react'\nimport styled, { keyframes } from 'styled-components'\n\nimport { t, tc } from '@owl-nest/localize'\nimport * as plume from '@ulule/owl-kit-components/next'\n\nimport { useProgress, PROGRESS_TRANSITION_DURATION } from './useLoadingProgress'\nimport * as UFE from '../../UFE'\n\nexport function Progress(): React.ReactElement {\n const { progress } = useProgress()\n return (\n \n \n \n \n \n \n \n {tc('[highligted: Project] under study', { highligted: })}\n \n \n \n \n {t('A successful project last between 30 and 40 days maximum!')}\n \n \n \n )\n}\n\nconst Highligted = styled.span`\n background-color: ${plume.COLORS.PRIMARY_GREEN};\n color: ${plume.COLORS.PRIMARY_WHITE};\n padding: 0 3px;\n`\n\nconst ProgressBar = styled.div<{ progress: number }>`\n background-color: ${plume.COLORS.GREY_SHADE_4};\n border-radius: 2px;\n height: 8px;\n overflow: hidden;\n position: relative;\n width: 100%;\n\n &::after {\n background-color: ${plume.COLORS.PRIMARY_GREEN};\n border-radius: 2px;\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n height: 100%;\n width: ${(props) => props.progress}%;\n transition: width ${PROGRESS_TRANSITION_DURATION}ms;\n }\n`\n\nconst ProgressStatus = styled.div`\n display: grid;\n grid-template: 'title title' 'progress progress' 'icon advice' / min-content auto;\n\n ${plume.styles.heading.M} {\n grid-area: title;\n }\n ${ProgressBar} {\n grid-area: progress;\n margin: 16px 0;\n }\n ${plume.glyphs.fill.CheckCircle} {\n grid-area: icon;\n height: 26px;\n margin-right: 12px;\n color: ${plume.COLORS.PRIMARY_GREEN};\n }\n ${plume.styles.heading.XXS} {\n grid-area: advice;\n }\n`\n\nconst fire = keyframes`\n from {\n transform: scale(1);\n }\n 50% {\n transform: scale(1.2);\n }\n to {\n transform: scale(1);\n }\n`\n\nconst Fire = styled.img`\n animation: ${fire} 0.5s linear infinite;\n transform-origin: top center;\n position: absolute;\n bottom: 0;\n left: 32px;\n width: 56px;\n`\n\nconst Rocket = styled.img`\n position: absolute;\n left: 0;\n top: 0;\n width: 120px;\n`\n\nconst rocket = keyframes`\n from {\n transform: translateY(0);\n }\n 50% {\n transform: translateY(-20px);\n }\n to {\n transform: translateY(0);\n }\n`\n\nconst RocketContainer = styled.div`\n animation: ${rocket} 3s ease-in-out infinite;\n position: relative;\n width: 120px;\n height: 260px;\n margin: 20px;\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n margin-right: 75px;\n }\n`\n\nconst spaceBackground = keyframes`\n from {\n background-position-y: 0;\n }\n to {\n background-position-y: 587px;\n }\n`\n\nconst Wrapper = styled.div`\n animation: ${spaceBackground} 5s linear infinite;\n background-image: url('${UFE.SPACE_BACKGROUND_IMAGE}');\n background-position: center;\n background-repeat-y: repeat;\n\n display: grid;\n grid-template: 'illustration' 'status';\n align-items: center;\n justify-items: center;\n\n ${RocketContainer} {\n grid-area: illustration;\n }\n\n ${ProgressStatus} {\n grid-area: status;\n }\n\n @media screen and ${plume.BREAKPOINTS.TABLET} {\n grid-template: 'illustration status';\n\n ${ProgressStatus} {\n margin-top: 30px;\n }\n }\n`\n", "import * as jotai from 'jotai'\n\nconst PROGRESS_ATOM = jotai.atom(0)\n\nexport const PROGRESS_TRANSITION_DURATION = 500\n\nexport function useProgress(): { progress: number; increment: () => Promise; finish: () => Promise } {\n const [progress, setProgress] = jotai.useAtom(PROGRESS_ATOM)\n\n return { progress, increment, finish }\n\n async function increment(weight = getWeight(progress)): Promise {\n setProgress((progress) => {\n if (progress >= 1) {\n return 1\n }\n if (progress < 0) {\n return 0\n }\n\n const maxIncrement = 1 - progress\n const clampedWeight = Math.min(Math.max(weight, 0), 1)\n const jitter = 0.8 + 0.4 * Math.random()\n const increment = maxIncrement * clampedWeight * jitter\n\n return progress + increment\n })\n\n await new Promise((res) => setTimeout(res, PROGRESS_TRANSITION_DURATION))\n }\n\n async function finish(): Promise {\n setProgress(1)\n\n await new Promise((res) => setTimeout(res, PROGRESS_TRANSITION_DURATION))\n }\n\n function getWeight(progress: number): number {\n return 0.1 + Math.pow(progress, 4) * 0.4\n }\n}\n", "import * as React from 'react'\n\nimport * as service from '@owl-nest/services'\nimport * as hooks from '@owl-nest/hooks'\nimport * as shadow from '@owl-nest/shadow'\n\nimport { useProgress } from './useLoadingProgress'\nimport { useProposal } from '../../hooks/useProposal'\n\ntype PollStateProps = {\n token?: string\n children?: React.ReactNode\n}\n\nconst LOCALSTORAGE_NAMESPACE = 'ul_track_proposal'\nconst LOCALSTORAGE_LIFETIME = 1000 * 60 * 60 * 24 // 24h\n\nexport function PollState({ token, children }: PollStateProps): React.ReactElement {\n const user = service.user.useAuthenticatedUser()\n const proposalQuery = useProposal(token, { withToken: user !== undefined })\n const { increment } = useProgress()\n const tracking = shadow.useTracking()\n\n React.useEffect(() => {\n const proposal = proposalQuery.response.data\n if (proposal === undefined) {\n return\n }\n\n const trackedProposal = localStorage.getItem(`${LOCALSTORAGE_NAMESPACE}.${proposal.id}`)\n\n if (trackedProposal) {\n return\n }\n\n tracking.track({\n event: shadow.EVENT_TYPE.GENERIC,\n eventCategory: shadow.CATEGORY.PROJECT_PROPOSAL_TRACKING,\n eventAction: 'Done',\n eventLabel: proposal.id,\n ululeUserId: user?.id,\n })\n\n localStorage.setItem(`${LOCALSTORAGE_NAMESPACE}.${proposal.id}`, 'true')\n }, [proposalQuery.response.status])\n\n hooks.useTimeout(() => {\n proposalQuery.query()\n increment()\n }, 3000)\n\n return <>{children}\n}\n", "import * as React from 'react'\n\nimport * as service from '@owl-nest/services'\n\nimport { useProgress } from './useLoadingProgress'\nimport { useProposal } from '../../hooks/useProposal'\n\ntype LinkStateProps = { token?: string; children?: React.ReactNode }\n\nexport function LinkState({ token, children }: LinkStateProps): React.ReactElement {\n const auth = service.user.useAuth()\n const proposalQuery = useProposal(token, { withToken: service.user.isLoggedIn(auth) })\n const { increment } = useProgress()\n\n React.useEffect(() => {\n proposalQuery.update({}, { withToken: true })\n increment()\n }, [])\n\n return <>{children}\n}\n", "import * as React from 'react'\nimport { useNavigate } from 'react-router-dom'\n\nimport * as model from '@owl-nest/models'\nimport * as api from '@owl-nest/api-client/latest'\n\nimport { useProgress } from './useLoadingProgress'\n\ntype DoneStateProps = { proposal: api.Proposal; children?: React.ReactNode }\n\nexport function DoneState({ proposal, children }: DoneStateProps): React.ReactElement {\n const navigate = useNavigate()\n const { finish } = useProgress()\n\n React.useEffect(() => {\n finish().then(() => {\n if (model.proposal.isInvalid(proposal) || proposal.project === null) {\n if (proposal.answer_code === api.ProposalAnswerCode.INVALID_OKPAL) {\n navigate(`/${proposal.token}/okpal`, { replace: true })\n } else {\n navigate(`/${proposal.token}/refused`, { replace: true })\n }\n } else {\n location.href = proposal.project.absolute_url\n }\n })\n }, [])\n\n return <>{children}\n}\n", "import * as React from 'react'\nimport { useNavigate } from 'react-router-dom'\n\nimport * as api from '@owl-nest/api-client/latest'\n\ntype DuplicateStateProps = { proposal: api.Proposal; children?: React.ReactNode }\n\nexport function DuplicateState({ proposal, children }: DuplicateStateProps): React.ReactElement {\n const navigate = useNavigate()\n\n React.useEffect(() => {\n navigate(`/${proposal.token}/duplicate`, { replace: true })\n }, [])\n\n return <>{children}\n}\n", "import * as React from 'react'\nimport { useNavigate } from 'react-router-dom'\n\nimport * as api from '@owl-nest/api-client/latest'\n\ntype StaffDuplicateStateProps = { proposal: api.Proposal; children?: React.ReactNode }\n\nexport function StaffDuplicateState({\n proposal,\n children,\n}: StaffDuplicateStateProps): React.ReactElement {\n const navigate = useNavigate()\n\n React.useEffect(() => {\n navigate(`/${proposal.token}/staff-duplicate`, { replace: true })\n }, [])\n\n return <>{children}\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'\nimport { Connect as RealConnect } from '@owl-nest/connect'\nimport * as connectStyles from '@owl-nest/connect/src/styles'\nimport * as service from '@owl-nest/services'\nimport * as api from '@owl-nest/api-client/latest'\n\ntype ConnectProps = { proposal: api.Proposal }\n\nexport function Connect({ proposal }: ConnectProps): React.ReactElement {\n const auth = service.user.useAuth()\n\n const [hasIdentified, setHasIdentified] = React.useState(false)\n React.useEffect(() => {\n if (hasIdentified) {\n return\n }\n if (auth.type === 'unknown') {\n auth.identify('email', proposal.email)\n setHasIdentified(true)\n }\n if (auth.type === 'known' || auth.type === 'existing' || auth.type === 'new') {\n auth.forget()\n }\n }, [auth.type])\n\n return (\n \n {t('Connect to continue')}\n \n \n )\n}\n\nconst Wrapper = styled.div`\n width: 100%;\n display: flex;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n\n ${plume.styles.heading.M} {\n text-align: center;\n margin-bottom: 40px;\n }\n\n ${connectStyles.Wrapper} {\n width: 100%;\n max-width: 500px;\n }\n`\n", "import * as React from 'react'\nimport { useNavigate } from 'react-router-dom'\nimport styled from 'styled-components'\n\nimport * as plume from '@ulule/owl-kit-components/next'\nimport { t } from '@owl-nest/localize'\n\nexport function Refused() {\n const navigate = useNavigate()\n\n return (\n \n \n \n {t('Your project does not qualify on Ulule')}\n \n {t(\n 'Thanks for submitting your project on Ulule. Unfortunately, we won\u2019t be able to pursue with your request on our platform because your country is not yet supported by Ulule.',\n )}\n \n \n {t('Contact us')}\n \n navigate('/')}>\n {t('Back to form')}\n \n \n \n )\n}\n\nconst Wrapper = styled.div`\n display: flex;\n flex-direction: row;\n padding: 40px 0;\n`\n\nconst Content = styled.div`\n margin-left: 32px;\n\n ${plume.styles.heading.M} {\n margin-bottom: 17px;\n }\n\n ${plume.styles.copy.M} {\n margin-bottom: 50px;\n }\n`\n", "import * as React from 'react'\nimport { useNavigate, useParams } from 'react-router-dom'\nimport styled from 'styled-components'\n\nimport * as plume from '@ulule/owl-kit-components/next'\nimport * as hooks from '@owl-nest/hooks'\nimport { t } from '@owl-nest/localize'\n\nimport { useProposal } from '../hooks/useProposal'\n\nexport function StaffDuplicate(): React.ReactElement {\n const params = useParams<{ token: string }>()\n const proposalQuery = useProposal(params.token, { withToken: true })\n const proposal = hooks.data(proposalQuery.response)\n const navigate = useNavigate()\n\n if (proposal === undefined) {\n return \n }\n\n return (\n \n \n {t(\"The email in the proposal is %(email)s, it's not yours!\", {\n email: proposal.email,\n })}\n \n \n {t(\n \"You're seeing this screen because you're a staff member. Are you sure you want to link this proposal to your account?\",\n )}\n \n \n {t('Confirm creation of a new project')}\n \n \n )\n\n async function createProposal(): Promise {\n if (params.token !== undefined) {\n await proposalQuery.update({}, { withToken: true })\n navigate(`/${params.token}/loading`, { replace: true })\n }\n }\n}\n\nconst Wrapper = styled.div`\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n\n ${plume.styles.copy.M} {\n margin: 14px 0 28px 0;\n }\n\n ${plume.styles.heading.M}, ${plume.styles.copy.M} {\n text-align: center;\n }\n\n ${plume.Button} {\n margin: 30px 0 17px 0;\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", "n", "init_define_process_env", "init_sentry_release_injection_stub", "init_define_process_env", "init_sentry_release_injection_stub", "React", "ReactDOM", "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", "windowLens", "lens", "FLAGS", "URLS", "PROPOSAL_IMAGES", "ISLANDS", "CURRENCIES", "USER", "GTM_KEY", "AFFILIATION_ID", "PARTNER_ID", "ROCKET_IMAGE", "FIRE_IMAGE", "SPACE_BACKGROUND_IMAGE", "HeaderComponent", "props", "_a", "_b", "_c", "usePartner", "partner_exports", "AFFILIATION_ID", "partner", "data", "isPartnerDefault", "partnerLogo", "__spreadValues", "Title", "Emphasis", "ArrowDecoration", "colors_exports", "Subtitle", "glyphs_exports", "PartnerBlock", "PartnerLabel", "PartnerLogo", "src_default", "__template", "styles_exports", "breakpoints_exports", "_d", "_e", "_f", "_g", "_h", "Header", "init_define_process_env", "init_sentry_release_injection_stub", "React", "AsideComponent", "props", "userConfig", "useUserEnv", "__spreadValues", "Title", "ReasonList", "ReasonItem", "illustrations_exports", "styles_exports", "Link", "_a", "src_default", "__template", "_b", "_c", "_d", "Aside", "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", "ImageMedia", "srcset", "className", "ref", "Carousel", "items", "random", "indexActive", "setindexActive", "stableItems", "array_exports", "stableUpdateIndex", "useTimeout", "ref", "inView", "useInView", "CarouselItems", "item", "i", "CarouselItem", "CarouselImage", "CarouselRegularText", "CarouselName", "Link", "CarouselPlace", "CarouselSteps", "CarouselStep", "_a", "src_default", "ImageMedia", "__template", "breakpoints_exports", "_b", "_c", "_d", "_e", "active", "css", "_f", "styles_exports", "_g", "_h", "_i", "_j", "colors_exports", "init_define_process_env", "init_sentry_release_injection_stub", "celia", "david", "lolo", "maliki", "noob", "theo", "PROPOSAL_IMAGES", "items", "FooterComponent", "props", "__spreadValues", "styles_exports", "Carousel", "items", "_a", "Footer", "src_default", "__template", "init_define_process_env", "init_sentry_release_injection_stub", "React", "init_define_process_env", "init_sentry_release_injection_stub", "boxtal", "PROPOSAL_IMAGES", "getItems", "PartnerFooterComponent", "props", "items", "getItems", "nbItems", "Wrapper", "__spreadProps", "__spreadValues", "styles_exports", "ItemsWrapper", "item", "i", "Item", "_a", "PartnerFooter", "src_default", "__template", "_b", "colors_exports", "breakpoints_exports", "_c", "_d", "Link", "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", "CommentCardComponent", "icon", "name", "title", "comment", "rating", "CommentContainer", "User", "UserName", "styles_exports", "Icon", "Rating", "_", "idx", "glyphs_exports", "_a", "CommentCard", "src_default", "__template", "_b", "colors_exports", "breakpoints_exports", "_c", "_d", "_e", "_f", "CommentCarousel", "comments", "CommentsContainer", "CommentsSlider", "comment", "idx", "CommentCard", "CommentsSliderLaptop", "_a", "src_default", "__template", "breakpoints_exports", "_b", "_c", "init_define_process_env", "init_sentry_release_injection_stub", "COMMENTS_DATA", "WideFooterComponent", "className", "styles_exports", "CommentCarousel", "COMMENTS_DATA", "_a", "WideFooter", "src_default", "__template", "colors_exports", "init_define_process_env", "init_sentry_release_injection_stub", "React", "ServicesComponent", "className", "listItems", "styles_exports", "PROPOSAL_IMAGES", "Link", "PopHeading", "Description", "MediaStackWithPath", "ButtonAsLink", "_a", "src_default", "__template", "breakpoints_exports", "_b", "Services", "colors_exports", "Layout", "children", "useUserEnv", "GridFr", "GlobalStyle", "GridHeader", "GridMain", "GridAside", "GridServices", "GridFrFooter", "GridFooter", "GridWideFooter", "Grid", "_a", "createGlobalStyle", "__template", "colors_exports", "_b", "GridBase", "src_default", "_c", "breakpoints_exports", "_d", "_e", "_f", "Header", "_g", "_h", "Aside", "_i", "Services", "_j", "Footer", "_k", "CustomPartnerFooter", "PartnerFooter", "_l", "WideFooter", "init_define_process_env", "init_sentry_release_injection_stub", "React", "init_define_process_env", "init_sentry_release_injection_stub", "useDuplicate", "_a", "_b", "user", "user_exports", "response", "partner_exports", "AFFILIATION_ID", "partner", "data", "hasPartner", "isPartnerDefault", "project", "init_define_process_env", "init_sentry_release_injection_stub", "init_define_process_env", "init_sentry_release_injection_stub", "EXTRA_FIELDS", "setInitialProposal", "store", "proposal", "user", "proposal_exports", "useProposal", "token", "config", "__spreadProps", "__spreadValues", "query", "update", "patch", "PROPOSAL_FORM_ATOM", "atom", "useProposalForm", "store", "useStore", "user", "user_exports", "userConfig", "useUserEnv", "value", "setValue", "useAtom", "proposalQuery", "useProposal", "currentProposal", "data", "tracking", "useTracking", "persist", "create", "form", "state", "__spreadProps", "__spreadValues", "_a", "_b", "response", "USER_COUNTRY", "link", "Either", "proposal_exports", "PARTNER_ID", "proposal", "setInitialProposal", "Duplicate", "_a", "_b", "_c", "_d", "_e", "duplicate", "useDuplicate", "partner", "data", "partner_exports", "AFFILIATION_ID", "token", "create", "useProposalForm", "proposalQuery", "useProposal", "navigate", "useNavigate", "Spinner", "projectName", "project_exports", "needModeration", "hasCurrentPartner", "partnership", "PARTNER_ID", "acceptedSamePartner", "acceptedDifferentPartner", "Wrapper", "styles_exports", "CardTypeSelector", "USER", "goToProject", "Button", "goToDiscussion", "LinkAsButton", "createProposal", "proposal", "project", "src_default", "__template", "MembershipProjectCard", "init_define_process_env", "init_sentry_release_injection_stub", "React", "init_define_process_env", "init_sentry_release_injection_stub", "React", "SectionComponent", "_a", "_b", "children", "props", "__objRest", "__spreadValues", "SectionContent", "SectionIndex", "src_default", "styles_exports", "__template", "colors_exports", "SectionTitle", "_c", "breakpoints_exports", "_d", "Section", "init_define_process_env", "init_sentry_release_injection_stub", "React", "DescriptionField", "tracker", "Field", "field", "meta", "TextAreaField", "__spreadProps", "__spreadValues", "event", "init_define_process_env", "init_sentry_release_injection_stub", "React", "init_define_process_env", "init_sentry_release_injection_stub", "COMMUNITY_SIZE_RANGES", "GOAL_RANGES", "validationSchema", "create$3", "create$6", "create$5", "create$8", "schema", "url", "max", "phone", "email", "init_define_process_env", "init_sentry_release_injection_stub", "React", "communityRangeLabel", "range", "maximum", "text_exports", "minimum", "goalRangeLabel", "currency", "minAmount", "accounting_exports", "getUserConfig", "maxAmount", "Money", "GoalField", "tracker", "Field", "field", "meta", "RadioGroupField", "RadioField", "__spreadValues", "__spreadProps", "onChangeAndValue", "RadioLabelWithFlag", "Tag", "value", "fieldValue", "event", "form", "GoalSelectField", "selected", "GOAL_RANGES", "range", "i", "label", "content", "goalRangeLabel", "Option", "_a", "src_default", "SelectField", "__template", "hidden", "_b", "init_define_process_env", "init_sentry_release_injection_stub", "React", "RewardTypeField", "tracker", "Field", "field", "meta", "RadioGroupField", "RadioField", "__spreadProps", "__spreadValues", "onChangeAndValue", "illustrations_exports", "value", "fieldValue", "event", "init_define_process_env", "init_sentry_release_injection_stub", "React", "LegalEntityField", "tracker", "Field", "field", "meta", "RadioGroupField", "RadioField", "__spreadProps", "__spreadValues", "onChangeAndValue", "value", "fieldValue", "event", "init_define_process_env", "init_sentry_release_injection_stub", "React", "init_define_process_env", "init_sentry_release_injection_stub", "createSocialLink", "url", "link_exports", "toValidUrl", "LinksField", "tracker", "FieldArray", "_a", "_b", "form", "arrayHelpers", "__objRest", "AddLinkField", "link", "index", "Link", "glyphs_exports", "styles_exports", "Field", "field", "CheckboxField", "event", "onAddLink", "meta", "disabledAddLink", "LineField", "TextField", "__spreadProps", "__spreadValues", "addLink", "Button", "validate", "reach", "validationSchema", "error", "ValidationError", "createSocialLink", "src_default", "__template", "colors_exports", "init_define_process_env", "init_sentry_release_injection_stub", "React", "PhoneField", "tracker", "Field", "field", "meta", "form", "_a", "value", "COUNTRIES", "init_define_process_env", "init_sentry_release_injection_stub", "React", "import_localize", "EmailField", "tracker", "disabled", "Field", "field", "meta", "TextField", "__spreadProps", "__spreadValues", "event", "init_define_process_env", "init_sentry_release_injection_stub", "React", "SocialLinkModalComponent", "className", "open", "onAddLink", "onDismiss", "ModalWithIcon", "illustrations_exports", "styles_exports", "_a", "SocialLinkModal", "src_default", "__template", "breakpoints_exports", "init_define_process_env", "init_sentry_release_injection_stub", "React", "LocationModalComponent", "className", "open", "needLocation", "onClose", "Modal", "Field", "field", "form", "Formik", "__spreadValues", "values", "reach", "validationSchema", "formikBag", "styles_exports", "meta", "SelectField", "__spreadProps", "selected", "COUNTRIES", "country", "Option", "CURRENCIES", "currency", "Button", "LinkAsButton", "_a", "src_default", "__template", "index", "_b", "LocationModal", "breakpoints_exports", "init_define_process_env", "init_sentry_release_injection_stub", "React", "CommunityField", "Field", "field", "form", "meta", "SelectField", "__spreadProps", "__spreadValues", "selected", "COMMUNITY_SIZE_RANGES", "range", "index", "content", "label", "communityRangeLabel", "Option", "FormCreate", "_a", "_b", "fix", "useFix", "navigate", "useNavigate", "duplicate", "useDuplicate", "proposalForm", "useProposalForm", "userConfig", "useUserEnv", "isLocationModalOpen", "setIsLocationModalOpen", "isSocialLinkModalOpen", "setIsSocialLinkModalOpen", "isFullDisclaimerOpen", "setIsFullDisclaimerOpen", "tracker", "useFormTracking", "GTM_KEY", "Spinner", "Formik", "handleSubmit", "getLocation", "validationSchema", "formikBag", "_c", "user", "user_exports", "needLocation", "useAfterSubmit", "useScrollToFirstError", "useBeforeUnload", "isFormDirty", "FormWrapper", "ProjectSection", "DescriptionField", "GoalField", "RewardTypeField", "UserSection", "LegalEntityField", "LinksField", "CommunityField", "PhoneField", "EmailField", "Footer", "Button", "styles_exports", "COUNTRIES", "country", "LinkAsButton", "TermsButton", "ToggleableSmallText", "Link", "SocialLinkModal", "scroll_exports", "sizes_exports", "LocationModal", "values", "createSocialLink", "link", "hasLinks", "hasAtLeastOneCrawlableLink", "goalRangeLabel", "failure", "proposal", "supportedCountry", "CURRENCIES_COUNTRY", "islandCodes", "ISLANDS", "effect", "wasSubmitting", "usePrevious", "isAuthentifiedUser", "hasChanged", "src_default", "__template", "breakpoints_exports", "SelectField", "Select", "open", "colors_exports", "_d", "_e", "BaseSection", "Section", "CheckboxField", "RadioField", "Field", "_f", "SectionContent", "TextField", "SmallRadioList", "_g", "TextAreaField", "RadioGroupField", "BigRadioList", "illustrations_exports", "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", "PROGRESS_ATOM", "atom", "PROGRESS_TRANSITION_DURATION", "useProgress", "progress", "setProgress", "useAtom", "increment", "finish", "weight", "getWeight", "maxIncrement", "clampedWeight", "jitter", "res", "Progress", "progress", "useProgress", "Wrapper", "RocketContainer", "Fire", "FIRE_IMAGE", "Rocket", "ROCKET_IMAGE", "ProgressStatus", "styles_exports", "Highligted", "ProgressBar", "glyphs_exports", "_a", "src_default", "__template", "colors_exports", "_b", "props", "PROGRESS_TRANSITION_DURATION", "_c", "_d", "fire", "keyframes", "_e", "_f", "_g", "rocket", "_h", "breakpoints_exports", "_i", "spaceBackground", "_j", "SPACE_BACKGROUND_IMAGE", "init_define_process_env", "init_sentry_release_injection_stub", "React", "LOCALSTORAGE_NAMESPACE", "LOCALSTORAGE_LIFETIME", "PollState", "token", "children", "user", "user_exports", "proposalQuery", "useProposal", "increment", "useProgress", "tracking", "useTracking", "proposal", "useTimeout", "init_define_process_env", "init_sentry_release_injection_stub", "React", "LinkState", "token", "children", "auth", "user_exports", "proposalQuery", "useProposal", "increment", "useProgress", "init_define_process_env", "init_sentry_release_injection_stub", "React", "DoneState", "proposal", "children", "navigate", "useNavigate", "finish", "useProgress", "proposal_exports", "init_define_process_env", "init_sentry_release_injection_stub", "React", "DuplicateState", "proposal", "children", "navigate", "useNavigate", "init_define_process_env", "init_sentry_release_injection_stub", "React", "StaffDuplicateState", "proposal", "children", "navigate", "useNavigate", "init_define_process_env", "init_sentry_release_injection_stub", "React", "Connect", "proposal", "auth", "user_exports", "hasIdentified", "setHasIdentified", "Wrapper", "styles_exports", "_a", "src_default", "__template", "Loading", "params", "useParams", "workflow", "useWorkflow", "PollState", "Progress", "Connect", "StaffDuplicateState", "DuplicateState", "LinkState", "DoneState", "token", "auth", "user_exports", "duplicate", "useDuplicate", "proposalQuery", "useProposal", "proposal", "data", "proposal_exports", "init_define_process_env", "init_sentry_release_injection_stub", "React", "Refused", "navigate", "useNavigate", "Wrapper", "illustrations_exports", "Content", "styles_exports", "Button", "LinkAsButton", "_a", "src_default", "__template", "_b", "init_define_process_env", "init_sentry_release_injection_stub", "React", "StaffDuplicate", "params", "useParams", "proposalQuery", "useProposal", "proposal", "data", "navigate", "useNavigate", "Spinner", "Wrapper", "styles_exports", "LinkAsButton", "createProposal", "_a", "src_default", "__template", "Button", "App", "Layout", "BrowserRouter", "BackToTop", "Routes", "Route", "FormCreate", "Duplicate", "StaffDuplicate", "Loading", "Refused", "children", "location", "useLocation", "renderHeader", "headerContainer", "LegacyCompatibleHeader", "err", "renderFooter", "userConfig", "getUserConfig", "footerContainer", "Footer", "getNavSectionList", "mount", "initUserConfig", "initializeLocalization", "LOCALE_FILES", "appContainer", "App", "proposals_default"] }