import React from "react";
import styled from "styled-components";
import { Link } from "react-router-dom";
import {
getApplicationViewerPageURL,
BUILDER_PAGE_URL,
} from "constants/routes";
import { Card, Tooltip, Classes } from "@blueprintjs/core";
import { ApplicationPayload } from "constants/ReduxActionConstants";
import Button from "components/editorComponents/Button";
import {
theme,
getBorderCSSShorthand,
getColorWithOpacity,
} from "constants/DefaultTheme";
import { ControlIcons } from "icons/ControlIcons";
import ContextDropdown, {
ContextDropdownOption,
} from "components/editorComponents/ContextDropdown";
const Wrapper = styled(Card)`
display: flex;
flex-direction: column;
justify-content: center;
width: ${props => props.theme.card.minWidth}px;
height: ${props => props.theme.card.minHeight}px;
position: relative;
border-radius: ${props => props.theme.radii[1]}px;
margin: ${props => props.theme.spaces[5]}px
${props => props.theme.spaces[5]}px;
a {
display: block;
position: absolute;
left: 0;
top: 0;
height: calc(100% - ${props => props.theme.card.titleHeight}px);
width: 100%;
}
a:hover {
text-decoration: none;
&:after {
left: 0;
top: 0;
content: "";
position: absolute;
height: 100%;
width: 100%;
}
& .control {
display: block;
z-index: 1;
}
& div.image-container {
background: ${props =>
getColorWithOpacity(
props.theme.card.hoverBG,
props.theme.card.hoverBGOpacity,
)};
}
}
`;
const ApplicationTitle = styled.div`
font-size: ${props => props.theme.fontSizes[2]}px;
text-align: left;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
position: absolute;
bottom: 0;
left: 0;
height: ${props => props.theme.card.titleHeight}px;
padding: ${props => props.theme.spaces[6]}px;
width: 100%;
border-top: ${props => getBorderCSSShorthand(props.theme.card.divider)};
font-weight: ${props => props.theme.fontWeights[2]};
font-size: ${props => props.theme.fontSizes[4]}px;
& {
span {
display: inline-block;
}
.control {
z-index: 1;
position: absolute;
right: ${props => props.theme.spaces[5] * 3}px;
top: ${props => props.theme.spaces[5]}px;
}
.more {
z-index: 1;
position: absolute;
right: ${props => props.theme.spaces[2]}px;
top: ${props => props.theme.spaces[4]}px;
cursor: pointer;
}
}
`;
const ApplicationImage = styled.div`
&& {
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
& {
.control {
display: none;
button {
span {
font-weight: ${props => props.theme.fontWeights[3]};
}
}
}
}
}
`;
const Control = styled.button<{ fixed?: boolean }>`
outline: none;
background: none;
border: none;
cursor: pointer;
`;
const APPLICATION_CONTROL_FONTSIZE_INDEX = 6;
const ViewIcon = ControlIcons.VIEW_CONTROL;
const viewIconProps = {
width: theme.fontSizes[APPLICATION_CONTROL_FONTSIZE_INDEX - 1],
height: theme.fontSizes[APPLICATION_CONTROL_FONTSIZE_INDEX - 1],
color: theme.colors.secondary,
};
const viewControlIcon = ;
type ApplicationCardProps = {
application: ApplicationPayload;
loading: boolean;
duplicate?: (applicationId: string) => void;
share?: (applicationId: string) => void;
delete?: (applicationId: string) => void;
};
export const ApplicationCard = (props: ApplicationCardProps) => {
const duplicateApp = () => {
props.duplicate && props.duplicate(props.application.id);
};
const shareApp = () => {
props.share && props.share(props.application.id);
};
const deleteApp = () => {
props.delete && props.delete(props.application.id);
};
const moreActionItems: ContextDropdownOption[] = [];
if (props.share) {
moreActionItems.push({
value: "share",
onSelect: shareApp,
label: "Share",
});
}
if (props.duplicate) {
moreActionItems.push({
value: "duplicate",
onSelect: duplicateApp,
label: "Duplicate",
});
}
if (props.delete) {
moreActionItems.push({
value: "delete",
onSelect: deleteApp,
label: "Delete",
intent: "danger",
});
}
const viewApplicationURL = getApplicationViewerPageURL(
props.application.id,
props.application.defaultPageId,
);
const editApplicationURL = BUILDER_PAGE_URL(
props.application.id,
props.application.defaultPageId,
);
return (
{props.application.name}
{viewControlIcon}
);
};
export default ApplicationCard;