// @flow import React, { useState } from 'react'; import Button from 'component/button'; import I18nMessage from 'component/i18nMessage'; import { FormField } from 'component/common/form-components/form-field'; import { Form } from 'component/common/form-components/form'; import { withRouter } from 'react-router-dom'; // $FlowFixMe cannot resolve ... import image from 'static/img/unlocklbry.svg'; import { WELCOME_VERSION } from 'config'; const FREE = 'free'; const LIMITED = 'limited'; const NONE = 'none'; type Props = { setWelcomeVersion: number => void, signOut: () => void, setShareDataInternal: boolean => void, setShareDataThirdParty: boolean => void, history: { replace: string => void }, authenticated: boolean, }; function PrivacyAgreement(props: Props) { const { setWelcomeVersion, setShareDataInternal, setShareDataThirdParty, history, authenticated, signOut } = props; const [share, setShare] = useState(undefined); // preload const [agree, setAgree] = useState(false); // preload function handleSubmit() { if (share === FREE) { setShareDataInternal(true); setShareDataThirdParty(true); } else if (share === LIMITED) { setShareDataInternal(true); setShareDataThirdParty(false); } else { setShareDataInternal(false); setShareDataThirdParty(false); } setWelcomeVersion(WELCOME_VERSION); history.replace(`/`); } return (

{__('Welcome')}

{__( `LBRY takes privacy and choice seriously. Just a few questions before you enter the land of content freedom.` )}


{__('Can this app send information about your usage to inform publishers and improve the software?')}

{__('Yes, including with third-party analytics platforms')} 😄 } helper={__(`Sending information to third parties (e.g. Google Analytics or Mixpanel) allows us to use detailed analytical reports to improve all aspects of LBRY.`)} checked={share === FREE} onChange={e => setShare(FREE)} /> {__('Yes, but only with LBRY, Inc.')} 🙂 } helper={__( `Sharing information with LBRY, Inc. allows us to report to publishers how their content is doing, as well as track basic usage and performance. This is the minimum required to earn rewards from LBRY, Inc.` )} onChange={e => setShare(LIMITED)} /> {__('No')} 😢 } helper={__(`No information will be sent directly to LBRY, Inc. or third-parties about your usage. Note that as peer-to-peer software, your IP address and potentially other system information can be sent to other users, though this information is not stored permanently.`)} onChange={e => setShare(NONE)} /> {authenticated && (

, }} > You are signed into lbry.tv which automatically shares data with LBRY inc. %signout_button%.

)}

), }} > Do you agree to the %terms%?

setAgree(e.target.checked)} /> setAgree(!e.target.checked)} />
{share === NONE && (

{__( 'While we respect the desire for maximally private usage, please note that choosing this option hurts the ability for creators to understand how their content is performing.' )}

)}
); } export default withRouter(PrivacyAgreement);