-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4ff7c4d
commit 2a283ae
Showing
8 changed files
with
190 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { Footer, Header } from '@magickbase-website/shared' | ||
import { api } from '@/utils/api' | ||
import { PropsWithChildren } from 'react' | ||
|
||
export const Layout: React.FC<PropsWithChildren> = ({ children }) => { | ||
const aggregateStateQuery = api.uptime.aggregateState.useQuery() | ||
|
||
return ( | ||
<> | ||
<Header | ||
navMenus={[ | ||
{ name: 'Home', link: '/' }, | ||
{ name: 'Index', link: '/stat' }, | ||
{ name: 'History Events', link: '/events' }, | ||
]} | ||
/> | ||
{children} | ||
<Footer className="snap-always snap-center" serviceState={aggregateStateQuery.data} serviceLink="/status" /> | ||
</> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
import dayjs from 'dayjs' | ||
import { FC, useState } from 'react' | ||
import classnames from 'classnames' | ||
import { api } from '@/utils/api' | ||
import { Layout } from '@/components/Layout' | ||
|
||
const EventPage: FC<{ page?: number }> = ({ page = 1 }) => { | ||
const incidentsQuery = api.uptime.listStatusIncidents.useQuery({ page }) | ||
|
||
if (!incidentsQuery.data) { | ||
return new Array(10).fill('').map((_, index) => ( | ||
<div key={`skeleton-${index}`} className='skeleton h-[129px] md:h-[41px] w-full' /> | ||
)) | ||
} | ||
|
||
return incidentsQuery.data?.map(incident => { | ||
const intraday = | ||
dayjs(incident.attributes.started_at).format('YYYY-MM-DD') === | ||
dayjs(incident.attributes.resolved_at).format('YYYY-MM-DD') | ||
|
||
return ( | ||
<div key={incident.id} className='flex flex-col md:flex-row md:justify-between text-[#F5F5F5] pb-4 border-b border-[#FFFFFF33]'> | ||
<div className='text-nowrap truncate mb-2 md:mb-0'> | ||
{dayjs(incident.attributes.started_at).format('YYYY-MM-DD hh:mm')} ~{' '} | ||
{dayjs(incident.attributes.resolved_at).format(intraday ? 'hh:mm' : 'YYYY-MM-DD hh:mm')} | ||
</div> | ||
<div className='md:text-nowrap md:truncate mb-2 md:mb-0 text-[#999999]'>{incident.attributes.name} is down due to {incident.attributes.cause}</div> | ||
|
||
<div className='flex'> | ||
<div className='mr-2 md:hidden'>{incident.attributes.name}</div> | ||
<div className='py-[2px] px-4 rounded-md bg-[#F62A2A] text-sm'>Downtime</div> | ||
</div> | ||
</div> | ||
) | ||
}) | ||
} | ||
|
||
export default function Event() { | ||
const [page, setPage] = useState(1) | ||
const incidentPages = api.uptime.countIncidentPages.useQuery() | ||
|
||
return ( | ||
<Layout> | ||
<div className="container mx-auto mb-20 flex flex-col"> | ||
<div className="text-xl mb-4 text-[600]">History Events</div> | ||
<div className="border border-[#FFFFFF33] border-solid rounded-3xl p-4 bg-gradient-to-b from-[#36363666] to-[#1D1D1D33]"> | ||
<div className='flex flex-col gap-4 mb-8'> | ||
<EventPage key={page} page={page} /> | ||
</div> | ||
{incidentPages.data && incidentPages.data > 1 && ( | ||
<div className="flex gap-2 justify-center"> | ||
<button className={classnames('btn btn-outline hidden md:block')} onClick={() => setPage(1)} disabled={page === 1}> | ||
First | ||
</button> | ||
|
||
<button | ||
className={classnames('btn btn-outline')} | ||
onClick={() => setPage(prev => prev - 1)} | ||
disabled={page === 1} | ||
> | ||
Previous | ||
</button> | ||
|
||
<button className={classnames('btn btn-outline')} disabled> | ||
Page {page} of {incidentPages.data} | ||
</button> | ||
|
||
<button | ||
className={classnames('btn btn-outline')} | ||
onClick={() => setPage(prev => prev + 1)} | ||
disabled={page === incidentPages.data} | ||
> | ||
Next | ||
</button> | ||
|
||
<button | ||
className={classnames('btn btn-outline hidden md:block')} | ||
onClick={() => setPage(incidentPages.data)} | ||
disabled={page === incidentPages.data} | ||
> | ||
Last | ||
</button> | ||
</div> | ||
)} | ||
</div> | ||
</div> | ||
</Layout> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters