@tecsinapse/react-core 1.11.1 → 1.12.3
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/CHANGELOG.md +46 -0
- package/dist/components/molecules/Grid/Grid.d.ts +15 -0
- package/dist/components/molecules/Grid/Grid.js +57 -0
- package/dist/components/molecules/Grid/Grid.js.map +1 -0
- package/dist/components/molecules/Grid/Item/Item.d.ts +30 -0
- package/dist/components/molecules/Grid/Item/Item.js +68 -0
- package/dist/components/molecules/Grid/Item/Item.js.map +1 -0
- package/dist/components/molecules/Grid/Item/index.d.ts +1 -0
- package/dist/components/molecules/Grid/Item/index.js +24 -0
- package/dist/components/molecules/Grid/Item/index.js.map +1 -0
- package/dist/components/molecules/Grid/index.d.ts +2 -0
- package/dist/components/molecules/Grid/index.js +38 -0
- package/dist/components/molecules/Grid/index.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +30 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/components/molecules/Grid/Grid.stories.tsx +132 -0
- package/src/components/molecules/Grid/Grid.tsx +87 -0
- package/src/components/molecules/Grid/Item/Item.tsx +95 -0
- package/src/components/molecules/Grid/Item/index.ts +1 -0
- package/src/components/molecules/Grid/index.ts +2 -0
- package/src/index.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,52 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.12.3](https://github.com/tecsinapse/design-system/compare/@tecsinapse/react-core@1.12.2...@tecsinapse/react-core@1.12.3) (2021-12-23)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @tecsinapse/react-core
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.12.2](https://github.com/tecsinapse/design-system/compare/@tecsinapse/react-core@1.12.1...@tecsinapse/react-core@1.12.2) (2021-12-22)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* spacing grid ([4929fd8](https://github.com/tecsinapse/design-system/commit/4929fd83cb91484959e19aeee2dfc8cfcce6f009))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## [1.12.1](https://github.com/tecsinapse/design-system/compare/@tecsinapse/react-core@1.12.0...@tecsinapse/react-core@1.12.1) (2021-12-21)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* wrapper on gridItem. ([db99917](https://github.com/tecsinapse/design-system/commit/db999176d1440ed12b91a041fbfb850f76b3b867))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
# [1.12.0](https://github.com/tecsinapse/design-system/compare/@tecsinapse/react-core@1.11.1...@tecsinapse/react-core@1.12.0) (2021-12-21)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
|
|
41
|
+
* extractNumbersFromString spacing GridItem ([65a88e6](https://github.com/tecsinapse/design-system/commit/65a88e660418d8a7903faa249e6e322b21d6791a))
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
### Features
|
|
45
|
+
|
|
46
|
+
* add grid element based on flex layout ([732f6c4](https://github.com/tecsinapse/design-system/commit/732f6c455c270325cb71c487ae01f2eee1869e0f))
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
6
52
|
## [1.11.1](https://github.com/tecsinapse/design-system/compare/@tecsinapse/react-core@1.11.0...@tecsinapse/react-core@1.11.1) (2021-12-20)
|
|
7
53
|
|
|
8
54
|
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ViewProps } from 'react-native';
|
|
2
|
+
import { SpacingType } from '@tecsinapse/react-core';
|
|
3
|
+
export interface IGrid extends ViewProps {
|
|
4
|
+
children: JSX.Element[];
|
|
5
|
+
layout?: number[][];
|
|
6
|
+
columns?: number;
|
|
7
|
+
spacing?: SpacingType | {
|
|
8
|
+
top?: SpacingType;
|
|
9
|
+
right?: SpacingType;
|
|
10
|
+
bottom?: SpacingType;
|
|
11
|
+
left?: SpacingType;
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
declare const Grid: ({ children, columns, layout, style, spacing, ...rest }: IGrid) => JSX.Element;
|
|
15
|
+
export default Grid;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _reactNative = require("react-native");
|
|
11
|
+
|
|
12
|
+
var _Item = require("./Item");
|
|
13
|
+
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
|
|
16
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
17
|
+
|
|
18
|
+
const Grid = ({
|
|
19
|
+
children,
|
|
20
|
+
columns = 12,
|
|
21
|
+
layout,
|
|
22
|
+
style,
|
|
23
|
+
spacing,
|
|
24
|
+
...rest
|
|
25
|
+
}) => {
|
|
26
|
+
if (layout) {
|
|
27
|
+
const flatLayout = layout.flat();
|
|
28
|
+
return _react.default.createElement(_reactNative.View, _extends({
|
|
29
|
+
style: [style, {
|
|
30
|
+
display: 'flex',
|
|
31
|
+
flexDirection: 'row',
|
|
32
|
+
flexWrap: 'wrap'
|
|
33
|
+
}]
|
|
34
|
+
}, rest), _react.default.Children.map(children, (child, index) => _react.default.createElement(_Item.GridItem, {
|
|
35
|
+
columns: columns,
|
|
36
|
+
span: flatLayout[index],
|
|
37
|
+
spacing: spacing
|
|
38
|
+
}, child)));
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
return _react.default.createElement(_reactNative.View, _extends({
|
|
42
|
+
style: [style, {
|
|
43
|
+
display: 'flex',
|
|
44
|
+
flexDirection: 'row',
|
|
45
|
+
flexWrap: 'wrap'
|
|
46
|
+
}]
|
|
47
|
+
}, rest), _react.default.Children.map(children, child => {
|
|
48
|
+
return _react.default.cloneElement(child, { ...(child === null || child === void 0 ? void 0 : child.props),
|
|
49
|
+
columns,
|
|
50
|
+
spacing: (child === null || child === void 0 ? void 0 : child.props.spacing) ?? spacing
|
|
51
|
+
});
|
|
52
|
+
}));
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
var _default = Grid;
|
|
56
|
+
exports.default = _default;
|
|
57
|
+
//# sourceMappingURL=Grid.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../src/components/molecules/Grid/Grid.tsx"],"names":["Grid","children","columns","layout","style","spacing","rest","flatLayout","flat","display","flexDirection","flexWrap","React","Children","map","child","index","cloneElement","props"],"mappings":";;;;;;;AAAA;;AACA;;AACA;;;;;;AA0BA,MAAMA,IAAI,GAAG,CAAC;AACZC,EAAAA,QADY;AAEZC,EAAAA,OAAO,GAAG,EAFE;AAGZC,EAAAA,MAHY;AAIZC,EAAAA,KAJY;AAKZC,EAAAA,OALY;AAMZ,KAAGC;AANS,CAAD,KAOA;AACX,MAAIH,MAAJ,EAAY;AACV,UAAMI,UAAU,GAAGJ,MAAM,CAACK,IAAP,EAAnB;AACA,WACE,6BAAC,iBAAD;AACE,MAAA,KAAK,EAAE,CACLJ,KADK,EAEL;AACEK,QAAAA,OAAO,EAAE,MADX;AAEEC,QAAAA,aAAa,EAAE,KAFjB;AAGEC,QAAAA,QAAQ,EAAE;AAHZ,OAFK;AADT,OASML,IATN,GAWGM,eAAMC,QAAN,CAAeC,GAAf,CAAmBb,QAAnB,EAA6B,CAACc,KAAD,EAAQC,KAAR,KAC5B,6BAAC,cAAD;AACE,MAAA,OAAO,EAAEd,OADX;AAEE,MAAA,IAAI,EAAEK,UAAU,CAACS,KAAD,CAFlB;AAGE,MAAA,OAAO,EAAEX;AAHX,OAKGU,KALH,CADD,CAXH,CADF;AAuBD;;AAED,SACE,6BAAC,iBAAD;AACE,IAAA,KAAK,EAAE,CACLX,KADK,EAEL;AACEK,MAAAA,OAAO,EAAE,MADX;AAEEC,MAAAA,aAAa,EAAE,KAFjB;AAGEC,MAAAA,QAAQ,EAAE;AAHZ,KAFK;AADT,KASML,IATN,GAWGM,eAAMC,QAAN,CAAeC,GAAf,CAAmBb,QAAnB,EAA6Bc,KAAK,IAAI;AACrC,WAAOH,eAAMK,YAAN,CAAmBF,KAAnB,EAA0B,EAC/B,IAAGA,KAAH,aAAGA,KAAH,uBAAGA,KAAK,CAAEG,KAAV,CAD+B;AAE/BhB,MAAAA,OAF+B;AAG/BG,MAAAA,OAAO,EAAE,CAAAU,KAAK,SAAL,IAAAA,KAAK,WAAL,YAAAA,KAAK,CAAEG,KAAP,CAAab,OAAb,KAAwBA;AAHF,KAA1B,CAAP;AAKD,GANA,CAXH,CADF;AAqBD,CAxDD;;eA0DeL,I","sourcesContent":["import React from 'react';\nimport { View, ViewProps } from 'react-native';\nimport { GridItem } from './Item';\nimport { SpacingType } from '@tecsinapse/react-core';\n\nexport interface IGrid extends ViewProps {\n children: JSX.Element[];\n /** Layout should represent the multiplier of columns to fill the rows properly.\n * Example:\n * const layout = [\n * [6, 6], // Two elements on row\n * [4, 4, 4], // Three elements on row\n * [12], // One element on row\n * ];\n * */\n layout?: number[][];\n /** Number of grid columns to be considered (not the number of elements per row) */\n columns?: number;\n spacing?:\n | SpacingType\n | {\n top?: SpacingType;\n right?: SpacingType;\n bottom?: SpacingType;\n left?: SpacingType;\n };\n}\n\nconst Grid = ({\n children,\n columns = 12,\n layout,\n style,\n spacing,\n ...rest\n}: IGrid) => {\n if (layout) {\n const flatLayout = layout.flat();\n return (\n <View\n style={[\n style,\n {\n display: 'flex',\n flexDirection: 'row',\n flexWrap: 'wrap',\n },\n ]}\n {...rest}\n >\n {React.Children.map(children, (child, index) => (\n <GridItem\n columns={columns}\n span={flatLayout[index]}\n spacing={spacing}\n >\n {child}\n </GridItem>\n ))}\n </View>\n );\n }\n\n return (\n <View\n style={[\n style,\n {\n display: 'flex',\n flexDirection: 'row',\n flexWrap: 'wrap',\n },\n ]}\n {...rest}\n >\n {React.Children.map(children, child => {\n return React.cloneElement(child, {\n ...child?.props,\n columns,\n spacing: child?.props.spacing ?? spacing,\n });\n })}\n </View>\n );\n};\n\nexport default Grid;\n"],"file":"Grid.js"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { SpacingType } from '@tecsinapse/react-core';
|
|
3
|
+
declare type FlexPositioning = 'flex-start' | 'flex-end' | 'center';
|
|
4
|
+
declare type FlexAlignBase = FlexPositioning | 'stretch';
|
|
5
|
+
declare type FlexAlignType = FlexAlignBase | 'baseline';
|
|
6
|
+
declare type FlexSpacing = 'space-between' | 'space-around';
|
|
7
|
+
export interface IGridItem {
|
|
8
|
+
children: React.ReactElement;
|
|
9
|
+
span: number;
|
|
10
|
+
columns?: number;
|
|
11
|
+
loading?: boolean;
|
|
12
|
+
loadingComponent?: React.ReactElement;
|
|
13
|
+
alignContent?: FlexAlignBase | FlexSpacing;
|
|
14
|
+
alignItems?: FlexAlignType;
|
|
15
|
+
alignSelf?: 'auto' | FlexAlignType;
|
|
16
|
+
flex?: number;
|
|
17
|
+
flexDirection?: 'row' | 'column' | 'row-reverse' | 'column-reverse';
|
|
18
|
+
flexGrow?: number;
|
|
19
|
+
flexShrink?: number;
|
|
20
|
+
justifyContent?: FlexPositioning | FlexSpacing | 'space-evenly';
|
|
21
|
+
spacing?: SpacingType | {
|
|
22
|
+
top?: SpacingType;
|
|
23
|
+
right?: SpacingType;
|
|
24
|
+
bottom?: SpacingType;
|
|
25
|
+
left?: SpacingType;
|
|
26
|
+
};
|
|
27
|
+
wrapper?: boolean;
|
|
28
|
+
}
|
|
29
|
+
declare const GridItem: ({ children, span, columns, loadingComponent, loading, spacing: _spacing, wrapper, ...rest }: IGridItem) => JSX.Element;
|
|
30
|
+
export default GridItem;
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
|
|
10
|
+
var _reactCore = require("@tecsinapse/react-core");
|
|
11
|
+
|
|
12
|
+
var _reactNative = require("react-native");
|
|
13
|
+
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
|
|
16
|
+
const GridItem = ({
|
|
17
|
+
children,
|
|
18
|
+
span,
|
|
19
|
+
columns = 12,
|
|
20
|
+
loadingComponent,
|
|
21
|
+
loading = false,
|
|
22
|
+
spacing: _spacing,
|
|
23
|
+
wrapper = false,
|
|
24
|
+
...rest
|
|
25
|
+
}) => {
|
|
26
|
+
const {
|
|
27
|
+
spacing
|
|
28
|
+
} = (0, _reactCore.useTheme)();
|
|
29
|
+
|
|
30
|
+
if (!_react.default.Children.only(children)) {
|
|
31
|
+
throw new Error('The number of children in GridItem should be one');
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
if (loadingComponent && loading) {
|
|
35
|
+
return loadingComponent;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
const getPadding = pos => {
|
|
39
|
+
if (_spacing) {
|
|
40
|
+
if (typeof _spacing === 'string') return (0, _reactCore.extractNumbersFromString)(spacing[_spacing]);else if (typeof _spacing === 'object' && _spacing[pos]) {
|
|
41
|
+
return (0, _reactCore.extractNumbersFromString)(spacing[_spacing[pos]]);
|
|
42
|
+
} else return undefined;
|
|
43
|
+
} else return undefined;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
const style = { ...rest,
|
|
47
|
+
boxSizing: 'border-box',
|
|
48
|
+
flexBasis: `${100 / (columns / span)}%`,
|
|
49
|
+
paddingTop: getPadding('top'),
|
|
50
|
+
paddingBottom: getPadding('bottom'),
|
|
51
|
+
paddingRight: getPadding('right'),
|
|
52
|
+
paddingLeft: getPadding('left')
|
|
53
|
+
};
|
|
54
|
+
|
|
55
|
+
const clone = _react.default.cloneElement(children, { ...(children === null || children === void 0 ? void 0 : children.props),
|
|
56
|
+
style: wrapper ? children === null || children === void 0 ? void 0 : children.props.style : { ...style,
|
|
57
|
+
...(children === null || children === void 0 ? void 0 : children.props.style)
|
|
58
|
+
}
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
return wrapper ? _react.default.createElement(_reactNative.View, {
|
|
62
|
+
style: style
|
|
63
|
+
}, clone) : clone;
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
var _default = GridItem;
|
|
67
|
+
exports.default = _default;
|
|
68
|
+
//# sourceMappingURL=Item.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../src/components/molecules/Grid/Item/Item.tsx"],"names":["GridItem","children","span","columns","loadingComponent","loading","spacing","_spacing","wrapper","rest","React","Children","only","Error","getPadding","pos","undefined","style","boxSizing","flexBasis","paddingTop","paddingBottom","paddingRight","paddingLeft","clone","cloneElement","props"],"mappings":";;;;;;;AAAA;;AACA;;AAKA;;;;AAwCA,MAAMA,QAAQ,GAAG,CAAC;AAChBC,EAAAA,QADgB;AAEhBC,EAAAA,IAFgB;AAGhBC,EAAAA,OAAO,GAAG,EAHM;AAIhBC,EAAAA,gBAJgB;AAKhBC,EAAAA,OAAO,GAAG,KALM;AAMhBC,EAAAA,OAAO,EAAEC,QANO;AAOhBC,EAAAA,OAAO,GAAG,KAPM;AAQhB,KAAGC;AARa,CAAD,KASA;AACf,QAAM;AAAEH,IAAAA;AAAF,MAAc,0BAApB;;AACA,MAAI,CAACI,eAAMC,QAAN,CAAeC,IAAf,CAAoBX,QAApB,CAAL,EAAoC;AAClC,UAAM,IAAIY,KAAJ,CAAU,kDAAV,CAAN;AACD;;AACD,MAAIT,gBAAgB,IAAIC,OAAxB,EAAiC;AAC/B,WAAOD,gBAAP;AACD;;AAED,QAAMU,UAAU,GAAIC,GAAD,IAA0B;AAC3C,QAAIR,QAAJ,EAAc;AACZ,UAAI,OAAOA,QAAP,KAAoB,QAAxB,EACE,OAAO,yCAAyBD,OAAO,CAACC,QAAD,CAAhC,CAAP,CADF,KAEK,IAAI,OAAOA,QAAP,KAAoB,QAApB,IAAgCA,QAAQ,CAACQ,GAAD,CAA5C,EAAmD;AACtD,eAAO,yCAAyBT,OAAO,CAACC,QAAQ,CAACQ,GAAD,CAAT,CAAhC,CAAP;AACD,OAFI,MAEE,OAAOC,SAAP;AACR,KAND,MAMO,OAAOA,SAAP;AACR,GARD;;AAUA,QAAMC,KAAK,GAAG,EACZ,GAAGR,IADS;AAEZS,IAAAA,SAAS,EAAE,YAFC;AAGZC,IAAAA,SAAS,EAAG,GAAE,OAAOhB,OAAO,GAAGD,IAAjB,CAAuB,GAHzB;AAIZkB,IAAAA,UAAU,EAAEN,UAAU,CAAC,KAAD,CAJV;AAKZO,IAAAA,aAAa,EAAEP,UAAU,CAAC,QAAD,CALb;AAMZQ,IAAAA,YAAY,EAAER,UAAU,CAAC,OAAD,CANZ;AAOZS,IAAAA,WAAW,EAAET,UAAU,CAAC,MAAD;AAPX,GAAd;;AAUA,QAAMU,KAAK,GAAGd,eAAMe,YAAN,CAAmBxB,QAAnB,EAA6B,EACzC,IAAGA,QAAH,aAAGA,QAAH,uBAAGA,QAAQ,CAAEyB,KAAb,CADyC;AAEzCT,IAAAA,KAAK,EAAET,OAAO,GACVP,QADU,aACVA,QADU,uBACVA,QAAQ,CAAEyB,KAAV,CAAgBT,KADN,GAEV,EAAE,GAAGA,KAAL;AAAY,UAAGhB,QAAH,aAAGA,QAAH,uBAAGA,QAAQ,CAAEyB,KAAV,CAAgBT,KAAnB;AAAZ;AAJqC,GAA7B,CAAd;;AAOA,SAAOT,OAAO,GAAG,6BAAC,iBAAD;AAAM,IAAA,KAAK,EAAES;AAAb,KAAqBO,KAArB,CAAH,GAAwCA,KAAtD;AACD,CA9CD;;eAgDexB,Q","sourcesContent":["import React from 'react';\nimport {\n extractNumbersFromString,\n SpacingType,\n useTheme,\n} from '@tecsinapse/react-core';\nimport { View } from 'react-native';\n\ntype FlexPositioning = 'flex-start' | 'flex-end' | 'center';\ntype FlexAlignBase = FlexPositioning | 'stretch';\ntype FlexAlignType = FlexAlignBase | 'baseline';\ntype FlexSpacing = 'space-between' | 'space-around';\n\ntype PaddingPosition = 'top' | 'right' | 'bottom' | 'left';\n\nexport interface IGridItem {\n children: React.ReactElement;\n /** Number of columns to fill */\n span: number;\n /** You don't have to give this property since is inherited from Grid */\n columns?: number;\n loading?: boolean;\n /** If your GridItem has a loading state, specify the component here (Skeleton) */\n loadingComponent?: React.ReactElement;\n /** Flex properties below */\n alignContent?: FlexAlignBase | FlexSpacing;\n alignItems?: FlexAlignType;\n alignSelf?: 'auto' | FlexAlignType;\n flex?: number;\n flexDirection?: 'row' | 'column' | 'row-reverse' | 'column-reverse';\n flexGrow?: number;\n flexShrink?: number;\n justifyContent?: FlexPositioning | FlexSpacing | 'space-evenly';\n /** You don't have to give this property since is inherited from Grid */\n spacing?:\n | SpacingType\n | {\n top?: SpacingType;\n right?: SpacingType;\n bottom?: SpacingType;\n left?: SpacingType;\n };\n /** Used to wrap children in a View when its style extrapolates the dimensions*/\n wrapper?: boolean;\n}\n\nconst GridItem = ({\n children,\n span,\n columns = 12,\n loadingComponent,\n loading = false,\n spacing: _spacing,\n wrapper = false,\n ...rest\n}: IGridItem) => {\n const { spacing } = useTheme();\n if (!React.Children.only(children)) {\n throw new Error('The number of children in GridItem should be one');\n }\n if (loadingComponent && loading) {\n return loadingComponent;\n }\n\n const getPadding = (pos: PaddingPosition) => {\n if (_spacing) {\n if (typeof _spacing === 'string')\n return extractNumbersFromString(spacing[_spacing]);\n else if (typeof _spacing === 'object' && _spacing[pos]) {\n return extractNumbersFromString(spacing[_spacing[pos]!]);\n } else return undefined;\n } else return undefined;\n };\n\n const style = {\n ...rest,\n boxSizing: 'border-box',\n flexBasis: `${100 / (columns / span)}%`,\n paddingTop: getPadding('top'),\n paddingBottom: getPadding('bottom'),\n paddingRight: getPadding('right'),\n paddingLeft: getPadding('left'),\n };\n\n const clone = React.cloneElement(children, {\n ...children?.props,\n style: wrapper\n ? children?.props.style\n : { ...style, ...children?.props.style },\n });\n\n return wrapper ? <View style={style}>{clone}</View> : clone;\n};\n\nexport default GridItem;\n"],"file":"Item.js"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as GridItem, IGridItem } from './Item';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "GridItem", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function () {
|
|
9
|
+
return _Item.default;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "IGridItem", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return _Item.IGridItem;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
var _Item = _interopRequireWildcard(require("./Item"));
|
|
20
|
+
|
|
21
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
22
|
+
|
|
23
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
24
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../src/components/molecules/Grid/Item/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA","sourcesContent":["export { default as GridItem, IGridItem } from './Item';\n"],"file":"index.js"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "GridItem", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function () {
|
|
9
|
+
return _Item.GridItem;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "IGridItem", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return _Item.IGridItem;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
Object.defineProperty(exports, "Grid", {
|
|
19
|
+
enumerable: true,
|
|
20
|
+
get: function () {
|
|
21
|
+
return _Grid.default;
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
Object.defineProperty(exports, "IGrid", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function () {
|
|
27
|
+
return _Grid.IGrid;
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
var _Item = require("./Item");
|
|
32
|
+
|
|
33
|
+
var _Grid = _interopRequireWildcard(require("./Grid"));
|
|
34
|
+
|
|
35
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
36
|
+
|
|
37
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
38
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../src/components/molecules/Grid/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;AACA","sourcesContent":["export { GridItem, IGridItem } from './Item';\nexport { default as Grid, IGrid } from './Grid';\n"],"file":"index.js"}
|
package/dist/index.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ export { InputPasswordIcon } from './components/molecules/InputPassword';
|
|
|
25
25
|
export { Snackbar, SnackbarProps } from './components/molecules/Snackbar';
|
|
26
26
|
export { HintInputContainer, HintInputContainerProps, } from './components/molecules/HintInputContainer';
|
|
27
27
|
export { TextArea, TextAreaProps, TextAreaInputBase, } from './components/molecules/TextArea';
|
|
28
|
+
export { GridItem, Grid, IGridItem, IGrid } from './components/molecules/Grid';
|
|
28
29
|
export * from './styles/definitions';
|
|
29
30
|
export * from './styles/light';
|
|
30
31
|
export { default as ThemeProvider } from './styles/ThemeProvider';
|
package/dist/index.js
CHANGED
|
@@ -84,6 +84,10 @@ var _exportNames = {
|
|
|
84
84
|
TextArea: true,
|
|
85
85
|
TextAreaProps: true,
|
|
86
86
|
TextAreaInputBase: true,
|
|
87
|
+
GridItem: true,
|
|
88
|
+
Grid: true,
|
|
89
|
+
IGridItem: true,
|
|
90
|
+
IGrid: true,
|
|
87
91
|
ThemeProvider: true
|
|
88
92
|
};
|
|
89
93
|
Object.defineProperty(exports, "Avatar", {
|
|
@@ -566,6 +570,30 @@ Object.defineProperty(exports, "TextAreaInputBase", {
|
|
|
566
570
|
return _TextArea.TextAreaInputBase;
|
|
567
571
|
}
|
|
568
572
|
});
|
|
573
|
+
Object.defineProperty(exports, "GridItem", {
|
|
574
|
+
enumerable: true,
|
|
575
|
+
get: function () {
|
|
576
|
+
return _Grid.GridItem;
|
|
577
|
+
}
|
|
578
|
+
});
|
|
579
|
+
Object.defineProperty(exports, "Grid", {
|
|
580
|
+
enumerable: true,
|
|
581
|
+
get: function () {
|
|
582
|
+
return _Grid.Grid;
|
|
583
|
+
}
|
|
584
|
+
});
|
|
585
|
+
Object.defineProperty(exports, "IGridItem", {
|
|
586
|
+
enumerable: true,
|
|
587
|
+
get: function () {
|
|
588
|
+
return _Grid.IGridItem;
|
|
589
|
+
}
|
|
590
|
+
});
|
|
591
|
+
Object.defineProperty(exports, "IGrid", {
|
|
592
|
+
enumerable: true,
|
|
593
|
+
get: function () {
|
|
594
|
+
return _Grid.IGrid;
|
|
595
|
+
}
|
|
596
|
+
});
|
|
569
597
|
Object.defineProperty(exports, "ThemeProvider", {
|
|
570
598
|
enumerable: true,
|
|
571
599
|
get: function () {
|
|
@@ -627,6 +655,8 @@ var _HintInputContainer = require("./components/molecules/HintInputContainer");
|
|
|
627
655
|
|
|
628
656
|
var _TextArea = require("./components/molecules/TextArea");
|
|
629
657
|
|
|
658
|
+
var _Grid = require("./components/molecules/Grid");
|
|
659
|
+
|
|
630
660
|
var _definitions = require("./styles/definitions");
|
|
631
661
|
|
|
632
662
|
Object.keys(_definitions).forEach(function (key) {
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;AACA;;AACA;;AACA;;AAUA;;AACA;;AACA;;AACA;;AACA;;AACA;;AAOA;;AACA;;AAkBA;;AACA;;AAIA;;AACA;;AACA;;AACA;;AACA;;AACA;;AAMA;;AACA;;AAIA;;AAKA;;AACA;;AACA;;AAIA;;AAKA;;AACA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AACA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AACA;;AACA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AACA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;AACA;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA","sourcesContent":["export { Avatar, AvatarProps } from './components/atoms/Avatar';\nexport { Badge, BadgeProps } from './components/atoms/Badge';\nexport { BoxContent, BoxContentProps } from './components/atoms/BoxContent';\nexport {\n Button,\n ButtonProps,\n ButtonSizeType,\n ButtonStateProps,\n ButtonStateType,\n Error,\n Loading,\n Success,\n} from './components/atoms/Button';\nexport { Card, CardProps } from './components/atoms/Card';\nexport { Footer, FooterProps } from './components/atoms/Card/Footer';\nexport { Header, HeaderProps } from './components/atoms/Card/Header';\nexport { Checkbox, CheckboxProps } from './components/atoms/Checkbox';\nexport { Divider, DividerProps } from './components/atoms/Divider';\nexport {\n GroupButton,\n GroupButtonOption,\n GroupButtonOptionProps,\n GroupButtonProps,\n GroupButtonValue,\n} from './components/atoms/GroupButton';\nexport { Icon, IconProps } from './components/atoms/Icon';\nexport {\n Hint,\n InputContainer,\n InputContainerProps,\n InputElement,\n InputElementProps,\n InputVariantType,\n Masks,\n PressableInputContainer,\n PressableInputContainerProps,\n StyledBorderKeeper,\n useCurrencyMask,\n useInputFocus,\n useMask,\n disabledInputStyles,\n IMask,\n IMaskValue,\n} from './components/atoms/Input';\nexport { Paper, PaperProps } from './components/atoms/Paper';\nexport {\n PressableSurface,\n PressableSurfaceProps,\n} from './components/atoms/PressableSurface';\nexport { ProgressBar, ProgressBarProps } from './components/atoms/ProgressBar';\nexport { RadioButton, RadioButtonProps } from './components/atoms/RadioButton';\nexport { Switch, SwitchProps } from './components/atoms/Switch';\nexport { Tag, TagProps } from './components/atoms/Tag';\nexport { Text, TextProps } from './components/atoms/Text';\nexport {\n Calendar,\n CalendarProps,\n DateRange,\n SelectionType,\n} from './components/molecules/Calendar';\nexport { DatePicker, DatePickerProps } from './components/molecules/DatePicker';\nexport {\n DateTimePicker,\n DateTimePickerProps,\n} from './components/molecules/DateTimePicker';\nexport {\n DateTimeSelector,\n DateTimeSelectorMode,\n DateTimeSelectorProps,\n} from './components/molecules/DateTimeSelector';\nexport { InputPasswordIcon } from './components/molecules/InputPassword';\nexport { Snackbar, SnackbarProps } from './components/molecules/Snackbar';\nexport {\n HintInputContainer,\n HintInputContainerProps,\n} from './components/molecules/HintInputContainer';\nexport {\n TextArea,\n TextAreaProps,\n TextAreaInputBase,\n} from './components/molecules/TextArea';\nexport { GridItem, Grid, IGridItem, IGrid } from './components/molecules/Grid';\nexport * from './styles/definitions';\nexport * from './styles/light';\nexport { default as ThemeProvider } from './styles/ThemeProvider';\nexport * from './types/defaults';\nexport * from './utils';\nexport * from './hooks';\n"],"file":"index.js"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tecsinapse/react-core",
|
|
3
3
|
"description": "TecSinapse hybrid React components",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.12.3",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"react-native": ">=0.64.0",
|
|
32
32
|
"react-native-vector-icons": ">=8.1.0"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "70d4f967e058d9d50acaf752273a9063d64c6074"
|
|
35
35
|
}
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { Story } from '@storybook/react';
|
|
3
|
+
import Grid, { IGrid } from './Grid';
|
|
4
|
+
import { GridItem } from './Item';
|
|
5
|
+
import { Text } from '@tecsinapse/react-core';
|
|
6
|
+
import { View } from 'react-native';
|
|
7
|
+
import styled from '@emotion/native';
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
title: 'Hybrid/Grid',
|
|
11
|
+
component: Grid,
|
|
12
|
+
subcomponents: { GridItem },
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
const Container = styled(View)`
|
|
16
|
+
background-color: orange;
|
|
17
|
+
padding: 2px;
|
|
18
|
+
border-width: 1px;
|
|
19
|
+
border-color: white;
|
|
20
|
+
border-style: solid;
|
|
21
|
+
border-radius: 8px;
|
|
22
|
+
`;
|
|
23
|
+
|
|
24
|
+
const TemplateGrid: Story<IGrid> = args => {
|
|
25
|
+
return (
|
|
26
|
+
<Grid {...args}>
|
|
27
|
+
<GridItem span={12}>
|
|
28
|
+
<Container>
|
|
29
|
+
<Text>Box</Text>
|
|
30
|
+
</Container>
|
|
31
|
+
</GridItem>
|
|
32
|
+
|
|
33
|
+
<GridItem span={6}>
|
|
34
|
+
<Container>
|
|
35
|
+
<Text>Box</Text>
|
|
36
|
+
</Container>
|
|
37
|
+
</GridItem>
|
|
38
|
+
<GridItem span={6}>
|
|
39
|
+
<Container>
|
|
40
|
+
<Text>Box</Text>
|
|
41
|
+
</Container>
|
|
42
|
+
</GridItem>
|
|
43
|
+
|
|
44
|
+
<GridItem span={4} flexShrink={1}>
|
|
45
|
+
<Container>
|
|
46
|
+
<Text>Box</Text>
|
|
47
|
+
</Container>
|
|
48
|
+
</GridItem>
|
|
49
|
+
<GridItem span={4} flexGrow={1}>
|
|
50
|
+
<Container>
|
|
51
|
+
<Text>Box</Text>
|
|
52
|
+
</Container>
|
|
53
|
+
</GridItem>
|
|
54
|
+
<GridItem span={4} flexShrink={1}>
|
|
55
|
+
<Container>
|
|
56
|
+
<Text>Box</Text>
|
|
57
|
+
</Container>
|
|
58
|
+
</GridItem>
|
|
59
|
+
|
|
60
|
+
<GridItem span={3}>
|
|
61
|
+
<Container>
|
|
62
|
+
<Text>Box</Text>
|
|
63
|
+
</Container>
|
|
64
|
+
</GridItem>
|
|
65
|
+
<GridItem span={3}>
|
|
66
|
+
<Container>
|
|
67
|
+
<Text>Box</Text>
|
|
68
|
+
</Container>
|
|
69
|
+
</GridItem>
|
|
70
|
+
<GridItem span={3}>
|
|
71
|
+
<Container>
|
|
72
|
+
<Text>Box</Text>
|
|
73
|
+
</Container>
|
|
74
|
+
</GridItem>
|
|
75
|
+
<GridItem span={3}>
|
|
76
|
+
<Container>
|
|
77
|
+
<Text>Box</Text>
|
|
78
|
+
</Container>
|
|
79
|
+
</GridItem>
|
|
80
|
+
</Grid>
|
|
81
|
+
);
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
export const WithGridItem = TemplateGrid.bind({});
|
|
85
|
+
|
|
86
|
+
WithGridItem.args = {
|
|
87
|
+
spacing: 'mili',
|
|
88
|
+
};
|
|
89
|
+
|
|
90
|
+
const TemplateLayout: Story<IGrid> = args => {
|
|
91
|
+
return (
|
|
92
|
+
<Grid {...args}>
|
|
93
|
+
<Container>
|
|
94
|
+
<Text>Box</Text>
|
|
95
|
+
</Container>
|
|
96
|
+
<Container>
|
|
97
|
+
<Text>Box</Text>
|
|
98
|
+
</Container>
|
|
99
|
+
<Container>
|
|
100
|
+
<Text>Box</Text>
|
|
101
|
+
</Container>
|
|
102
|
+
<Container>
|
|
103
|
+
<Text>Box</Text>
|
|
104
|
+
</Container>
|
|
105
|
+
<Container>
|
|
106
|
+
<Text>Box</Text>
|
|
107
|
+
</Container>
|
|
108
|
+
<Container>
|
|
109
|
+
<Text>Box</Text>
|
|
110
|
+
</Container>
|
|
111
|
+
<Container>
|
|
112
|
+
<Text>Box</Text>
|
|
113
|
+
</Container>
|
|
114
|
+
<Container>
|
|
115
|
+
<Text>Box</Text>
|
|
116
|
+
</Container>
|
|
117
|
+
<Container>
|
|
118
|
+
<Text>Box</Text>
|
|
119
|
+
</Container>
|
|
120
|
+
<Container>
|
|
121
|
+
<Text>Box</Text>
|
|
122
|
+
</Container>
|
|
123
|
+
</Grid>
|
|
124
|
+
);
|
|
125
|
+
};
|
|
126
|
+
|
|
127
|
+
export const WithLayout = TemplateLayout.bind({});
|
|
128
|
+
|
|
129
|
+
WithLayout.args = {
|
|
130
|
+
layout: [[12], [6, 6], [4, 4, 4], [3, 3, 3, 3]],
|
|
131
|
+
spacing: 'mili',
|
|
132
|
+
};
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { View, ViewProps } from 'react-native';
|
|
3
|
+
import { GridItem } from './Item';
|
|
4
|
+
import { SpacingType } from '@tecsinapse/react-core';
|
|
5
|
+
|
|
6
|
+
export interface IGrid extends ViewProps {
|
|
7
|
+
children: JSX.Element[];
|
|
8
|
+
/** Layout should represent the multiplier of columns to fill the rows properly.
|
|
9
|
+
* Example:
|
|
10
|
+
* const layout = [
|
|
11
|
+
* [6, 6], // Two elements on row
|
|
12
|
+
* [4, 4, 4], // Three elements on row
|
|
13
|
+
* [12], // One element on row
|
|
14
|
+
* ];
|
|
15
|
+
* */
|
|
16
|
+
layout?: number[][];
|
|
17
|
+
/** Number of grid columns to be considered (not the number of elements per row) */
|
|
18
|
+
columns?: number;
|
|
19
|
+
spacing?:
|
|
20
|
+
| SpacingType
|
|
21
|
+
| {
|
|
22
|
+
top?: SpacingType;
|
|
23
|
+
right?: SpacingType;
|
|
24
|
+
bottom?: SpacingType;
|
|
25
|
+
left?: SpacingType;
|
|
26
|
+
};
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
const Grid = ({
|
|
30
|
+
children,
|
|
31
|
+
columns = 12,
|
|
32
|
+
layout,
|
|
33
|
+
style,
|
|
34
|
+
spacing,
|
|
35
|
+
...rest
|
|
36
|
+
}: IGrid) => {
|
|
37
|
+
if (layout) {
|
|
38
|
+
const flatLayout = layout.flat();
|
|
39
|
+
return (
|
|
40
|
+
<View
|
|
41
|
+
style={[
|
|
42
|
+
style,
|
|
43
|
+
{
|
|
44
|
+
display: 'flex',
|
|
45
|
+
flexDirection: 'row',
|
|
46
|
+
flexWrap: 'wrap',
|
|
47
|
+
},
|
|
48
|
+
]}
|
|
49
|
+
{...rest}
|
|
50
|
+
>
|
|
51
|
+
{React.Children.map(children, (child, index) => (
|
|
52
|
+
<GridItem
|
|
53
|
+
columns={columns}
|
|
54
|
+
span={flatLayout[index]}
|
|
55
|
+
spacing={spacing}
|
|
56
|
+
>
|
|
57
|
+
{child}
|
|
58
|
+
</GridItem>
|
|
59
|
+
))}
|
|
60
|
+
</View>
|
|
61
|
+
);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
return (
|
|
65
|
+
<View
|
|
66
|
+
style={[
|
|
67
|
+
style,
|
|
68
|
+
{
|
|
69
|
+
display: 'flex',
|
|
70
|
+
flexDirection: 'row',
|
|
71
|
+
flexWrap: 'wrap',
|
|
72
|
+
},
|
|
73
|
+
]}
|
|
74
|
+
{...rest}
|
|
75
|
+
>
|
|
76
|
+
{React.Children.map(children, child => {
|
|
77
|
+
return React.cloneElement(child, {
|
|
78
|
+
...child?.props,
|
|
79
|
+
columns,
|
|
80
|
+
spacing: child?.props.spacing ?? spacing,
|
|
81
|
+
});
|
|
82
|
+
})}
|
|
83
|
+
</View>
|
|
84
|
+
);
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
export default Grid;
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import {
|
|
3
|
+
extractNumbersFromString,
|
|
4
|
+
SpacingType,
|
|
5
|
+
useTheme,
|
|
6
|
+
} from '@tecsinapse/react-core';
|
|
7
|
+
import { View } from 'react-native';
|
|
8
|
+
|
|
9
|
+
type FlexPositioning = 'flex-start' | 'flex-end' | 'center';
|
|
10
|
+
type FlexAlignBase = FlexPositioning | 'stretch';
|
|
11
|
+
type FlexAlignType = FlexAlignBase | 'baseline';
|
|
12
|
+
type FlexSpacing = 'space-between' | 'space-around';
|
|
13
|
+
|
|
14
|
+
type PaddingPosition = 'top' | 'right' | 'bottom' | 'left';
|
|
15
|
+
|
|
16
|
+
export interface IGridItem {
|
|
17
|
+
children: React.ReactElement;
|
|
18
|
+
/** Number of columns to fill */
|
|
19
|
+
span: number;
|
|
20
|
+
/** You don't have to give this property since is inherited from Grid */
|
|
21
|
+
columns?: number;
|
|
22
|
+
loading?: boolean;
|
|
23
|
+
/** If your GridItem has a loading state, specify the component here (Skeleton) */
|
|
24
|
+
loadingComponent?: React.ReactElement;
|
|
25
|
+
/** Flex properties below */
|
|
26
|
+
alignContent?: FlexAlignBase | FlexSpacing;
|
|
27
|
+
alignItems?: FlexAlignType;
|
|
28
|
+
alignSelf?: 'auto' | FlexAlignType;
|
|
29
|
+
flex?: number;
|
|
30
|
+
flexDirection?: 'row' | 'column' | 'row-reverse' | 'column-reverse';
|
|
31
|
+
flexGrow?: number;
|
|
32
|
+
flexShrink?: number;
|
|
33
|
+
justifyContent?: FlexPositioning | FlexSpacing | 'space-evenly';
|
|
34
|
+
/** You don't have to give this property since is inherited from Grid */
|
|
35
|
+
spacing?:
|
|
36
|
+
| SpacingType
|
|
37
|
+
| {
|
|
38
|
+
top?: SpacingType;
|
|
39
|
+
right?: SpacingType;
|
|
40
|
+
bottom?: SpacingType;
|
|
41
|
+
left?: SpacingType;
|
|
42
|
+
};
|
|
43
|
+
/** Used to wrap children in a View when its style extrapolates the dimensions*/
|
|
44
|
+
wrapper?: boolean;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
const GridItem = ({
|
|
48
|
+
children,
|
|
49
|
+
span,
|
|
50
|
+
columns = 12,
|
|
51
|
+
loadingComponent,
|
|
52
|
+
loading = false,
|
|
53
|
+
spacing: _spacing,
|
|
54
|
+
wrapper = false,
|
|
55
|
+
...rest
|
|
56
|
+
}: IGridItem) => {
|
|
57
|
+
const { spacing } = useTheme();
|
|
58
|
+
if (!React.Children.only(children)) {
|
|
59
|
+
throw new Error('The number of children in GridItem should be one');
|
|
60
|
+
}
|
|
61
|
+
if (loadingComponent && loading) {
|
|
62
|
+
return loadingComponent;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
const getPadding = (pos: PaddingPosition) => {
|
|
66
|
+
if (_spacing) {
|
|
67
|
+
if (typeof _spacing === 'string')
|
|
68
|
+
return extractNumbersFromString(spacing[_spacing]);
|
|
69
|
+
else if (typeof _spacing === 'object' && _spacing[pos]) {
|
|
70
|
+
return extractNumbersFromString(spacing[_spacing[pos]!]);
|
|
71
|
+
} else return undefined;
|
|
72
|
+
} else return undefined;
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
const style = {
|
|
76
|
+
...rest,
|
|
77
|
+
boxSizing: 'border-box',
|
|
78
|
+
flexBasis: `${100 / (columns / span)}%`,
|
|
79
|
+
paddingTop: getPadding('top'),
|
|
80
|
+
paddingBottom: getPadding('bottom'),
|
|
81
|
+
paddingRight: getPadding('right'),
|
|
82
|
+
paddingLeft: getPadding('left'),
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
const clone = React.cloneElement(children, {
|
|
86
|
+
...children?.props,
|
|
87
|
+
style: wrapper
|
|
88
|
+
? children?.props.style
|
|
89
|
+
: { ...style, ...children?.props.style },
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
return wrapper ? <View style={style}>{clone}</View> : clone;
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
export default GridItem;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as GridItem, IGridItem } from './Item';
|
package/src/index.ts
CHANGED
|
@@ -79,6 +79,7 @@ export {
|
|
|
79
79
|
TextAreaProps,
|
|
80
80
|
TextAreaInputBase,
|
|
81
81
|
} from './components/molecules/TextArea';
|
|
82
|
+
export { GridItem, Grid, IGridItem, IGrid } from './components/molecules/Grid';
|
|
82
83
|
export * from './styles/definitions';
|
|
83
84
|
export * from './styles/light';
|
|
84
85
|
export { default as ThemeProvider } from './styles/ThemeProvider';
|