2021-09-04 12:18:44 +00:00
|
|
|
import type { GetServerSideProps } from 'next'
|
|
|
|
import dynamic from 'next/dynamic'
|
2022-08-02 13:56:12 +00:00
|
|
|
import * as React from 'react'
|
2022-07-12 10:12:00 +00:00
|
|
|
|
2022-08-02 13:56:12 +00:00
|
|
|
const IFrameWarning = dynamic(() => import('~components/IFrameWarning'), {
|
2022-07-12 10:12:00 +00:00
|
|
|
ssr: false,
|
|
|
|
}) as any
|
|
|
|
|
2022-08-02 13:56:12 +00:00
|
|
|
const MultiplayerEditor = dynamic(() => import('~components/MultiplayerEditor'), {
|
2022-05-14 13:15:55 +00:00
|
|
|
ssr: false,
|
|
|
|
}) as any
|
2021-09-04 12:18:44 +00:00
|
|
|
|
|
|
|
interface RoomProps {
|
|
|
|
id: string
|
|
|
|
}
|
|
|
|
|
2022-07-23 14:05:48 +00:00
|
|
|
export default function Room({ id }: RoomProps) {
|
2022-07-08 20:31:32 +00:00
|
|
|
if (typeof window !== 'undefined' && window.self !== window.top) {
|
2022-07-08 20:25:08 +00:00
|
|
|
return <IFrameWarning url={`https://tldraw.com/r/${id}`} />
|
|
|
|
}
|
|
|
|
|
2022-07-23 14:05:48 +00:00
|
|
|
return <MultiplayerEditor roomId={id} />
|
2021-09-04 12:18:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export const getServerSideProps: GetServerSideProps = async (context) => {
|
|
|
|
const id = context.query.id?.toString()
|
2022-05-18 15:59:30 +00:00
|
|
|
|
2021-09-04 12:18:44 +00:00
|
|
|
return {
|
|
|
|
props: {
|
|
|
|
id,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|