react-crud-mobile 1.0.430 → 1.0.432

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.
Files changed (32) hide show
  1. package/dist/react-crud-mobile.cjs.development.js +1 -0
  2. package/dist/react-crud-mobile.cjs.development.js.map +1 -1
  3. package/dist/react-crud-mobile.cjs.production.min.js +1 -1
  4. package/dist/react-crud-mobile.cjs.production.min.js.map +1 -1
  5. package/dist/react-crud-mobile.esm.js +1 -0
  6. package/dist/react-crud-mobile.esm.js.map +1 -1
  7. package/package.json +71 -71
  8. package/src/elements/UI.tsx +65 -65
  9. package/src/elements/UIChildren.tsx +127 -127
  10. package/src/elements/UIComplete.tsx +14 -14
  11. package/src/elements/UIElement.tsx +518 -516
  12. package/src/elements/UITag.tsx +13 -13
  13. package/src/elements/charts/ElChart.tsx +10 -10
  14. package/src/elements/core/UIAutoComplete.tsx +17 -17
  15. package/src/elements/core/UIButton.tsx +73 -73
  16. package/src/elements/core/UIIcon.tsx +8 -8
  17. package/src/elements/core/UIInclude.tsx +40 -40
  18. package/src/elements/core/UIInput.tsx +69 -69
  19. package/src/elements/core/UILink.tsx +17 -17
  20. package/src/elements/core/UIList.tsx +135 -135
  21. package/src/elements/core/UIListItem.tsx +32 -32
  22. package/src/elements/core/UIListRow.tsx +32 -32
  23. package/src/elements/core/UIModal.tsx +139 -139
  24. package/src/elements/core/UIOption.tsx +17 -17
  25. package/src/elements/core/UIQuantity.tsx +97 -97
  26. package/src/elements/core/UIRadio.tsx +17 -17
  27. package/src/elements/core/UISelect.tsx +122 -122
  28. package/src/elements/core/UISwitch.tsx +26 -26
  29. package/src/elements/core/UIToggle.tsx +102 -102
  30. package/src/elements/index.ts +1 -1
  31. package/src/elements/tabs/ElTabs.tsx +178 -178
  32. package/src/index.ts +1 -1
@@ -1,102 +1,102 @@
1
- import React, { useState } from 'react';
2
- import { ChildType, Utils } from 'react-crud-utils';
3
- import { StyleSheet, Text, TouchableHighlight, View } from 'react-native';
4
- import UIListRow from './UIListRow';
5
-
6
- export default function UIToggle(props: ChildType) {
7
- const scope = props.scope;
8
- const options = Utils.nvl(scope.getOptions(), []);
9
- const value = scope.getInputValue();
10
-
11
- let [index, setIndex] = useState(0);
12
-
13
- const isSelected = (item: any) => {
14
- return item?.value === value;
15
- };
16
-
17
- const onClick = (item: any) => {
18
- scope.changeValue(item.object);
19
- setIndex(++index);
20
- };
21
-
22
- const Item = ({ item, index }) => {
23
- let selected = isSelected(item);
24
- let style: any = { ...styles.text };
25
-
26
- if (selected) style.color = '#ffffff';
27
-
28
- if (Utils.isEmpty(props.children)) {
29
- return <Text style={style}>{item.label}</Text>;
30
- }
31
-
32
- return (
33
- <UIListRow scope={scope} item={item.object} index={index}>
34
- {props.children}
35
- </UIListRow>
36
- );
37
- };
38
-
39
- const getItemStyle = (item: any) => {
40
- let style = { ...styles.item, ...scope.getStyle('item') };
41
-
42
- let wPart = 100 / options.length;
43
- let width = Math.floor(wPart) + '%';
44
-
45
- if (isSelected(item)) {
46
- let selectedColor = scope.getPart('selectedColor', undefined, 'primary');
47
- let st = scope.getStyle('selected', {
48
- backgroundColor: selectedColor,
49
- color: '#ffffff',
50
- });
51
-
52
- style = { ...style, ...st };
53
-
54
- if (!style.color) {
55
- style.color = '#ffffff';
56
- }
57
- }
58
-
59
- style.width = width;
60
-
61
- return style;
62
- };
63
-
64
- return (
65
- <>
66
- {options.map((item: any, i: number) => (
67
- <TouchableHighlight
68
- key={`k-${i}`}
69
- style={getItemStyle(item)}
70
- onPress={e => {
71
- onClick(item);
72
- }}
73
- >
74
- <Item item={item} index={i} />
75
- </TouchableHighlight>
76
- ))}
77
- </>
78
- );
79
- }
80
-
81
- const styles = StyleSheet.create({
82
- container: {
83
- flex: 1,
84
- width: '100%',
85
- gap: 10,
86
- justifyContent: 'center',
87
- flexDirection: 'row',
88
- },
89
- item: {
90
- padding: 15,
91
- marginVertical: 8,
92
- backgroundColor: '#f5f5f5',
93
- borderRadius: 8,
94
- justifyContent: 'center',
95
- width: 'auto',
96
- flexDirection: 'row',
97
- },
98
- text: {
99
- fontSize: 16,
100
- fontWeight: 500,
101
- },
102
- });
1
+ import React, { useState } from 'react';
2
+ import { ChildType, Utils } from 'react-crud-utils';
3
+ import { StyleSheet, Text, TouchableHighlight, View } from 'react-native';
4
+ import UIListRow from './UIListRow';
5
+
6
+ export default function UIToggle(props: ChildType) {
7
+ const scope = props.scope;
8
+ const options = Utils.nvl(scope.getOptions(), []);
9
+ const value = scope.getInputValue();
10
+
11
+ let [index, setIndex] = useState(0);
12
+
13
+ const isSelected = (item: any) => {
14
+ return item?.value === value;
15
+ };
16
+
17
+ const onClick = (item: any) => {
18
+ scope.changeValue(item.object);
19
+ setIndex(++index);
20
+ };
21
+
22
+ const Item = ({ item, index }) => {
23
+ let selected = isSelected(item);
24
+ let style: any = { ...styles.text };
25
+
26
+ if (selected) style.color = '#ffffff';
27
+
28
+ if (Utils.isEmpty(props.children)) {
29
+ return <Text style={style}>{item.label}</Text>;
30
+ }
31
+
32
+ return (
33
+ <UIListRow scope={scope} item={item.object} index={index}>
34
+ {props.children}
35
+ </UIListRow>
36
+ );
37
+ };
38
+
39
+ const getItemStyle = (item: any) => {
40
+ let style = { ...styles.item, ...scope.getStyle('item') };
41
+
42
+ let wPart = 100 / options.length;
43
+ let width = Math.floor(wPart) + '%';
44
+
45
+ if (isSelected(item)) {
46
+ let selectedColor = scope.getPart('selectedColor', undefined, 'primary');
47
+ let st = scope.getStyle('selected', {
48
+ backgroundColor: selectedColor,
49
+ color: '#ffffff',
50
+ });
51
+
52
+ style = { ...style, ...st };
53
+
54
+ if (!style.color) {
55
+ style.color = '#ffffff';
56
+ }
57
+ }
58
+
59
+ style.width = width;
60
+
61
+ return style;
62
+ };
63
+
64
+ return (
65
+ <>
66
+ {options.map((item: any, i: number) => (
67
+ <TouchableHighlight
68
+ key={`k-${i}`}
69
+ style={getItemStyle(item)}
70
+ onPress={e => {
71
+ onClick(item);
72
+ }}
73
+ >
74
+ <Item item={item} index={i} />
75
+ </TouchableHighlight>
76
+ ))}
77
+ </>
78
+ );
79
+ }
80
+
81
+ const styles = StyleSheet.create({
82
+ container: {
83
+ flex: 1,
84
+ width: '100%',
85
+ gap: 10,
86
+ justifyContent: 'center',
87
+ flexDirection: 'row',
88
+ },
89
+ item: {
90
+ padding: 15,
91
+ marginVertical: 8,
92
+ backgroundColor: '#f5f5f5',
93
+ borderRadius: 8,
94
+ justifyContent: 'center',
95
+ width: 'auto',
96
+ flexDirection: 'row',
97
+ },
98
+ text: {
99
+ fontSize: 16,
100
+ fontWeight: 500,
101
+ },
102
+ });
@@ -1 +1 @@
1
- export { default as UI } from "./UI";
1
+ export { default as UI } from "./UI";
@@ -1,178 +1,178 @@
1
- import React, { useState, useEffect } from 'react';
2
- import UIChildren from '../UIChildren';
3
- import UI from '../UI';
4
-
5
- import Ionicons from '@expo/vector-icons/Ionicons';
6
- import { ChildType, CrudUtils, Utils } from 'react-crud-utils';
7
-
8
- export default function ElTabs(props: ChildType) {
9
- let scope = props.scope;
10
- let [selectedIndex, setSelectedIndex]: any = useState(0);
11
- let element = scope.original;
12
- let items = scope.getItems();
13
- let counter = 0;
14
-
15
- let tabs: any = [];
16
- let [selected, setSelected]: any = useState(null);
17
-
18
- const onChangeTab = (tab: any, validate = true) => {
19
- if (tab) {
20
- scope.execute({
21
- event: {
22
- validate,
23
- validateScope: element.validateScope,
24
- action: () => {
25
- scope.changeValue(tab.data);
26
-
27
- selected = tab;
28
- selectedIndex = tab.index;
29
-
30
- setSelectedIndex(selectedIndex);
31
- setSelected(tab);
32
- },
33
- },
34
- });
35
- }
36
- };
37
-
38
- const getStyleClass = (t: any) => {
39
- let s = 'ui-tabs-item ui-click';
40
-
41
- if (selected?.index === t.index) {
42
- s = s + ' ui-tab-selected';
43
- }
44
- return s;
45
- };
46
-
47
- const addTab = (child: any, item: any) => {
48
- let original = { ...child.props };
49
-
50
- if (!item) {
51
- item = scope.crud.data;
52
- }
53
-
54
- let crudTab = CrudUtils.create('tabs', {
55
- data: item,
56
- changed: item,
57
- parent: scope.crud,
58
- });
59
-
60
- let element = Utils.resolve(original, crudTab);
61
-
62
- if (element.rendered === false) {
63
- return;
64
- }
65
-
66
- tabs.push({
67
- ...element,
68
- child,
69
- element,
70
- original,
71
- index: counter++,
72
- data: item,
73
- });
74
- };
75
-
76
- React.Children.map(props.children, (child, index) => {
77
- if (Utils.isEmpty(items)) {
78
- addTab(child, {});
79
- } else {
80
- for (const i in items) {
81
- let o = items[i];
82
-
83
- addTab(child, o);
84
- }
85
- }
86
- });
87
-
88
- if (!selected) {
89
- onChangeTab(tabs[selectedIndex], false);
90
- }
91
-
92
- const nav = (i: any) => {
93
- let t = tabs[selectedIndex + i];
94
-
95
- onChangeTab(t);
96
- };
97
-
98
- const previous = () => {
99
- nav(-1);
100
- };
101
-
102
- const next = () => {
103
- nav(1);
104
- };
105
-
106
- let isStepper = element.layout === 'stepper';
107
-
108
- return (
109
- <div
110
- className={scope.getStyleClass('inner')}
111
- style={scope.getStyle('inner')}
112
- >
113
- <div className="ui-tabs-content">
114
- <div className="ui-tabs-items">
115
- {tabs.map((t: any, i: number) => (
116
- <div
117
- key={Utils.key(element.id, 'tab', i)}
118
- className={getStyleClass(t)}
119
- onClick={() => {
120
- onChangeTab(t);
121
- }}
122
- >
123
- {isStepper && <div className="ui-tab-item-divisor" />}
124
- <div className="ui-tab-item-inner">
125
- {isStepper && <div className="ui-step-line" />}
126
- <div className="ui-tab-item-label">
127
- {isStepper ? t.index + 1 : t.label}
128
- </div>
129
- </div>
130
- </div>
131
- ))}
132
- </div>
133
- {selected && (
134
- <>
135
- {isStepper && <div className="ui-tabs-label">{selected.label}</div>}
136
- <div className="ui-tabs-area">
137
- <UIChildren {...props} scope={scope}>
138
- {selected.child}
139
- </UIChildren>
140
- </div>
141
- {element.layout === 'stepper' && (
142
- <div className="ui-tabs-actions">
143
- <UI.Output space={6} layout="left">
144
- <UI.Include
145
- {...props}
146
- transient
147
- name="left"
148
- default={
149
- <UI.Button
150
- rendered={selectedIndex > 0}
151
- icon={<Ionicons />}
152
- click={previous}
153
- />
154
- }
155
- />
156
- </UI.Output>
157
- <UI.Output space={6} layout="right">
158
- <UI.Include
159
- {...props}
160
- transient
161
- name="right"
162
- default={
163
- <UI.Button
164
- rendered={selectedIndex < tabs.length - 1}
165
- icon={<Ionicons />}
166
- click={next}
167
- />
168
- }
169
- />
170
- </UI.Output>
171
- </div>
172
- )}
173
- </>
174
- )}
175
- </div>
176
- </div>
177
- );
178
- }
1
+ import React, { useState, useEffect } from 'react';
2
+ import UIChildren from '../UIChildren';
3
+ import UI from '../UI';
4
+
5
+ import Ionicons from '@expo/vector-icons/Ionicons';
6
+ import { ChildType, CrudUtils, Utils } from 'react-crud-utils';
7
+
8
+ export default function ElTabs(props: ChildType) {
9
+ let scope = props.scope;
10
+ let [selectedIndex, setSelectedIndex]: any = useState(0);
11
+ let element = scope.original;
12
+ let items = scope.getItems();
13
+ let counter = 0;
14
+
15
+ let tabs: any = [];
16
+ let [selected, setSelected]: any = useState(null);
17
+
18
+ const onChangeTab = (tab: any, validate = true) => {
19
+ if (tab) {
20
+ scope.execute({
21
+ event: {
22
+ validate,
23
+ validateScope: element.validateScope,
24
+ action: () => {
25
+ scope.changeValue(tab.data);
26
+
27
+ selected = tab;
28
+ selectedIndex = tab.index;
29
+
30
+ setSelectedIndex(selectedIndex);
31
+ setSelected(tab);
32
+ },
33
+ },
34
+ });
35
+ }
36
+ };
37
+
38
+ const getStyleClass = (t: any) => {
39
+ let s = 'ui-tabs-item ui-click';
40
+
41
+ if (selected?.index === t.index) {
42
+ s = s + ' ui-tab-selected';
43
+ }
44
+ return s;
45
+ };
46
+
47
+ const addTab = (child: any, item: any) => {
48
+ let original = { ...child.props };
49
+
50
+ if (!item) {
51
+ item = scope.crud.data;
52
+ }
53
+
54
+ let crudTab = CrudUtils.create('tabs', {
55
+ data: item,
56
+ changed: item,
57
+ parent: scope.crud,
58
+ });
59
+
60
+ let element = Utils.resolve(original, crudTab);
61
+
62
+ if (element.rendered === false) {
63
+ return;
64
+ }
65
+
66
+ tabs.push({
67
+ ...element,
68
+ child,
69
+ element,
70
+ original,
71
+ index: counter++,
72
+ data: item,
73
+ });
74
+ };
75
+
76
+ React.Children.map(props.children, (child, index) => {
77
+ if (Utils.isEmpty(items)) {
78
+ addTab(child, {});
79
+ } else {
80
+ for (const i in items) {
81
+ let o = items[i];
82
+
83
+ addTab(child, o);
84
+ }
85
+ }
86
+ });
87
+
88
+ if (!selected) {
89
+ onChangeTab(tabs[selectedIndex], false);
90
+ }
91
+
92
+ const nav = (i: any) => {
93
+ let t = tabs[selectedIndex + i];
94
+
95
+ onChangeTab(t);
96
+ };
97
+
98
+ const previous = () => {
99
+ nav(-1);
100
+ };
101
+
102
+ const next = () => {
103
+ nav(1);
104
+ };
105
+
106
+ let isStepper = element.layout === 'stepper';
107
+
108
+ return (
109
+ <div
110
+ className={scope.getStyleClass('inner')}
111
+ style={scope.getStyle('inner')}
112
+ >
113
+ <div className="ui-tabs-content">
114
+ <div className="ui-tabs-items">
115
+ {tabs.map((t: any, i: number) => (
116
+ <div
117
+ key={Utils.key(element.id, 'tab', i)}
118
+ className={getStyleClass(t)}
119
+ onClick={() => {
120
+ onChangeTab(t);
121
+ }}
122
+ >
123
+ {isStepper && <div className="ui-tab-item-divisor" />}
124
+ <div className="ui-tab-item-inner">
125
+ {isStepper && <div className="ui-step-line" />}
126
+ <div className="ui-tab-item-label">
127
+ {isStepper ? t.index + 1 : t.label}
128
+ </div>
129
+ </div>
130
+ </div>
131
+ ))}
132
+ </div>
133
+ {selected && (
134
+ <>
135
+ {isStepper && <div className="ui-tabs-label">{selected.label}</div>}
136
+ <div className="ui-tabs-area">
137
+ <UIChildren {...props} scope={scope}>
138
+ {selected.child}
139
+ </UIChildren>
140
+ </div>
141
+ {element.layout === 'stepper' && (
142
+ <div className="ui-tabs-actions">
143
+ <UI.Output space={6} layout="left">
144
+ <UI.Include
145
+ {...props}
146
+ transient
147
+ name="left"
148
+ default={
149
+ <UI.Button
150
+ rendered={selectedIndex > 0}
151
+ icon={<Ionicons />}
152
+ click={previous}
153
+ />
154
+ }
155
+ />
156
+ </UI.Output>
157
+ <UI.Output space={6} layout="right">
158
+ <UI.Include
159
+ {...props}
160
+ transient
161
+ name="right"
162
+ default={
163
+ <UI.Button
164
+ rendered={selectedIndex < tabs.length - 1}
165
+ icon={<Ionicons />}
166
+ click={next}
167
+ />
168
+ }
169
+ />
170
+ </UI.Output>
171
+ </div>
172
+ )}
173
+ </>
174
+ )}
175
+ </div>
176
+ </div>
177
+ );
178
+ }
package/src/index.ts CHANGED
@@ -1 +1 @@
1
- export * from './elements';
1
+ export * from './elements';