lbry-desktop/ui/page/welcome/view.jsx

63 lines
1.6 KiB
React
Raw Normal View History

// @flow
import React from 'react';
import PrivacyAgreement from 'component/privacyAgreement';
2022-04-01 21:10:32 +02:00
import WelcomeSplash from 'component/welcomeSplash';
import Page from 'component/page';
2022-04-01 21:10:32 +02:00
import { useHistory } from 'react-router-dom';
const SPLASH_PAGE = 0;
const PRIVACY_PAGE = 1;
// const HOSTING_PAGE = 2;
// const WELCOME_PAGES = [SPLASH_PAGE, PRIVACY_PAGE];
type DaemonStatus = {
disk_space: {
content_blobs_storage_used_mb: string,
published_blobs_storage_used_mb: string,
running: true,
seed_blobs_storage_used_mb: string,
total_used_mb: string,
},
};
type DaemonSettings = {
download_dir: string,
share_usage_data: boolean,
max_connections_per_download?: number,
save_files: boolean,
save_blobs: boolean,
ffmpeg_path: string,
};
type Props = {
// --- select ---
daemonSettings: DaemonSettings,
daemonStatus: DaemonStatus,
// -- perform ---
updateWelcomeVersion: () => void,
};
export default function Welcome(props: Props) {
const { updateWelcomeVersion } = props;
// const { save_blobs: saveBlobs } = daemonSettings || {};
const [welcomePage, setWelcomePage] = React.useState(SPLASH_PAGE);
const { replace } = useHistory();
const handleNextPage = () => {
if (welcomePage === SPLASH_PAGE) {
setWelcomePage(PRIVACY_PAGE);
}
};
const handleDone = () => {
updateWelcomeVersion();
replace('/');
};
return (
2020-08-21 17:49:13 +02:00
<Page noHeader noSideNavigation>
2022-04-01 21:10:32 +02:00
{welcomePage === SPLASH_PAGE && <WelcomeSplash handleNextPage={handleNextPage} />}
{welcomePage === PRIVACY_PAGE && <PrivacyAgreement handleNextPage={handleDone} />}
{/* {welcomePage === HOSTING_PAGE && } */}
</Page>
);
}