diff --git a/apps/web/components/editor/editable-field.tsx b/apps/web/components/editor/editable-field.tsx index d7c87a16c..0135edfbd 100644 --- a/apps/web/components/editor/editable-field.tsx +++ b/apps/web/components/editor/editable-field.tsx @@ -56,7 +56,7 @@ export default function EditableField(props: FieldPropsType) { -
+ {/* width: 192 height 96 */} +
{field.type} {field.type === "SIGNATURE" ? (
diff --git a/apps/web/components/editor/pdf-editor.tsx b/apps/web/components/editor/pdf-editor.tsx index d3ab28bac..380bc1049 100644 --- a/apps/web/components/editor/pdf-editor.tsx +++ b/apps/web/components/editor/pdf-editor.tsx @@ -223,8 +223,17 @@ export default function PDFEditor(props: any) { function addField(e: any, page: number) { var rect = e.target.getBoundingClientRect(); - var newFieldX = e.clientX - rect.left; //x position within the element. - var newFieldY = e.clientY - rect.top; //y position within the element. + const fieldSize = { width: 192, height: 96 }; + var newFieldX = e.clientX - rect.left - fieldSize.width / 2; //x position within the element. + var newFieldY = e.clientY - rect.top - fieldSize.height / 2; //y position within the element. + if (newFieldX < 0) newFieldX = 0; + if (newFieldY < 0) newFieldY = 0; + + if (newFieldX + fieldSize.width > rect.width) + newFieldX = rect.width - fieldSize.width; + if (newFieldY + fieldSize.height > rect.height) + newFieldY = rect.height - fieldSize.height; + const signatureField = { id: -1, page: page,