2021-09-09 15:10:22 +00:00
|
|
|
// import React, { JSXElementConstructor } from "react";
|
|
|
|
|
// import { IconProps, IconWrapper } from "constants/IconConstants";
|
|
|
|
|
|
2021-12-08 13:11:13 +00:00
|
|
|
import { Alignment } from "@blueprintjs/core";
|
|
|
|
|
import { IconName } from "@blueprintjs/icons";
|
2021-09-09 15:10:22 +00:00
|
|
|
import {
|
|
|
|
|
CONTAINER_GRID_PADDING,
|
|
|
|
|
GridDefaults,
|
|
|
|
|
WIDGET_PADDING,
|
|
|
|
|
} from "constants/WidgetConstants";
|
|
|
|
|
import generate from "nanoid/generate";
|
|
|
|
|
import { WidgetPositionProps } from "./BaseWidget";
|
2021-10-06 12:57:05 +00:00
|
|
|
import { Theme } from "constants/DefaultTheme";
|
|
|
|
|
import {
|
|
|
|
|
ButtonStyleTypes,
|
|
|
|
|
ButtonVariant,
|
|
|
|
|
ButtonVariantTypes,
|
2021-12-08 13:11:13 +00:00
|
|
|
ButtonPlacement,
|
|
|
|
|
ButtonPlacementTypes,
|
2021-10-06 12:57:05 +00:00
|
|
|
} from "components/constants";
|
|
|
|
|
import tinycolor from "tinycolor2";
|
2021-09-09 15:10:22 +00:00
|
|
|
|
|
|
|
|
export function getDisplayName(WrappedComponent: {
|
|
|
|
|
displayName: any;
|
|
|
|
|
name: any;
|
|
|
|
|
}) {
|
|
|
|
|
return WrappedComponent.displayName || WrappedComponent.name || "Component";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function getWidgetDimensions(props: WidgetPositionProps) {
|
|
|
|
|
return {
|
|
|
|
|
componentWidth:
|
|
|
|
|
(props.rightColumn - props.leftColumn) * props.parentColumnSpace,
|
|
|
|
|
componentHeight: (props.bottomRow - props.topRow) * props.parentRowSpace,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export function getSnapSpaces(props: WidgetPositionProps) {
|
|
|
|
|
const { componentWidth } = getWidgetDimensions(props);
|
|
|
|
|
return {
|
|
|
|
|
snapRowSpace: GridDefaults.DEFAULT_GRID_ROW_HEIGHT,
|
|
|
|
|
snapColumnSpace: componentWidth
|
|
|
|
|
? (componentWidth - (CONTAINER_GRID_PADDING + WIDGET_PADDING) * 2) /
|
|
|
|
|
GridDefaults.DEFAULT_GRID_COLUMNS
|
|
|
|
|
: 0,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const hexToRgb = (
|
|
|
|
|
hex: string,
|
|
|
|
|
): {
|
|
|
|
|
r: number;
|
|
|
|
|
g: number;
|
|
|
|
|
b: number;
|
|
|
|
|
} => {
|
|
|
|
|
const result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
|
|
|
|
|
return result
|
|
|
|
|
? {
|
|
|
|
|
r: parseInt(result[1], 16),
|
|
|
|
|
g: parseInt(result[2], 16),
|
|
|
|
|
b: parseInt(result[3], 16),
|
|
|
|
|
}
|
|
|
|
|
: {
|
|
|
|
|
r: -1,
|
|
|
|
|
g: -1,
|
|
|
|
|
b: -1,
|
|
|
|
|
};
|
|
|
|
|
};
|
2021-11-30 10:38:46 +00:00
|
|
|
// Padding between PostionContainer and Widget
|
|
|
|
|
export const WidgetContainerDiff = 8;
|
2021-09-09 15:10:22 +00:00
|
|
|
export const hexToRgba = (color: string, alpha: number) => {
|
|
|
|
|
const value = hexToRgb(color);
|
|
|
|
|
return `rgba(${value.r}, ${value.g}, ${value.b}, ${alpha});`;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const ALPHANUMERIC = "1234567890abcdefghijklmnopqrstuvwxyz";
|
|
|
|
|
// const ALPHABET = "abcdefghijklmnopqrstuvwxyz";
|
|
|
|
|
|
|
|
|
|
export const generateReactKey = ({
|
|
|
|
|
prefix = "",
|
|
|
|
|
}: { prefix?: string } = {}): string => {
|
|
|
|
|
return prefix + generate(ALPHANUMERIC, 10);
|
|
|
|
|
};
|
2021-10-06 12:57:05 +00:00
|
|
|
|
|
|
|
|
export const getCustomTextColor = (theme: Theme, backgroundColor?: string) => {
|
|
|
|
|
if (!backgroundColor)
|
2021-11-06 08:00:57 +00:00
|
|
|
return theme.colors.button[ButtonStyleTypes.PRIMARY.toLowerCase()].primary
|
2021-10-06 12:57:05 +00:00
|
|
|
.textColor;
|
|
|
|
|
const isDark = tinycolor(backgroundColor).isDark();
|
|
|
|
|
if (isDark) {
|
|
|
|
|
return theme.colors.button.custom.solid.light.textColor;
|
|
|
|
|
}
|
|
|
|
|
return theme.colors.button.custom.solid.dark.textColor;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const getCustomHoverColor = (
|
|
|
|
|
theme: Theme,
|
|
|
|
|
buttonVariant?: ButtonVariant,
|
|
|
|
|
backgroundColor?: string,
|
|
|
|
|
) => {
|
|
|
|
|
if (!backgroundColor) {
|
|
|
|
|
return theme.colors.button[ButtonStyleTypes.PRIMARY.toLowerCase()][
|
2021-10-12 08:04:51 +00:00
|
|
|
(buttonVariant || ButtonVariantTypes.PRIMARY).toLowerCase()
|
2021-10-06 12:57:05 +00:00
|
|
|
].hoverColor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (buttonVariant) {
|
2021-10-12 08:04:51 +00:00
|
|
|
case ButtonVariantTypes.SECONDARY:
|
2021-10-06 12:57:05 +00:00
|
|
|
return backgroundColor
|
|
|
|
|
? tinycolor(backgroundColor)
|
|
|
|
|
.lighten(40)
|
|
|
|
|
.toString()
|
2021-11-06 08:00:57 +00:00
|
|
|
: theme.colors.button.primary.secondary.hoverColor;
|
2021-10-06 12:57:05 +00:00
|
|
|
|
2021-10-12 08:04:51 +00:00
|
|
|
case ButtonVariantTypes.TERTIARY:
|
2021-10-06 12:57:05 +00:00
|
|
|
return backgroundColor
|
|
|
|
|
? tinycolor(backgroundColor)
|
|
|
|
|
.lighten(40)
|
|
|
|
|
.toString()
|
2021-11-06 08:00:57 +00:00
|
|
|
: theme.colors.button.primary.tertiary.hoverColor;
|
2021-10-06 12:57:05 +00:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return backgroundColor
|
|
|
|
|
? tinycolor(backgroundColor)
|
|
|
|
|
.darken(10)
|
|
|
|
|
.toString()
|
2021-11-06 08:00:57 +00:00
|
|
|
: theme.colors.button.primary.primary.hoverColor;
|
2021-10-06 12:57:05 +00:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const getCustomBackgroundColor = (
|
|
|
|
|
buttonVariant?: ButtonVariant,
|
|
|
|
|
backgroundColor?: string,
|
|
|
|
|
) => {
|
2021-10-12 08:04:51 +00:00
|
|
|
return buttonVariant === ButtonVariantTypes.PRIMARY
|
|
|
|
|
? backgroundColor
|
|
|
|
|
: "none";
|
2021-10-06 12:57:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const getCustomBorderColor = (
|
|
|
|
|
buttonVariant?: ButtonVariant,
|
|
|
|
|
backgroundColor?: string,
|
|
|
|
|
) => {
|
2021-10-12 08:04:51 +00:00
|
|
|
return buttonVariant === ButtonVariantTypes.SECONDARY
|
2021-10-06 12:57:05 +00:00
|
|
|
? backgroundColor
|
|
|
|
|
: "none";
|
|
|
|
|
};
|
2021-11-25 10:52:40 +00:00
|
|
|
|
2021-12-08 13:11:13 +00:00
|
|
|
export const getCustomJustifyContent = (placement?: ButtonPlacement) => {
|
|
|
|
|
switch (placement) {
|
|
|
|
|
case ButtonPlacementTypes.START:
|
|
|
|
|
return "start";
|
|
|
|
|
case ButtonPlacementTypes.CENTER:
|
|
|
|
|
return "center";
|
|
|
|
|
case ButtonPlacementTypes.BETWEEN:
|
|
|
|
|
return "space-between";
|
|
|
|
|
default:
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const getAlignText = (isRightAlign: boolean, iconName?: IconName) =>
|
|
|
|
|
iconName
|
|
|
|
|
? isRightAlign
|
|
|
|
|
? Alignment.LEFT
|
|
|
|
|
: Alignment.RIGHT
|
|
|
|
|
: Alignment.CENTER;
|
2021-11-25 10:52:40 +00:00
|
|
|
export const escapeSpecialChars = (stringifiedJSONObject: string) => {
|
|
|
|
|
return stringifiedJSONObject
|
|
|
|
|
.replace(/\\n/g, "\\\\n") // new line char
|
|
|
|
|
.replace(/\\b/g, "\\\\b") //
|
|
|
|
|
.replace(/\\t/g, "\\\\t") // tab
|
|
|
|
|
.replace(/\\f/g, "\\\\f") //
|
|
|
|
|
.replace(/\\/g, "\\\\") //
|
|
|
|
|
.replace(/\\r/g, "\\\\r"); //
|
|
|
|
|
};
|