PromucFlow_constructor/app/client/src/pages/Applications/ApplicationCard.tsx
Piyush Mishra a4fe0a461e
Table Widget New Features (#2816)
- Each column has more options and can be configured in the property pane instead of the table
- Table level styles can now be set in the property pane
- Property sections are collapsible

Co-authored-by: vicky-primathon.in <vicky.bansal@primathon.in>
Co-authored-by: nandan.anantharamu <nandan.anantharamu@thoughtspot.com>
Co-authored-by: Abhinav Jha <abhinav@appsmith.com>
Co-authored-by: hetunandu <hetu@appsmith.com>
2021-02-16 15:59:08 +05:30

545 lines
15 KiB
TypeScript

import React, { useEffect, useState, useRef, useContext } from "react";
import styled, { ThemeContext } from "styled-components";
import {
getApplicationViewerPageURL,
BUILDER_PAGE_URL,
} from "constants/routes";
import {
Card,
Classes,
HTMLDivProps,
ICardProps,
Position,
} from "@blueprintjs/core";
import { ApplicationPayload } from "constants/ReduxActionConstants";
import { getColorWithOpacity } from "constants/DefaultTheme";
import {
isPermitted,
PERMISSION_TYPE,
} from "pages/Applications/permissionHelpers";
import {
getInitialsAndColorCode,
getApplicationIcon,
getRandomPaletteColor,
} from "utils/AppsmithUtils";
import { omit } from "lodash";
import Text, { TextType } from "components/ads/Text";
import Button, { Category, Size } from "components/ads/Button";
import Icon, { IconSize } from "components/ads/Icon";
import Menu from "components/ads/Menu";
import MenuItem, { MenuItemProps } from "components/ads/MenuItem";
import AppIcon, { AppIconName } from "components/ads/AppIcon";
import EditableText, {
EditInteractionKind,
SavingState,
} from "components/ads/EditableText";
import ColorSelector from "components/ads/ColorSelector";
import MenuDivider from "components/ads/MenuDivider";
import IconSelector from "components/ads/IconSelector";
import { useSelector } from "react-redux";
import { UpdateApplicationPayload } from "api/ApplicationApi";
import {
getIsFetchingApplications,
getIsSavingAppName,
} from "selectors/applicationSelectors";
import { Classes as CsClasses } from "components/ads/common";
import TooltipComponent from "components/ads/Tooltip";
import { isEllipsisActive } from "utils/helpers";
type NameWrapperProps = {
hasReadPermission: boolean;
showOverlay: boolean;
isMenuOpen: boolean;
};
const NameWrapper = styled((props: HTMLDivProps & NameWrapperProps) => (
<div {...omit(props, ["hasReadPermission", "showOverlay", "isMenuOpen"])} />
))`
.bp3-card {
border-radius: 0;
box-shadow: none;
}
${(props) =>
props.showOverlay &&
`
{
background-color: ${props.theme.colors.card.hoverBorder}};
justify-content: center;
align-items: center;
.overlay {
${props.hasReadPermission &&
`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.hasReadPermission && !props.isMenuOpen
? getColorWithOpacity(
props.theme.colors.card.hoverBG,
props.theme.colors.card.hoverBGOpacity,
)
: null
}
}
}
}
`}
overflow: hidden;
`;
const Wrapper = styled(
(
props: ICardProps & {
hasReadPermission?: boolean;
backgroundColor: string;
},
) => <Card {...omit(props, ["hasReadPermission", "backgroundColor"])} />,
)`
display: flex;
flex-direction: column;
justify-content: center;
width: ${(props) => props.theme.card.minWidth}px;
height: ${(props) => props.theme.card.minHeight}px;
position: relative;
background-color: ${(props) => props.backgroundColor};
margin: ${(props) => props.theme.spaces[5]}px;
.overlay {
display: block;
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
${(props) => !props.hasReadPermission && `pointer-events: none;`}
}
.bp3-card {
border-radius: 0;
}
.${CsClasses.APP_ICON} {
margin: 0 auto;
svg {
path {
fill: #fff;
}
}
}
`;
const ApplicationImage = styled.div`
&& {
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
& {
.control {
button {
span {
font-weight: ${(props) => props.theme.fontWeights[3]};
color: white;
}
}
}
}
}
`;
const Control = styled.div<{ fixed?: boolean }>`
outline: none;
border: none;
cursor: pointer;
.${Classes.BUTTON} {
margin-top: 7px;
div {
width: auto;
height: auto;
}
}
.${Classes.BUTTON_TEXT} {
font-size: 12px;
color: white;
}
.more {
position: absolute;
right: ${(props) => props.theme.spaces[6]}px;
top: ${(props) => props.theme.spaces[4]}px;
}
`;
const MoreOptionsContainer = styled.div`
width: 22px;
height: 22px;
background-color: rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
justify-content: center;
`;
const AppNameWrapper = styled.div<{ isFetching: boolean }>`
padding: 12px;
padding-top: 0;
padding-bottom: 0;
margin-bottom: 12px;
${(props) =>
props.isFetching
? `
width: 119px;
height: 16px;
margin-left: 10px;
`
: null};
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3; /* number of lines to show */
-webkit-box-orient: vertical;
word-break: break-word;
color: ${(props) => props.theme.colors.text.heading};
`;
type ApplicationCardProps = {
application: ApplicationPayload;
duplicate?: (applicationId: string) => void;
share?: (applicationId: string) => void;
delete?: (applicationId: string) => void;
update?: (id: string, data: UpdateApplicationPayload) => void;
};
const EditButton = styled(Button)`
margin-bottom: 8px;
`;
const ContextDropdownWrapper = styled.div`
position: absolute;
top: -6px;
right: -3px;
.${Classes.POPOVER_TARGET} {
span {
svg {
path {
fill: ${(props) => props.theme.colors.card.iconColor};
}
}
}
}
`;
export const ApplicationCard = (props: ApplicationCardProps) => {
const isFetchingApplications = useSelector(getIsFetchingApplications);
const theme = useContext(ThemeContext);
const isSavingName = useSelector(getIsSavingAppName);
const initialsAndColorCode = getInitialsAndColorCode(
props.application.name,
theme.colors.appCardColors,
);
let initials = initialsAndColorCode[0];
const [showOverlay, setShowOverlay] = useState(false);
const [selectedColor, setSelectedColor] = useState<string>("");
const [moreActionItems, setMoreActionItems] = useState<MenuItemProps[]>([]);
const [isMenuOpen, setIsMenuOpen] = useState(false);
const [lastUpdatedValue, setLastUpdatedValue] = useState("");
const appNameWrapperRef = useRef<HTMLDivElement>(null);
useEffect(() => {
let colorCode;
if (props.application.color) {
colorCode = props.application.color;
} else {
colorCode = getRandomPaletteColor(theme.colors.appCardColors);
}
setSelectedColor(colorCode);
}, [props.application.color]);
useEffect(() => {
if (props.share) {
moreActionItems.push({
onSelect: shareApp,
text: "Share",
icon: "share",
cypressSelector: "t--share",
});
}
if (props.duplicate && hasEditPermission) {
moreActionItems.push({
onSelect: duplicateApp,
text: "Duplicate",
icon: "duplicate",
cypressSelector: "t--duplicate",
});
}
setMoreActionItems(moreActionItems);
addDeleteOption();
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []);
const appIcon = (props.application?.icon ||
getApplicationIcon(props.application.id)) as AppIconName;
const hasEditPermission = isPermitted(
props.application?.userPermissions ?? [],
PERMISSION_TYPE.MANAGE_APPLICATION,
);
const hasReadPermission = isPermitted(
props.application?.userPermissions ?? [],
PERMISSION_TYPE.READ_APPLICATION,
);
const updateColor = (color: string) => {
setSelectedColor(color);
props.update &&
props.update(props.application.id, {
color: color,
});
};
const updateIcon = (icon: AppIconName) => {
props.update &&
props.update(props.application.id, {
icon: icon,
});
};
const duplicateApp = () => {
props.duplicate && props.duplicate(props.application.id);
};
const shareApp = () => {
props.share && props.share(props.application.id);
};
const deleteApp = () => {
setShowOverlay(false);
props.delete && props.delete(props.application.id);
};
const askForConfirmation = () => {
const updatedActionItems = [...moreActionItems];
updatedActionItems.pop();
updatedActionItems.push({
onSelect: deleteApp,
text: "Are you sure?",
icon: "delete",
type: "warning",
cypressSelector: "t--delete",
});
setMoreActionItems(updatedActionItems);
};
const addDeleteOption = () => {
if (props.delete && hasEditPermission) {
const index = moreActionItems.findIndex((el) => el.icon === "delete");
if (index >= 0) {
moreActionItems.pop();
}
moreActionItems.push({
onSelect: askForConfirmation,
text: "Delete",
icon: "delete",
cypressSelector: "t--delete-confirm",
});
setMoreActionItems(moreActionItems);
}
};
if (initials.length < 2 && props.application.name.length > 1) {
initials += props.application.name[1].toUpperCase() || "";
}
const viewApplicationURL = getApplicationViewerPageURL(
props.application.id,
props.application.defaultPageId,
);
const editApplicationURL = BUILDER_PAGE_URL(
props.application.id,
props.application.defaultPageId,
);
const appNameText = (
<Text type={TextType.H3} cypressSelector="t--app-card-name">
{props.application.name}
</Text>
);
const ContextMenu = (
<ContextDropdownWrapper>
<Menu
position={Position.RIGHT_TOP}
target={
<MoreOptionsContainer>
<Icon name="context-menu" size={IconSize.XXXL} />
</MoreOptionsContainer>
}
className="more"
onOpening={() => {
setIsMenuOpen(true);
}}
onClosing={() => {
setIsMenuOpen(false);
setShowOverlay(false);
addDeleteOption();
if (lastUpdatedValue && props.application.name !== lastUpdatedValue) {
props.update &&
props.update(props.application.id, {
name: lastUpdatedValue,
});
}
}}
>
{hasEditPermission && (
<EditableText
defaultValue={props.application.name}
editInteractionKind={EditInteractionKind.SINGLE}
onTextChanged={(value: string) => {
setLastUpdatedValue(value);
}}
placeholder={"Edit text input"}
hideEditIcon={false}
isInvalid={(value: string) => {
if (!value) {
return "Name cannot be empty";
} else {
return false;
}
}}
savingState={
isSavingName ? SavingState.STARTED : SavingState.NOT_STARTED
}
fill
onBlur={(value: string) => {
props.update &&
props.update(props.application.id, {
name: value,
});
}}
className="t--application-name"
underline
/>
)}
{hasEditPermission && (
<>
<ColorSelector
defaultValue={selectedColor}
colorPalette={theme.colors.appCardColors}
fill={true}
onSelect={updateColor}
/>
<MenuDivider />
</>
)}
{hasEditPermission && (
<>
<IconSelector
fill={true}
selectedIcon={appIcon}
selectedColor={selectedColor}
onSelect={updateIcon}
/>
<MenuDivider />
</>
)}
{moreActionItems.map((item: MenuItemProps) => {
return <MenuItem key={item.text} {...item} />;
})}
</Menu>
</ContextDropdownWrapper>
);
return (
<NameWrapper
isMenuOpen={isMenuOpen}
showOverlay={showOverlay}
onMouseEnter={() => {
!isFetchingApplications && setShowOverlay(true);
}}
onMouseLeave={() => {
// If the menu is not open, then setOverlay false
// Set overlay false on outside click.
!isMenuOpen && setShowOverlay(false);
}}
hasReadPermission={hasReadPermission}
className="t--application-card"
>
<>
<Wrapper
className={
isFetchingApplications
? Classes.SKELETON
: "t--application-card-background"
}
key={props.application.id}
hasReadPermission={hasReadPermission}
backgroundColor={selectedColor}
>
<AppIcon size={Size.large} name={appIcon} />
{/* <Initials>{initials}</Initials> */}
{showOverlay && (
<div className="overlay">
<ApplicationImage className="image-container">
<Control className="control">
{!!moreActionItems.length && ContextMenu}
{/* {!!moreActionItems.length && (
<ContextDropdown
options={moreActionItems}
toggle={{
type: "icon",
icon: "MORE_HORIZONTAL_CONTROL",
iconSize:
theme.fontSizes[APPLICATION_CONTROL_FONTSIZE_INDEX],
}}
className="more"
/>
)} */}
{hasEditPermission && !isMenuOpen && (
<EditButton
text="Edit"
size={Size.medium}
icon={"edit"}
className="t--application-edit-link"
fill
href={editApplicationURL}
/>
)}
{!isMenuOpen && (
<Button
text="LAUNCH"
size={Size.medium}
category={Category.tertiary}
className="t--application-view-link"
icon={"rocket"}
href={viewApplicationURL}
fill
/>
)}
</Control>
</ApplicationImage>
</div>
)}
</Wrapper>
<AppNameWrapper
ref={appNameWrapperRef}
isFetching={isFetchingApplications}
className={isFetchingApplications ? Classes.SKELETON : ""}
>
{isEllipsisActive(appNameWrapperRef?.current) ? (
<TooltipComponent maxWidth={400} content={props.application.name}>
{appNameText}
</TooltipComponent>
) : (
appNameText
)}
</AppNameWrapper>
</>
</NameWrapper>
);
};
export default ApplicationCard;