Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pull request update/240828 #382

Merged
merged 3 commits into from
Aug 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,061 changes: 447 additions & 614 deletions herald/modules/email_generator/templates/pool_owner_violation_report.html

Large diffs are not rendered by default.

1,220 changes: 586 additions & 634 deletions herald/modules/email_generator/templates/resource_owner_violation_report.html

Large diffs are not rendered by default.

18 changes: 0 additions & 18 deletions herald/send_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -651,25 +651,13 @@
'template_type': 'pool_owner_violation_report',
'template_params': {
'texts': {
'title': 'Resource Constraints Report',
'total_differ': 0,
'total_violated': 2,
'differ_resources': [],
'organization': {
'id': '28eef4b1-4acf-4050-b833-86c3b2aaf1e7',
'name': 'Lori Inc'
},
'user': {
'assignment_id': 'e56d3134-a7f3-44c3-9f70-4734fae654fd',
'assignment_resource_id': '28eef4b1-4acf-4050-b833-86c3b2aaf1e7',
'assignment_type_id': 2,
'role_id': 3,
'role_name': 'Manager',
'role_scope_id': None,
'role_purpose': 'optscale_manager',
'user_display_name': 'lori54',
'user_email': '[email protected]',
'user_id': '0eebe586-9cad-4daf-b143-075c2422cf98'},
'violated_resources': [
{
'cloud_resource_id': 'i-05377b0fa5b9674fd',
Expand Down Expand Up @@ -754,7 +742,6 @@
"subject": "Action required: Hystax OptScale Resource Constraints Report",
"template_params": {
"texts": {
"title": "Resource Constraints Report",
"total_differ": 1,
"total_violated": 1,
"differ_resources": [{
Expand Down Expand Up @@ -790,11 +777,6 @@
"id": "b8835bce-da4c-4c29-98a0-4b4967baba53",
"name": "Czar Pictures"
},
"user": {
"user_display_name": "Mr Smith",
"user_email": "[email protected]",
"user_id": "8aa14efd-d111-4934-9c19-92b6f0da18fe"
},
"violated_resources": [{
"cloud_resource_id": "hystax-eu-fra",
"constraint_limit": 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ def generate(self):
'Action required: Hystax OptScale Resource Constraints Report',
'template_params': {
'texts': {
'user': self.report_data,
'organization': {
'id': org['id'],
'name': org['name']
Expand All @@ -48,7 +47,6 @@ def generate(self):
'total_violated': total_violated,
'differ_resources': differ_resources,
'violated_resources': violated_resources,
'title': 'Resource Constraints Report'
}
}
}
Expand Down
23 changes: 20 additions & 3 deletions ngui/ui/src/components/SideModal/SideModal.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
import { useState } from "react";
import { ReactNode, SyntheticEvent, useState } from "react";
import Drawer from "@mui/material/Drawer";
import SideModalHeader from "components/SideModalHeader";
import { SideModalHeaderProps } from "components/SideModalHeader/SideModalHeader";
import useStyles from "./SideModal.styles";

const DrawerContent = ({ headerProps, handleClose, children }) => {
type DrawerContentProps = {
headerProps: SideModalHeaderProps;
handleClose: (event: SyntheticEvent) => void;
children: ReactNode;
};

type SideModalProps = {
isOpen: boolean;
closeHandler: (isOpen: boolean) => void;
dataTestId: string;
headerProps: SideModalHeaderProps;
onClose?: (event: SyntheticEvent) => void;
children: ReactNode;
};

const DrawerContent = ({ headerProps, handleClose, children }: DrawerContentProps) => {
const { showExpand, ...sideModalHeaderProps } = headerProps;

const [isExpanded, setIsExpanded] = useState(showExpand);
Expand All @@ -14,6 +30,7 @@ const DrawerContent = ({ headerProps, handleClose, children }) => {
<div className={cx(classes.sideModal, isExpanded && classes.sideModalExpanded)}>
<SideModalHeader
{...sideModalHeaderProps}
showExpand={showExpand}
onClose={handleClose}
isExpanded={isExpanded}
onExpandChange={() => setIsExpanded(!isExpanded)}
Expand All @@ -23,7 +40,7 @@ const DrawerContent = ({ headerProps, handleClose, children }) => {
);
};

const SideModal = ({ isOpen, closeHandler, dataTestId, headerProps = {}, onClose, children }) => {
const SideModal = ({ isOpen, closeHandler, dataTestId, headerProps, onClose, children }: SideModalProps) => {
const handleClose = (event) => {
if (event.type === "keydown" && (event.key === "Tab" || event.key === "Shift")) {
return;
Expand Down
23 changes: 21 additions & 2 deletions ngui/ui/src/components/SideModalHeader/SideModalHeader.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { ReactNode, SyntheticEvent } from "react";
import CloseIcon from "@mui/icons-material/Close";
import WidthNormalIcon from "@mui/icons-material/WidthNormal";
import WidthWideIcon from "@mui/icons-material/WidthWide";
Expand All @@ -10,6 +11,23 @@ import SideModalTitle from "components/SideModalTitle";
import { capitalize } from "utils/strings";
import useStyles from "./SideModalHeader.styles";

type Title =
| { text: string; messageId?: never; formattedMessageValues?: never }
| { text?: never; messageId: string; formattedMessageValues?: Record<string, ReactNode> };

export type SideModalHeaderProps = Title & {
onClose: (event: SyntheticEvent) => void;
showExpand?: boolean;
onExpandChange?: () => void;
isExpanded?: boolean;
dataTestIds?: {
title?: string;
closeButton?: string;
expandButton?: string;
};
color?: "primary" | "success" | "info" | "error";
};

const SideModalHeader = ({
text,
messageId,
Expand All @@ -20,7 +38,7 @@ const SideModalHeader = ({
formattedMessageValues,
dataTestIds,
color = "primary"
}) => {
}: SideModalHeaderProps) => {
const { classes, cx } = useStyles();

const {
Expand All @@ -29,7 +47,8 @@ const SideModalHeader = ({
expandButton: expandButtonDataTestId
} = dataTestIds || {};

const headerClasses = cx(classes["header".concat(capitalize(color))]);
const headerColorClassName = `header${capitalize(color)}` as const;
const headerClasses = cx(classes[headerColorClassName]);

return (
<Box mb={2}>
Expand Down
9 changes: 7 additions & 2 deletions ngui/ui/src/components/SideModalTitle/SideModalTitle.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
import Typography from "@mui/material/Typography";
import Typography, { TypographyProps } from "@mui/material/Typography";

const SideModalTitle = ({ children, dataProductTourId, dataTestId, ...rest }) => (
type SideModalTitleProps = {
dataProductTourId?: string;
dataTestId?: string;
} & TypographyProps;

const SideModalTitle = ({ children, dataProductTourId, dataTestId, ...rest }: SideModalTitleProps) => (
<Typography component="h2" variant="h6" data-product-tour-id={dataProductTourId} data-test-id={dataTestId} {...rest}>
{children}
</Typography>
Expand Down
3 changes: 2 additions & 1 deletion ngui/ui/src/utils/strings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ export const getHash = (s) => {
return h;
};

export const capitalize = (s) => (isString(s) ? s.charAt(0).toUpperCase() + s.slice(1) : "");
export const capitalize = <T extends string>(s: T): Capitalize<T> =>
(isString(s) ? s.charAt(0).toUpperCase() + s.slice(1) : "") as Capitalize<T>;

export const concatenate = (array, pre, separator) => {
const string = array.join(separator);
Expand Down
Loading