PromucFlow_constructor/app/client/src/components/ads/IconSelector.tsx

123 lines
3.3 KiB
TypeScript

import { scrollbarDark } from "constants/DefaultTheme";
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";
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};
}
${scrollbarDark};
&::-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());
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}>
{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>
);
})}
</IconPalette>
);
};
IconSelector.defaultProps = {
fill: false,
iconPalette: AppIconCollection,
};
export default IconSelector;