@onehat/ui 0.3.113 → 0.3.114
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 +1 -1
- package/src/Components/Grid/Grid.js +88 -67
package/package.json
CHANGED
|
@@ -42,6 +42,8 @@ import withMultiSelection from '../Hoc/withMultiSelection.js';
|
|
|
42
42
|
import withSelection from '../Hoc/withSelection.js';
|
|
43
43
|
import withWindowedEditor from '../Hoc/withWindowedEditor.js';
|
|
44
44
|
import withInlineEditor from '../Hoc/withInlineEditor.js';
|
|
45
|
+
import getSaved from '../../Functions/getSaved.js';
|
|
46
|
+
import setSaved from '../../Functions/setSaved.js';
|
|
45
47
|
import getIconButtonFromConfig from '../../Functions/getIconButtonFromConfig.js';
|
|
46
48
|
import testProps from '../../Functions/testProps.js';
|
|
47
49
|
import nbToRgb from '../../Functions/nbToRgb.js';
|
|
@@ -167,6 +169,8 @@ function GridComponent(props) {
|
|
|
167
169
|
|
|
168
170
|
} = props,
|
|
169
171
|
styles = UiGlobals.styles,
|
|
172
|
+
id = props.id || props.self?.path,
|
|
173
|
+
localColumnsConfigKey = id && id + '-localColumnsConfig',
|
|
170
174
|
forceUpdate = useForceUpdate(),
|
|
171
175
|
containerRef = useRef(),
|
|
172
176
|
gridRef = useRef(),
|
|
@@ -180,6 +184,10 @@ function GridComponent(props) {
|
|
|
180
184
|
[dragRowSlot, setDragRowSlot] = useState(null),
|
|
181
185
|
[dragRowIx, setDragRowIx] = useState(),
|
|
182
186
|
setLocalColumnsConfig = (config) => {
|
|
187
|
+
if (localColumnsConfigKey) {
|
|
188
|
+
setSaved(localColumnsConfigKey, config);
|
|
189
|
+
}
|
|
190
|
+
|
|
183
191
|
setLocalColumnsConfigRaw(config);
|
|
184
192
|
if (onChangeColumnsConfig) {
|
|
185
193
|
onChangeColumnsConfig(config);
|
|
@@ -718,79 +726,92 @@ function GridComponent(props) {
|
|
|
718
726
|
return () => {};
|
|
719
727
|
}
|
|
720
728
|
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
//
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
});
|
|
735
|
-
}
|
|
729
|
+
(async () => {
|
|
730
|
+
|
|
731
|
+
// second call -- do other necessary setup
|
|
732
|
+
|
|
733
|
+
// calculate localColumnsConfig
|
|
734
|
+
let localColumnsConfig = [];
|
|
735
|
+
let savedLocalColumnsConfig;
|
|
736
|
+
if (localColumnsConfigKey) {
|
|
737
|
+
savedLocalColumnsConfig = await getSaved(localColumnsConfigKey);
|
|
738
|
+
}
|
|
739
|
+
if (savedLocalColumnsConfig) {
|
|
740
|
+
// use saved
|
|
741
|
+
localColumnsConfig = savedLocalColumnsConfig;
|
|
736
742
|
} else {
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
743
|
+
// calculate new
|
|
744
|
+
|
|
745
|
+
// convert json config into actual elements
|
|
746
|
+
if (_.isEmpty(columnsConfig)) {
|
|
747
|
+
if (Repository) {
|
|
748
|
+
// create a column for the displayProperty
|
|
749
|
+
localColumnsConfig.push({
|
|
750
|
+
fieldName: Repository.schema.model.displayProperty,
|
|
751
|
+
});
|
|
752
|
+
} else {
|
|
753
|
+
localColumnsConfig.push({
|
|
754
|
+
fieldName: displayField,
|
|
755
|
+
});
|
|
741
756
|
}
|
|
757
|
+
} else {
|
|
758
|
+
_.each(columnsConfig, (columnConfig) => {
|
|
759
|
+
if (!_.isPlainObject(columnConfig)) {
|
|
760
|
+
localColumnsConfig.push(columnConfig);
|
|
761
|
+
return;
|
|
762
|
+
}
|
|
742
763
|
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
764
|
+
// destructure so we can set defaults
|
|
765
|
+
const {
|
|
766
|
+
header,
|
|
767
|
+
fieldName, // from @onehat/data model
|
|
768
|
+
type, // specify which column type to use (custom or built-in)
|
|
769
|
+
isEditable = false,
|
|
770
|
+
editor,
|
|
771
|
+
format,
|
|
772
|
+
renderer, // React component will render the output
|
|
773
|
+
reorderable = true,
|
|
774
|
+
resizable = true,
|
|
775
|
+
sortable = true,
|
|
776
|
+
w,
|
|
777
|
+
flex,
|
|
778
|
+
...propsToPass
|
|
779
|
+
} = columnConfig,
|
|
780
|
+
|
|
781
|
+
config = {
|
|
782
|
+
columnId: uuid(),
|
|
783
|
+
header,
|
|
784
|
+
fieldName,
|
|
785
|
+
type,
|
|
786
|
+
isEditable,
|
|
787
|
+
editor,
|
|
788
|
+
format,
|
|
789
|
+
renderer,
|
|
790
|
+
reorderable,
|
|
791
|
+
resizable,
|
|
792
|
+
sortable,
|
|
793
|
+
w,
|
|
794
|
+
flex,
|
|
795
|
+
showDragHandles: false,
|
|
796
|
+
...propsToPass,
|
|
797
|
+
};
|
|
798
|
+
|
|
799
|
+
if (!(config.w || config.width) && !config.flex) {
|
|
800
|
+
// Neither is set
|
|
801
|
+
config.w = 100; // default
|
|
802
|
+
} else if (config.flex && (config.w || config.width)) {
|
|
803
|
+
// Both are set. Width overrules flex.
|
|
804
|
+
delete config.flex;
|
|
805
|
+
}
|
|
785
806
|
|
|
786
|
-
|
|
787
|
-
|
|
807
|
+
localColumnsConfig.push(config);
|
|
808
|
+
});
|
|
809
|
+
}
|
|
788
810
|
}
|
|
789
|
-
|
|
790
|
-
}
|
|
791
|
-
setLocalColumnsConfig(calculateLocalColumnsConfig());
|
|
811
|
+
setLocalColumnsConfig(localColumnsConfig);
|
|
792
812
|
|
|
793
|
-
|
|
813
|
+
setIsReady(true);
|
|
814
|
+
})();
|
|
794
815
|
|
|
795
816
|
if (!Repository) {
|
|
796
817
|
return () => {};
|