mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
Rework: - Field styling to improve visibility - Field insertions, better alignment, centering and overflows ## Changes General changes: - Set default text alignment to left if no meta found - Reduce borders and rings around fields to allow smaller fields - Removed lots of redundant duplicated code surrounding field rendering - Make fields more consistent across viewing, editing and signing - Add more transparency to fields to allow users to see under fields - No more optional/required/etc colors when signing, required fields will be highlighted as orange when form is "validating" Highlighted internal changes: - Utilize native PDF fields to insert text, instead of drawing text - Change font auto scaling to only apply to when the height overflows AND no custom font is set ⚠️ Multiline changes: Multi line is enabled for a field under these conditions 1. Field content exceeds field width 2. Field includes a new line 3. Field type is TEXT ## [BEFORE] Field UI Signing  ## [AFTER] Field UI Signing  ## [BEFORE] Signing a checkbox   ## [AFTER] Signing a checkbox   ## [BEFORE] What a 2nd recipient sees once someone else signed a document  ## [AFTER] What a 2nd recipient sees once someone else signed a document  ## **[BEFORE]** Inserting fields  ## **[AFTER]** Inserting fields  ## Overflows, multilines and field alignments testing Debugging borders: - Red border = The original field placement without any modifications - Blue border = The available space to overflow ### Single line overflows and field alignments This is left aligned fields, overflow will always go to the end of the page and will not wrap  This is center aligned fields, the max width is the closest edge to the page * 2  This is right aligned text, the width will extend all the way to the left hand side of the page  ### Multiline line overflows and field alignments These are text fields that can be overflowed  Another example of left aligned text overflows with more text 
154 lines
5.3 KiB
TypeScript
154 lines
5.3 KiB
TypeScript
import { Plural, Trans } from '@lingui/react/macro';
|
|
import { TeamMemberRole } from '@prisma/client';
|
|
import { ChevronLeft, Users2 } from 'lucide-react';
|
|
import { Link, redirect } from 'react-router';
|
|
import { match } from 'ts-pattern';
|
|
|
|
import { getSession } from '@documenso/auth/server/lib/utils/get-session';
|
|
import { isUserEnterprise } from '@documenso/ee/server-only/util/is-document-enterprise';
|
|
import { getDocumentWithDetailsById } from '@documenso/lib/server-only/document/get-document-with-details-by-id';
|
|
import { type TGetTeamByUrlResponse, getTeamByUrl } from '@documenso/lib/server-only/team/get-team';
|
|
import { DocumentVisibility } from '@documenso/lib/types/document-visibility';
|
|
import { isDocumentCompleted } from '@documenso/lib/utils/document';
|
|
import { formatDocumentsPath } from '@documenso/lib/utils/teams';
|
|
|
|
import { DocumentEditForm } from '~/components/general/document/document-edit-form';
|
|
import { DocumentStatus } from '~/components/general/document/document-status';
|
|
import { LegacyFieldWarningPopover } from '~/components/general/legacy-field-warning-popover';
|
|
import { StackAvatarsWithTooltip } from '~/components/general/stack-avatars-with-tooltip';
|
|
import { superLoaderJson, useSuperLoaderData } from '~/utils/super-json-loader';
|
|
|
|
import type { Route } from './+types/documents.$id.edit';
|
|
|
|
export async function loader({ params, request }: Route.LoaderArgs) {
|
|
const { user } = await getSession(request);
|
|
|
|
let team: TGetTeamByUrlResponse | null = null;
|
|
|
|
if (params.teamUrl) {
|
|
team = await getTeamByUrl({ userId: user.id, teamUrl: params.teamUrl });
|
|
}
|
|
|
|
const { id } = params;
|
|
|
|
const documentId = Number(id);
|
|
|
|
const documentRootPath = formatDocumentsPath(team?.url);
|
|
|
|
if (!documentId || Number.isNaN(documentId)) {
|
|
throw redirect(documentRootPath);
|
|
}
|
|
|
|
const document = await getDocumentWithDetailsById({
|
|
documentId,
|
|
userId: user.id,
|
|
teamId: team?.id,
|
|
}).catch(() => null);
|
|
|
|
if (document?.teamId && !team?.url) {
|
|
throw redirect(documentRootPath);
|
|
}
|
|
|
|
const documentVisibility = document?.visibility;
|
|
const currentTeamMemberRole = team?.currentTeamMember?.role;
|
|
const isRecipient = document?.recipients.find((recipient) => recipient.email === user.email);
|
|
let canAccessDocument = true;
|
|
|
|
if (!isRecipient && document?.userId !== user.id) {
|
|
canAccessDocument = match([documentVisibility, currentTeamMemberRole])
|
|
.with([DocumentVisibility.EVERYONE, TeamMemberRole.ADMIN], () => true)
|
|
.with([DocumentVisibility.EVERYONE, TeamMemberRole.MANAGER], () => true)
|
|
.with([DocumentVisibility.EVERYONE, TeamMemberRole.MEMBER], () => true)
|
|
.with([DocumentVisibility.MANAGER_AND_ABOVE, TeamMemberRole.ADMIN], () => true)
|
|
.with([DocumentVisibility.MANAGER_AND_ABOVE, TeamMemberRole.MANAGER], () => true)
|
|
.with([DocumentVisibility.ADMIN, TeamMemberRole.ADMIN], () => true)
|
|
.otherwise(() => false);
|
|
}
|
|
|
|
if (!document) {
|
|
throw redirect(documentRootPath);
|
|
}
|
|
|
|
if (team && !canAccessDocument) {
|
|
throw redirect(documentRootPath);
|
|
}
|
|
|
|
if (isDocumentCompleted(document.status)) {
|
|
throw redirect(`${documentRootPath}/${documentId}`);
|
|
}
|
|
|
|
const isDocumentEnterprise = await isUserEnterprise({
|
|
userId: user.id,
|
|
teamId: team?.id,
|
|
});
|
|
|
|
return superLoaderJson({
|
|
document,
|
|
documentRootPath,
|
|
isDocumentEnterprise,
|
|
});
|
|
}
|
|
|
|
export default function DocumentEditPage() {
|
|
const { document, documentRootPath, isDocumentEnterprise } = useSuperLoaderData<typeof loader>();
|
|
|
|
const { recipients } = document;
|
|
|
|
return (
|
|
<div className="mx-auto -mt-4 w-full max-w-screen-xl px-4 md:px-8">
|
|
<Link to={documentRootPath} className="flex items-center text-[#7AC455] hover:opacity-80">
|
|
<ChevronLeft className="mr-2 inline-block h-5 w-5" />
|
|
<Trans>Documents</Trans>
|
|
</Link>
|
|
|
|
<div className="mt-4 flex w-full items-end justify-between">
|
|
<div className="flex-1">
|
|
<h1
|
|
className="block max-w-[20rem] truncate text-2xl font-semibold md:max-w-[30rem] md:text-3xl"
|
|
title={document.title}
|
|
>
|
|
{document.title}
|
|
</h1>
|
|
|
|
<div className="mt-2.5 flex items-center gap-x-6">
|
|
<DocumentStatus
|
|
inheritColor
|
|
status={document.status}
|
|
className="text-muted-foreground"
|
|
/>
|
|
|
|
{recipients.length > 0 && (
|
|
<div className="text-muted-foreground flex items-center">
|
|
<Users2 className="mr-2 h-5 w-5" />
|
|
|
|
<StackAvatarsWithTooltip
|
|
recipients={recipients}
|
|
documentStatus={document.status}
|
|
position="bottom"
|
|
>
|
|
<span>
|
|
<Plural one="1 Recipient" other="# Recipients" value={recipients.length} />
|
|
</span>
|
|
</StackAvatarsWithTooltip>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{document.useLegacyFieldInsertion && (
|
|
<div>
|
|
<LegacyFieldWarningPopover type="document" documentId={document.id} />
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
<DocumentEditForm
|
|
className="mt-6"
|
|
initialDocument={document}
|
|
documentRootPath={documentRootPath}
|
|
isDocumentEnterprise={isDocumentEnterprise}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|