PromucFlow_constructor/app/client/src/components/propertyControls/KeyValueComponent.tsx
albinAppsmith 110e6085b8
feat: Renamed design system package (#19854)
## Description

This PR includes changes for renaming design system package. Since we
are building new package for the refactored design system components,
the old package is renaming to design-system-old.

Fixes #19536 

## Type of change

- New feature (non-breaking change which adds functionality)
- Breaking change (fix or feature that would cause existing
functionality to not work as expected)


## How Has This Been Tested?

- Manual
- Jest
- Cypress

### Test Plan
> Add Testsmith test cases links that relate to this PR

### Issues raised during DP testing
> Link issues raised during DP testing for better visiblity and tracking
(copy link from comments dropped on this PR)


## Checklist:
### Dev activity
- [x] My code follows the style guidelines of this project
- [x] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my
feature works
- [x] New and existing unit tests pass locally with my changes
- [ ] PR is being merged under a feature flag


### QA activity:
- [ ] Test plan has been approved by relevant developers
- [ ] Test plan has been peer reviewed by QA
- [ ] Cypress test cases have been added and approved by either SDET or
manual QA
- [ ] Organized project review call with relevant stakeholders after
Round 1/2 of QA
- [ ] Added Test Plan Approved label after reveiwing all Cypress test
2023-01-23 09:20:47 +05:30

248 lines
6.1 KiB
TypeScript

import React, { useState, useEffect, useCallback } from "react";
import styled from "styled-components";
import { FormIcons } from "icons/FormIcons";
import {
ControlWrapper,
StyledInputGroup,
StyledPropertyPaneButton,
} from "./StyledControls";
import { DropDownOptionWithKey } from "./OptionControl";
import { DropdownOption } from "components/constants";
import { generateReactKey } from "utils/generators";
import { Category, Size } from "design-system-old";
import { debounce } from "lodash";
import { getNextEntityName } from "utils/AppsmithUtils";
function updateOptionLabel<T>(
options: Array<T>,
index: number,
updatedLabel: string,
) {
return options.map((option: T, optionIndex) => {
if (index !== optionIndex) {
return option;
}
return {
...option,
label: updatedLabel,
};
});
}
function updateOptionValue<T>(
options: Array<T>,
index: number,
updatedValue: string,
) {
return options.map((option, optionIndex) => {
if (index !== optionIndex) {
return option;
}
return {
...option,
value: updatedValue,
};
});
}
const StyledDeleteIcon = styled(FormIcons.DELETE_ICON)`
cursor: pointer;
&& svg path {
fill: ${(props) => props.theme.colors.propertyPane.deleteIconColor};
}
&&:hover {
svg path {
fill: ${(props) => props.theme.colors.propertyPane.title};
}
}
`;
const StyledBox = styled.div`
width: 10px;
`;
const StyledButton = styled.button`
width: 28px;
height: 28px;
&&& svg {
width: 14px;
height: 14px;
}
&&:focus {
svg path {
fill: ${(props) => props.theme.colors.propertyPane.title};
}
}
`;
type UpdatePairFunction = (
pair: DropdownOption[],
isUpdatedViaKeyboard?: boolean,
) => any;
type KeyValueComponentProps = {
pairs: DropdownOption[];
updatePairs: UpdatePairFunction;
addLabel?: string;
};
export function KeyValueComponent(props: KeyValueComponentProps) {
const [renderPairs, setRenderPairs] = useState<DropDownOptionWithKey[]>([]);
const [typing, setTyping] = useState<boolean>(false);
const { pairs } = props;
useEffect(() => {
let { pairs } = props;
pairs = Array.isArray(pairs) ? pairs.slice() : [];
const newRenderPairs: DropDownOptionWithKey[] = pairs.map((pair) => {
return {
...pair,
key: generateReactKey(),
};
});
pairs.length !== 0 && !typing && setRenderPairs(newRenderPairs);
}, [props, pairs.length, renderPairs.length]);
function deletePair(index: number, isUpdatedViaKeyboard = false) {
let { pairs } = props;
pairs = Array.isArray(pairs) ? pairs : [];
const newPairs = pairs.filter((o, i) => i !== index);
const newRenderPairs = renderPairs.filter((o, i) => i !== index);
setRenderPairs(newRenderPairs);
props.updatePairs(newPairs, isUpdatedViaKeyboard);
}
const debouncedUpdatePairs = useCallback(
debounce((updatedPairs: DropdownOption[]) => {
props.updatePairs(updatedPairs, true);
}, 200),
[props.updatePairs],
);
function updateKey(index: number, updatedKey: string) {
let { pairs } = props;
pairs = Array.isArray(pairs) ? pairs : [];
const updatedPairs = updateOptionLabel(pairs, index, updatedKey);
const updatedRenderPairs = updateOptionLabel(
renderPairs,
index,
updatedKey,
);
setRenderPairs(updatedRenderPairs);
debouncedUpdatePairs(updatedPairs);
}
function updateValue(index: number, updatedValue: string) {
let { pairs } = props;
pairs = Array.isArray(pairs) ? pairs : [];
const updatedPairs = updateOptionValue(pairs, index, updatedValue);
const updatedRenderPairs = updateOptionValue(
renderPairs,
index,
updatedValue,
);
setRenderPairs(updatedRenderPairs);
debouncedUpdatePairs(updatedPairs);
}
function addPair(e: React.MouseEvent) {
let { pairs } = props;
pairs = Array.isArray(pairs) ? pairs.slice() : [];
pairs.push({
label: getNextEntityName(
"Option",
pairs.map((pair: any) => pair.label),
),
value: getNextEntityName(
"OPTION",
pairs.map((pair: any) => pair.value),
),
});
const updatedRenderPairs = renderPairs.slice();
updatedRenderPairs.push({
label: getNextEntityName(
"Option",
renderPairs.map((pair: any) => pair.label),
),
value: getNextEntityName(
"OPTION",
renderPairs.map((pair: any) => pair.value),
),
key: getNextEntityName(
"OPTION",
renderPairs.map((pair: any) => pair.value),
),
});
setRenderPairs(updatedRenderPairs);
props.updatePairs(pairs, e.detail === 0);
}
function onInputFocus() {
setTyping(true);
}
function onInputBlur() {
setTyping(false);
}
return (
<>
{renderPairs.map((pair: DropDownOptionWithKey, index) => {
return (
<ControlWrapper key={pair.key} orientation={"HORIZONTAL"}>
<StyledInputGroup
dataType={"text"}
onBlur={onInputBlur}
onChange={(value: string) => {
updateKey(index, value);
}}
onFocus={onInputFocus}
placeholder={"Name"}
value={pair.label}
/>
<StyledBox />
<StyledInputGroup
dataType={"text"}
onBlur={onInputBlur}
onChange={(value: string) => {
updateValue(index, value);
}}
onFocus={onInputFocus}
placeholder={"Value"}
value={pair.value}
/>
<StyledBox />
<StyledButton
onClick={(e: React.MouseEvent) => {
deletePair(index, e.detail === 0);
}}
>
<StyledDeleteIcon />
</StyledButton>
</ControlWrapper>
);
})}
<StyledPropertyPaneButton
category={Category.secondary}
className="t--property-control-options-add"
icon="plus"
onClick={addPair}
size={Size.medium}
tag="button"
text={props.addLabel || "Option"}
type="button"
/>
</>
);
}