mirror of
https://github.com/documenso/documenso.git
synced 2026-06-22 04:12:06 +10:00
47 lines
1.4 KiB
TypeScript
47 lines
1.4 KiB
TypeScript
import { Trans } from '@lingui/react/macro';
|
|
|
|
import { Column, Img, Section, Text } from '../components';
|
|
import { TemplateDocumentImage } from './template-document-image';
|
|
|
|
export interface TemplateDocumentPendingProps {
|
|
documentName: string;
|
|
assetBaseUrl: string;
|
|
}
|
|
|
|
export const TemplateDocumentPending = ({ documentName, assetBaseUrl }: TemplateDocumentPendingProps) => {
|
|
const getAssetUrl = (path: string) => {
|
|
return new URL(path, assetBaseUrl).toString();
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<TemplateDocumentImage className="mt-6" assetBaseUrl={assetBaseUrl} />
|
|
|
|
<Section>
|
|
<Section className="mb-4">
|
|
<Column align="center">
|
|
<Text className="font-semibold text-base text-blue-500">
|
|
<Img src={getAssetUrl('/static/clock.png')} className="-mt-0.5 mr-2 inline h-7 w-7 align-middle" />
|
|
<Trans>Waiting for others</Trans>
|
|
</Text>
|
|
</Column>
|
|
</Section>
|
|
|
|
<Text className="mb-0 text-center font-semibold text-lg text-primary">
|
|
<Trans>“{documentName}” has been signed</Trans>
|
|
</Text>
|
|
|
|
<Text className="mx-auto mt-1 mb-6 max-w-[80%] text-center text-base text-slate-400">
|
|
<Trans>
|
|
We're still waiting for other signers to sign this document.
|
|
<br />
|
|
We'll notify you as soon as it's ready.
|
|
</Trans>
|
|
</Text>
|
|
</Section>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default TemplateDocumentPending;
|