PromucFlow_constructor/app/client/src/components/ads/IconSelector.tsx
ram-primathon 3b0fb539d5
Property Pane re design (#3057)
Co-authored-by: devrk96 <rohit.kumawat@primathon.in>
Co-authored-by: hetunandu <hetu@appsmith.com>
Co-authored-by: Hetu Nandu <hetunandu@gmail.com>
Co-authored-by: Vicky Bansal <67091118+vicky-primathon@users.noreply.github.com>
Co-authored-by: nandan.anantharamu <nandan.anantharamu@thoughtspot.com>
2021-03-15 17:47:56 +05:30

128 lines
3.4 KiB
TypeScript

import React, { useState, useEffect, useRef } from "react";
import styled from "styled-components";
import AppIcon, { AppIconName, AppIconCollection } from "./AppIcon";
import { Size } from "./Button";
import { CommonComponentProps, Classes } from "./common";
import ScrollIndicator from "./ScrollIndicator";
type IconSelectorProps = CommonComponentProps & {
onSelect?: (icon: AppIconName) => void;
selectedColor: string;
selectedIcon?: AppIconName;
iconPalette?: AppIconName[];
fill?: boolean;
};
const IconPalette = styled.div<{ fill?: boolean }>`
display: flex;
align-items: center;
flex-wrap: wrap;
padding: ${(props) => props.theme.spaces[4]}px 0px
${(props) => props.theme.spaces[4]}px ${(props) => props.theme.spaces[5]}px;
width: ${(props) => (props.fill ? "100%" : "234px")};
max-height: 90px;
overflow-y: auto;
&&::-webkit-scrollbar-thumb {
background-color: ${(props) => props.theme.colors.modal.scrollbar};
}
&::-webkit-scrollbar {
width: 4px;
}
`;
const IconBox = styled.div<{ selectedColor?: string }>`
width: 30px;
height: 30px;
display: flex;
justify-content: center;
align-items: center;
background-color: ${(props) =>
props.selectedColor || props.theme.colors.appIcon.background};
margin: 0 ${(props) => props.theme.spaces[2]}px
${(props) => props.theme.spaces[2]}px 0;
position: relative;
&:nth-child(6n) {
margin-right: ${(props) => props.theme.spaces[0]}px;
}
${(props) =>
props.selectedColor
? `.${Classes.APP_ICON} {
svg {
path {
fill: #fff;
}
}
}`
: null};
`;
const IconSelector = (props: IconSelectorProps) => {
const iconRef = useRef<HTMLDivElement>(null);
const [selected, setSelected] = useState<AppIconName>(firstSelectedIcon());
const iconPaletteRef = React.createRef<HTMLDivElement>();
useEffect(() => {
if (props.selectedIcon && iconRef.current) {
setSelected(props.selectedIcon);
}
}, [props.selectedIcon]);
useEffect(() => {
if (selected && iconRef.current) {
setTimeout(() => {
if (iconRef.current)
iconRef.current.scrollIntoView({ behavior: "smooth" });
}, 0);
}
}, []);
function firstSelectedIcon() {
if (props.iconPalette && props.iconPalette[0]) {
return props.iconPalette[0];
}
return AppIconCollection[0];
}
return (
<IconPalette
fill={props.fill}
data-cy={props.cypressSelector}
ref={iconPaletteRef}
>
{props.iconPalette &&
props.iconPalette.map((iconName: AppIconName, index: number) => {
return (
<IconBox
{...(selected === iconName ? { ref: iconRef } : {})}
key={index}
selectedColor={selected === iconName ? props.selectedColor : ""}
className={
selected === iconName
? "t--icon-selected"
: "t--icon-not-selected"
}
onClick={() => {
if (iconName !== selected) {
setSelected(iconName);
props.onSelect && props.onSelect(iconName);
}
}}
>
<AppIcon name={iconName} size={Size.small} />
</IconBox>
);
})}
<ScrollIndicator containerRef={iconPaletteRef} mode="DARK" />
</IconPalette>
);
};
IconSelector.defaultProps = {
fill: false,
iconPalette: AppIconCollection,
};
export default IconSelector;