react-crud-mobile 1.0.242 → 1.0.244

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,85 +1,91 @@
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 onClick = (item: any) => {
14
- scope.changeValue(item.object);
15
- setIndex(++index);
16
- };
17
-
18
- const Item = ({ item, index }) => {
19
- if (Utils.isEmpty(props.children)) {
20
- return <Text>{item.label}</Text>;
21
- }
22
-
23
- return (
24
- <UIListRow scope={scope} item={item.object} index={index}>
25
- {props.children}
26
- </UIListRow>
27
- );
28
- };
29
-
30
- const getItemStyle = (item: any) => {
31
- let style = { ...styles.item, ...scope.getStyle('item') };
32
-
33
- if (item?.value === value) {
34
- style = { ...style, ...scope.getStyle('selected') };
35
-
36
- style.backgroundColor = scope.getPart(
37
- 'selectedColor',
38
- undefined,
39
- '#55a46f'
40
- );
41
- }
42
-
43
- return style;
44
- };
45
-
46
- return (
47
- <>
48
- <View style={styles.container}>
49
- {options.map((item: any, i: number) => (
50
- <TouchableHighlight
51
- key={`k-${i}`}
52
- style={getItemStyle(item)}
53
- onPress={e => {
54
- onClick(item);
55
- }}
56
- >
57
- <Item item={item} index={i} />
58
- </TouchableHighlight>
59
- ))}
60
- </View>
61
- </>
62
- );
63
- }
64
-
65
- const styles = StyleSheet.create({
66
- container: {
67
- flex: 1,
68
- width: '100%',
69
- gap: 10,
70
- justifyContent: 'center',
71
- flexDirection: 'row',
72
- },
73
- item: {
74
- padding: 15,
75
- marginVertical: 8,
76
- backgroundColor: '#f5f5f5',
77
- borderRadius: 8,
78
- width: 'auto',
79
- flexDirection: 'row',
80
- },
81
- text: {
82
- fontSize: 18,
83
- fontWeight: 'bold',
84
- },
85
- });
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 onClick = (item: any) => {
14
+ scope.changeValue(item.object);
15
+ setIndex(++index);
16
+ };
17
+
18
+ const Item = ({ item, index }) => {
19
+ if (Utils.isEmpty(props.children)) {
20
+ return <Text>{item.label}</Text>;
21
+ }
22
+
23
+ return (
24
+ <UIListRow scope={scope} item={item.object} index={index}>
25
+ {props.children}
26
+ </UIListRow>
27
+ );
28
+ };
29
+
30
+ const getItemStyle = (item: any) => {
31
+ let style = { ...styles.item, ...scope.getStyle('item') };
32
+
33
+ if (item?.value === value) {
34
+ let st = scope.getStyle('selected');
35
+
36
+ style = { ...style, ...st };
37
+
38
+ style.backgroundColor = scope.getPart(
39
+ 'selectedColor',
40
+ undefined,
41
+ '#55a46f'
42
+ );
43
+
44
+ if (!st.color) {
45
+ st.color = '#ffffff';
46
+ }
47
+ }
48
+
49
+ return style;
50
+ };
51
+
52
+ return (
53
+ <>
54
+ <View style={styles.container}>
55
+ {options.map((item: any, i: number) => (
56
+ <TouchableHighlight
57
+ key={`k-${i}`}
58
+ style={getItemStyle(item)}
59
+ onPress={e => {
60
+ onClick(item);
61
+ }}
62
+ >
63
+ <Item item={item} index={i} />
64
+ </TouchableHighlight>
65
+ ))}
66
+ </View>
67
+ </>
68
+ );
69
+ }
70
+
71
+ const styles = StyleSheet.create({
72
+ container: {
73
+ flex: 1,
74
+ width: '100%',
75
+ gap: 10,
76
+ justifyContent: 'center',
77
+ flexDirection: 'row',
78
+ },
79
+ item: {
80
+ padding: 15,
81
+ marginVertical: 8,
82
+ backgroundColor: '#f5f5f5',
83
+ borderRadius: 8,
84
+ width: 'auto',
85
+ flexDirection: 'row',
86
+ },
87
+ text: {
88
+ fontSize: 18,
89
+ fontWeight: 'bold',
90
+ },
91
+ });
@@ -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";