Skip to content

Commit

Permalink
Doc: Changes to comply with Sonar Cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
FAUSTMANNSTEF committed Nov 28, 2024
1 parent cd824f9 commit 4d5cd32
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 24 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
/** @jsxImportSource @emotion/react */
import React from 'react';
import { Select, MenuItem, FormControl, InputLabel, SelectChangeEvent, Typography, SxProps } from '@mui/material';
import { Select, MenuItem, FormControl, SelectChangeEvent, Typography, SxProps } from '@mui/material';
import {colors} from '../../../theme';
import { ArrowDown } from './data';


interface FormControlProps {
fullwidth?: boolean;
Expand Down Expand Up @@ -33,7 +31,7 @@ interface SelectFieldProps extends FormControlProps {

}

export default function formComponent(props:Readonly<SelectFieldProps>) {
export default function MuiForm(props:Readonly<SelectFieldProps>) {
const{
id,
value,
Expand All @@ -49,7 +47,6 @@ export default function formComponent(props:Readonly<SelectFieldProps>) {
fontWeight = "700",
multiple = false,
sx = {},
...otherProps
} = props;

return (
Expand Down Expand Up @@ -179,4 +176,4 @@ export default function formComponent(props:Readonly<SelectFieldProps>) {
</Select>
</FormControl>
);
};
};
2 changes: 1 addition & 1 deletion src/components/menu/MUI-FormControl/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export {default as formComponent} from './form';
export {default as formComponent} from './MuiForm';
26 changes: 12 additions & 14 deletions src/components/menu/MUI-menu/dropdown.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from "react";
import type { Meta, StoryObj } from "@storybook/react";
import MyDropdown from "./dropdown";
import { colors } from "../../../theme";
import IconButton, { iconButtonClasses } from "@mui/material/IconButton";
import IconButton from "@mui/material/IconButton";
import MenuRounded from "@mui/icons-material/MenuRounded";
import AccountCircleIcon from '@mui/icons-material/AccountCircle';
import SettingsIcon from '@mui/icons-material/Settings';
Expand Down Expand Up @@ -31,10 +31,8 @@ const meta: Meta<typeof MyDropdown> = {
menuItemProps: { control: "object" },
},
};

export default meta;
type StoryType = StoryObj<typeof meta>;

//OpenAidDropdown
export const OpenAidDropdown: StoryType = {
args: {
Expand All @@ -45,19 +43,19 @@ const meta: Meta<typeof MyDropdown> = {
</IconButton>
),
items: [
{ label: "Data Summary", action: () => console.log("Item 1 clicked") },
{ label: "Disbursements Overview", action: () => console.log("Item 2 clicked") },
{ label: "Priorities", action: () => console.log("Item 3 clicked") },
{ label: "Sectors", action: () => console.log("Item 4 clicked") },
{ label: "Countries & Regions", action: () => console.log("Item 3 clicked") },
{ label: "Organisations", action: () => console.log("Item 4 clicked") },
{ label: "Activities", action: () => console.log("Item 3 clicked") },
{ label: "Data Summary", action: () => console.log("Data Summary clicked") },
{ label: "Disbursements Overview", action: () => console.log("Disbursements Overview clicked") },
{ label: "Priorities", action: () => console.log("Priorities clicked") },
{ label: "Sectors", action: () => console.log("Sectors clicked") },
{ label: "Countries & Regions", action: () => console.log("Countries & Regions clicked") },
{ label: "Organisations", action: () => console.log("Organisations clicked") },
{ label: "Activities", action: () => console.log("Activities clicked") },
{divider: true },
{ label: "About this site", action: () => console.log("Item 4 clicked") },
{ label: "About Open Aid", action: () => console.log("Item 3 clicked") },
{ label: "About this site", action: () => console.log("About this site clicked") },
{ label: "About Open Aid", action: () => console.log("About Open Aid clicked") },
{ divider:true},
{ label: "Feedback", action: () => console.log("Item 4 clicked") },
{ label: "Accessibility", action: () => console.log("Item 3 clicked") },
{ label: "Feedback", action: () => console.log("Feedback clicked") },
{ label: "Accessibility", action: () => console.log("Accessibility clicked") },
],
transformOrigin:{
vertical: "top",
Expand Down
5 changes: 2 additions & 3 deletions src/components/menu/MUI-menu/dropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ interface DropdownProps extends MuiMenuProps {
};
}

export default function MyDropdown(props:Readonly<DropdownProps>) {
export default function MuiMenu(props:Readonly<DropdownProps>) {
const {
id,
anchorElement,
Expand All @@ -134,10 +134,9 @@ menuItemProps,
open,
selected,
...otherProps
}=props;
}=props;

const [anchorEl, setAnchorEl] = React.useState<null | HTMLElement>(null);
const [currentLabel, setCurrentLabel] = React.useState<string | undefined>("");

const handleClick = (event: React.MouseEvent<HTMLElement>) => {
setAnchorEl(event.currentTarget);
Expand Down

0 comments on commit 4d5cd32

Please sign in to comment.