mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-24 18:25:22 +00:00
Sourcebot V4 introduces authentication, performance improvements and code navigation. Checkout the [migration guide](https://docs.sourcebot.dev/self-hosting/upgrade/v3-to-v4-guide) for information on upgrading your instance to v4. ### Changed - [**Breaking Change**] Authentication is now required by default. Notes: - When setting up your instance, email / password login will be the default authentication provider. - The first user that logs into the instance is given the `owner` role. ([docs](https://docs.sourcebot.dev/docs/more/roles-and-permissions)). - Subsequent users can request to join the instance. The `owner` can approve / deny requests to join the instance via `Settings` > `Members` > `Pending Requests`. - If a user is approved to join the instance, they are given the `member` role. - Additional login providers, including email links and SSO, can be configured with additional environment variables. ([docs](https://docs.sourcebot.dev/self-hosting/configuration/authentication)). - Clicking on a search result now takes you to the `/browse` view. Files can still be previewed by clicking the "Preview" button or holding `Cmd` / `Ctrl` when clicking on a search result. [#315](https://github.com/sourcebot-dev/sourcebot/pull/315) ### Added - [Sourcebot EE] Added search-based code navigation, allowing you to jump between symbol definition and references when viewing source files. [Read the documentation](https://docs.sourcebot.dev/docs/search/code-navigation). [#315](https://github.com/sourcebot-dev/sourcebot/pull/315) - Added collapsible filter panel. [#315](https://github.com/sourcebot-dev/sourcebot/pull/315) ### Fixed - Improved scroll performance for large numbers of search results. [#315](https://github.com/sourcebot-dev/sourcebot/pull/315)
96 lines
No EOL
3.4 KiB
TypeScript
96 lines
No EOL
3.4 KiB
TypeScript
import {
|
|
Body,
|
|
Button,
|
|
Container,
|
|
Head,
|
|
Heading,
|
|
Html,
|
|
Img,
|
|
Link,
|
|
Preview,
|
|
Section,
|
|
Tailwind,
|
|
Text,
|
|
} from '@react-email/components';
|
|
import { EmailFooter } from './emailFooter';
|
|
import { SOURCEBOT_LOGO_LIGHT_LARGE_URL } from './constants';
|
|
|
|
interface JoinRequestApprovedEmailProps {
|
|
baseUrl: string;
|
|
user: {
|
|
email: string;
|
|
name?: string;
|
|
avatarUrl?: string;
|
|
},
|
|
orgName: string;
|
|
orgDomain: string;
|
|
}
|
|
|
|
export const JoinRequestApprovedEmail = ({
|
|
baseUrl,
|
|
user,
|
|
orgName,
|
|
orgDomain,
|
|
}: JoinRequestApprovedEmailProps) => {
|
|
const previewText = `Your request to join ${orgName} on Sourcebot has been approved`;
|
|
const orgLink = `${baseUrl}/${orgDomain}`;
|
|
|
|
return (
|
|
<Html>
|
|
<Head />
|
|
<Tailwind>
|
|
<Body className="bg-white my-auto mx-auto font-sans px-2">
|
|
<Preview>{previewText}</Preview>
|
|
<Container className="border border-solid border-[#eaeaea] rounded my-[40px] mx-auto p-[20px] max-w-[465px]">
|
|
<Section className="mt-[32px]">
|
|
<Img
|
|
src={SOURCEBOT_LOGO_LIGHT_LARGE_URL}
|
|
width="auto"
|
|
height="60"
|
|
alt="Sourcebot Logo"
|
|
className="my-0 mx-auto"
|
|
/>
|
|
</Section>
|
|
<Heading className="text-black text-[24px] font-normal text-center p-0 my-[30px] mx-0">
|
|
Welcome to <strong>{orgName}</strong>
|
|
</Heading>
|
|
<Text className="text-black text-[14px] leading-[24px]">
|
|
Hello{user.name ? ` ${user.name}` : ''},
|
|
</Text>
|
|
<Text className="text-black text-[14px] leading-[24px]">
|
|
Your request to join <strong>{orgName}</strong> on Sourcebot has been approved. You now have access to the organization.
|
|
</Text>
|
|
<Section className="text-center mt-[32px] mb-[32px]">
|
|
<Button
|
|
className="bg-[#000000] rounded text-white text-[12px] font-semibold no-underline text-center px-5 py-3"
|
|
href={orgLink}
|
|
>
|
|
Go to {orgName}
|
|
</Button>
|
|
</Section>
|
|
<Text className="text-black text-[14px] leading-[24px]">
|
|
or copy and paste this URL into your browser:{' '}
|
|
<Link href={orgLink} className="text-blue-600 no-underline">
|
|
{orgLink}
|
|
</Link>
|
|
</Text>
|
|
<EmailFooter />
|
|
</Container>
|
|
</Body>
|
|
</Tailwind>
|
|
</Html>
|
|
);
|
|
};
|
|
|
|
JoinRequestApprovedEmail.PreviewProps = {
|
|
baseUrl: 'http://localhost:3000',
|
|
user: {
|
|
name: 'Alan Turing',
|
|
email: 'alan.turing@example.com',
|
|
avatarUrl: `http://localhost:3000/placeholder_avatar.png`,
|
|
},
|
|
orgName: 'Enigma',
|
|
orgDomain: '~',
|
|
} satisfies JoinRequestApprovedEmailProps;
|
|
|
|
export default JoinRequestApprovedEmail;
|