react-crud-mobile 1.0.475 → 1.0.477
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/react-crud-mobile.cjs.development.js.map +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js.map +1 -1
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +73 -73
- package/src/elements/UI.tsx +65 -65
- package/src/elements/UIChildren.tsx +127 -127
- package/src/elements/UIComplete.tsx +14 -14
- package/src/elements/UIElement.tsx +548 -548
- package/src/elements/UITag.tsx +13 -13
- package/src/elements/charts/ElChart.tsx +10 -10
- package/src/elements/core/UIAutoComplete.tsx +17 -17
- package/src/elements/core/UIButton.tsx +85 -85
- package/src/elements/core/UIIcon.tsx +8 -8
- package/src/elements/core/UIInclude.tsx +40 -40
- package/src/elements/core/UIInput.tsx +69 -69
- package/src/elements/core/UILink.tsx +17 -17
- package/src/elements/core/UIList.tsx +162 -162
- package/src/elements/core/UIListItem.tsx +32 -32
- package/src/elements/core/UIListRow.tsx +32 -32
- package/src/elements/core/UIModal.tsx +134 -134
- package/src/elements/core/UIOption.tsx +17 -17
- package/src/elements/core/UIQuantity.tsx +97 -97
- package/src/elements/core/UIRadio.tsx +17 -17
- package/src/elements/core/UISelect.tsx +122 -122
- package/src/elements/core/UISwitch.tsx +26 -26
- package/src/elements/core/UIToggle.tsx +102 -102
- package/src/elements/core/UIView.tsx +70 -70
- package/src/elements/index.ts +1 -1
- package/src/elements/tabs/ElTabs.tsx +178 -178
- package/src/index.ts +1 -1
|
@@ -1,122 +1,122 @@
|
|
|
1
|
-
import { useState } from 'react';
|
|
2
|
-
import { ChildType, MethodType, useTheme, Utils } from 'react-crud-utils';
|
|
3
|
-
import {
|
|
4
|
-
Text,
|
|
5
|
-
TouchableOpacity,
|
|
6
|
-
StyleSheet,
|
|
7
|
-
Modal,
|
|
8
|
-
View,
|
|
9
|
-
StatusBar,
|
|
10
|
-
SafeAreaView,
|
|
11
|
-
} from 'react-native';
|
|
12
|
-
import Icon from 'react-native-vector-icons/FontAwesome';
|
|
13
|
-
import UI from '../UI';
|
|
14
|
-
|
|
15
|
-
export default function UISelect(props: ChildType) {
|
|
16
|
-
const [modalVisible, setModalVisible] = useState(false);
|
|
17
|
-
const scope = props.scope;
|
|
18
|
-
const items = Utils.nvl(scope.getOptions(), []);
|
|
19
|
-
const placeholder = scope.attr('placeholder', 'Selecione...');
|
|
20
|
-
const value = scope.getDisplayValue();
|
|
21
|
-
const theme = useTheme();
|
|
22
|
-
|
|
23
|
-
const handlePress = () => {
|
|
24
|
-
setModalVisible(!modalVisible);
|
|
25
|
-
};
|
|
26
|
-
|
|
27
|
-
const onClick = ({ crud, value }: MethodType) => {
|
|
28
|
-
scope.changeValue(value);
|
|
29
|
-
handlePress();
|
|
30
|
-
};
|
|
31
|
-
|
|
32
|
-
const style = (part: string, extra?: any) => {
|
|
33
|
-
return { ...styles[part], ...scope.getStyle(part), ...extra };
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
return (
|
|
37
|
-
<View style={style('selectRoot')}>
|
|
38
|
-
<TouchableOpacity onPress={handlePress} style={style('selectInput')}>
|
|
39
|
-
<Text style={style('selectLabel')}>
|
|
40
|
-
{Utils.nvl(value, placeholder)}
|
|
41
|
-
</Text>
|
|
42
|
-
<Icon name="angle-down" size={20} color="#888" />
|
|
43
|
-
</TouchableOpacity>
|
|
44
|
-
<Modal
|
|
45
|
-
animationType="slide"
|
|
46
|
-
transparent={true}
|
|
47
|
-
visible={modalVisible}
|
|
48
|
-
onRequestClose={() => setModalVisible(false)}
|
|
49
|
-
>
|
|
50
|
-
<StatusBar
|
|
51
|
-
barStyle="dark-content"
|
|
52
|
-
backgroundColor={theme.colors.primary}
|
|
53
|
-
/>
|
|
54
|
-
<SafeAreaView style={style('modalSafe')}>
|
|
55
|
-
<View style={style('modalHeader')}>
|
|
56
|
-
<TouchableOpacity
|
|
57
|
-
onPress={() => setModalVisible(false)}
|
|
58
|
-
style={style('modalCloseButton')}
|
|
59
|
-
>
|
|
60
|
-
<Text style={style('modalCloseText')}>X</Text>
|
|
61
|
-
</TouchableOpacity>
|
|
62
|
-
<Text style={style('modalTitle')}>{placeholder}</Text>
|
|
63
|
-
</View>
|
|
64
|
-
<View style={style('modalContent')}>
|
|
65
|
-
<UI.List data={items} name={scope.getName('list')} click={onClick}>
|
|
66
|
-
<UI.Value value="#{@this.label}" />
|
|
67
|
-
</UI.List>
|
|
68
|
-
</View>
|
|
69
|
-
</SafeAreaView>
|
|
70
|
-
</Modal>
|
|
71
|
-
</View>
|
|
72
|
-
);
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
const styles = StyleSheet.create({
|
|
76
|
-
selectRoot: {
|
|
77
|
-
justifyContent: 'flex-start',
|
|
78
|
-
alignItems: 'flex-start',
|
|
79
|
-
},
|
|
80
|
-
selectInput: {
|
|
81
|
-
width: '100%',
|
|
82
|
-
flexDirection: 'row',
|
|
83
|
-
borderWidth: 1,
|
|
84
|
-
borderColor: '#a9a9a9',
|
|
85
|
-
borderRadius: 20,
|
|
86
|
-
paddingHorizontal: 15,
|
|
87
|
-
paddingVertical: 10,
|
|
88
|
-
},
|
|
89
|
-
selectLabel: { flex: 1 },
|
|
90
|
-
modalSafe: {
|
|
91
|
-
flex: 1,
|
|
92
|
-
backgroundColor: '#f5f5f5',
|
|
93
|
-
paddingTop: StatusBar.currentHeight || 0, // Considera a altura da barra de status no Android
|
|
94
|
-
},
|
|
95
|
-
modalHeader: {
|
|
96
|
-
flexDirection: 'row',
|
|
97
|
-
alignItems: 'center',
|
|
98
|
-
padding: 15,
|
|
99
|
-
backgroundColor: '#6200ea',
|
|
100
|
-
},
|
|
101
|
-
modalCloseButton: {
|
|
102
|
-
padding: 10,
|
|
103
|
-
},
|
|
104
|
-
modalCloseText: {
|
|
105
|
-
fontSize: 18,
|
|
106
|
-
color: 'white',
|
|
107
|
-
},
|
|
108
|
-
modalTitle: {
|
|
109
|
-
fontSize: 18,
|
|
110
|
-
color: 'white',
|
|
111
|
-
fontWeight: 'bold',
|
|
112
|
-
marginLeft: 10,
|
|
113
|
-
},
|
|
114
|
-
modalContent: {
|
|
115
|
-
flex: 1,
|
|
116
|
-
width: '100%',
|
|
117
|
-
alignSelf: 'flex-start',
|
|
118
|
-
flexDirection: 'row',
|
|
119
|
-
flexWrap: 'wrap',
|
|
120
|
-
padding: 20,
|
|
121
|
-
},
|
|
122
|
-
});
|
|
1
|
+
import { useState } from 'react';
|
|
2
|
+
import { ChildType, MethodType, useTheme, Utils } from 'react-crud-utils';
|
|
3
|
+
import {
|
|
4
|
+
Text,
|
|
5
|
+
TouchableOpacity,
|
|
6
|
+
StyleSheet,
|
|
7
|
+
Modal,
|
|
8
|
+
View,
|
|
9
|
+
StatusBar,
|
|
10
|
+
SafeAreaView,
|
|
11
|
+
} from 'react-native';
|
|
12
|
+
import Icon from 'react-native-vector-icons/FontAwesome';
|
|
13
|
+
import UI from '../UI';
|
|
14
|
+
|
|
15
|
+
export default function UISelect(props: ChildType) {
|
|
16
|
+
const [modalVisible, setModalVisible] = useState(false);
|
|
17
|
+
const scope = props.scope;
|
|
18
|
+
const items = Utils.nvl(scope.getOptions(), []);
|
|
19
|
+
const placeholder = scope.attr('placeholder', 'Selecione...');
|
|
20
|
+
const value = scope.getDisplayValue();
|
|
21
|
+
const theme = useTheme();
|
|
22
|
+
|
|
23
|
+
const handlePress = () => {
|
|
24
|
+
setModalVisible(!modalVisible);
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
const onClick = ({ crud, value }: MethodType) => {
|
|
28
|
+
scope.changeValue(value);
|
|
29
|
+
handlePress();
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
const style = (part: string, extra?: any) => {
|
|
33
|
+
return { ...styles[part], ...scope.getStyle(part), ...extra };
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
return (
|
|
37
|
+
<View style={style('selectRoot')}>
|
|
38
|
+
<TouchableOpacity onPress={handlePress} style={style('selectInput')}>
|
|
39
|
+
<Text style={style('selectLabel')}>
|
|
40
|
+
{Utils.nvl(value, placeholder)}
|
|
41
|
+
</Text>
|
|
42
|
+
<Icon name="angle-down" size={20} color="#888" />
|
|
43
|
+
</TouchableOpacity>
|
|
44
|
+
<Modal
|
|
45
|
+
animationType="slide"
|
|
46
|
+
transparent={true}
|
|
47
|
+
visible={modalVisible}
|
|
48
|
+
onRequestClose={() => setModalVisible(false)}
|
|
49
|
+
>
|
|
50
|
+
<StatusBar
|
|
51
|
+
barStyle="dark-content"
|
|
52
|
+
backgroundColor={theme.colors.primary}
|
|
53
|
+
/>
|
|
54
|
+
<SafeAreaView style={style('modalSafe')}>
|
|
55
|
+
<View style={style('modalHeader')}>
|
|
56
|
+
<TouchableOpacity
|
|
57
|
+
onPress={() => setModalVisible(false)}
|
|
58
|
+
style={style('modalCloseButton')}
|
|
59
|
+
>
|
|
60
|
+
<Text style={style('modalCloseText')}>X</Text>
|
|
61
|
+
</TouchableOpacity>
|
|
62
|
+
<Text style={style('modalTitle')}>{placeholder}</Text>
|
|
63
|
+
</View>
|
|
64
|
+
<View style={style('modalContent')}>
|
|
65
|
+
<UI.List data={items} name={scope.getName('list')} click={onClick}>
|
|
66
|
+
<UI.Value value="#{@this.label}" />
|
|
67
|
+
</UI.List>
|
|
68
|
+
</View>
|
|
69
|
+
</SafeAreaView>
|
|
70
|
+
</Modal>
|
|
71
|
+
</View>
|
|
72
|
+
);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
const styles = StyleSheet.create({
|
|
76
|
+
selectRoot: {
|
|
77
|
+
justifyContent: 'flex-start',
|
|
78
|
+
alignItems: 'flex-start',
|
|
79
|
+
},
|
|
80
|
+
selectInput: {
|
|
81
|
+
width: '100%',
|
|
82
|
+
flexDirection: 'row',
|
|
83
|
+
borderWidth: 1,
|
|
84
|
+
borderColor: '#a9a9a9',
|
|
85
|
+
borderRadius: 20,
|
|
86
|
+
paddingHorizontal: 15,
|
|
87
|
+
paddingVertical: 10,
|
|
88
|
+
},
|
|
89
|
+
selectLabel: { flex: 1 },
|
|
90
|
+
modalSafe: {
|
|
91
|
+
flex: 1,
|
|
92
|
+
backgroundColor: '#f5f5f5',
|
|
93
|
+
paddingTop: StatusBar.currentHeight || 0, // Considera a altura da barra de status no Android
|
|
94
|
+
},
|
|
95
|
+
modalHeader: {
|
|
96
|
+
flexDirection: 'row',
|
|
97
|
+
alignItems: 'center',
|
|
98
|
+
padding: 15,
|
|
99
|
+
backgroundColor: '#6200ea',
|
|
100
|
+
},
|
|
101
|
+
modalCloseButton: {
|
|
102
|
+
padding: 10,
|
|
103
|
+
},
|
|
104
|
+
modalCloseText: {
|
|
105
|
+
fontSize: 18,
|
|
106
|
+
color: 'white',
|
|
107
|
+
},
|
|
108
|
+
modalTitle: {
|
|
109
|
+
fontSize: 18,
|
|
110
|
+
color: 'white',
|
|
111
|
+
fontWeight: 'bold',
|
|
112
|
+
marginLeft: 10,
|
|
113
|
+
},
|
|
114
|
+
modalContent: {
|
|
115
|
+
flex: 1,
|
|
116
|
+
width: '100%',
|
|
117
|
+
alignSelf: 'flex-start',
|
|
118
|
+
flexDirection: 'row',
|
|
119
|
+
flexWrap: 'wrap',
|
|
120
|
+
padding: 20,
|
|
121
|
+
},
|
|
122
|
+
});
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import { useState } from 'react';
|
|
2
|
-
import { ChildType, Utils } from 'react-crud-utils';
|
|
3
|
-
import { Switch } from 'react-native';
|
|
4
|
-
|
|
5
|
-
export default function UISwitch(props: ChildType) {
|
|
6
|
-
const scope = props.scope;
|
|
7
|
-
const initial = Utils.nvl(scope.getValue(), false) as boolean;
|
|
8
|
-
const [value, setValue] = useState(initial);
|
|
9
|
-
|
|
10
|
-
let onChange = v => {
|
|
11
|
-
scope.changeValue(v);
|
|
12
|
-
|
|
13
|
-
setValue(v);
|
|
14
|
-
};
|
|
15
|
-
|
|
16
|
-
return (
|
|
17
|
-
<Switch
|
|
18
|
-
value={value}
|
|
19
|
-
onValueChange={onChange} // Alterna o estado
|
|
20
|
-
/>
|
|
21
|
-
);
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
const styles = {
|
|
25
|
-
link: {},
|
|
26
|
-
};
|
|
1
|
+
import { useState } from 'react';
|
|
2
|
+
import { ChildType, Utils } from 'react-crud-utils';
|
|
3
|
+
import { Switch } from 'react-native';
|
|
4
|
+
|
|
5
|
+
export default function UISwitch(props: ChildType) {
|
|
6
|
+
const scope = props.scope;
|
|
7
|
+
const initial = Utils.nvl(scope.getValue(), false) as boolean;
|
|
8
|
+
const [value, setValue] = useState(initial);
|
|
9
|
+
|
|
10
|
+
let onChange = v => {
|
|
11
|
+
scope.changeValue(v);
|
|
12
|
+
|
|
13
|
+
setValue(v);
|
|
14
|
+
};
|
|
15
|
+
|
|
16
|
+
return (
|
|
17
|
+
<Switch
|
|
18
|
+
value={value}
|
|
19
|
+
onValueChange={onChange} // Alterna o estado
|
|
20
|
+
/>
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
const styles = {
|
|
25
|
+
link: {},
|
|
26
|
+
};
|
|
@@ -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,70 +1,70 @@
|
|
|
1
|
-
import {
|
|
2
|
-
Keyboard,
|
|
3
|
-
KeyboardAvoidingView,
|
|
4
|
-
Platform,
|
|
5
|
-
ScrollView,
|
|
6
|
-
StyleSheet,
|
|
7
|
-
TouchableWithoutFeedback,
|
|
8
|
-
View,
|
|
9
|
-
} from 'react-native';
|
|
10
|
-
import {
|
|
11
|
-
SafeAreaProvider,
|
|
12
|
-
SafeAreaView as SafeAreaContextView,
|
|
13
|
-
} from 'react-native-safe-area-context';
|
|
14
|
-
|
|
15
|
-
import UIChildren from '../UIChildren';
|
|
16
|
-
import { ChildType, useTheme } from 'react-crud-utils';
|
|
17
|
-
import { useEffect } from 'react';
|
|
18
|
-
import { StatusBar } from 'react-native';
|
|
19
|
-
|
|
20
|
-
export default function UIView({ scope, children }: ChildType) {
|
|
21
|
-
const theme = useTheme();
|
|
22
|
-
const header = scope.getPart('header', null, []);
|
|
23
|
-
const dismissKeyboard = () => {
|
|
24
|
-
if (Platform.OS !== 'web') {
|
|
25
|
-
Keyboard.dismiss();
|
|
26
|
-
}
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
useEffect(() => {
|
|
30
|
-
StatusBar.setBarStyle('light-content');
|
|
31
|
-
StatusBar.setBackgroundColor?.(theme.colors.primary);
|
|
32
|
-
}, []);
|
|
33
|
-
return (
|
|
34
|
-
<SafeAreaProvider>
|
|
35
|
-
<SafeAreaContextView style={scope.getStyle('view', styles.view)}>
|
|
36
|
-
<StatusBar barStyle="light-content" />
|
|
37
|
-
|
|
38
|
-
<KeyboardAvoidingView
|
|
39
|
-
behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
|
|
40
|
-
style={{
|
|
41
|
-
flex: 1, // 🔹 Ocupa 100% da tela
|
|
42
|
-
justifyContent: 'center',
|
|
43
|
-
}}
|
|
44
|
-
>
|
|
45
|
-
{header}
|
|
46
|
-
<View style={scope.getStyle('container', styles.container)}>
|
|
47
|
-
<ScrollView
|
|
48
|
-
keyboardShouldPersistTaps="handled"
|
|
49
|
-
style={scope.getStyle('scroll', styles.scroll)}
|
|
50
|
-
>
|
|
51
|
-
<UIChildren scope={scope}>{children}</UIChildren>
|
|
52
|
-
</ScrollView>
|
|
53
|
-
</View>
|
|
54
|
-
</KeyboardAvoidingView>
|
|
55
|
-
</SafeAreaContextView>
|
|
56
|
-
</SafeAreaProvider>
|
|
57
|
-
);
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
const styles = StyleSheet.create({
|
|
61
|
-
scroll: {
|
|
62
|
-
padding: 10,
|
|
63
|
-
},
|
|
64
|
-
container: {
|
|
65
|
-
backgroundColor: 'primary',
|
|
66
|
-
},
|
|
67
|
-
view: {
|
|
68
|
-
backgroundColor: 'primary',
|
|
69
|
-
},
|
|
70
|
-
});
|
|
1
|
+
import {
|
|
2
|
+
Keyboard,
|
|
3
|
+
KeyboardAvoidingView,
|
|
4
|
+
Platform,
|
|
5
|
+
ScrollView,
|
|
6
|
+
StyleSheet,
|
|
7
|
+
TouchableWithoutFeedback,
|
|
8
|
+
View,
|
|
9
|
+
} from 'react-native';
|
|
10
|
+
import {
|
|
11
|
+
SafeAreaProvider,
|
|
12
|
+
SafeAreaView as SafeAreaContextView,
|
|
13
|
+
} from 'react-native-safe-area-context';
|
|
14
|
+
|
|
15
|
+
import UIChildren from '../UIChildren';
|
|
16
|
+
import { ChildType, useTheme } from 'react-crud-utils';
|
|
17
|
+
import { useEffect } from 'react';
|
|
18
|
+
import { StatusBar } from 'react-native';
|
|
19
|
+
|
|
20
|
+
export default function UIView({ scope, children }: ChildType) {
|
|
21
|
+
const theme = useTheme();
|
|
22
|
+
const header = scope.getPart('header', null, []);
|
|
23
|
+
const dismissKeyboard = () => {
|
|
24
|
+
if (Platform.OS !== 'web') {
|
|
25
|
+
Keyboard.dismiss();
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
useEffect(() => {
|
|
30
|
+
StatusBar.setBarStyle('light-content');
|
|
31
|
+
StatusBar.setBackgroundColor?.(theme.colors.primary);
|
|
32
|
+
}, []);
|
|
33
|
+
return (
|
|
34
|
+
<SafeAreaProvider>
|
|
35
|
+
<SafeAreaContextView style={scope.getStyle('view', styles.view)}>
|
|
36
|
+
<StatusBar barStyle="light-content" />
|
|
37
|
+
|
|
38
|
+
<KeyboardAvoidingView
|
|
39
|
+
behavior={Platform.OS === 'ios' ? 'padding' : 'height'}
|
|
40
|
+
style={{
|
|
41
|
+
flex: 1, // 🔹 Ocupa 100% da tela
|
|
42
|
+
justifyContent: 'center',
|
|
43
|
+
}}
|
|
44
|
+
>
|
|
45
|
+
{header}
|
|
46
|
+
<View style={scope.getStyle('container', styles.container)}>
|
|
47
|
+
<ScrollView
|
|
48
|
+
keyboardShouldPersistTaps="handled"
|
|
49
|
+
style={scope.getStyle('scroll', styles.scroll)}
|
|
50
|
+
>
|
|
51
|
+
<UIChildren scope={scope}>{children}</UIChildren>
|
|
52
|
+
</ScrollView>
|
|
53
|
+
</View>
|
|
54
|
+
</KeyboardAvoidingView>
|
|
55
|
+
</SafeAreaContextView>
|
|
56
|
+
</SafeAreaProvider>
|
|
57
|
+
);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
const styles = StyleSheet.create({
|
|
61
|
+
scroll: {
|
|
62
|
+
padding: 10,
|
|
63
|
+
},
|
|
64
|
+
container: {
|
|
65
|
+
backgroundColor: 'primary',
|
|
66
|
+
},
|
|
67
|
+
view: {
|
|
68
|
+
backgroundColor: 'primary',
|
|
69
|
+
},
|
|
70
|
+
});
|
package/src/elements/index.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as UI } from "./UI";
|
|
1
|
+
export { default as UI } from "./UI";
|