Some parts of the Frontend used theme constants exported from `modules/ui` while other parts used theme constants exported from `twenty-ui`. This PR centralizes theme constants by removing them from `modules/ui` completely.
85 lines
2.0 KiB
TypeScript
85 lines
2.0 KiB
TypeScript
import { ChangeEvent, useEffect, useRef, useState } from 'react';
|
|
import styled from '@emotion/styled';
|
|
import { TEXT_INPUT_STYLE } from 'twenty-ui';
|
|
|
|
import { LightCopyIconButton } from '@/object-record/record-field/components/LightCopyIconButton';
|
|
import { useRegisterInputEvents } from '@/object-record/record-field/meta-types/input/hooks/useRegisterInputEvents';
|
|
|
|
export const StyledTextInput = styled.input`
|
|
margin: 0;
|
|
${TEXT_INPUT_STYLE}
|
|
width: 100%;
|
|
`;
|
|
|
|
type TextInputProps = {
|
|
placeholder?: string;
|
|
autoFocus?: boolean;
|
|
value: string;
|
|
onEnter: (newText: string) => void;
|
|
onEscape: (newText: string) => void;
|
|
onTab?: (newText: string) => void;
|
|
onShiftTab?: (newText: string) => void;
|
|
onClickOutside: (event: MouseEvent | TouchEvent, inputValue: string) => void;
|
|
hotkeyScope: string;
|
|
onChange?: (newText: string) => void;
|
|
copyButton?: boolean;
|
|
};
|
|
|
|
export const TextInput = ({
|
|
placeholder,
|
|
autoFocus,
|
|
value,
|
|
hotkeyScope,
|
|
onEnter,
|
|
onEscape,
|
|
onTab,
|
|
onShiftTab,
|
|
onClickOutside,
|
|
onChange,
|
|
copyButton = true,
|
|
}: TextInputProps) => {
|
|
const [internalText, setInternalText] = useState(value);
|
|
|
|
const wrapperRef = useRef<HTMLInputElement>(null);
|
|
const copyRef = useRef<HTMLDivElement>(null);
|
|
|
|
const handleChange = (event: ChangeEvent<HTMLInputElement>) => {
|
|
setInternalText(event.target.value);
|
|
onChange?.(event.target.value);
|
|
};
|
|
|
|
useEffect(() => {
|
|
setInternalText(value);
|
|
}, [value]);
|
|
|
|
useRegisterInputEvents({
|
|
inputRef: wrapperRef,
|
|
copyRef: copyRef,
|
|
inputValue: internalText,
|
|
onEnter,
|
|
onEscape,
|
|
onClickOutside,
|
|
onTab,
|
|
onShiftTab,
|
|
hotkeyScope,
|
|
});
|
|
|
|
return (
|
|
<>
|
|
<StyledTextInput
|
|
autoComplete="off"
|
|
ref={wrapperRef}
|
|
placeholder={placeholder}
|
|
onChange={handleChange}
|
|
autoFocus={autoFocus}
|
|
value={internalText}
|
|
/>
|
|
{copyButton && (
|
|
<div ref={copyRef}>
|
|
<LightCopyIconButton copyText={internalText} />
|
|
</div>
|
|
)}
|
|
</>
|
|
);
|
|
};
|