@axinom/mosaic-ui 0.34.0-rc.2 → 0.34.0-rc.20
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/dist/components/Explorer/Explorer.d.ts.map +1 -1
- package/dist/components/Filters/Filter/Filter.d.ts +2 -1
- package/dist/components/Filters/Filter/Filter.d.ts.map +1 -1
- package/dist/components/Filters/Filters.d.ts.map +1 -1
- package/dist/components/Filters/Filters.model.d.ts +2 -0
- package/dist/components/Filters/Filters.model.d.ts.map +1 -1
- package/dist/components/FormElements/Checkbox/Checkbox.d.ts.map +1 -1
- package/dist/components/FormElements/Checkbox/CheckboxField.d.ts +1 -1
- package/dist/components/FormElements/Checkbox/CheckboxField.d.ts.map +1 -1
- package/dist/components/FormElements/CustomTags/CustomTagsField.d.ts.map +1 -1
- package/dist/components/FormElements/DateTimeField/DateTimeTextField.d.ts +1 -1
- package/dist/components/FormElements/DateTimeField/DateTimeTextField.d.ts.map +1 -1
- package/dist/components/FormElements/DynamicDataListControl/DynamicDataListField.d.ts.map +1 -1
- package/dist/components/FormElements/FileUploadControl/FileUploadControl.d.ts.map +1 -1
- package/dist/components/FormElements/FileUploadControl/FileUploadField.d.ts.map +1 -1
- package/dist/components/FormElements/MaskedSingleLineText/MaskedSingleLineTextField.d.ts +1 -1
- package/dist/components/FormElements/MaskedSingleLineText/MaskedSingleLineTextField.d.ts.map +1 -1
- package/dist/components/FormElements/SingleLineText/SingleLineText.d.ts.map +1 -1
- package/dist/components/List/List.d.ts.map +1 -1
- package/dist/components/List/List.model.d.ts +2 -0
- package/dist/components/List/List.model.d.ts.map +1 -1
- package/dist/components/List/ListHeader/ListHeader.d.ts +7 -1
- package/dist/components/List/ListHeader/ListHeader.d.ts.map +1 -1
- package/dist/components/List/ListHeader/useResize.d.ts +18 -0
- package/dist/components/List/ListHeader/useResize.d.ts.map +1 -0
- package/dist/components/List/ListRow/ListRow.d.ts.map +1 -1
- package/dist/components/List/ListRow/ListRowLoader.d.ts +2 -2
- package/dist/components/List/ListRow/ListRowLoader.d.ts.map +1 -1
- package/dist/components/List/ListRow/Renderers/BooleanDotRenderer/BooleanDotRenderer.d.ts.map +1 -1
- package/dist/components/List/useColumnsSize.d.ts +21 -0
- package/dist/components/List/useColumnsSize.d.ts.map +1 -0
- package/dist/index.es.js +3 -3
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/components/DynamicDataList/DynamicListDataEntry/Renderers/createInputRenderer/createInputRenderer.spec.tsx +2 -2
- package/src/components/Explorer/Explorer.stories.tsx +16 -0
- package/src/components/Explorer/Explorer.tsx +33 -31
- package/src/components/Filters/Filter/Filter.spec.tsx +24 -1
- package/src/components/Filters/Filter/Filter.tsx +6 -0
- package/src/components/Filters/Filters.model.ts +3 -0
- package/src/components/Filters/Filters.stories.tsx +9 -0
- package/src/components/Filters/Filters.tsx +1 -0
- package/src/components/FormElements/Checkbox/Checkbox.tsx +1 -1
- package/src/components/FormElements/Checkbox/CheckboxField.tsx +4 -5
- package/src/components/FormElements/CustomTags/CustomTags.spec.tsx +3 -3
- package/src/components/FormElements/CustomTags/CustomTags.tsx +3 -3
- package/src/components/FormElements/CustomTags/CustomTagsField.tsx +1 -2
- package/src/components/FormElements/DateTimeField/DateTimeTextField.tsx +3 -3
- package/src/components/FormElements/DynamicDataListControl/DynamicDataListField.tsx +1 -2
- package/src/components/FormElements/FileUploadControl/FileUploadControl.spec.tsx +35 -0
- package/src/components/FormElements/FileUploadControl/FileUploadControl.tsx +2 -0
- package/src/components/FormElements/FileUploadControl/FileUploadField.tsx +1 -2
- package/src/components/FormElements/FormElementContainer/FormElementContainer.scss +2 -0
- package/src/components/FormElements/MaskedSingleLineText/MaskedSingleLineTextField.tsx +1 -1
- package/src/components/FormElements/Radio/RadioField.tsx +2 -2
- package/src/components/FormElements/SingleLineText/SingleLineText.spec.tsx +5 -4
- package/src/components/FormElements/SingleLineText/SingleLineText.tsx +6 -1
- package/src/components/LandingPageTiles/TileLarge/TileLarge.scss +7 -3
- package/src/components/List/List.model.ts +3 -0
- package/src/components/List/List.scss +0 -2
- package/src/components/List/List.stories.tsx +1 -1
- package/src/components/List/List.tsx +17 -55
- package/src/components/List/ListHeader/ListHeader.scss +23 -10
- package/src/components/List/ListHeader/ListHeader.spec.tsx +56 -0
- package/src/components/List/ListHeader/ListHeader.tsx +43 -9
- package/src/components/List/ListHeader/useResize.ts +108 -0
- package/src/components/List/ListRow/ListRow.scss +8 -12
- package/src/components/List/ListRow/ListRow.spec.tsx +5 -21
- package/src/components/List/ListRow/ListRow.tsx +16 -32
- package/src/components/List/ListRow/ListRowLoader.tsx +14 -4
- package/src/components/List/ListRow/Renderers/BooleanDotRenderer/BooleanDotRenderer.scss +10 -8
- package/src/components/List/ListRow/Renderers/BooleanDotRenderer/BooleanDotRenderer.tsx +3 -1
- package/src/components/List/useColumnsSize.ts +120 -0
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
@import '../../../../../styles/common.scss';
|
|
2
2
|
|
|
3
|
-
.
|
|
4
|
-
background-color: var(--boolean-dot-true-color, $boolean-dot-true-color);
|
|
3
|
+
.circle {
|
|
5
4
|
height: var(--boolean-dot-size, $boolean-dot-size);
|
|
6
5
|
width: var(--boolean-dot-size, $boolean-dot-size);
|
|
6
|
+
min-width: var(--boolean-dot-size, $boolean-dot-size);
|
|
7
|
+
min-height: var(--boolean-dot-size, $boolean-dot-size);
|
|
7
8
|
border-radius: 100%;
|
|
8
|
-
}
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
10
|
+
&.green {
|
|
11
|
+
background-color: var(--boolean-dot-true-color, $boolean-dot-true-color);
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&.red {
|
|
15
|
+
background-color: var(--boolean-dot-false-color, $boolean-dot-false-color);
|
|
16
|
+
}
|
|
15
17
|
}
|
|
@@ -16,5 +16,7 @@ import classes from './BooleanDotRenderer.scss';
|
|
|
16
16
|
*
|
|
17
17
|
*/
|
|
18
18
|
export const BooleanDotRenderer = (val: unknown): JSX.Element => (
|
|
19
|
-
<div
|
|
19
|
+
<div
|
|
20
|
+
className={clsx(classes.circle, val ? [classes.green] : [classes.red])}
|
|
21
|
+
></div>
|
|
20
22
|
);
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import { useEffect, useState } from 'react';
|
|
2
|
+
import { Data } from '../../types';
|
|
3
|
+
import { Column, ListSelectMode } from './List.model';
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Generates a combined string of all columns.columnSize values, to be used as CSS value
|
|
7
|
+
* @param columns The list of columns that should be used
|
|
8
|
+
* @returns a string of all column sizes of the array, combined
|
|
9
|
+
*/
|
|
10
|
+
const getColumnsSizeDefinition = function <T extends Data>(
|
|
11
|
+
columns: Column<T>[],
|
|
12
|
+
showActionButton: boolean,
|
|
13
|
+
selectMode: ListSelectMode,
|
|
14
|
+
showInlineMenu: boolean,
|
|
15
|
+
): string {
|
|
16
|
+
const columnSizeDefinition = columns.map((column) => column.size ?? '1fr');
|
|
17
|
+
|
|
18
|
+
const hasActionsColumn = hasActionColumn(
|
|
19
|
+
selectMode,
|
|
20
|
+
showActionButton,
|
|
21
|
+
showInlineMenu,
|
|
22
|
+
);
|
|
23
|
+
|
|
24
|
+
if (hasActionsColumn) {
|
|
25
|
+
columnSizeDefinition.push(
|
|
26
|
+
getActionsColumnSizePx(showInlineMenu, showActionButton),
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
return columnSizeDefinition.join(' ');
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
const getActionsColumnSizePx = (...enableActions: boolean[]): string => {
|
|
34
|
+
const enabledActionsCount = enableActions.filter(
|
|
35
|
+
(actionEnabled) => actionEnabled,
|
|
36
|
+
).length;
|
|
37
|
+
|
|
38
|
+
const defaultActionSizePx = 50;
|
|
39
|
+
const defaultActionsRawGapPx = 8;
|
|
40
|
+
const calculateMultiActionsColumnSizePx = (actionsCount: number): number => {
|
|
41
|
+
return (
|
|
42
|
+
defaultActionSizePx * actionsCount +
|
|
43
|
+
defaultActionsRawGapPx * (actionsCount - 1)
|
|
44
|
+
);
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
const sizePx =
|
|
48
|
+
enabledActionsCount > 1
|
|
49
|
+
? calculateMultiActionsColumnSizePx(enabledActionsCount)
|
|
50
|
+
: defaultActionSizePx;
|
|
51
|
+
|
|
52
|
+
return `${sizePx}px`;
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* Covers the concern of managing the column sizes for the list component
|
|
57
|
+
* @param columns input definition of columns
|
|
58
|
+
* @param showActionButton whether the action button is shown
|
|
59
|
+
* @param selectMode current select mode
|
|
60
|
+
* @param showInlineMenu whether the inline menu is shown
|
|
61
|
+
* @returns an object containing the columnSizes (CSS grid-template-columns),
|
|
62
|
+
* a reset function (to reset to the initial column sizes)
|
|
63
|
+
* and a setter function (to update the column sizes)
|
|
64
|
+
*/
|
|
65
|
+
export const useColumnsSize = <T extends Data>(
|
|
66
|
+
columns: Column<T>[],
|
|
67
|
+
showActionButton: boolean,
|
|
68
|
+
selectMode: ListSelectMode,
|
|
69
|
+
showInlineMenu: boolean,
|
|
70
|
+
): {
|
|
71
|
+
columnSizes: string;
|
|
72
|
+
resetColumnSizes: () => void;
|
|
73
|
+
setColumnSizes: React.Dispatch<React.SetStateAction<string>>;
|
|
74
|
+
hasActionColumn: boolean;
|
|
75
|
+
} => {
|
|
76
|
+
const [orgColumnSizes, setOrgColumnSizes] = useState<string>(
|
|
77
|
+
getColumnsSizeDefinition(
|
|
78
|
+
columns,
|
|
79
|
+
showActionButton,
|
|
80
|
+
selectMode,
|
|
81
|
+
showInlineMenu,
|
|
82
|
+
),
|
|
83
|
+
);
|
|
84
|
+
const [columnSizes, setColumnSizes] = useState<string>(orgColumnSizes);
|
|
85
|
+
|
|
86
|
+
useEffect(() => {
|
|
87
|
+
setOrgColumnSizes(
|
|
88
|
+
getColumnsSizeDefinition(
|
|
89
|
+
columns,
|
|
90
|
+
showActionButton,
|
|
91
|
+
selectMode,
|
|
92
|
+
showInlineMenu,
|
|
93
|
+
),
|
|
94
|
+
);
|
|
95
|
+
}, [columns, selectMode, showActionButton, showInlineMenu]);
|
|
96
|
+
|
|
97
|
+
const resetColumnSizes = (): void => {
|
|
98
|
+
setColumnSizes(orgColumnSizes);
|
|
99
|
+
};
|
|
100
|
+
|
|
101
|
+
return {
|
|
102
|
+
columnSizes,
|
|
103
|
+
resetColumnSizes,
|
|
104
|
+
setColumnSizes,
|
|
105
|
+
hasActionColumn: hasActionColumn(
|
|
106
|
+
selectMode,
|
|
107
|
+
showActionButton,
|
|
108
|
+
showInlineMenu,
|
|
109
|
+
),
|
|
110
|
+
};
|
|
111
|
+
};
|
|
112
|
+
function hasActionColumn(
|
|
113
|
+
selectMode: ListSelectMode,
|
|
114
|
+
showActionButton: boolean,
|
|
115
|
+
showInlineMenu: boolean,
|
|
116
|
+
): boolean {
|
|
117
|
+
return (
|
|
118
|
+
selectMode !== ListSelectMode.None || showActionButton || showInlineMenu
|
|
119
|
+
);
|
|
120
|
+
}
|