You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailchat/web/src/routes/Invite/index.tsx

31 lines
915 B
TypeScript

import { Divider } from 'antd';
import React from 'react';
import { useParams } from 'react-router';
import { InviteInfo } from './InviteInfo';
import { JoinBtn } from './JoinBtn';
import { PortalHost } from '@/components/Portal';
import { useRecordMeasure } from '@/utils/measure-helper';
/**
* 邀请界面路由
*/
export const InviteRoute: React.FC = React.memo(() => {
const { inviteCode } = useParams<{ inviteCode: string }>();
useRecordMeasure('AppInviteRenderStart');
return (
<PortalHost>
<div className="h-full w-full bg-gray-600 flex justify-center items-center tc-background">
<div className="w-96 p-4 rounded-lg shadow-lg bg-black bg-opacity-60 text-center">
<InviteInfo inviteCode={inviteCode} />
<Divider />
<JoinBtn inviteCode={inviteCode} />
</div>
</div>
</PortalHost>
);
});
InviteRoute.displayName = 'InviteRoute';