mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
This PR is handles the changes required to support envelopes. The new envelope editor/signing page will be hidden during release. The core changes here is to migrate the documents and templates model to a centralized envelopes model. Even though Documents and Templates are removed, from the user perspective they will still exist as we remap envelopes to documents and templates.
95 lines
2.4 KiB
TypeScript
95 lines
2.4 KiB
TypeScript
import { redirect, useLoaderData } from 'react-router';
|
|
|
|
import { NEXT_PUBLIC_WEBAPP_URL } from '@documenso/lib/constants/app';
|
|
import { getDocumentByAccessToken } from '@documenso/lib/server-only/document/get-document-by-access-token';
|
|
|
|
import { DocumentCertificateQRView } from '~/components/general/document/document-certificate-qr-view';
|
|
|
|
import type { Route } from './+types/share.$slug';
|
|
|
|
export function meta({ params: { slug } }: Route.MetaArgs) {
|
|
if (slug.startsWith('qr_')) {
|
|
return undefined;
|
|
}
|
|
|
|
return [
|
|
{ title: 'Documenso - Share' },
|
|
{ description: 'I just signed a document in style with Documenso!' },
|
|
{
|
|
property: 'og:title',
|
|
content: 'Documenso - Join the open source signing revolution',
|
|
},
|
|
{
|
|
property: 'og:description',
|
|
content: 'I just signed with Documenso!',
|
|
},
|
|
{
|
|
property: 'og:type',
|
|
content: 'website',
|
|
},
|
|
{
|
|
property: 'og:image',
|
|
content: `${NEXT_PUBLIC_WEBAPP_URL()}/share/${slug}/opengraph`,
|
|
},
|
|
{
|
|
name: 'twitter:site',
|
|
content: '@documenso',
|
|
},
|
|
{
|
|
name: 'twitter:card',
|
|
content: 'summary_large_image',
|
|
},
|
|
{
|
|
name: 'twitter:image',
|
|
content: `${NEXT_PUBLIC_WEBAPP_URL()}/share/${slug}/opengraph`,
|
|
},
|
|
{
|
|
name: 'twitter:description',
|
|
content: 'I just signed with Documenso!',
|
|
},
|
|
];
|
|
}
|
|
|
|
export const loader = async ({ request, params: { slug } }: Route.LoaderArgs) => {
|
|
if (slug.startsWith('qr_')) {
|
|
const document = await getDocumentByAccessToken({ token: slug });
|
|
|
|
if (!document) {
|
|
throw redirect('/');
|
|
}
|
|
|
|
return {
|
|
document,
|
|
};
|
|
}
|
|
|
|
const userAgent = request.headers.get('User-Agent') ?? '';
|
|
|
|
if (/bot|facebookexternalhit|WhatsApp|google|bing|duckduckbot|MetaInspector/i.test(userAgent)) {
|
|
return {};
|
|
}
|
|
|
|
// Is hardcoded because this whole meta is hardcoded anyway for Documenso.
|
|
throw redirect('https://documenso.com');
|
|
};
|
|
|
|
export default function SharePage() {
|
|
const { document } = useLoaderData<typeof loader>();
|
|
|
|
if (document) {
|
|
return (
|
|
<DocumentCertificateQRView
|
|
documentId={document.id}
|
|
title={document.title}
|
|
documentTeamUrl={document.documentTeamUrl}
|
|
internalVersion={document.internalVersion}
|
|
envelopeItems={document.envelopeItems}
|
|
recipientCount={document.recipientCount}
|
|
completedDate={document.completedAt ?? undefined}
|
|
/>
|
|
);
|
|
}
|
|
|
|
return <div></div>;
|
|
}
|