// Copyright (c) 2022 Uber Technologies, Inc. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. import React, {useCallback, PropsWithChildren, ElementType, CSSProperties, ReactNode} from 'react'; import styled from 'styled-components'; import classnames from 'classnames'; import {ArrowRight} from 'components/common/icons'; import Checkbox from 'components/common/switch'; export type ActionPanelProps = PropsWithChildren<{ color?: string; className?: string; direction?: string; }>; export type ActionPanelItemProps = PropsWithChildren<{ color?: string; className?: string; Icon?: ElementType; label: string; onClick?: () => void; isSelection?: boolean; isActive?: boolean; style?: CSSProperties; }>; export interface DirectionProp { direction: string; } const StyledItem = styled.div` display: flex; flex-direction: row; align-items: center; font-size: 12px; line-height: 14px; padding: 8px; min-height: ${props => props.theme.actionPanelHeight}px; text-transform: capitalize; background-color: ${props => props.theme.dropdownListBgd}; max-width: 200px; position: relative; ${props => (props.color ? `border-left: 3px solid rgb(${props.color});` : '')} :hover { cursor: pointer; color: ${props => props.theme.textColorHl}; .nested-group { display: block; } } .label { margin-left: 8px; white-space: nowrap; text-overflow: ellipsis; } .label-icon { margin-left: auto; } .nested-group { max-width: 200px; overflow: hidden; display: none; color: ${props => props.theme.textColor}; position: absolute; left: 100%; top: 0px; padding-left: 4px; label { white-space: nowrap; text-overflow: ellipsis; } } `; const StyledCheckedbox = styled(Checkbox)` label { margin-bottom: 0; color: ${props => props.theme.textColor}; padding-left: 20px; line-height: 12px; &:before { width: 12px; height: 12px; background-color: ${props => props.theme.dropdownListBgd}; } &:hover { color: ${props => props.theme.textColorHl}; } } `; const renderChildren = (child: ReactNode, index: number) => React.isValidElement(child) && React.cloneElement(child, { onClick: () => { if (child.props.onClick) { child.props.onClick(index); } }, className: classnames('action-panel-item', child.props.className) }); /** @type {typeof import('./action-panel').ActionPanelItem} */ export const ActionPanelItem = React.memo( ({ children, color, className, Icon, label, onClick, isSelection, isActive, style }: ActionPanelItemProps) => { const onClickCallback = useCallback( event => { event.preventDefault(); event.stopPropagation(); onClick?.(); }, [onClick] ); return ( {Icon ? (
) : null} {isSelection ? ( ) : ( {label} )} {children ? (
{React.Children.map(children, renderChildren)}
) : null}
); } ); ActionPanelItem.displayName = 'ActionPanelItem'; const StyledActionPanel = styled.div` display: flex; flex-direction: ${props => props.direction}; box-shadow: ${props => props.theme.dropdownListShadow}; transition: ${props => props.theme.transitionSlow}; color: ${props => props.theme.textColor}; .action-panel-item { ${props => props.direction === 'column' ? `border-bottom: 1px solid ${props.theme.panelHeaderIcon}` : `border-right: 1px solid ${props.theme.panelHeaderIcon}`} &:last-of-type { border-bottom: 0; } } `; // React compound element https://medium.com/@Dane_s/react-js-compound-components-a6e54b5c9992 /** @type {typeof import('./action-panel').ActionPanel} */ const ActionPanel = ({children, className, direction = 'column'}: ActionPanelProps) => ( {React.Children.map(children, renderChildren)} ); ActionPanel.displayName = 'ActionPanel'; export default ActionPanel;