* Feature/ Navigation Bar menu * Cypress test fixes and minor style changes * Changed some more integration test files and fixed some styling post feedback * Updated failing tests * Minor Cypress test change * requested design changes and Analytics * resolving conflicts * minor style fix * current deploy verbage change Co-authored-by: Rishabh Saxena <rishabh.robben@gmail.com> * addressing review comments * Updating discord link with permanent invite Co-authored-by: Rishabh Saxena <rishabh.robben@gmail.com> Co-authored-by: Rahul R <rahulramesha@Rahuls-MacBook-Pro.local>
114 lines
2.9 KiB
TypeScript
114 lines
2.9 KiB
TypeScript
import React, { useState, useCallback } from "react";
|
|
|
|
import styled from "styled-components";
|
|
import { noop } from "lodash";
|
|
|
|
import { CommonComponentProps } from "./common";
|
|
import EditableTextSubComponent, {
|
|
EditInteractionKind,
|
|
SavingState,
|
|
} from "./EditableTextSubComponent";
|
|
|
|
export { EditInteractionKind, SavingState };
|
|
|
|
export type EditableTextProps = CommonComponentProps & {
|
|
defaultValue: string;
|
|
placeholder?: string;
|
|
editInteractionKind: EditInteractionKind;
|
|
savingState: SavingState;
|
|
onBlur?: (value: string) => void;
|
|
onTextChanged?: (value: string) => void;
|
|
valueTransform?: (value: string) => string;
|
|
isEditingDefault?: boolean;
|
|
forceDefault?: boolean;
|
|
updating?: boolean;
|
|
isInvalid?: (value: string) => string | boolean;
|
|
hideEditIcon?: boolean;
|
|
fill?: boolean;
|
|
underline?: boolean;
|
|
isError?: boolean;
|
|
};
|
|
|
|
export const EditableTextWrapper = styled.div<{
|
|
filled: boolean;
|
|
}>`
|
|
${(props) =>
|
|
!props.filled
|
|
? `
|
|
width: 243px;
|
|
`
|
|
: `
|
|
width: 100%;
|
|
flex: 1;
|
|
`}
|
|
.error-message {
|
|
margin-left: ${(props) => props.theme.spaces[5]}px;
|
|
color: ${(props) => props.theme.colors.danger.main};
|
|
}
|
|
`;
|
|
|
|
export function EditableText(props: EditableTextProps) {
|
|
const {
|
|
defaultValue,
|
|
isEditingDefault,
|
|
isInvalid: inputValidation,
|
|
savingState: defaultSavingState,
|
|
...others
|
|
} = props;
|
|
const [isEditing, setIsEditing] = useState(!!isEditingDefault);
|
|
const [isInvalid, setIsInvalid] = useState<string | boolean>(false);
|
|
const [savingState, setSavingState] = useState<SavingState>(
|
|
SavingState.NOT_STARTED,
|
|
);
|
|
|
|
const editMode = useCallback(
|
|
(e: React.MouseEvent) => {
|
|
setIsEditing(true);
|
|
const errorMessage = inputValidation && inputValidation(defaultValue);
|
|
setIsInvalid(errorMessage ? errorMessage : false);
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
},
|
|
[inputValidation, defaultValue],
|
|
);
|
|
|
|
const nonEditMode = () => {
|
|
if (!isEditing && savingState === SavingState.SUCCESS) {
|
|
setSavingState(SavingState.NOT_STARTED);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<EditableTextWrapper
|
|
filled={!!props.fill}
|
|
onClick={
|
|
props.editInteractionKind === EditInteractionKind.SINGLE
|
|
? editMode
|
|
: noop
|
|
}
|
|
onDoubleClick={
|
|
props.editInteractionKind === EditInteractionKind.DOUBLE
|
|
? editMode
|
|
: noop
|
|
}
|
|
onMouseEnter={nonEditMode}
|
|
>
|
|
<EditableTextSubComponent
|
|
defaultSavingState={defaultSavingState}
|
|
defaultValue={defaultValue}
|
|
inputValidation={inputValidation}
|
|
isEditing={isEditing}
|
|
isEditingDefault={isEditingDefault}
|
|
isInvalid={isInvalid}
|
|
savingState={savingState}
|
|
setIsEditing={setIsEditing}
|
|
setIsInvalid={setIsInvalid}
|
|
setSavingState={setSavingState}
|
|
{...others}
|
|
/>
|
|
</EditableTextWrapper>
|
|
);
|
|
}
|
|
|
|
export default EditableText;
|