109 lines
2.7 KiB
TypeScript
109 lines
2.7 KiB
TypeScript
import React from "react";
|
|
import { WidgetCardProps } from "widgets/BaseWidget";
|
|
import styled from "styled-components";
|
|
import { useWidgetDragResize } from "utils/hooks/dragResizeHooks";
|
|
import AnalyticsUtil from "utils/AnalyticsUtil";
|
|
import { generateReactKey } from "utils/generators";
|
|
import { Colors } from "constants/Colors";
|
|
import { useWidgetSelection } from "utils/hooks/useWidgetSelection";
|
|
import { IconWrapper } from "constants/IconConstants";
|
|
|
|
type CardProps = {
|
|
details: WidgetCardProps;
|
|
};
|
|
|
|
export const Wrapper = styled.div`
|
|
padding: 10px 5px 10px 5px;
|
|
border-radius: 0px;
|
|
border: none;
|
|
position: relative;
|
|
color: ${Colors.CHARCOAL};
|
|
height: 72px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
& > div {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
&:hover {
|
|
background: ${Colors.Gallery};
|
|
cursor: grab;
|
|
}
|
|
& i {
|
|
font-family: ${(props) => props.theme.fonts.text};
|
|
font-size: ${(props) => props.theme.fontSizes[7]}px;
|
|
}
|
|
`;
|
|
|
|
export const BetaLabel = styled.div`
|
|
font-size: 10px;
|
|
background: ${Colors.TUNDORA};
|
|
margin-top: 3px;
|
|
padding: 2px 4px;
|
|
border-radius: 3px;
|
|
position: absolute;
|
|
top: 0;
|
|
right: -2%;
|
|
`;
|
|
|
|
export const IconLabel = styled.h5`
|
|
min-height: 32px;
|
|
text-align: center;
|
|
margin: 0;
|
|
text-transform: uppercase;
|
|
font-weight: ${(props) => props.theme.fontWeights[1]};
|
|
flex-shrink: 1;
|
|
font-size: ${(props) => props.theme.fontSizes[1]}px;
|
|
line-height: ${(props) => props.theme.lineHeights[2]}px;
|
|
&::selection {
|
|
background: none;
|
|
}
|
|
`;
|
|
|
|
function WidgetCard(props: CardProps) {
|
|
const { setDraggingNewWidget } = useWidgetDragResize();
|
|
const { deselectAll } = useWidgetSelection();
|
|
|
|
const onDragStart = (e: any) => {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
deselectAll();
|
|
AnalyticsUtil.logEvent("WIDGET_CARD_DRAG", {
|
|
widgetType: props.details.type,
|
|
widgetName: props.details.displayName,
|
|
});
|
|
setDraggingNewWidget &&
|
|
setDraggingNewWidget(true, {
|
|
...props.details,
|
|
widgetId: generateReactKey(),
|
|
});
|
|
};
|
|
|
|
const type = `${props.details.type
|
|
.split("_")
|
|
.join("")
|
|
.toLowerCase()}`;
|
|
const className = `t--widget-card-draggable-${type}`;
|
|
return (
|
|
<Wrapper
|
|
className={className}
|
|
data-guided-tour-id={`widget-card-${type}`}
|
|
draggable
|
|
onDragStart={onDragStart}
|
|
>
|
|
<div>
|
|
<IconWrapper>
|
|
<img className="w-6 h-6" src={props.details.icon} />
|
|
</IconWrapper>
|
|
<IconLabel>{props.details.displayName}</IconLabel>
|
|
{props.details.isBeta && <BetaLabel>Beta</BetaLabel>}
|
|
</div>
|
|
</Wrapper>
|
|
);
|
|
}
|
|
|
|
export default WidgetCard;
|