ui-kit-ck-consultant 0.6.60 → 0.6.62
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/index.js +38 -23
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +38 -23
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -892,39 +892,54 @@ var Table = /*#__PURE__*/function (_React$Component) {
|
|
892
892
|
|
893
893
|
_this.getCSV = function (callback) {
|
894
894
|
var dataCSV = '';
|
895
|
-
console.log('this.props', _this.props);
|
896
895
|
|
897
|
-
if (_this.props
|
898
|
-
|
896
|
+
if (_this.props.data) {
|
897
|
+
var rowData = Object.keys(_this.props.data).map(function (cell) {
|
898
|
+
return cell || '';
|
899
|
+
}).join(';');
|
900
|
+
dataCSV += rowData + '\n';
|
901
|
+
|
902
|
+
_this.props.data.map(function (row) {
|
903
|
+
var rowData = row.map(function (cell) {
|
904
|
+
return cell || '';
|
905
|
+
}).join(';');
|
906
|
+
dataCSV += rowData + '\n';
|
907
|
+
});
|
908
|
+
} else {
|
909
|
+
console.log('this.props', _this.props);
|
910
|
+
|
911
|
+
if (_this.props && _this.props.children) {
|
912
|
+
console.log('this.props.children', _this.props.children);
|
899
913
|
|
900
|
-
|
914
|
+
var tableChildren = _this.getArray(_this.props.children);
|
901
915
|
|
902
|
-
|
903
|
-
|
916
|
+
var allRows = tableChildren.flatMap(function (section) {
|
917
|
+
var _section$props;
|
904
918
|
|
905
|
-
|
906
|
-
|
919
|
+
return _this.getArray((_section$props = section.props) === null || _section$props === void 0 ? void 0 : _section$props.children).filter(function (child) {
|
920
|
+
var _child$type, _child$type2, _child$type3;
|
907
921
|
|
908
|
-
|
922
|
+
return (child === null || child === void 0 ? void 0 : (_child$type = child.type) === null || _child$type === void 0 ? void 0 : _child$type.name) === 'Tr' || (child === null || child === void 0 ? void 0 : (_child$type2 = child.type) === null || _child$type2 === void 0 ? void 0 : _child$type2.displayName) === 'Tr' || (child === null || child === void 0 ? void 0 : (_child$type3 = child.type) === null || _child$type3 === void 0 ? void 0 : _child$type3.displayName) === 'tr';
|
923
|
+
});
|
909
924
|
});
|
910
|
-
|
911
|
-
console.log('Toutes les lignes (Tr) trouvées:', allRows);
|
925
|
+
console.log('Toutes les lignes (Tr) trouvées:', allRows);
|
912
926
|
|
913
|
-
|
914
|
-
|
915
|
-
|
927
|
+
if (allRows.length > 0) {
|
928
|
+
allRows.forEach(function (row, rowIndex) {
|
929
|
+
console.log(row.props.children.length, row.props.children.length !== 2, row.props.children.type, row.props.children.type === React__default.Fragment, row);
|
916
930
|
|
917
|
-
|
918
|
-
|
931
|
+
var cells = _this.getArray(row.props.children.length !== 2 ? row.props.children.type === React__default.Fragment ? row.props.children.props.children[0] : row.props.children : row.props.children[0]).filter(function (cell) {
|
932
|
+
var _cell$type, _cell$type2, _cell$type3, _cell$type4, _cell$type5, _cell$type6;
|
919
933
|
|
920
|
-
|
921
|
-
|
934
|
+
return (cell === null || cell === void 0 ? void 0 : (_cell$type = cell.type) === null || _cell$type === void 0 ? void 0 : _cell$type.name) === 'Th' || (cell === null || cell === void 0 ? void 0 : (_cell$type2 = cell.type) === null || _cell$type2 === void 0 ? void 0 : _cell$type2.name) === 'Td' || (cell === null || cell === void 0 ? void 0 : (_cell$type3 = cell.type) === null || _cell$type3 === void 0 ? void 0 : _cell$type3.displayName) === 'Th' || (cell === null || cell === void 0 ? void 0 : (_cell$type4 = cell.type) === null || _cell$type4 === void 0 ? void 0 : _cell$type4.displayName) === 'Td' || (cell === null || cell === void 0 ? void 0 : (_cell$type5 = cell.type) === null || _cell$type5 === void 0 ? void 0 : _cell$type5.displayName) === 'th' || (cell === null || cell === void 0 ? void 0 : (_cell$type6 = cell.type) === null || _cell$type6 === void 0 ? void 0 : _cell$type6.displayName) === 'td';
|
935
|
+
});
|
922
936
|
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
937
|
+
var rowData = cells.map(function (cell) {
|
938
|
+
return cell.props && cell.props.children ? _this.extractText(cell.props.children) : '';
|
939
|
+
}).join(';');
|
940
|
+
dataCSV += rowData + '\n';
|
941
|
+
});
|
942
|
+
}
|
928
943
|
}
|
929
944
|
}
|
930
945
|
|