diff --git a/demo/src/app.jsx b/demo/src/app.jsx index 44ba19f3..24942cec 100644 --- a/demo/src/app.jsx +++ b/demo/src/app.jsx @@ -25,7 +25,7 @@ import { Typography, } from '@mui/material'; import CommentIcon from '@mui/icons-material/Comment'; -import { BrowserRouter, useLocation, useMatch, useNavigate } from 'react-router'; +import { BrowserRouter, useLocation, useMatch, useNavigate } from 'react-router-dom'; import { IntlProvider, useIntl } from 'react-intl'; import { useCallback, useEffect, useRef, useState } from 'react'; import translations from './demo_intl'; diff --git a/package-lock.json b/package-lock.json index 17ff274a..7479a55a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -89,6 +89,7 @@ "react-papaparse": "^4.4.0", "react-resizable": "^3.0.5", "react-router": "^6.29.0", + "react-router-dom": "^6.29.0", "ts-node": "^10.9.2", "typescript": "~5.5.4", "vite": "^5.4.14", @@ -7797,12 +7798,15 @@ } }, "node_modules/es-shim-unscopables": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", - "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz", + "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==", "dev": true, "dependencies": { - "hasown": "^2.0.0" + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" } }, "node_modules/es-to-primitive": { @@ -10306,9 +10310,9 @@ } }, "node_modules/jackspeak": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.2.tgz", - "integrity": "sha512-bZsjR/iRjl1Nk1UkjGpAzLNfQtzuijhn2g+pbZb98HQ1Gk8vM9hfbxeMBP+M2/UUdwj0RqGG3mlvk2MsAqwvEw==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.0.3.tgz", + "integrity": "sha512-oSwM7q8PTHQWuZAlp995iPpPJ4Vkl7qT0ZRD+9duL9j2oBy6KcTfyxc8mEuHJYC+z/kbps80aJLkaNzTOrf/kw==", "dev": true, "dependencies": { "@isaacs/cliui": "^8.0.2" @@ -13037,6 +13041,23 @@ "react": ">=16.8" } }, + "node_modules/react-router-dom": { + "version": "6.29.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.29.0.tgz", + "integrity": "sha512-pkEbJPATRJ2iotK+wUwHfy0xs2T59YPEN8BQxVCPeBZvK7kfPESRc/nyxzdcxR17hXgUPYx2whMwl+eo9cUdnQ==", + "dev": true, + "dependencies": { + "@remix-run/router": "1.22.0", + "react-router": "6.29.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8", + "react-dom": ">=16.8" + } + }, "node_modules/react-transition-group": { "version": "4.4.5", "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", diff --git a/package.json b/package.json index 41d11056..a644b575 100644 --- a/package.json +++ b/package.json @@ -127,6 +127,7 @@ "react-papaparse": "^4.4.0", "react-resizable": "^3.0.5", "react-router": "^6.29.0", + "react-router-dom": "^6.29.0", "ts-node": "^10.9.2", "typescript": "~5.5.4", "vite": "^5.4.14", diff --git a/src/components/checkBoxList/checkBoxList.type.ts b/src/components/checkBoxList/checkBoxList.type.ts index d0132f76..4ab0e4b3 100644 --- a/src/components/checkBoxList/checkBoxList.type.ts +++ b/src/components/checkBoxList/checkBoxList.type.ts @@ -5,7 +5,7 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -import type { ReactElement } from 'react'; +import type { ReactElement, ReactNode } from 'react'; import type { DraggableProvided, DragStart, DropResult } from 'react-beautiful-dnd'; import type { SxProps, Theme } from '@mui/material'; @@ -31,7 +31,7 @@ type CheckBoxListItemSxProps = CheckBoxListSx & { export interface CheckBoxListItemProps { item: T; sx?: CheckBoxListItemSx; - label: string; + label: ReactNode; onClick: () => void; secondaryAction?: (item: T, hover: string) => ReactElement | null; getItemId: (item: T) => string; @@ -52,7 +52,7 @@ export interface CheckBoxListItemsProps { selectedItems: T[]; onSelectionChange?: (selectedItems: T[]) => void; getItemId: (item: T) => string; - getItemLabel?: (item: T) => string; + getItemLabel?: (item: T) => ReactNode; secondaryAction?: (item: T, hover: boolean) => ReactElement | null; isDisabled?: (item: T) => boolean; addSelectAllCheckbox?: boolean; @@ -72,7 +72,7 @@ export interface CheckboxListProps extends CheckBoxListItemsProps { export interface ClickableCheckBoxItemProps { sx?: CheckBoxListItemSx; - label: string; + label: ReactNode; onClick: () => void; disabled?: boolean; checked: boolean; diff --git a/src/components/overflowableText/OverflowableText.tsx b/src/components/overflowableText/OverflowableText.tsx index 8b1b2adb..0a2e822d 100644 --- a/src/components/overflowableText/OverflowableText.tsx +++ b/src/components/overflowableText/OverflowableText.tsx @@ -4,7 +4,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -import { ReactElement, useCallback, useLayoutEffect, useMemo, useRef, useState } from 'react'; +import { ReactNode, useCallback, useLayoutEffect, useMemo, useRef, useState } from 'react'; import { Box, BoxProps, SxProps, Theme, Tooltip, styled } from '@mui/material'; import { Style } from 'node:util'; @@ -32,7 +32,7 @@ const multilineOverflowStyle = (numberOfLinesToDisplay?: number): SxProps => ({ }); export interface OverflowableTextProps extends BoxProps { - text?: ReactElement | string; + text?: ReactNode; maxLineCount?: number; tooltipStyle?: Style; tooltipSx?: SxProps; diff --git a/src/hooks/useModificationLabelComputer.tsx b/src/hooks/useModificationLabelComputer.tsx index 3ba493f9..38415137 100644 --- a/src/hooks/useModificationLabelComputer.tsx +++ b/src/hooks/useModificationLabelComputer.tsx @@ -29,18 +29,19 @@ interface ModificationValues { equipmentAttributeValue: string; } -const getOperatingStatusModificationValues = (modification: ModificationValues, withFormat: boolean) => { +const getOperatingStatusModificationValues = (modification: ModificationValues, formatBold: boolean) => { return { action: modification.action, energizedEnd: modification.energizedVoltageLevelId, - computedLabel: withFormat ? {modification.equipmentId} : modification.equipmentId, + computedLabel: formatBold ? {modification.equipmentId} : modification.equipmentId, }; }; -const getEquipmentAttributeModificationValues = (modification: ModificationValues, withFormat: boolean) => { + +const getEquipmentAttributeModificationValues = (modification: ModificationValues, formatBold: boolean) => { return { equipmentAttributeName: modification.equipmentAttributeName, equipmentAttributeValue: modification.equipmentAttributeValue, - computedLabel: withFormat ? {modification.equipmentId} : modification.equipmentId, + computedLabel: formatBold ? {modification.equipmentId} : modification.equipmentId, }; }; @@ -85,18 +86,16 @@ export const useModificationLabelComputer = () => { ); const computeLabel = useCallback( - (modif: NetworkModificationMetadata, withFormat = true) => { + (modif: NetworkModificationMetadata, formatBold = true) => { const modificationValues = JSON.parse(modif.messageValues); switch (modif.messageType) { case MODIFICATION_TYPES.OPERATING_STATUS_MODIFICATION.type: - return getOperatingStatusModificationValues(modificationValues, withFormat); + return getOperatingStatusModificationValues(modificationValues, formatBold); case MODIFICATION_TYPES.EQUIPMENT_ATTRIBUTE_MODIFICATION.type: - return getEquipmentAttributeModificationValues(modificationValues, withFormat); + return getEquipmentAttributeModificationValues(modificationValues, formatBold); default: - return { - computedLabel: withFormat ? {getLabel(modif)} : getLabel(modif), - }; + return { computedLabel: formatBold ? {getLabel(modif)} : getLabel(modif) }; } }, [getLabel]