react-crud-mobile 1.0.80 → 1.0.82

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.
@@ -1,57 +1,57 @@
1
- import { ListType } from "react-crud-utils";
2
- import { UserType } from "react-crud-utils";
3
- import { InputType } from "react-crud-utils";
4
- import { ChartType } from "react-crud-utils";
5
- import { ContainerType } from "react-crud-utils";
6
- import { ListInputType } from "react-crud-utils";
7
- import UIElement from "./UIElement";
8
- import { TabsType } from "react-crud-utils";
9
- import { DefineType } from "react-crud-utils";
10
- import ElInclude from "./grid/ElInclude";
11
- import { ButtonType } from "react-crud-utils";
12
- import { LinkType } from "react-crud-utils";
13
-
14
- const UI = {
15
- Grid: (props: ListType) => <UIElement {...props} type="list" />,
16
- Repeat: (props: ListType) => <UIElement {...props} type="repeat" />,
17
- Define: (props: DefineType) => <UIElement {...props} type="define" />,
18
- Include: (props: DefineType) => <ElInclude {...props} />,
19
- Column: ({ type = "column", ...props }: UserType) => (
20
- <UIElement {...props} type="column" />
21
- ),
22
- Input: (props: InputType) => <UIElement {...props} />,
23
- Text: (props: InputType) => <UIElement {...props} type="text" />,
24
- Email: (props: InputType) => <UIElement {...props} type="email" />,
25
- Button: (props: ButtonType) => <UIElement {...props} type="button" />,
26
- Link: (props: LinkType) => <UIElement {...props} type="link" />,
27
- Icon: (props: ButtonType) => <UIElement {...props} type="icon" />,
28
- Output: (props: ContainerType) => <UIElement {...props} type="output" />,
29
- Form: (props: ContainerType) => <UIElement {...props} type="form" />,
30
- Crud: (props: ContainerType) => <UIElement {...props} type="crud" />,
31
- View: (props: ContainerType) => (
32
- <UIElement {...props} type="view" transient />
33
- ),
34
- Bottom: (props: ContainerType) => <UIElement {...props} type="bottom" />,
35
- Dialog: (props: ContainerType) => <UIElement {...props} type="dialog" />,
36
- Content: (props: ContainerType) => <UIElement {...props} type="content" />,
37
- Top: (props: ContainerType) => <UIElement {...props} type="top" />,
38
- Card: (props: ContainerType) => <UIElement {...props} type="card" />,
39
- Tab: (props: ContainerType) => <UIElement {...props} type="tab" />,
40
- Tabs: (props: TabsType) => <UIElement {...props} type="tabs" />,
41
- Step: (props: ContainerType) => (
42
- <UIElement {...props} type="tab" layout="step" />
43
- ),
44
- Stepper: (props: TabsType) => (
45
- <UIElement {...props} type="tabs" layout="stepper" />
46
- ),
47
- Money: (props: InputType) => <UIElement {...props} type="money" />,
48
- Chart: (props: ChartType) => <UIElement {...props} type="chart" />,
49
- Password: (props: InputType) => <UIElement {...props} type="password" />,
50
- Complete: (props: InputType) => <UIElement {...props} type="complete" />,
51
- Checkbox: (props: InputType) => <UIElement {...props} type="checkbox" />,
52
- Radio: (props: ListInputType) => <UIElement {...props} type="radio" />,
53
- Select: (props: ListInputType) => <UIElement {...props} type="select" />,
54
- Entity: (props: ListInputType) => <UIElement {...props} type="entity" />,
55
- Element: (props: ListInputType) => <UIElement {...props} type="element" />,
56
- };
57
- export default UI;
1
+ import { ListType } from "react-crud-utils";
2
+ import { UserType } from "react-crud-utils";
3
+ import { InputType } from "react-crud-utils";
4
+ import { ChartType } from "react-crud-utils";
5
+ import { ContainerType } from "react-crud-utils";
6
+ import { ListInputType } from "react-crud-utils";
7
+ import UIElement from "./UIElement";
8
+ import { TabsType } from "react-crud-utils";
9
+ import { DefineType } from "react-crud-utils";
10
+ import ElInclude from "./grid/ElInclude";
11
+ import { ButtonType } from "react-crud-utils";
12
+ import { LinkType } from "react-crud-utils";
13
+
14
+ const UI = {
15
+ Grid: (props: ListType) => <UIElement {...props} type="list" />,
16
+ Repeat: (props: ListType) => <UIElement {...props} type="repeat" />,
17
+ Define: (props: DefineType) => <UIElement {...props} type="define" />,
18
+ Include: (props: DefineType) => <ElInclude {...props} />,
19
+ Column: ({ type = "column", ...props }: UserType) => (
20
+ <UIElement {...props} type="column" />
21
+ ),
22
+ Input: (props: InputType) => <UIElement {...props} />,
23
+ Text: (props: InputType) => <UIElement {...props} type="text" />,
24
+ Email: (props: InputType) => <UIElement {...props} type="email" />,
25
+ Button: (props: ButtonType) => <UIElement {...props} type="button" />,
26
+ Link: (props: LinkType) => <UIElement {...props} type="link" />,
27
+ Icon: (props: ButtonType) => <UIElement {...props} type="icon" />,
28
+ Output: (props: ContainerType) => <UIElement {...props} type="output" />,
29
+ Form: (props: ContainerType) => <UIElement {...props} type="form" />,
30
+ Crud: (props: ContainerType) => <UIElement {...props} type="crud" />,
31
+ View: (props: ContainerType) => (
32
+ <UIElement {...props} type="view" transient />
33
+ ),
34
+ Bottom: (props: ContainerType) => <UIElement {...props} type="bottom" />,
35
+ Dialog: (props: ContainerType) => <UIElement {...props} type="dialog" />,
36
+ Content: (props: ContainerType) => <UIElement {...props} type="content" />,
37
+ Top: (props: ContainerType) => <UIElement {...props} type="top" />,
38
+ Card: (props: ContainerType) => <UIElement {...props} type="card" />,
39
+ Tab: (props: ContainerType) => <UIElement {...props} type="tab" />,
40
+ Tabs: (props: TabsType) => <UIElement {...props} type="tabs" />,
41
+ Step: (props: ContainerType) => (
42
+ <UIElement {...props} type="tab" layout="step" />
43
+ ),
44
+ Stepper: (props: TabsType) => (
45
+ <UIElement {...props} type="tabs" layout="stepper" />
46
+ ),
47
+ Money: (props: InputType) => <UIElement {...props} type="money" />,
48
+ Chart: (props: ChartType) => <UIElement {...props} type="chart" />,
49
+ Password: (props: InputType) => <UIElement {...props} type="password" />,
50
+ Complete: (props: InputType) => <UIElement {...props} type="complete" />,
51
+ Checkbox: (props: InputType) => <UIElement {...props} type="checkbox" />,
52
+ Radio: (props: ListInputType) => <UIElement {...props} type="radio" />,
53
+ Select: (props: ListInputType) => <UIElement {...props} type="select" />,
54
+ Entity: (props: ListInputType) => <UIElement {...props} type="entity" />,
55
+ Element: (props: ListInputType) => <UIElement {...props} type="element" />,
56
+ };
57
+ export default UI;
@@ -1,126 +1,126 @@
1
- import React, { useState } from 'react';
2
- import UIElement from './UIElement';
3
- import { Crud, Scope, ScopeUtils, Utils } from 'react-crud-utils';
4
- import { StyleSheet, View } from 'react-native';
5
-
6
- interface UIChildrenType {
7
- scope: Scope;
8
- crud?: Crud;
9
- validateScope?: String;
10
- children?: any;
11
- elements?: any;
12
- transient?: boolean;
13
- part?: string;
14
- childProps?: any;
15
- }
16
-
17
- export default function UIChildren(props: UIChildrenType) {
18
- let [scope] = useState(Utils.nvl(props.scope, ScopeUtils.create(props)));
19
- let crud = Utils.nvl(props.crud, scope.crud);
20
- let validateScope = Utils.nvl(props.validateScope, 'global');
21
- let name = Utils.nvl(props.part, 'child');
22
-
23
- if (scope.isInput()) {
24
- return <></>;
25
- }
26
-
27
- let Paint = ({ child }: any) => {
28
- if (!child) {
29
- return <></>;
30
- }
31
- if (typeof child === 'string') {
32
- return <>{child}</>;
33
- }
34
-
35
- let Custom = child.type;
36
- let pps = { ...child.props };
37
-
38
- delete pps.children;
39
-
40
- if (typeof Custom === 'string') {
41
- if (Utils.isEmpty(child.props.children)) {
42
- return <Custom {...pps} />;
43
- }
44
- return (
45
- <Custom {...pps}>
46
- <UIChildren
47
- transient
48
- validateScope={validateScope}
49
- {...child.props}
50
- scope={scope}
51
- crud={crud}
52
- ></UIChildren>
53
- </Custom>
54
- );
55
- } else if (typeof Custom === 'function') {
56
- return (
57
- <Custom
58
- validateScope={validateScope}
59
- {...child.props}
60
- parent={scope}
61
- crud={crud}
62
- ></Custom>
63
- );
64
- }
65
-
66
- if (!Utils.isEmpty(child.props.children)) {
67
- return (
68
- <UIChildren
69
- validateScope={validateScope}
70
- {...child.props}
71
- scope={scope}
72
- crud={crud}
73
- transient
74
- ></UIChildren>
75
- );
76
- }
77
- return <></>;
78
- };
79
-
80
- const Draw = () => {
81
- if (props.elements) {
82
- return (
83
- <>
84
- {Object.entries(props.elements).map((t: any, k) => {
85
- return <UIElement crud={crud} {...t[1]} />;
86
- })}
87
- </>
88
- );
89
- }
90
- return (
91
- <>
92
- {React.Children.map(props.children, child => {
93
- return <Paint child={child}></Paint>;
94
- })}
95
- </>
96
- );
97
- };
98
-
99
- if (props.transient) {
100
- return <Draw />;
101
- }
102
-
103
- if (Utils.isEmpty(props.children) && Utils.isEmpty(props.elements)) {
104
- return <></>;
105
- }
106
-
107
- const getStyle = (part?: string) => {
108
- let key = Utils.nvl(part, 'root');
109
- let def = styles[key];
110
-
111
- return { ...def, ...scope.getStyle(part) };
112
- };
113
-
114
- return (
115
- <>
116
- <View style={getStyle(name)}>
117
- <Draw />
118
- </View>
119
- </>
120
- );
121
- }
122
-
123
- const styles = StyleSheet.create({
124
- child: { width: '100%' },
125
- inner: { width: '100%' },
126
- });
1
+ import React, { useState } from 'react';
2
+ import UIElement from './UIElement';
3
+ import { Crud, Scope, ScopeUtils, Utils } from 'react-crud-utils';
4
+ import { StyleSheet, View } from 'react-native';
5
+
6
+ interface UIChildrenType {
7
+ scope: Scope;
8
+ crud?: Crud;
9
+ validateScope?: String;
10
+ children?: any;
11
+ elements?: any;
12
+ transient?: boolean;
13
+ part?: string;
14
+ childProps?: any;
15
+ }
16
+
17
+ export default function UIChildren(props: UIChildrenType) {
18
+ let [scope] = useState(Utils.nvl(props.scope, ScopeUtils.create(props)));
19
+ let crud = Utils.nvl(props.crud, scope.crud);
20
+ let validateScope = Utils.nvl(props.validateScope, 'global');
21
+ let name = Utils.nvl(props.part, 'child');
22
+
23
+ if (scope.isInput()) {
24
+ return <></>;
25
+ }
26
+
27
+ let Paint = ({ child }: any) => {
28
+ if (!child) {
29
+ return <></>;
30
+ }
31
+ if (typeof child === 'string') {
32
+ return <>{child}</>;
33
+ }
34
+
35
+ let Custom = child.type;
36
+ let pps = { ...child.props };
37
+
38
+ delete pps.children;
39
+
40
+ if (typeof Custom === 'string') {
41
+ if (Utils.isEmpty(child.props.children)) {
42
+ return <Custom {...pps} />;
43
+ }
44
+ return (
45
+ <Custom {...pps}>
46
+ <UIChildren
47
+ transient
48
+ validateScope={validateScope}
49
+ {...child.props}
50
+ scope={scope}
51
+ crud={crud}
52
+ ></UIChildren>
53
+ </Custom>
54
+ );
55
+ } else if (typeof Custom === 'function') {
56
+ return (
57
+ <Custom
58
+ validateScope={validateScope}
59
+ {...child.props}
60
+ parent={scope}
61
+ crud={crud}
62
+ ></Custom>
63
+ );
64
+ }
65
+
66
+ if (!Utils.isEmpty(child.props.children)) {
67
+ return (
68
+ <UIChildren
69
+ validateScope={validateScope}
70
+ {...child.props}
71
+ scope={scope}
72
+ crud={crud}
73
+ transient
74
+ ></UIChildren>
75
+ );
76
+ }
77
+ return <></>;
78
+ };
79
+
80
+ const Draw = () => {
81
+ if (props.elements) {
82
+ return (
83
+ <>
84
+ {Object.entries(props.elements).map((t: any, k) => {
85
+ return <UIElement crud={crud} {...t[1]} />;
86
+ })}
87
+ </>
88
+ );
89
+ }
90
+ return (
91
+ <>
92
+ {React.Children.map(props.children, child => {
93
+ return <Paint child={child}></Paint>;
94
+ })}
95
+ </>
96
+ );
97
+ };
98
+
99
+ if (props.transient) {
100
+ return <Draw />;
101
+ }
102
+
103
+ if (Utils.isEmpty(props.children) && Utils.isEmpty(props.elements)) {
104
+ return <></>;
105
+ }
106
+
107
+ const getStyle = (part?: string) => {
108
+ let key = Utils.nvl(part, 'root');
109
+ let def = styles[key];
110
+
111
+ return { ...def, ...scope.getStyle(part) };
112
+ };
113
+
114
+ return (
115
+ <>
116
+ <View style={getStyle(name)}>
117
+ <Draw />
118
+ </View>
119
+ </>
120
+ );
121
+ }
122
+
123
+ const styles = StyleSheet.create({
124
+ child: { width: '100%' },
125
+ inner: { width: '100%' },
126
+ });
@@ -1,14 +1,14 @@
1
- import { ChildType } from 'react-crud-utils';
2
- import AutoComplete from './core/AutoComplete';
3
-
4
- export default function UIComplete({
5
- defaultsInput,
6
- defaultsUI,
7
- scope,
8
- }: ChildType) {
9
- return (
10
- <>
11
- <AutoComplete {...defaultsInput} {...defaultsUI} />
12
- </>
13
- );
14
- }
1
+ import { ChildType } from 'react-crud-utils';
2
+ import AutoComplete from './core/AutoComplete';
3
+
4
+ export default function UIComplete({
5
+ defaultsInput,
6
+ defaultsUI,
7
+ scope,
8
+ }: ChildType) {
9
+ return (
10
+ <>
11
+ <AutoComplete {...defaultsInput} {...defaultsUI} />
12
+ </>
13
+ );
14
+ }