mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-28 03:29:25 +01:00
54 lines
2.1 KiB
TypeScript
54 lines
2.1 KiB
TypeScript
import { Head, router } from '@inertiajs/react'
|
|
import AppLayout from '~/layouts/AppLayout'
|
|
import StyledButton from '~/components/StyledButton'
|
|
import Alert from '~/components/Alert'
|
|
import useInternetStatus from '~/hooks/useInternetStatus'
|
|
import useServiceInstallationActivity from '~/hooks/useServiceInstallationActivity'
|
|
import InstallActivityFeed from '~/components/InstallActivityFeed'
|
|
import ActiveDownloads from '~/components/ActiveDownloads'
|
|
import StyledSectionHeader from '~/components/StyledSectionHeader'
|
|
|
|
export default function EasySetupWizardComplete() {
|
|
const { isOnline } = useInternetStatus()
|
|
const installActivity = useServiceInstallationActivity()
|
|
|
|
return (
|
|
<AppLayout>
|
|
<Head title="Easy Setup Wizard Complete" />
|
|
{!isOnline && (
|
|
<Alert
|
|
title="No Internet Connection"
|
|
message="It looks like you're not connected to the internet. Installing apps and downloading content will require an internet connection."
|
|
type="warning"
|
|
variant="solid"
|
|
className="mb-8"
|
|
/>
|
|
)}
|
|
<div className="max-w-7xl mx-auto px-4 py-8">
|
|
<div className="bg-white rounded-md shadow-md p-6">
|
|
<StyledSectionHeader title="App Installation Activity" className=" mb-4" />
|
|
<InstallActivityFeed
|
|
activity={installActivity}
|
|
className="!shadow-none border-desert-stone-light border"
|
|
/>
|
|
<ActiveDownloads withHeader />
|
|
<Alert
|
|
title="Running in the Background"
|
|
message='Feel free to leave this page at any time - your app installs and downloads will continue in the background!'
|
|
type="info"
|
|
variant="solid"
|
|
className='mt-12'
|
|
/>
|
|
<div className="flex justify-center mt-8 pt-4 border-t border-desert-stone-light">
|
|
<div className="flex space-x-4">
|
|
<StyledButton onClick={() => router.visit('/home')} icon="IconHome">
|
|
Go to Home
|
|
</StyledButton>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</AppLayout>
|
|
)
|
|
}
|