mirror of
https://github.com/documenso/documenso.git
synced 2025-11-09 20:12:31 +10:00
87 lines
2.4 KiB
TypeScript
87 lines
2.4 KiB
TypeScript
import React, { useState } from "react";
|
|
import { IconButton } from "@documenso/ui";
|
|
import Logo from "../logo";
|
|
import { XCircleIcon } from "@heroicons/react/20/solid";
|
|
import Draggable from "react-draggable";
|
|
|
|
const stc = require("string-to-color");
|
|
|
|
type FieldPropsType = {
|
|
field: {
|
|
color: string;
|
|
type: string;
|
|
position: any;
|
|
positionX: number;
|
|
positionY: number;
|
|
id: string;
|
|
Recipient: { name: ""; email: "" };
|
|
};
|
|
onPositionChanged: any;
|
|
onDelete: any;
|
|
hidden: boolean;
|
|
};
|
|
|
|
export default function EditableField(props: FieldPropsType) {
|
|
const [field, setField]: any = useState(props.field);
|
|
const [position, setPosition]: any = useState({
|
|
x: props.field.positionX,
|
|
y: props.field.positionY,
|
|
});
|
|
const nodeRef = React.createRef<HTMLDivElement>();
|
|
const onControlledDrag = (e: any, position: any) => {
|
|
const { x, y } = position;
|
|
setPosition({ x, y });
|
|
};
|
|
|
|
const onDragStop = (e: any, position: any) => {
|
|
if (!position) return;
|
|
const { x, y } = position;
|
|
|
|
props.onPositionChanged({ x, y }, props.field.id);
|
|
};
|
|
|
|
return (
|
|
<Draggable
|
|
nodeRef={nodeRef}
|
|
bounds="parent"
|
|
position={position}
|
|
onDrag={onControlledDrag}
|
|
onStop={onDragStop}
|
|
defaultPosition={{ x: 0, y: 0 }}
|
|
cancel="strong"
|
|
onMouseDown={(e: any) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
}}>
|
|
{/* width: 192 height 96 */}
|
|
<div
|
|
hidden={props.hidden}
|
|
ref={nodeRef}
|
|
className="absolute top-0 left-0 m-auto h-16 w-48 cursor-move select-none flex-row-reverse p-2 text-center text-lg font-bold opacity-80"
|
|
style={{
|
|
background: stc(props.field.Recipient.email),
|
|
}}>
|
|
<div className="m-auto flex-row-reverse overflow-hidden text-center text-lg font-bold">
|
|
{field.type}
|
|
{field.type === "SIGNATURE" ? (
|
|
<div className="text-center text-xs">
|
|
{`${props.field.Recipient?.name} <${props.field.Recipient?.email}>`}
|
|
</div>
|
|
) : (
|
|
""
|
|
)}
|
|
</div>
|
|
<strong>
|
|
<IconButton
|
|
className="absolute top-0 right-0 -m-5"
|
|
color="secondary"
|
|
icon={XCircleIcon}
|
|
onClick={(event: any) => {
|
|
props.onDelete(props.field.id);
|
|
}}></IconButton>
|
|
</strong>
|
|
</div>
|
|
</Draggable>
|
|
);
|
|
}
|