fln-espranza 0.0.22 → 0.0.23

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 (83) hide show
  1. package/.expo/README.md +15 -15
  2. package/.expo/settings.json +8 -8
  3. package/assets/images/bg-profile.jpg +0 -0
  4. package/components/Avatar.tsx +43 -43
  5. package/components/BaseLayout.tsx +174 -174
  6. package/components/Drawer.tsx +98 -98
  7. package/components/EBadge.tsx +23 -23
  8. package/components/EButton.tsx +71 -71
  9. package/components/EDateAndTimeCard.tsx +51 -51
  10. package/components/EDateInput.tsx +55 -55
  11. package/components/EEmptyPlaceholder.tsx +21 -21
  12. package/components/EErrorText.tsx +19 -19
  13. package/components/EInfoBox.tsx +41 -41
  14. package/components/EInput.tsx +52 -52
  15. package/components/ELabel.tsx +15 -15
  16. package/components/EListPerson.tsx +48 -48
  17. package/components/EListSchool.tsx +35 -35
  18. package/components/EOption.tsx +85 -85
  19. package/components/EOtpInputBox.tsx +49 -49
  20. package/components/EPageDescription.tsx +19 -19
  21. package/components/EPillButton.tsx +33 -33
  22. package/components/EProfile.tsx +62 -62
  23. package/components/EProgressBar.tsx +33 -33
  24. package/components/EQuestionSerialNumberLabel.tsx +17 -17
  25. package/components/EQuestionText.tsx +14 -14
  26. package/components/ESegment.tsx +36 -36
  27. package/components/EText.tsx +41 -41
  28. package/components/ETimeInput.tsx +55 -55
  29. package/components/ETimeLineCard.tsx +69 -69
  30. package/components/ListFormView.tsx +36 -36
  31. package/components/Loader.tsx +31 -31
  32. package/components/MenuItems.tsx +46 -46
  33. package/components/PageHeader.tsx +116 -115
  34. package/components/ProfileHeader.tsx +85 -0
  35. package/components/ProfileScreenLayout.tsx +110 -0
  36. package/components/SecondaryBaseLayout.tsx +102 -102
  37. package/components/Timer.tsx +56 -56
  38. package/components/icons/EIconAdd.jsx +19 -19
  39. package/components/icons/EIconAddCircle.jsx +21 -21
  40. package/components/icons/EIconApplicationStatus.jsx +20 -20
  41. package/components/icons/EIconArrowDown.jsx +20 -20
  42. package/components/icons/EIconArrowLeft.jsx +21 -21
  43. package/components/icons/EIconArrowRight.jsx +21 -21
  44. package/components/icons/EIconArrowUp.jsx +20 -20
  45. package/components/icons/EIconBadge.jsx +20 -20
  46. package/components/icons/EIconBell.jsx +19 -19
  47. package/components/icons/EIconCalendar.jsx +21 -21
  48. package/components/icons/EIconCalendarCheck.jsx +24 -24
  49. package/components/icons/EIconCamera.jsx +20 -20
  50. package/components/icons/EIconCameraRotate.jsx +23 -23
  51. package/components/icons/EIconCheck.jsx +19 -19
  52. package/components/icons/EIconCheckCircle.jsx +20 -20
  53. package/components/icons/EIconCheckFill.jsx +19 -19
  54. package/components/icons/EIconChevronDown.jsx +19 -19
  55. package/components/icons/EIconChevronLeft.jsx +19 -19
  56. package/components/icons/EIconChevronRight.jsx +19 -19
  57. package/components/icons/EIconChevronUp.jsx +19 -19
  58. package/components/icons/EIconClock.jsx +19 -19
  59. package/components/icons/EIconClose.jsx +19 -19
  60. package/components/icons/EIconDashboard.jsx +20 -20
  61. package/components/icons/EIconEdit.jsx +19 -19
  62. package/components/icons/EIconFile.jsx +21 -21
  63. package/components/icons/EIconInfo.jsx +20 -20
  64. package/components/icons/EIconLogout.jsx +19 -19
  65. package/components/icons/EIconMenu.jsx +19 -19
  66. package/components/icons/EIconMinus.jsx +19 -19
  67. package/components/icons/EIconPin.jsx +19 -19
  68. package/components/icons/EIconProfile.jsx +19 -19
  69. package/components/icons/EIconSchool.jsx +24 -24
  70. package/components/icons/EIconSearch.jsx +19 -19
  71. package/components/icons/EIconSettings.jsx +20 -20
  72. package/components/icons/EIconShare.jsx +21 -21
  73. package/components/icons/EIconStudent.jsx +23 -23
  74. package/components/icons/EIconSubject.jsx +21 -21
  75. package/components/icons/EIconTeach.jsx +21 -21
  76. package/components/icons/EIconTrash.jsx +19 -19
  77. package/components/icons/EIconUserCard.jsx +19 -19
  78. package/components/icons/EIconUserCheck.jsx +20 -20
  79. package/components/icons/EIconUsers.jsx +19 -19
  80. package/components/index.tsx +65 -65
  81. package/index.ts +172 -172
  82. package/package.json +26 -26
  83. package/utils/Color.ts +14 -14
@@ -1,19 +1,19 @@
1
- import React from 'react';
2
- import { View } from 'react-native';
3
- import tw from '../lib/tailwind';
4
- import EText from './EText';
5
-
6
-
7
- interface IProps {
8
- error: string;
9
- }
10
-
11
- export default function EErrorText( { error }: IProps ) {
12
- return (
13
- <View>
14
- <EText size={"xs"} style={tw`text-red-500`}>
15
- {error}
16
- </EText>
17
- </View>
18
- )
19
- }
1
+ import React from 'react';
2
+ import { View } from 'react-native';
3
+ import tw from '../lib/tailwind';
4
+ import EText from './EText';
5
+
6
+
7
+ interface IProps {
8
+ error: string;
9
+ }
10
+
11
+ export default function EErrorText( { error }: IProps ) {
12
+ return (
13
+ <View>
14
+ <EText size={"xs"} style={tw`text-red-500`}>
15
+ {error}
16
+ </EText>
17
+ </View>
18
+ )
19
+ }
@@ -1,41 +1,41 @@
1
- import { View, Text } from "react-native";
2
- import React from "react";
3
- import tw from "../lib/tailwind";
4
- import EText from "./EText";
5
- import { Style } from "twrnc/dist/esm/types";
6
-
7
- interface InfoBoxProps {
8
- title?: string;
9
- icon: JSX.Element;
10
- children: string;
11
- color?: string;
12
- style?: Style;
13
- childTextColor?: string;
14
- }
15
-
16
- export default function InfoBox({
17
- title,
18
- icon,
19
- color,
20
- children,
21
- style,
22
- childTextColor,
23
- }: InfoBoxProps) {
24
- return (
25
- <View style={[tw.style("rounded-lg bg-orange-500/10 p-3"), style]}>
26
- <View style={tw`flex-row`}>
27
- <View style={tw`w-5 h-5 mr-1`}>{icon}</View>
28
- <View style={tw`flex-1`}>
29
- {title ? (
30
- <EText size="sm" style={tw`font-semibold mb-1 text-${color ? color : "white"}`}>
31
- {title}
32
- </EText>
33
- ) : null}
34
- <EText size="xs" style={[tw`opacity-60`, {color: childTextColor}]}>
35
- {children}
36
- </EText>
37
- </View>
38
- </View>
39
- </View>
40
- );
41
- }
1
+ import { View, Text } from "react-native";
2
+ import React from "react";
3
+ import tw from "../lib/tailwind";
4
+ import EText from "./EText";
5
+ import { Style } from "twrnc/dist/esm/types";
6
+
7
+ interface InfoBoxProps {
8
+ title?: string;
9
+ icon: JSX.Element;
10
+ children: string;
11
+ color?: string;
12
+ style?: Style;
13
+ childTextColor?: string;
14
+ }
15
+
16
+ export default function InfoBox({
17
+ title,
18
+ icon,
19
+ color,
20
+ children,
21
+ style,
22
+ childTextColor,
23
+ }: InfoBoxProps) {
24
+ return (
25
+ <View style={[tw.style("rounded-lg bg-orange-500/10 p-3"), style]}>
26
+ <View style={tw`flex-row`}>
27
+ <View style={tw`w-5 h-5 mr-1`}>{icon}</View>
28
+ <View style={tw`flex-1`}>
29
+ {title ? (
30
+ <EText size="sm" style={tw`font-semibold mb-1 text-${color ? color : "white"}`}>
31
+ {title}
32
+ </EText>
33
+ ) : null}
34
+ <EText size="xs" style={[tw`opacity-60`, {color: childTextColor}]}>
35
+ {children}
36
+ </EText>
37
+ </View>
38
+ </View>
39
+ </View>
40
+ );
41
+ }
@@ -1,52 +1,52 @@
1
- import { View, Text, TextInput, TextInputProps } from "react-native";
2
- import React, { useState } from "react";
3
- import EText from "./EText";
4
- import { SearchIcon } from "react-native-heroicons/solid";
5
- import { Colors } from "../utils/Color";
6
- import tw from "../lib/tailwind";
7
-
8
- interface EInputProps extends TextInputProps {
9
- label?: string;
10
- size?: "lg";
11
- hasBackground?: boolean;
12
- icon?: JSX.Element;
13
- }
14
-
15
- export default function EInput({
16
- label,
17
- size,
18
- hasBackground,
19
- icon,
20
- ...props
21
- }: EInputProps) {
22
- const [hasFocus, setHasFocus] = useState(false);
23
- return (
24
- <View style={[tw`mb-4`, {}]}>
25
- {label ? (
26
- <EText size="sm" style={[tw`font-semibold text-slate-800`, {
27
- // color: Colors["text-primary"]
28
- }]}>
29
- {label}
30
- </EText>
31
- ) : null}
32
-
33
- <View
34
- style={tw` mt-2 `}
35
- >
36
- <TextInput
37
- style={tw`h-12 rounded-lg px-4 flex-row items-center border border-slate-300 ${
38
- hasFocus ? "border-black " : ""
39
- }`}
40
- {...props}
41
- onFocus={() => setHasFocus(!hasFocus)}
42
- onBlur={() => setHasFocus(!hasFocus)}
43
- />
44
- {
45
- icon ?
46
- <>{icon}</>
47
- : null
48
- }
49
- </View>
50
- </View>
51
- );
52
- }
1
+ import { View, Text, TextInput, TextInputProps } from "react-native";
2
+ import React, { useState } from "react";
3
+ import EText from "./EText";
4
+ import { SearchIcon } from "react-native-heroicons/solid";
5
+ import { Colors } from "../utils/Color";
6
+ import tw from "../lib/tailwind";
7
+
8
+ interface EInputProps extends TextInputProps {
9
+ label?: string;
10
+ size?: "lg";
11
+ hasBackground?: boolean;
12
+ icon?: JSX.Element;
13
+ }
14
+
15
+ export default function EInput({
16
+ label,
17
+ size,
18
+ hasBackground,
19
+ icon,
20
+ ...props
21
+ }: EInputProps) {
22
+ const [hasFocus, setHasFocus] = useState(false);
23
+ return (
24
+ <View style={[tw`mb-4`, {}]}>
25
+ {label ? (
26
+ <EText size="sm" style={[tw`font-semibold text-slate-800`, {
27
+ // color: Colors["text-primary"]
28
+ }]}>
29
+ {label}
30
+ </EText>
31
+ ) : null}
32
+
33
+ <View
34
+ style={tw` mt-2 `}
35
+ >
36
+ <TextInput
37
+ style={tw`h-12 rounded-lg px-4 flex-row items-center border border-slate-300 ${
38
+ hasFocus ? "border-black " : ""
39
+ }`}
40
+ {...props}
41
+ onFocus={() => setHasFocus(!hasFocus)}
42
+ onBlur={() => setHasFocus(!hasFocus)}
43
+ />
44
+ {
45
+ icon ?
46
+ <>{icon}</>
47
+ : null
48
+ }
49
+ </View>
50
+ </View>
51
+ );
52
+ }
@@ -1,15 +1,15 @@
1
- import React from 'react'
2
- import tw from '../lib/tailwind'
3
- import EText from './EText';
4
-
5
- interface IProps{
6
- label: string;
7
- }
8
-
9
- export default function ELabel( {label }: IProps ) {
10
- return (
11
- <EText size="sm" style={[tw`font-semibold text-slate-800`, {}]}>
12
- {label}
13
- </EText>
14
- )
15
- }
1
+ import React from 'react'
2
+ import tw from '../lib/tailwind'
3
+ import EText from './EText';
4
+
5
+ interface IProps{
6
+ label: string;
7
+ }
8
+
9
+ export default function ELabel( {label }: IProps ) {
10
+ return (
11
+ <EText size="sm" style={[tw`font-semibold text-slate-800`, {}]}>
12
+ {label}
13
+ </EText>
14
+ )
15
+ }
@@ -1,48 +1,48 @@
1
- import React from "react";
2
- import { View } from "react-native";
3
- import tw from "../lib/tailwind";
4
- import Avatar from "./Avatar";
5
- import EText from "./EText";
6
-
7
- interface IProps {
8
- name: string;
9
- subtitle?: string;
10
- noBorder?: boolean;
11
- firstLetter?: string;
12
- itemsEnd?: JSX.Element;
13
- }
14
-
15
- export default function EListPerson({
16
- name,
17
- subtitle,
18
- noBorder,
19
- firstLetter,
20
- itemsEnd,
21
- }: IProps) {
22
- return (
23
- <View style={[tw`flex-row items-center justify-between`]}>
24
- <Avatar size="sm" source={""} nameFirstLetter={name.split(" ")[0].charAt(0)} />
25
- <View
26
- style={tw` ml-3 py-3 flex-1 flex-row items-center justify-between ${
27
- noBorder ? "" : "border-b border-slate-200"
28
- }`}
29
- >
30
- <View>
31
- <EText style={tw`font-bold text-slate-800 mb-0.5 capitalize`} numberOfLines={1}>
32
- {name}
33
- </EText>
34
-
35
- {subtitle
36
- ?
37
- (
38
- <EText size="sm" style={tw`text-slate-500`}>
39
- {subtitle}
40
- </EText>
41
- )
42
- : <></>}
43
- </View>
44
- {itemsEnd}
45
- </View>
46
- </View>
47
- );
48
- }
1
+ import React from "react";
2
+ import { View } from "react-native";
3
+ import tw from "../lib/tailwind";
4
+ import Avatar from "./Avatar";
5
+ import EText from "./EText";
6
+
7
+ interface IProps {
8
+ name: string;
9
+ subtitle?: string;
10
+ noBorder?: boolean;
11
+ firstLetter?: string;
12
+ itemsEnd?: JSX.Element;
13
+ }
14
+
15
+ export default function EListPerson({
16
+ name,
17
+ subtitle,
18
+ noBorder,
19
+ firstLetter,
20
+ itemsEnd,
21
+ }: IProps) {
22
+ return (
23
+ <View style={[tw`flex-row items-center justify-between`]}>
24
+ <Avatar size="sm" source={""} nameFirstLetter={name.split(" ")[0].charAt(0)} />
25
+ <View
26
+ style={tw` ml-3 py-3 flex-1 flex-row items-center justify-between ${
27
+ noBorder ? "" : "border-b border-slate-200"
28
+ }`}
29
+ >
30
+ <View>
31
+ <EText style={tw`font-bold text-slate-800 mb-0.5 capitalize`} numberOfLines={1}>
32
+ {name}
33
+ </EText>
34
+
35
+ {subtitle
36
+ ?
37
+ (
38
+ <EText size="sm" style={tw`text-slate-500`}>
39
+ {subtitle}
40
+ </EText>
41
+ )
42
+ : <></>}
43
+ </View>
44
+ {itemsEnd}
45
+ </View>
46
+ </View>
47
+ );
48
+ }
@@ -1,35 +1,35 @@
1
- import React from "react";
2
- import { View } from "react-native";
3
- import tw from "../lib/tailwind";
4
- import EText from "./EText";
5
-
6
- interface IProps {
7
- name: string;
8
- code?: string;
9
- district?: string;
10
- noBorder?: boolean;
11
- }
12
-
13
- export default function EListSchool({
14
- name,
15
- code,
16
- district,
17
- noBorder,
18
- }: IProps) {
19
- return (
20
- <View style={tw`border-b border-slate-200 py-3`}>
21
- <EText style={tw`font-bold text-slate-800 mb-0.5`} numberOfLines={1}>
22
- {name}
23
- </EText>
24
- <View style={tw`flex-row items-center`}>
25
- <EText size="sm" style={tw`text-slate-500`}>
26
- {code}
27
- </EText>
28
- {district ? <><View style={tw`w-1 h-1 bg-slate-600 rounded-full mx-1.5`}></View>
29
- <EText size="sm" style={tw`text-slate-500`}>
30
- {district}
31
- </EText></> : null}
32
- </View>
33
- </View>
34
- );
35
- }
1
+ import React from "react";
2
+ import { View } from "react-native";
3
+ import tw from "../lib/tailwind";
4
+ import EText from "./EText";
5
+
6
+ interface IProps {
7
+ name: string;
8
+ code?: string;
9
+ district?: string;
10
+ noBorder?: boolean;
11
+ }
12
+
13
+ export default function EListSchool({
14
+ name,
15
+ code,
16
+ district,
17
+ noBorder,
18
+ }: IProps) {
19
+ return (
20
+ <View style={tw`border-b border-slate-200 py-3`}>
21
+ <EText style={tw`font-bold text-slate-800 mb-0.5`} numberOfLines={1}>
22
+ {name}
23
+ </EText>
24
+ <View style={tw`flex-row items-center`}>
25
+ <EText size="sm" style={tw`text-slate-500`}>
26
+ {code}
27
+ </EText>
28
+ {district ? <><View style={tw`w-1 h-1 bg-slate-600 rounded-full mx-1.5`}></View>
29
+ <EText size="sm" style={tw`text-slate-500`}>
30
+ {district}
31
+ </EText></> : null}
32
+ </View>
33
+ </View>
34
+ );
35
+ }
@@ -1,85 +1,85 @@
1
- import React, { useState } from "react";
2
- import {
3
- TouchableOpacity,
4
- View,
5
- TouchableOpacityProps,
6
- Dimensions,
7
- Image,
8
- } from "react-native";
9
- import tw from "../../../lib/tailwind";
10
- import EText from "./EText";
11
- import { Colors } from "../utils/Color";
12
-
13
- const ImageWidth = Dimensions.get("window").width / 2 - 18;
14
- const ContentWidth = Dimensions.get("window").width - 32;
15
- const ImageHeight = 120;
16
- const MediaContainerStyle = "rounded-md overflow-hidden";
17
-
18
- interface RadioButtonProps extends TouchableOpacityProps {
19
- text?: string;
20
- isActive: boolean;
21
- imageSource?: string;
22
- onPress?: () => void;
23
- }
24
- const EOption = ({
25
- isActive,
26
- text,
27
- imageSource,
28
- onPress,
29
- ...props
30
- }: RadioButtonProps) => {
31
- return (
32
- <TouchableOpacity
33
- style={[
34
- tw`flex flex-row justify-start items-center mt-1 px-4 py-3 border rounded-lg ${
35
- imageSource ? "flex-col p-0 items-start" : ""
36
- }`,
37
- {
38
- borderColor: isActive ? Colors["secondary-base"] : Colors.border,
39
- backgroundColor: isActive ? Colors["secondary-light"] : Colors.white,
40
- width: imageSource ? ImageWidth : ContentWidth,
41
- },
42
- ]}
43
- onPress={() => {
44
- onPress && onPress();
45
- }}
46
- activeOpacity={0.7}
47
- {...props}
48
- >
49
- {imageSource !== "" && (
50
- <View
51
- style={[
52
- tw`${MediaContainerStyle}`,
53
- {
54
- height: ImageHeight,
55
- width: ImageWidth - 2,
56
- backgroundColor: Colors["secondary-base"],
57
- },
58
- ]}
59
- >
60
- <Image
61
- style={[
62
- tw`h-full w-full`,
63
- {
64
- opacity: isActive ? 0.5 : 1,
65
- },
66
- ]}
67
- source={{
68
- uri: imageSource ,
69
- }}
70
- />
71
- </View>
72
- )}
73
- {text ? (
74
- <EText
75
- size={"base"}
76
- style={tw`font-normal ${imageSource ? "py-2 px-4" : ""}`}
77
- >
78
- {text}
79
- </EText>
80
- ) : null}
81
- </TouchableOpacity>
82
- );
83
- };
84
-
85
- export default EOption;
1
+ import React, { useState } from "react";
2
+ import {
3
+ TouchableOpacity,
4
+ View,
5
+ TouchableOpacityProps,
6
+ Dimensions,
7
+ Image,
8
+ } from "react-native";
9
+ import tw from "../../../lib/tailwind";
10
+ import EText from "./EText";
11
+ import { Colors } from "../utils/Color";
12
+
13
+ const ImageWidth = Dimensions.get("window").width / 2 - 18;
14
+ const ContentWidth = Dimensions.get("window").width - 32;
15
+ const ImageHeight = 120;
16
+ const MediaContainerStyle = "rounded-md overflow-hidden";
17
+
18
+ interface RadioButtonProps extends TouchableOpacityProps {
19
+ text?: string;
20
+ isActive: boolean;
21
+ imageSource?: string;
22
+ onPress?: () => void;
23
+ }
24
+ const EOption = ({
25
+ isActive,
26
+ text,
27
+ imageSource,
28
+ onPress,
29
+ ...props
30
+ }: RadioButtonProps) => {
31
+ return (
32
+ <TouchableOpacity
33
+ style={[
34
+ tw`flex flex-row justify-start items-center mt-1 px-4 py-3 border rounded-lg ${
35
+ imageSource ? "flex-col p-0 items-start" : ""
36
+ }`,
37
+ {
38
+ borderColor: isActive ? Colors["secondary-base"] : Colors.border,
39
+ backgroundColor: isActive ? Colors["secondary-light"] : Colors.white,
40
+ width: imageSource ? ImageWidth : ContentWidth,
41
+ },
42
+ ]}
43
+ onPress={() => {
44
+ onPress && onPress();
45
+ }}
46
+ activeOpacity={0.7}
47
+ {...props}
48
+ >
49
+ {imageSource !== "" && (
50
+ <View
51
+ style={[
52
+ tw`${MediaContainerStyle}`,
53
+ {
54
+ height: ImageHeight,
55
+ width: ImageWidth - 2,
56
+ backgroundColor: Colors["secondary-base"],
57
+ },
58
+ ]}
59
+ >
60
+ <Image
61
+ style={[
62
+ tw`h-full w-full`,
63
+ {
64
+ opacity: isActive ? 0.5 : 1,
65
+ },
66
+ ]}
67
+ source={{
68
+ uri: imageSource ,
69
+ }}
70
+ />
71
+ </View>
72
+ )}
73
+ {text ? (
74
+ <EText
75
+ size={"base"}
76
+ style={tw`font-normal ${imageSource ? "py-2 px-4" : ""}`}
77
+ >
78
+ {text}
79
+ </EText>
80
+ ) : null}
81
+ </TouchableOpacity>
82
+ );
83
+ };
84
+
85
+ export default EOption;