@centreon/ui 24.4.1-sync-release-34022.1 → 24.4.1-sync-dev-2404.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +48 -40
- package/src/ActionsList/ActionsList.styles.ts +40 -71
- package/src/Button/Icon/index.stories.tsx +1 -1
- package/src/Button/Icon/index.tsx +1 -1
- package/src/Dashboard/Dashboard.styles.ts +6 -5
- package/src/Dialog/Confirm/index.tsx +10 -2
- package/src/Dialog/UnsavedChanges/index.tsx +21 -20
- package/src/Dialog/UnsavedChanges/translatedLabels.ts +4 -6
- package/src/Dialog/index.tsx +8 -1
- package/src/Form/Inputs/CheckboxGroup.tsx +4 -1
- package/src/Form/Inputs/Text.tsx +3 -1
- package/src/Form/Inputs/models.ts +1 -0
- package/src/Graph/BarStack/BarStack.cypress.spec.tsx +139 -0
- package/src/Graph/BarStack/BarStack.stories.tsx +123 -0
- package/src/Graph/BarStack/BarStack.styles.ts +37 -0
- package/src/Graph/BarStack/BarStack.tsx +14 -0
- package/src/Graph/BarStack/ResponsiveBarStack.tsx +209 -0
- package/src/Graph/BarStack/index.ts +1 -0
- package/src/Graph/BarStack/models.ts +19 -0
- package/src/Graph/BarStack/useResponsiveBarStack.ts +131 -0
- package/src/Graph/Gauge/Gauge.cypress.spec.tsx +102 -0
- package/src/Graph/Gauge/Gauge.tsx +1 -1
- package/src/Graph/HeatMap/HeatMap.cypress.spec.tsx +145 -0
- package/src/Graph/HeatMap/HeatMap.stories.tsx +0 -25
- package/src/Graph/HeatMap/ResponsiveHeatMap.tsx +8 -2
- package/src/Graph/Legend/Legend.tsx +21 -0
- package/src/Graph/Legend/index.ts +1 -0
- package/src/Graph/Legend/models.ts +11 -0
- package/src/Graph/LineChart/BasicComponents/Lines/Threshold/index.tsx +4 -5
- package/src/Graph/LineChart/BasicComponents/ThresholdLine.tsx +3 -1
- package/src/Graph/LineChart/Header/index.tsx +3 -31
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/useTickGraph.ts +9 -11
- package/src/Graph/LineChart/InteractiveComponents/Annotations/Annotation/index.tsx +3 -2
- package/src/Graph/LineChart/InteractiveComponents/GraphValueTooltip/GraphValueTooltip.tsx +68 -0
- package/src/Graph/LineChart/InteractiveComponents/GraphValueTooltip/useGraphValueTooltip.ts +27 -0
- package/src/Graph/LineChart/InteractiveComponents/GraphValueTooltip/useGraphValueTooltipStyles.ts +31 -0
- package/src/Graph/LineChart/InteractiveComponents/index.tsx +132 -17
- package/src/Graph/LineChart/InteractiveComponents/interactionWithGraphAtoms.ts +7 -27
- package/src/Graph/LineChart/Legend/Legend.styles.ts +5 -9
- package/src/Graph/LineChart/Legend/LegendHeader.tsx +10 -22
- package/src/Graph/LineChart/Legend/index.tsx +17 -55
- package/src/Graph/LineChart/LineChart.cypress.spec.tsx +91 -0
- package/src/Graph/LineChart/LineChart.styles.ts +8 -0
- package/src/Graph/LineChart/LineChart.tsx +106 -116
- package/src/Graph/LineChart/LoadingSkeleton.tsx +2 -2
- package/src/Graph/LineChart/index.tsx +6 -7
- package/src/Graph/LineChart/mockedData/lastDayWithIncompleteValues.json +1320 -0
- package/src/Graph/LineChart/mockedData/lastDayWithNullValues.json +1314 -0
- package/src/Graph/LineChart/models.ts +12 -1
- package/src/Graph/PieChart/PieChart.cypress.spec.tsx +154 -0
- package/src/Graph/PieChart/PieChart.stories.tsx +194 -0
- package/src/Graph/PieChart/PieChart.styles.ts +39 -0
- package/src/Graph/PieChart/PieChart.tsx +14 -0
- package/src/Graph/PieChart/ResponsivePie.tsx +243 -0
- package/src/Graph/PieChart/index.ts +1 -0
- package/src/Graph/PieChart/models.ts +19 -0
- package/src/Graph/PieChart/useResponsivePie.ts +81 -0
- package/src/Graph/SingleBar/SingleBar.cypress.spec.tsx +121 -0
- package/src/Graph/Text/Text.cypress.spec.tsx +101 -0
- package/src/Graph/Text/Text.styles.ts +12 -1
- package/src/Graph/Text/Text.tsx +17 -12
- package/src/Graph/Tree/DescendantNodes.tsx +88 -0
- package/src/Graph/Tree/Links.tsx +64 -0
- package/src/Graph/Tree/StandaloneTree.tsx +32 -0
- package/src/Graph/Tree/Tree.cypress.spec.tsx +171 -0
- package/src/Graph/Tree/Tree.stories.tsx +144 -0
- package/src/Graph/Tree/Tree.tsx +116 -0
- package/src/Graph/Tree/constants.ts +2 -0
- package/src/Graph/Tree/index.ts +4 -0
- package/src/Graph/Tree/models.ts +52 -0
- package/src/Graph/Tree/stories/contents.tsx +164 -0
- package/src/Graph/Tree/stories/datas.ts +305 -0
- package/src/Graph/Tree/utils.ts +49 -0
- package/src/Graph/common/testUtils.ts +71 -0
- package/src/Graph/common/timeSeries/index.ts +50 -12
- package/src/Graph/common/utils.ts +19 -0
- package/src/Graph/index.ts +4 -0
- package/src/InputField/Number/Number.cypress.spec.tsx +85 -0
- package/src/InputField/Number/Number.stories.tsx +66 -0
- package/src/InputField/Number/Number.tsx +74 -0
- package/src/InputField/Search/index.tsx +2 -2
- package/src/InputField/Select/Autocomplete/Multi/index.tsx +4 -2
- package/src/InputField/Select/Autocomplete/index.tsx +10 -3
- package/src/InputField/Select/IconPopover/index.tsx +1 -1
- package/src/InputField/Select/index.tsx +14 -1
- package/src/InputField/Text/index.tsx +38 -38
- package/src/Listing/ActionBar/index.tsx +10 -10
- package/src/Listing/Cell/DataCell.styles.ts +3 -0
- package/src/Listing/Cell/DataCell.tsx +8 -4
- package/src/Listing/Listing.cypress.spec.tsx +218 -33
- package/src/Listing/Listing.styles.ts +3 -5
- package/src/Listing/Row/Row.tsx +7 -3
- package/src/Listing/index.stories.tsx +25 -2
- package/src/Listing/index.test.tsx +1 -1
- package/src/Listing/index.tsx +202 -143
- package/src/Listing/models.ts +1 -0
- package/src/Listing/useStyleTable.ts +1 -0
- package/src/Panel/index.tsx +1 -1
- package/src/PopoverMenu/index.tsx +6 -5
- package/src/ThemeProvider/index.tsx +3 -0
- package/src/TimePeriods/CustomTimePeriod/CompactCustomTimePeriod.styles.ts +6 -7
- package/src/TimePeriods/ResolutionTimePeriod.cypress.spec.tsx +12 -9
- package/src/TopCounterElements/TopCounterLayout.tsx +3 -0
- package/src/TopCounterElements/useCloseOnLegacyPage.tsx +42 -0
- package/src/Typography/FluidTypography/FluidTypography.cypress.spec.tsx +27 -0
- package/src/Typography/FluidTypography/index.stories.tsx +2 -2
- package/src/Typography/FluidTypography/index.tsx +21 -28
- package/src/api/index.ts +3 -3
- package/src/api/useGraphQuery/index.ts +26 -5
- package/src/api/useGraphQuery/models.ts +5 -0
- package/src/api/useMutationQuery/index.test.ts +4 -4
- package/src/api/useMutationQuery/index.ts +24 -13
- package/src/components/CollapsibleItem/CollapsibleItem.cypress.spec.tsx +76 -0
- package/src/components/CollapsibleItem/CollapsibleItem.stories.tsx +26 -0
- package/src/components/CollapsibleItem/CollapsibleItem.tsx +43 -14
- package/src/components/CollapsibleItem/useCollapsibleItemStyles.ts +24 -1
- package/src/components/DataTable/DataTable.cypress.spec.tsx +14 -33
- package/src/components/DataTable/Item/DataTableItem.tsx +4 -60
- package/src/components/Form/{AccessRightsV2 → AccessRights}/AccessRights.cypress.spec.tsx +36 -13
- package/src/components/Form/{AccessRightsV2 → AccessRights}/ShareInput/ContactSwitch.tsx +11 -3
- package/src/components/Form/{AccessRightsV2 → AccessRights}/ShareInput/ShareInput.styles.ts +8 -0
- package/src/components/Form/{AccessRightsV2 → AccessRights}/ShareInput/ShareInput.tsx +1 -0
- package/src/components/Form/{AccessRightsV2 → AccessRights}/ShareInput/useShareInput.tsx +4 -0
- package/src/components/Form/{AccessRightsV2 → AccessRights}/models.ts +1 -0
- package/src/components/Form/{AccessRightsV2 → AccessRights}/storiesData.ts +23 -22
- package/src/components/Form/Dashboard/DashboardDuplicationForm.tsx +85 -0
- package/src/components/Form/Dashboard/index.ts +1 -0
- package/src/components/Form/FormActions.tsx +7 -2
- package/src/components/Form/index.ts +2 -2
- package/src/components/ItemComposition/Item.tsx +1 -1
- package/src/components/ItemComposition/ItemComposition.cypress.spec.tsx +113 -0
- package/src/components/ItemComposition/ItemComposition.stories.tsx +14 -0
- package/src/components/ItemComposition/ItemComposition.styles.ts +36 -3
- package/src/components/ItemComposition/ItemComposition.tsx +41 -17
- package/src/components/List/Item/ListItem.tsx +3 -3
- package/src/components/Modal/ConfirmationModal/ConfirmationModal.cypress.spec.tsx +168 -0
- package/src/components/Modal/ConfirmationModal/ConfirmationModal.stories.tsx +62 -0
- package/src/components/Modal/ConfirmationModal/ConfirmationModal.tsx +87 -0
- package/src/components/Modal/Modal.styles.ts +8 -3
- package/src/components/Modal/index.ts +2 -0
- package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.stories.tsx +3 -3
- package/src/components/Tooltip/ConfirmationTooltip/ConfirmationTooltip.tsx +1 -1
- package/src/components/Tooltip/ConfirmationTooltip/models.ts +1 -1
- package/src/components/Zoom/Minimap.tsx +127 -0
- package/src/components/Zoom/Zoom.cypress.spec.tsx +246 -0
- package/src/components/Zoom/Zoom.stories.tsx +115 -0
- package/src/components/Zoom/Zoom.styles.tsx +68 -0
- package/src/components/Zoom/Zoom.tsx +61 -0
- package/src/components/Zoom/ZoomContent.tsx +167 -0
- package/src/components/Zoom/constants.ts +2 -0
- package/src/components/Zoom/localPoint.ts +51 -0
- package/src/components/Zoom/models.ts +25 -0
- package/src/components/Zoom/useMinimap.ts +156 -0
- package/src/components/Zoom/useZoom.ts +70 -0
- package/src/components/Zoom/utils.ts +55 -0
- package/src/components/index.ts +1 -0
- package/src/index.ts +1 -0
- package/src/utils/index.ts +2 -0
- package/src/utils/useFullscreen/Fullscreen.cypress.spec.tsx +130 -0
- package/src/utils/useFullscreen/atoms.ts +3 -0
- package/src/utils/useFullscreen/index.ts +2 -0
- package/src/utils/useFullscreen/translatedLabels.ts +1 -0
- package/src/utils/useFullscreen/useFullscreen.ts +73 -0
- package/src/utils/useFullscreen/useFullscreenListener.ts +62 -0
- package/src/utils/useInfiniteScrollListing.ts +4 -1
- package/src/Graph/LineChart/BasicComponents/LoadingProgress.tsx +0 -46
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/TooltipAnchorPoint.tsx +0 -96
- package/src/Graph/LineChart/InteractiveComponents/AnchorPoint/useTooltipAnchorPoint.ts +0 -107
- package/src/Graph/LineChart/Legend/InteractiveValue.tsx +0 -22
- package/src/Graph/LineChart/Legend/useInteractiveValues.ts +0 -99
- package/src/Typography/FluidTypography/useFluidResizeObserver.ts +0 -56
- package/src/components/Form/AccessRights/AccessRights.resource.ts +0 -45
- package/src/components/Form/AccessRights/AccessRightsForm.stories.tsx +0 -59
- package/src/components/Form/AccessRights/AccessRightsForm.styles.ts +0 -21
- package/src/components/Form/AccessRights/AccessRightsForm.tsx +0 -67
- package/src/components/Form/AccessRights/AccessRightsFormActions.tsx +0 -80
- package/src/components/Form/AccessRights/Input/AddAction.tsx +0 -31
- package/src/components/Form/AccessRights/Input/ContactAccessRightInput.stories.tsx +0 -54
- package/src/components/Form/AccessRights/Input/ContactAccessRightInput.tsx +0 -72
- package/src/components/Form/AccessRights/Input/ContactAccessRightsInput.styles.ts +0 -22
- package/src/components/Form/AccessRights/Input/ContactInputField.tsx +0 -105
- package/src/components/Form/AccessRights/Input/RoleInputField.tsx +0 -29
- package/src/components/Form/AccessRights/List/ContactAccessRightsList.stories.tsx +0 -97
- package/src/components/Form/AccessRights/List/ContactAccessRightsList.styles.ts +0 -71
- package/src/components/Form/AccessRights/List/ContactAccessRightsList.tsx +0 -51
- package/src/components/Form/AccessRights/List/ContactAccessRightsListItem.stories.tsx +0 -116
- package/src/components/Form/AccessRights/List/ContactAccessRightsListItem.tsx +0 -118
- package/src/components/Form/AccessRights/List/ContactAccessRightsListItemSkeleton.tsx +0 -26
- package/src/components/Form/AccessRights/List/ContactAccessRightsListSkeleton.tsx +0 -28
- package/src/components/Form/AccessRights/Stats/AccessRightsStats.styles.ts +0 -18
- package/src/components/Form/AccessRights/Stats/AccessRightsStats.tsx +0 -41
- package/src/components/Form/AccessRights/__fixtures__/contactAccessRight.mock.ts +0 -54
- package/src/components/Form/AccessRights/common/GroupLabel.styles.ts +0 -18
- package/src/components/Form/AccessRights/common/GroupLabel.tsx +0 -15
- package/src/components/Form/AccessRights/common/Input.styles.ts +0 -48
- package/src/components/Form/AccessRights/common/RoleInputSelect.styles.ts +0 -11
- package/src/components/Form/AccessRights/common/RoleInputSelect.tsx +0 -57
- package/src/components/Form/AccessRights/index.ts +0 -3
- package/src/components/Form/AccessRights/useAccessRightsForm.test.tsx +0 -531
- package/src/components/Form/AccessRights/useAccessRightsForm.tsx +0 -282
- package/src/components/Form/AccessRights/useAccessRightsForm.utils.ts +0 -41
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/AccessRights.stories.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/AccessRights.styles.ts +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/AccessRights.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/Actions/Actions.styles.ts +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/Actions/Actions.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/Actions/useActions.ts +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/Item.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/List.styles.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/List.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/ListItemSkeleton.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/ListSkeleton.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/RemoveAccessRight.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/StateChip.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/List/useItem.ts +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/Provider.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/Stats/Stats.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/atoms.ts +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/common/RoleSelectField.styles.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/common/RoleSelectField.tsx +0 -0
- /package/src/components/Form/{AccessRightsV2 → AccessRights}/useAccessRightsInitValues.ts +0 -0
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import { ReactElement } from 'react';
|
|
2
|
-
|
|
3
|
-
import { List } from '../../../List';
|
|
4
|
-
import { useAccessRightsForm } from '../useAccessRightsForm';
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
ContactAccessRightsListItem,
|
|
8
|
-
ContactAccessRightsListItemProps
|
|
9
|
-
} from './ContactAccessRightsListItem';
|
|
10
|
-
import { useStyles } from './ContactAccessRightsList.styles';
|
|
11
|
-
import { ContactAccessRightsListSkeleton } from './ContactAccessRightsListSkeleton';
|
|
12
|
-
|
|
13
|
-
export type ContactAccessRightsListProps = {
|
|
14
|
-
labels: ContactAccessRightsListLabels;
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
type ContactAccessRightsListLabels = {
|
|
18
|
-
emptyState: string;
|
|
19
|
-
item: ContactAccessRightsListItemProps['labels'];
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
const ContactAccessRightsList = ({
|
|
23
|
-
labels
|
|
24
|
-
}: ContactAccessRightsListProps): ReactElement => {
|
|
25
|
-
const { classes } = useStyles();
|
|
26
|
-
const { contactAccessRights, isLoading } = useAccessRightsForm();
|
|
27
|
-
|
|
28
|
-
return isLoading ? (
|
|
29
|
-
<ContactAccessRightsListSkeleton length={3} />
|
|
30
|
-
) : (
|
|
31
|
-
<div className={classes.contactAccessRightsList}>
|
|
32
|
-
{contactAccessRights.length === 0 ? (
|
|
33
|
-
<div className={classes.contactAccessRightsListEmpty}>
|
|
34
|
-
{labels.emptyState}
|
|
35
|
-
</div>
|
|
36
|
-
) : (
|
|
37
|
-
<List>
|
|
38
|
-
{contactAccessRights.map((resource) => (
|
|
39
|
-
<ContactAccessRightsListItem
|
|
40
|
-
key={resource.contactAccessRight.contact?.id}
|
|
41
|
-
labels={labels.item}
|
|
42
|
-
resource={resource}
|
|
43
|
-
/>
|
|
44
|
-
))}
|
|
45
|
-
</List>
|
|
46
|
-
)}
|
|
47
|
-
</div>
|
|
48
|
-
);
|
|
49
|
-
};
|
|
50
|
-
|
|
51
|
-
export { ContactAccessRightsList };
|
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
import { ReactElement, ReactNode } from 'react';
|
|
2
|
-
|
|
3
|
-
import { Meta, StoryObj } from '@storybook/react';
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
AccessRightsFormProvider,
|
|
7
|
-
AccessRightsFormProviderProps
|
|
8
|
-
} from '../useAccessRightsForm';
|
|
9
|
-
import { ContactAccessRightResource } from '../AccessRights.resource';
|
|
10
|
-
|
|
11
|
-
import { ContactAccessRightsListItem } from './ContactAccessRightsListItem';
|
|
12
|
-
import { ContactAccessRightsListItemSkeleton } from './ContactAccessRightsListItemSkeleton';
|
|
13
|
-
|
|
14
|
-
const meta: Meta<typeof ContactAccessRightsListItem> = {
|
|
15
|
-
component: ContactAccessRightsListItem,
|
|
16
|
-
title: 'components/Form/AccessRights/ContactAccessRightsListItem'
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
export default meta;
|
|
20
|
-
type Story = StoryObj<typeof ContactAccessRightsListItem>;
|
|
21
|
-
|
|
22
|
-
const Wrapper = ({ children }: { children: ReactNode }): ReactElement => {
|
|
23
|
-
const options: AccessRightsFormProviderProps['options'] = {
|
|
24
|
-
contacts: [],
|
|
25
|
-
roles: [{ role: 'viewer' }, { role: 'editor' }]
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
return (
|
|
29
|
-
<AccessRightsFormProvider options={options}>
|
|
30
|
-
{children}
|
|
31
|
-
</AccessRightsFormProvider>
|
|
32
|
-
);
|
|
33
|
-
};
|
|
34
|
-
|
|
35
|
-
export const Default: Story = {
|
|
36
|
-
args: {
|
|
37
|
-
labels: {
|
|
38
|
-
group: 'Group',
|
|
39
|
-
state: {
|
|
40
|
-
added: 'Add',
|
|
41
|
-
removed: 'Remove',
|
|
42
|
-
updated: 'Update'
|
|
43
|
-
}
|
|
44
|
-
},
|
|
45
|
-
resource: {
|
|
46
|
-
contactAccessRight: {
|
|
47
|
-
contact: {
|
|
48
|
-
email: 'user@company.com',
|
|
49
|
-
id: '1',
|
|
50
|
-
name: 'User Name',
|
|
51
|
-
type: 'contact'
|
|
52
|
-
},
|
|
53
|
-
role: 'viewer'
|
|
54
|
-
},
|
|
55
|
-
state: 'unchanged',
|
|
56
|
-
stateHistory: []
|
|
57
|
-
}
|
|
58
|
-
},
|
|
59
|
-
render: (args) => (
|
|
60
|
-
<Wrapper>
|
|
61
|
-
<ContactAccessRightsListItem {...args} />
|
|
62
|
-
</Wrapper>
|
|
63
|
-
)
|
|
64
|
-
};
|
|
65
|
-
|
|
66
|
-
export const AsContactGroup: Story = {
|
|
67
|
-
args: {
|
|
68
|
-
labels: Default.args?.labels,
|
|
69
|
-
resource: {
|
|
70
|
-
contactAccessRight: {
|
|
71
|
-
contact: {
|
|
72
|
-
id: '1',
|
|
73
|
-
name: 'Team Name',
|
|
74
|
-
type: 'contact_group'
|
|
75
|
-
},
|
|
76
|
-
role: 'editor'
|
|
77
|
-
},
|
|
78
|
-
state: 'unchanged',
|
|
79
|
-
stateHistory: []
|
|
80
|
-
}
|
|
81
|
-
},
|
|
82
|
-
render: Default.render
|
|
83
|
-
};
|
|
84
|
-
|
|
85
|
-
export const WithAddedState: Story = {
|
|
86
|
-
args: {
|
|
87
|
-
labels: Default.args?.labels,
|
|
88
|
-
resource: {
|
|
89
|
-
contactAccessRight: {
|
|
90
|
-
...Default.args?.resource?.contactAccessRight
|
|
91
|
-
} as ContactAccessRightResource,
|
|
92
|
-
state: 'added',
|
|
93
|
-
stateHistory: []
|
|
94
|
-
}
|
|
95
|
-
},
|
|
96
|
-
render: Default.render
|
|
97
|
-
};
|
|
98
|
-
|
|
99
|
-
export const WithRemovedState: Story = {
|
|
100
|
-
args: {
|
|
101
|
-
labels: Default.args?.labels,
|
|
102
|
-
resource: {
|
|
103
|
-
contactAccessRight: {
|
|
104
|
-
...Default.args?.resource?.contactAccessRight
|
|
105
|
-
} as ContactAccessRightResource,
|
|
106
|
-
state: 'removed',
|
|
107
|
-
stateHistory: []
|
|
108
|
-
}
|
|
109
|
-
},
|
|
110
|
-
render: Default.render
|
|
111
|
-
};
|
|
112
|
-
|
|
113
|
-
export const AsLoadingState: Story = {
|
|
114
|
-
args: {},
|
|
115
|
-
render: () => <ContactAccessRightsListItemSkeleton />
|
|
116
|
-
};
|
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
import { ReactElement, useMemo } from 'react';
|
|
2
|
-
|
|
3
|
-
import RotateRightIcon from '@mui/icons-material/RotateRight';
|
|
4
|
-
import DeleteOutlineIcon from '@mui/icons-material/DeleteOutline';
|
|
5
|
-
import { Chip as MuiChip } from '@mui/material';
|
|
6
|
-
|
|
7
|
-
import { IconButton } from '../../../Button';
|
|
8
|
-
import { List } from '../../../List';
|
|
9
|
-
import {
|
|
10
|
-
ContactAccessRightState,
|
|
11
|
-
ContactAccessRightStateResource,
|
|
12
|
-
isContactResource
|
|
13
|
-
} from '../AccessRights.resource';
|
|
14
|
-
import { useAccessRightsForm } from '../useAccessRightsForm';
|
|
15
|
-
import { RoleInputSelect } from '../common/RoleInputSelect';
|
|
16
|
-
import { GroupLabel } from '../common/GroupLabel';
|
|
17
|
-
|
|
18
|
-
import { useStyles } from './ContactAccessRightsList.styles';
|
|
19
|
-
|
|
20
|
-
export type ContactAccessRightsListItemProps = {
|
|
21
|
-
hasAvatar?: boolean;
|
|
22
|
-
labels: {
|
|
23
|
-
group: string;
|
|
24
|
-
state: Record<Exclude<ContactAccessRightState, 'unchanged'>, string>;
|
|
25
|
-
};
|
|
26
|
-
resource: ContactAccessRightStateResource;
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
const ContactAccessRightsListItem = ({
|
|
30
|
-
labels,
|
|
31
|
-
resource: { contactAccessRight, state },
|
|
32
|
-
hasAvatar = true
|
|
33
|
-
}: ContactAccessRightsListItemProps): ReactElement => {
|
|
34
|
-
const { classes } = useStyles();
|
|
35
|
-
const { updateContactAccessRight, removeContactAccessRight } =
|
|
36
|
-
useAccessRightsForm();
|
|
37
|
-
|
|
38
|
-
const isRemoved = useMemo(() => state === 'removed', [state]);
|
|
39
|
-
|
|
40
|
-
const updateRole = (e): void => {
|
|
41
|
-
updateContactAccessRight({
|
|
42
|
-
...contactAccessRight,
|
|
43
|
-
role: e.target.value
|
|
44
|
-
});
|
|
45
|
-
};
|
|
46
|
-
const toggleRemoved = (): void => {
|
|
47
|
-
removeContactAccessRight(contactAccessRight, isRemoved);
|
|
48
|
-
};
|
|
49
|
-
|
|
50
|
-
const getNameInitials = (name: string): string =>
|
|
51
|
-
name
|
|
52
|
-
.split(' ')
|
|
53
|
-
.map((n) => n.charAt(0).toUpperCase())
|
|
54
|
-
.slice(0, 2)
|
|
55
|
-
.join('');
|
|
56
|
-
|
|
57
|
-
return (
|
|
58
|
-
<List.Item
|
|
59
|
-
action={
|
|
60
|
-
<IconButton
|
|
61
|
-
data-testid={isRemoved ? 'restore_user' : 'remove_user'}
|
|
62
|
-
icon={isRemoved ? <RotateRightIcon /> : <DeleteOutlineIcon />}
|
|
63
|
-
size="small"
|
|
64
|
-
variant="primary"
|
|
65
|
-
onClick={toggleRemoved}
|
|
66
|
-
/>
|
|
67
|
-
}
|
|
68
|
-
className={classes.contactAccessRightsListItem}
|
|
69
|
-
data-is-removed={isRemoved}
|
|
70
|
-
data-state={state}
|
|
71
|
-
key={contactAccessRight.contact?.id}
|
|
72
|
-
>
|
|
73
|
-
<span>
|
|
74
|
-
{hasAvatar && (
|
|
75
|
-
<List.Item.Avatar>
|
|
76
|
-
{getNameInitials(contactAccessRight.contact?.name || '')}
|
|
77
|
-
</List.Item.Avatar>
|
|
78
|
-
)}
|
|
79
|
-
<List.Item.Text
|
|
80
|
-
primaryText={
|
|
81
|
-
contactAccessRight.contact && (
|
|
82
|
-
<>
|
|
83
|
-
{contactAccessRight.contact.name}{' '}
|
|
84
|
-
{!isContactResource(contactAccessRight.contact) && (
|
|
85
|
-
<GroupLabel label={labels.group} />
|
|
86
|
-
)}
|
|
87
|
-
</>
|
|
88
|
-
)
|
|
89
|
-
}
|
|
90
|
-
secondaryText={
|
|
91
|
-
isContactResource(contactAccessRight.contact) &&
|
|
92
|
-
contactAccessRight.contact?.email
|
|
93
|
-
? contactAccessRight.contact?.email
|
|
94
|
-
: undefined
|
|
95
|
-
}
|
|
96
|
-
/>
|
|
97
|
-
</span>
|
|
98
|
-
|
|
99
|
-
{state !== 'unchanged' && (
|
|
100
|
-
<MuiChip
|
|
101
|
-
data-state={state}
|
|
102
|
-
label={labels.state[state]}
|
|
103
|
-
size="small"
|
|
104
|
-
variant="outlined"
|
|
105
|
-
/>
|
|
106
|
-
)}
|
|
107
|
-
<RoleInputSelect
|
|
108
|
-
disabled={isRemoved}
|
|
109
|
-
id={`role-${contactAccessRight.contact?.id}`}
|
|
110
|
-
name={`role-${contactAccessRight.contact?.id}`}
|
|
111
|
-
value={contactAccessRight.role}
|
|
112
|
-
onChange={updateRole}
|
|
113
|
-
/>
|
|
114
|
-
</List.Item>
|
|
115
|
-
);
|
|
116
|
-
};
|
|
117
|
-
|
|
118
|
-
export { ContactAccessRightsListItem };
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { ReactElement } from 'react';
|
|
2
|
-
|
|
3
|
-
import { List } from '../../../List';
|
|
4
|
-
|
|
5
|
-
import { useStyles } from './ContactAccessRightsList.styles';
|
|
6
|
-
|
|
7
|
-
export type ContactAccessRightsListItemSkeletonProps = {
|
|
8
|
-
hasAvatar?: boolean;
|
|
9
|
-
};
|
|
10
|
-
|
|
11
|
-
const ContactAccessRightsListItemSkeleton = ({
|
|
12
|
-
hasAvatar = true
|
|
13
|
-
}: ContactAccessRightsListItemSkeletonProps): ReactElement => {
|
|
14
|
-
const { classes } = useStyles();
|
|
15
|
-
|
|
16
|
-
return (
|
|
17
|
-
<List.Item className={classes.contactAccessRightsListItem}>
|
|
18
|
-
<span>
|
|
19
|
-
{hasAvatar && <List.Item.Avatar.Skeleton />}
|
|
20
|
-
<List.Item.Text.Skeleton secondaryText />
|
|
21
|
-
</span>
|
|
22
|
-
</List.Item>
|
|
23
|
-
);
|
|
24
|
-
};
|
|
25
|
-
|
|
26
|
-
export { ContactAccessRightsListItemSkeleton };
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { ReactElement } from 'react';
|
|
2
|
-
|
|
3
|
-
import { List } from '../../../List';
|
|
4
|
-
|
|
5
|
-
import { useStyles } from './ContactAccessRightsList.styles';
|
|
6
|
-
import { ContactAccessRightsListItemSkeleton } from './ContactAccessRightsListItemSkeleton';
|
|
7
|
-
|
|
8
|
-
export type ContactAccessRightsListSkeletonProps = {
|
|
9
|
-
length?: number;
|
|
10
|
-
};
|
|
11
|
-
|
|
12
|
-
const ContactAccessRightsListSkeleton = ({
|
|
13
|
-
length = 3
|
|
14
|
-
}: ContactAccessRightsListSkeletonProps): ReactElement => {
|
|
15
|
-
const { classes } = useStyles();
|
|
16
|
-
|
|
17
|
-
return (
|
|
18
|
-
<div className={classes.contactAccessRightsList}>
|
|
19
|
-
<List>
|
|
20
|
-
{[...Array(length).keys()].map((key) => (
|
|
21
|
-
<ContactAccessRightsListItemSkeleton key={key} />
|
|
22
|
-
))}
|
|
23
|
-
</List>
|
|
24
|
-
</div>
|
|
25
|
-
);
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
export { ContactAccessRightsListSkeleton };
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { makeStyles } from 'tss-react/mui';
|
|
2
|
-
|
|
3
|
-
const useStyles = makeStyles()((theme) => ({
|
|
4
|
-
accessRightsStats: {
|
|
5
|
-
'& > span:not(:last-child)::after': {
|
|
6
|
-
content: '", "'
|
|
7
|
-
},
|
|
8
|
-
alignSelf: 'flex-end',
|
|
9
|
-
color: theme.palette.text.secondary,
|
|
10
|
-
fontSize: '0.75rem',
|
|
11
|
-
height: '1.5rem',
|
|
12
|
-
lineHeight: '1.5rem',
|
|
13
|
-
|
|
14
|
-
padding: theme.spacing(1, 0)
|
|
15
|
-
}
|
|
16
|
-
}));
|
|
17
|
-
|
|
18
|
-
export { useStyles };
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { ReactElement, useMemo } from 'react';
|
|
2
|
-
|
|
3
|
-
import { useAccessRightsForm } from '../useAccessRightsForm';
|
|
4
|
-
import { ContactAccessRightState } from '../AccessRights.resource';
|
|
5
|
-
|
|
6
|
-
import { useStyles } from './AccessRightsStats.styles';
|
|
7
|
-
|
|
8
|
-
export type AccessRightsStatsProps = {
|
|
9
|
-
labels: Record<Exclude<ContactAccessRightState, 'unchanged'>, string>;
|
|
10
|
-
};
|
|
11
|
-
|
|
12
|
-
const AccessRightsStats = ({
|
|
13
|
-
labels
|
|
14
|
-
}: AccessRightsStatsProps): ReactElement => {
|
|
15
|
-
const { classes } = useStyles();
|
|
16
|
-
|
|
17
|
-
const { stats } = useAccessRightsForm();
|
|
18
|
-
|
|
19
|
-
const statsElements = useMemo(() => {
|
|
20
|
-
const elements: Array<ReactElement> = [];
|
|
21
|
-
|
|
22
|
-
['added', 'updated', 'removed'].forEach((state) => {
|
|
23
|
-
if (stats?.[state] > 0)
|
|
24
|
-
elements.push(
|
|
25
|
-
<span key={state}>
|
|
26
|
-
<strong>{stats[state]}</strong> {labels[state]}
|
|
27
|
-
</span>
|
|
28
|
-
);
|
|
29
|
-
});
|
|
30
|
-
|
|
31
|
-
return elements;
|
|
32
|
-
}, [stats]);
|
|
33
|
-
|
|
34
|
-
return (
|
|
35
|
-
<div className={classes.accessRightsStats}>
|
|
36
|
-
{statsElements.length !== 0 && statsElements.map((el) => el)}
|
|
37
|
-
</div>
|
|
38
|
-
);
|
|
39
|
-
};
|
|
40
|
-
|
|
41
|
-
export { AccessRightsStats };
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
import { faker } from '@faker-js/faker';
|
|
2
|
-
|
|
3
|
-
import {
|
|
4
|
-
ContactAccessRightResource,
|
|
5
|
-
ContactGroupResource,
|
|
6
|
-
ContactResource,
|
|
7
|
-
RoleResource
|
|
8
|
-
} from '../AccessRights.resource';
|
|
9
|
-
|
|
10
|
-
faker.seed(42);
|
|
11
|
-
|
|
12
|
-
export const rolesMock = (): Array<RoleResource> => [
|
|
13
|
-
{ role: 'viewer' },
|
|
14
|
-
{ role: 'editor' }
|
|
15
|
-
];
|
|
16
|
-
|
|
17
|
-
export const contactMock = (): ContactResource => ({
|
|
18
|
-
email: faker.internet.email(),
|
|
19
|
-
id: faker.string.uuid(),
|
|
20
|
-
name: faker.person.fullName(),
|
|
21
|
-
type: 'contact'
|
|
22
|
-
});
|
|
23
|
-
|
|
24
|
-
export const contactsMock = (length: number): Array<ContactResource> =>
|
|
25
|
-
[...Array(length).keys()].map(contactMock);
|
|
26
|
-
|
|
27
|
-
export const contactGroupMock = (): ContactGroupResource => ({
|
|
28
|
-
id: faker.string.uuid(),
|
|
29
|
-
name: faker.company.name(),
|
|
30
|
-
type: 'contact_group'
|
|
31
|
-
});
|
|
32
|
-
export const contactGroupsMock = (
|
|
33
|
-
length: number
|
|
34
|
-
): Array<ContactGroupResource> =>
|
|
35
|
-
[...Array(length).keys()].map(contactGroupMock);
|
|
36
|
-
|
|
37
|
-
export const contactsAndGroupsMock = (
|
|
38
|
-
length: number
|
|
39
|
-
): Array<ContactResource | ContactGroupResource> =>
|
|
40
|
-
[...Array(length).keys()].map(
|
|
41
|
-
() =>
|
|
42
|
-
faker.helpers.maybe(contactGroupMock, { probability: 0.2 }) ??
|
|
43
|
-
contactMock()
|
|
44
|
-
);
|
|
45
|
-
|
|
46
|
-
export const contactAccessRightsMock = (
|
|
47
|
-
length: number
|
|
48
|
-
): Array<ContactAccessRightResource> =>
|
|
49
|
-
[...Array(length).keys()].map(() => ({
|
|
50
|
-
contact:
|
|
51
|
-
faker.helpers.maybe(contactGroupMock, { probability: 0.2 }) ??
|
|
52
|
-
contactMock(),
|
|
53
|
-
role: faker.helpers.arrayElement(rolesMock().map(({ role }) => role))
|
|
54
|
-
}));
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { makeStyles } from 'tss-react/mui';
|
|
2
|
-
|
|
3
|
-
const useStyles = makeStyles()((theme) => ({
|
|
4
|
-
groupLabel: {
|
|
5
|
-
backgroundColor: theme.palette.chip.color.neutral,
|
|
6
|
-
borderRadius: '0.1875rem',
|
|
7
|
-
color: theme.palette.primary.contrastText,
|
|
8
|
-
fontSize: '0.5625rem',
|
|
9
|
-
fontWeight: 500,
|
|
10
|
-
letterSpacing: '0.05rem',
|
|
11
|
-
marginLeft: theme.spacing(1),
|
|
12
|
-
padding: theme.spacing(0.125, 0.5),
|
|
13
|
-
textTransform: 'uppercase',
|
|
14
|
-
verticalAlign: 'middle'
|
|
15
|
-
}
|
|
16
|
-
}));
|
|
17
|
-
|
|
18
|
-
export { useStyles };
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { ReactElement } from 'react';
|
|
2
|
-
|
|
3
|
-
import { useStyles } from './GroupLabel.styles';
|
|
4
|
-
|
|
5
|
-
export type GroupLabelProps = {
|
|
6
|
-
label: string;
|
|
7
|
-
};
|
|
8
|
-
|
|
9
|
-
const GroupLabel = ({ label }: GroupLabelProps): ReactElement => {
|
|
10
|
-
const { classes } = useStyles();
|
|
11
|
-
|
|
12
|
-
return <span className={classes.groupLabel}>{label}</span>;
|
|
13
|
-
};
|
|
14
|
-
|
|
15
|
-
export { GroupLabel };
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import { makeStyles } from 'tss-react/mui';
|
|
2
|
-
|
|
3
|
-
const useInputStyles = makeStyles()((theme) => ({
|
|
4
|
-
inputDropdown: {
|
|
5
|
-
'& .MuiMenuItem-root': {
|
|
6
|
-
'& > .MuiTouchRipple-root': {
|
|
7
|
-
display: 'none'
|
|
8
|
-
},
|
|
9
|
-
|
|
10
|
-
'&.Mui-disabled': {
|
|
11
|
-
opacity: 0.5
|
|
12
|
-
},
|
|
13
|
-
'&.Mui-selected, &.Mui-selected:hover, &.MuiAutocomplete-option[aria-selected="true"], &.MuiAutocomplete-option[aria-selected="true"].Mui-focused':
|
|
14
|
-
{
|
|
15
|
-
'&.Mui-disabled': {
|
|
16
|
-
opacity: 1
|
|
17
|
-
},
|
|
18
|
-
backgroundColor: theme.palette.menu.item.background.active,
|
|
19
|
-
color: theme.palette.menu.item.color.active,
|
|
20
|
-
opacity: 1
|
|
21
|
-
},
|
|
22
|
-
'&:hover, &.MuiAutocomplete-option.Mui-focused:not(&[aria-selected="true"])':
|
|
23
|
-
{
|
|
24
|
-
backgroundColor: theme.palette.menu.item.background.hover,
|
|
25
|
-
color: theme.palette.menu.item.color.hover
|
|
26
|
-
},
|
|
27
|
-
backgroundColor: theme.palette.menu.item.background.default,
|
|
28
|
-
color: theme.palette.menu.item.color.default,
|
|
29
|
-
fontSize: '0.875rem',
|
|
30
|
-
|
|
31
|
-
minHeight: 'unset',
|
|
32
|
-
|
|
33
|
-
padding: theme.spacing(0.75, 2)
|
|
34
|
-
},
|
|
35
|
-
'&.MuiAutocomplete-popper > .MuiPaper-root, &.MuiPopover-root > .MuiPaper-root':
|
|
36
|
-
{
|
|
37
|
-
'& > ul.MuiAutocomplete-listbox, & > ul.MuiList-root': {
|
|
38
|
-
padding: theme.spacing(1, 0)
|
|
39
|
-
},
|
|
40
|
-
backgroundColor: theme.palette.menu.background,
|
|
41
|
-
borderRadius: '4px',
|
|
42
|
-
|
|
43
|
-
boxShadow: theme.shadows[8]
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
}));
|
|
47
|
-
|
|
48
|
-
export { useInputStyles };
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
import { ReactElement, useCallback } from 'react';
|
|
2
|
-
|
|
3
|
-
import {
|
|
4
|
-
MenuItem as MuiMenuItem,
|
|
5
|
-
Select as MuiSelect,
|
|
6
|
-
SelectProps as MuiSelectProps
|
|
7
|
-
} from '@mui/material';
|
|
8
|
-
|
|
9
|
-
import { useAccessRightsForm } from '../useAccessRightsForm';
|
|
10
|
-
import { RoleResource } from '../AccessRights.resource';
|
|
11
|
-
|
|
12
|
-
import { useStyles } from './RoleInputSelect.styles';
|
|
13
|
-
import { useInputStyles } from './Input.styles';
|
|
14
|
-
|
|
15
|
-
type RoleInputSelectProps = {
|
|
16
|
-
id: string;
|
|
17
|
-
label?: string;
|
|
18
|
-
name: string;
|
|
19
|
-
onChange?: (value: RoleResource['role']) => void;
|
|
20
|
-
} & Pick<MuiSelectProps, 'value' | 'defaultValue' | 'disabled'>;
|
|
21
|
-
|
|
22
|
-
const RoleInputSelect = ({
|
|
23
|
-
label,
|
|
24
|
-
onChange,
|
|
25
|
-
...props
|
|
26
|
-
}: RoleInputSelectProps): ReactElement => {
|
|
27
|
-
const { classes } = useStyles();
|
|
28
|
-
const { classes: inputClasses } = useInputStyles();
|
|
29
|
-
|
|
30
|
-
const {
|
|
31
|
-
options: { roles }
|
|
32
|
-
} = useAccessRightsForm();
|
|
33
|
-
|
|
34
|
-
const onInputChange = useCallback((e) => onChange?.(e), [onChange]);
|
|
35
|
-
|
|
36
|
-
return (
|
|
37
|
-
<MuiSelect
|
|
38
|
-
size="small"
|
|
39
|
-
{...props}
|
|
40
|
-
{...(label && { label })}
|
|
41
|
-
MenuProps={{
|
|
42
|
-
className: inputClasses.inputDropdown
|
|
43
|
-
}}
|
|
44
|
-
className={classes.roleInputSelect}
|
|
45
|
-
data-testid="role-input"
|
|
46
|
-
onChange={onInputChange}
|
|
47
|
-
>
|
|
48
|
-
{roles.map(({ role }) => (
|
|
49
|
-
<MuiMenuItem key={role} value={role}>
|
|
50
|
-
{role}
|
|
51
|
-
</MuiMenuItem>
|
|
52
|
-
))}
|
|
53
|
-
</MuiSelect>
|
|
54
|
-
);
|
|
55
|
-
};
|
|
56
|
-
|
|
57
|
-
export { RoleInputSelect };
|