Files
talk/src/core/client/stream/components/UserBoxAuthenticated.tsx
T

50 lines
1.2 KiB
TypeScript

import { Localized } from "fluent-react/compat";
import React, { StatelessComponent } from "react";
import { Button, Flex, Typography } from "talk-ui/components";
export interface UserBoxAuthenticatedProps {
onSignOut: () => void;
username: string;
}
const UserBoxAuthenticated: StatelessComponent<
UserBoxAuthenticatedProps
> = props => {
const Username = () => (
<Typography variant="bodyCopyBold" container="span">
{props.username}
</Typography>
);
return (
<Flex itemGutter="half" wrap>
<Localized
id="general-userBoxAuthenticated-signedInAs"
username={<Username />}
>
<Typography variant="bodyCopy" container="div">
{"Signed in as <username></username>."}
</Typography>
</Localized>
<Localized
id="general-userBoxAuthenticated-notYou"
button={
<Button
color="primary"
size="small"
variant="underlined"
onClick={props.onSignOut}
/>
}
>
<Typography variant="bodyCopy" container={Flex}>
{"Not you? <button>Sign Out</button>"}
</Typography>
</Localized>
</Flex>
);
};
export default UserBoxAuthenticated;