fln-espranza 0.0.15 → 0.0.16

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 (80) hide show
  1. package/.expo/README.md +15 -15
  2. package/.expo/settings.json +8 -8
  3. package/components/Avatar.tsx +42 -42
  4. package/components/BaseLayout.tsx +174 -174
  5. package/components/Drawer.tsx +98 -98
  6. package/components/EBadge.tsx +23 -23
  7. package/components/EButton.tsx +71 -71
  8. package/components/EDateAndTimeCard.tsx +51 -51
  9. package/components/EDateInput.tsx +55 -55
  10. package/components/EEmptyPlaceholder.tsx +21 -21
  11. package/components/EErrorText.tsx +19 -19
  12. package/components/EInfoBox.tsx +41 -41
  13. package/components/EInput.tsx +52 -52
  14. package/components/ELabel.tsx +15 -15
  15. package/components/EListPerson.tsx +40 -40
  16. package/components/EListSchool.tsx +35 -35
  17. package/components/EOption.tsx +34 -34
  18. package/components/EOtpInputBox.tsx +49 -49
  19. package/components/EPageDescription.tsx +19 -19
  20. package/components/EPillButton.tsx +33 -33
  21. package/components/EProfile.tsx +62 -62
  22. package/components/EProgressBar.tsx +33 -33
  23. package/components/EQuestionSerialNumberLabel.tsx +17 -17
  24. package/components/EQuestionText.tsx +14 -14
  25. package/components/ESegment.tsx +36 -36
  26. package/components/EText.tsx +41 -41
  27. package/components/ETimeInput.tsx +55 -55
  28. package/components/ETimeLineCard.tsx +68 -68
  29. package/components/ListFormView.tsx +36 -36
  30. package/components/Loader.tsx +31 -31
  31. package/components/MenuItems.tsx +46 -46
  32. package/components/PageHeader.tsx +115 -115
  33. package/components/SecondaryBaseLayout.tsx +102 -102
  34. package/components/Timer.tsx +56 -56
  35. package/components/icons/EIconAdd.jsx +19 -19
  36. package/components/icons/EIconAddCircle.jsx +21 -21
  37. package/components/icons/EIconApplicationStatus.jsx +20 -20
  38. package/components/icons/EIconArrowDown.jsx +20 -20
  39. package/components/icons/EIconArrowLeft.jsx +21 -21
  40. package/components/icons/EIconArrowRight.jsx +21 -21
  41. package/components/icons/EIconArrowUp.jsx +20 -20
  42. package/components/icons/EIconBadge.jsx +20 -20
  43. package/components/icons/EIconBell.jsx +19 -19
  44. package/components/icons/EIconCalendar.jsx +21 -21
  45. package/components/icons/EIconCalendarCheck.jsx +24 -24
  46. package/components/icons/EIconCamera.jsx +20 -20
  47. package/components/icons/EIconCameraRotate.jsx +23 -23
  48. package/components/icons/EIconCheck.jsx +19 -19
  49. package/components/icons/EIconCheckCircle.jsx +20 -20
  50. package/components/icons/EIconCheckFill.jsx +19 -19
  51. package/components/icons/EIconChevronDown.jsx +19 -19
  52. package/components/icons/EIconChevronLeft.jsx +19 -19
  53. package/components/icons/EIconChevronRight.jsx +19 -19
  54. package/components/icons/EIconChevronUp.jsx +19 -19
  55. package/components/icons/EIconClock.jsx +19 -19
  56. package/components/icons/EIconClose.jsx +19 -19
  57. package/components/icons/EIconDashboard.jsx +20 -20
  58. package/components/icons/EIconEdit.jsx +19 -19
  59. package/components/icons/EIconFile.jsx +21 -21
  60. package/components/icons/EIconInfo.jsx +20 -20
  61. package/components/icons/EIconLogout.jsx +19 -19
  62. package/components/icons/EIconMenu.jsx +19 -19
  63. package/components/icons/EIconMinus.jsx +19 -19
  64. package/components/icons/EIconPin.jsx +19 -19
  65. package/components/icons/EIconProfile.jsx +19 -19
  66. package/components/icons/EIconSchool.jsx +24 -24
  67. package/components/icons/EIconSearch.jsx +19 -19
  68. package/components/icons/EIconSettings.jsx +20 -20
  69. package/components/icons/EIconShare.jsx +21 -21
  70. package/components/icons/EIconStudent.jsx +23 -23
  71. package/components/icons/EIconSubject.jsx +21 -21
  72. package/components/icons/EIconTeach.jsx +21 -21
  73. package/components/icons/EIconTrash.jsx +19 -19
  74. package/components/icons/EIconUserCard.jsx +19 -19
  75. package/components/icons/EIconUserCheck.jsx +20 -20
  76. package/components/icons/EIconUsers.jsx +19 -19
  77. package/components/index.tsx +65 -65
  78. package/index.ts +172 -172
  79. package/package.json +26 -26
  80. package/utils/Color.ts +14 -14
@@ -1,33 +1,33 @@
1
- import React from "react";
2
- import { TouchableOpacity, View } from "react-native";
3
- import tw from "../lib/tailwind";
4
- import { Colors } from "../utils/Color";
5
- import EText from "./EText";
6
-
7
- interface IProps {
8
- title: string;
9
- active?: boolean;
10
- onPress?: () => void;
11
- }
12
-
13
- export default function EPillButton({ title, active, onPress }: IProps) {
14
- return (
15
- <TouchableOpacity
16
- style={[
17
- tw`px-4 py-3 mr-2 border rounded-lg border-slate-300`,
18
- {
19
- backgroundColor: active ? Colors["secondary-base"] : "transparent",
20
- borderColor: active ? Colors["secondary-base"] : Colors["border"],
21
- },
22
- ]}
23
- onPress={onPress}
24
- >
25
- <EText
26
- size={"base"}
27
- style={tw`font-normal ${active ? "text-white" : "text-slate-500"}`}
28
- >
29
- {title}
30
- </EText>
31
- </TouchableOpacity>
32
- );
33
- }
1
+ import React from "react";
2
+ import { TouchableOpacity, View } from "react-native";
3
+ import tw from "../lib/tailwind";
4
+ import { Colors } from "../utils/Color";
5
+ import EText from "./EText";
6
+
7
+ interface IProps {
8
+ title: string;
9
+ active?: boolean;
10
+ onPress?: () => void;
11
+ }
12
+
13
+ export default function EPillButton({ title, active, onPress }: IProps) {
14
+ return (
15
+ <TouchableOpacity
16
+ style={[
17
+ tw`px-4 py-3 mr-2 border rounded-lg border-slate-300`,
18
+ {
19
+ backgroundColor: active ? Colors["secondary-base"] : "transparent",
20
+ borderColor: active ? Colors["secondary-base"] : Colors["border"],
21
+ },
22
+ ]}
23
+ onPress={onPress}
24
+ >
25
+ <EText
26
+ size={"base"}
27
+ style={tw`font-normal ${active ? "text-white" : "text-slate-500"}`}
28
+ >
29
+ {title}
30
+ </EText>
31
+ </TouchableOpacity>
32
+ );
33
+ }
@@ -1,62 +1,62 @@
1
- import React from "react";
2
- import { View } from "react-native";
3
- import tw from "../lib/tailwind";
4
- import { Colors } from "../utils/Color";
5
- import Avatar from "./Avatar";
6
- import EText from "./EText";
7
-
8
- interface IProps {
9
- name: string;
10
- subjectName?: string;
11
- border?: boolean;
12
- children?: JSX.Element;
13
- titleSize: string;
14
- subTitleSize: string;
15
- }
16
-
17
- export default function EProfile({
18
- name,
19
- subjectName,
20
- border,
21
- children,
22
- titleSize,
23
- subTitleSize,
24
- }: IProps) {
25
- return (
26
- <View
27
- style={[
28
- tw`flex-row items-center justify-between py-3 ${
29
- border ? "border-b" : ""
30
- }`,
31
- { borderBottomColor: Colors.border },
32
- ]}
33
- >
34
- <View style={tw`flex-row items-center`}>
35
- <Avatar
36
- size="sm"
37
- source={""}
38
- nameFirstLetter={name.split(" ")[0].charAt(0)}
39
- />
40
- <View style={tw`ml-3`}>
41
- <EText
42
- style={[
43
- tw`font-bold text-slate-800 mb-0.5 capitalize ${titleSize}`,
44
- { color: Colors["text-primary"] },
45
- ]}
46
- >
47
- {name}
48
- </EText>
49
- {subjectName ? (
50
- <EText
51
- size="sm"
52
- style={[tw` ${subTitleSize}`, { color: Colors["text-body"] }]}
53
- >
54
- {subjectName}
55
- </EText>
56
- ) : null}
57
- </View>
58
- </View>
59
- {children ? <>{children}</> : null}
60
- </View>
61
- );
62
- }
1
+ import React from "react";
2
+ import { View } from "react-native";
3
+ import tw from "../lib/tailwind";
4
+ import { Colors } from "../utils/Color";
5
+ import Avatar from "./Avatar";
6
+ import EText from "./EText";
7
+
8
+ interface IProps {
9
+ name: string;
10
+ subjectName?: string;
11
+ border?: boolean;
12
+ children?: JSX.Element;
13
+ titleSize: string;
14
+ subTitleSize: string;
15
+ }
16
+
17
+ export default function EProfile({
18
+ name,
19
+ subjectName,
20
+ border,
21
+ children,
22
+ titleSize,
23
+ subTitleSize,
24
+ }: IProps) {
25
+ return (
26
+ <View
27
+ style={[
28
+ tw`flex-row items-center justify-between py-3 ${
29
+ border ? "border-b" : ""
30
+ }`,
31
+ { borderBottomColor: Colors.border },
32
+ ]}
33
+ >
34
+ <View style={tw`flex-row items-center`}>
35
+ <Avatar
36
+ size="sm"
37
+ source={""}
38
+ nameFirstLetter={name.split(" ")[0].charAt(0)}
39
+ />
40
+ <View style={tw`ml-3`}>
41
+ <EText
42
+ style={[
43
+ tw`font-bold text-slate-800 mb-0.5 capitalize ${titleSize}`,
44
+ { color: Colors["text-primary"] },
45
+ ]}
46
+ >
47
+ {name}
48
+ </EText>
49
+ {subjectName ? (
50
+ <EText
51
+ size="sm"
52
+ style={[tw` ${subTitleSize}`, { color: Colors["text-body"] }]}
53
+ >
54
+ {subjectName}
55
+ </EText>
56
+ ) : null}
57
+ </View>
58
+ </View>
59
+ {children ? <>{children}</> : null}
60
+ </View>
61
+ );
62
+ }
@@ -1,33 +1,33 @@
1
- import React, { useEffect, useRef, useState } from 'react'
2
- import { Animated,StyleSheet, View } from 'react-native';
3
- import tw from "fln-espranza/lib/tailwind";
4
- import { Colors } from "fln-espranza/utils/Color";
5
-
6
- interface IProps{
7
- progress: number;
8
- }
9
-
10
- export default function EProgressBar( {progress}: IProps) {
11
-
12
-
13
- const barWidth = useRef(new Animated.Value(0)).current;
14
-
15
- useEffect(() => {
16
- Animated.spring(barWidth, {
17
- toValue: progress,
18
- bounciness: 0,
19
- speed: 7,
20
- useNativeDriver: false,
21
- }).start();
22
- }, [progress]);
23
- return (
24
- <View style={[tw`h-2 w-14 bg-slate-200 overflow-hidden mr-2`, {
25
- borderRadius: 40,
26
- }]}>
27
- <Animated.View
28
- style={[StyleSheet.absoluteFill, { backgroundColor: Colors['primary-base'], width: barWidth }]}
29
-
30
- />
31
- </View>
32
- )
33
- }
1
+ import React, { useEffect, useRef, useState } from 'react'
2
+ import { Animated,StyleSheet, View } from 'react-native';
3
+ import tw from "fln-espranza/lib/tailwind";
4
+ import { Colors } from "fln-espranza/utils/Color";
5
+
6
+ interface IProps{
7
+ progress: number;
8
+ }
9
+
10
+ export default function EProgressBar( {progress}: IProps) {
11
+
12
+
13
+ const barWidth = useRef(new Animated.Value(0)).current;
14
+
15
+ useEffect(() => {
16
+ Animated.spring(barWidth, {
17
+ toValue: progress,
18
+ bounciness: 0,
19
+ speed: 7,
20
+ useNativeDriver: false,
21
+ }).start();
22
+ }, [progress]);
23
+ return (
24
+ <View style={[tw`h-2 w-14 bg-slate-200 overflow-hidden mr-2`, {
25
+ borderRadius: 40,
26
+ }]}>
27
+ <Animated.View
28
+ style={[StyleSheet.absoluteFill, { backgroundColor: Colors['primary-base'], width: barWidth }]}
29
+
30
+ />
31
+ </View>
32
+ )
33
+ }
@@ -1,17 +1,17 @@
1
- import React from 'react'
2
- import { Colors } from 'react-native/Libraries/NewAppScreen';
3
- import tw from '../lib/tailwind';
4
- import EText from './EText';
5
- // import { EText } from '../../../components'
6
-
7
- interface IProps{
8
- label: string;
9
- }
10
-
11
- export default function EQuestionSerialNumberLabel( { label } : IProps) {
12
- return (
13
- <EText size={"sm"} style={[tw`font-extrabold`, {color: Colors['primary-base']}]}>
14
- {label}
15
- </EText>
16
- )
17
- }
1
+ import React from 'react'
2
+ import tw from '../lib/tailwind';
3
+ import { Colors } from '../utils/Color';
4
+ import EText from './EText';
5
+ // import { EText } from '../../../components'
6
+
7
+ interface IProps{
8
+ label: string;
9
+ }
10
+
11
+ export default function EQuestionSerialNumberLabel( { label } : IProps) {
12
+ return (
13
+ <EText size={"sm"} style={[tw`font-extrabold`, {color: Colors['primary-base']}]}>
14
+ {label}
15
+ </EText>
16
+ )
17
+ }
@@ -1,14 +1,14 @@
1
- import React from 'react'
2
- import tw from '../lib/tailwind';
3
- import EText from './EText';
4
- interface IProps{
5
- question: string;
6
- }
7
-
8
- export default function EQuestionText( { question } : IProps) {
9
- return (
10
- <EText size={"base"} style={ tw`font-medium mt-1`}>
11
- {question}
12
- </EText>
13
- )
14
- }
1
+ import React from 'react'
2
+ import tw from '../lib/tailwind';
3
+ import EText from './EText';
4
+ interface IProps{
5
+ question: string;
6
+ }
7
+
8
+ export default function EQuestionText( { question } : IProps) {
9
+ return (
10
+ <EText size={"base"} style={ tw`font-medium mt-1`}>
11
+ {question}
12
+ </EText>
13
+ )
14
+ }
@@ -1,36 +1,36 @@
1
- import { View, Text, Pressable, TouchableOpacity } from "react-native";
2
- import React from "react";
3
- import tw from '../lib/tailwind'
4
- import EText from "./EText";
5
- import { Colors } from "../utils/Color";
6
-
7
- export function ESegmentItem(props: any) {
8
- const { onPress, label, isActive } = props;
9
- return (
10
- <TouchableOpacity
11
- style={tw.style(
12
- "py-1.5 px-4 rounded-full items-center w-1/2",
13
- isActive && "bg-white shadow-lg shadow-slate-500 "
14
- )}
15
- onPress={onPress}
16
- >
17
- <View style={tw`items-center`}>
18
- <EText size="sm" style={tw`font-bold ${!isActive ? "text-white": ""}`}>{label}</EText>
19
- </View>
20
- </TouchableOpacity>
21
- );
22
- }
23
-
24
- export default function ESegment(props: any) {
25
- return (
26
- <View style={tw`justify-center items-center`}>
27
- <View
28
- style={[tw`flex-row rounded-full p-1 border border-slate-100 w-full`, {
29
- backgroundColor: Colors["text-body"],
30
- }]}
31
- >
32
- {props.children}
33
- </View>
34
- </View>
35
- );
36
- }
1
+ import { View, Text, Pressable, TouchableOpacity } from "react-native";
2
+ import React from "react";
3
+ import tw from '../lib/tailwind'
4
+ import EText from "./EText";
5
+ import { Colors } from "../utils/Color";
6
+
7
+ export function ESegmentItem(props: any) {
8
+ const { onPress, label, isActive } = props;
9
+ return (
10
+ <TouchableOpacity
11
+ style={tw.style(
12
+ "py-1.5 px-4 rounded-full items-center w-1/2",
13
+ isActive && "bg-white shadow-lg shadow-slate-500 "
14
+ )}
15
+ onPress={onPress}
16
+ >
17
+ <View style={tw`items-center`}>
18
+ <EText size="sm" style={tw`font-bold ${!isActive ? "text-white": ""}`}>{label}</EText>
19
+ </View>
20
+ </TouchableOpacity>
21
+ );
22
+ }
23
+
24
+ export default function ESegment(props: any) {
25
+ return (
26
+ <View style={tw`justify-center items-center`}>
27
+ <View
28
+ style={[tw`flex-row rounded-full p-1 border border-slate-100 w-full`, {
29
+ backgroundColor: Colors["text-body"],
30
+ }]}
31
+ >
32
+ {props.children}
33
+ </View>
34
+ </View>
35
+ );
36
+ }
@@ -1,41 +1,41 @@
1
- import { Text, TextProps } from "react-native";
2
- import React from "react";
3
- import tw from "../lib/tailwind";
4
-
5
- interface ETextProps extends TextProps {
6
- size?: "xs" | "sm" | "base" | "lg" | "xl" | "2xl" | "3xl" | "title";
7
- muted?: boolean;
8
- style?: any;
9
- children?: any;
10
- }
11
-
12
- export default function EText({
13
- size,
14
- muted,
15
- style,
16
- children,
17
- ...props
18
- }: ETextProps) {
19
- return (
20
- <Text
21
- {...props}
22
- style={[
23
- tw.style(
24
- "text-base leading-6",
25
- size === "xs" && "text-xs",
26
- size === "sm" && "text-sm",
27
- size === "base" && "text-base",
28
- size == "lg" && "font-semibold text-lg",
29
- size === "xl" && "font-bold text-xl",
30
- size === "2xl" && "font-bold text-2xl",
31
- size === "3xl" && "font-bold text-3xl",
32
- size === "title" && "font-extrabold text-title text-2xl",
33
- muted && "opacity-60"
34
- ),
35
- style,
36
- ]}
37
- >
38
- {children}
39
- </Text>
40
- );
41
- }
1
+ import { Text, TextProps } from "react-native";
2
+ import React from "react";
3
+ import tw from "../lib/tailwind";
4
+
5
+ interface ETextProps extends TextProps {
6
+ size?: "xs" | "sm" | "base" | "lg" | "xl" | "2xl" | "3xl" | "title";
7
+ muted?: boolean;
8
+ style?: any;
9
+ children?: any;
10
+ }
11
+
12
+ export default function EText({
13
+ size,
14
+ muted,
15
+ style,
16
+ children,
17
+ ...props
18
+ }: ETextProps) {
19
+ return (
20
+ <Text
21
+ {...props}
22
+ style={[
23
+ tw.style(
24
+ "text-base leading-6",
25
+ size === "xs" && "text-xs",
26
+ size === "sm" && "text-sm",
27
+ size === "base" && "text-base",
28
+ size == "lg" && "font-semibold text-lg",
29
+ size === "xl" && "font-bold text-xl",
30
+ size === "2xl" && "font-bold text-2xl",
31
+ size === "3xl" && "font-bold text-3xl",
32
+ size === "title" && "font-extrabold text-title text-2xl",
33
+ muted && "opacity-60"
34
+ ),
35
+ style,
36
+ ]}
37
+ >
38
+ {children}
39
+ </Text>
40
+ );
41
+ }
@@ -1,55 +1,55 @@
1
- import moment from 'moment'
2
- import React, { useState } from 'react'
3
- import { View, TouchableOpacity } from 'react-native'
4
- import { ClockIcon } from 'react-native-heroicons/outline'
5
- import { onChange } from 'react-native-reanimated'
6
- import DateTimePicker from '@react-native-community/datetimepicker';
7
- import tw from '../../../lib/tailwind'
8
- import EText from './EText';
9
- import ELabel from './ELabel';
10
-
11
- interface IProps {
12
- label: string;
13
- value: string;
14
- onChange: (value: string) => void;
15
- style?: string;
16
- }
17
-
18
- export default function ETimeInput( { label, value,style, onChange }: IProps ) {
19
- const [date, setDate] = useState(new Date());
20
- const [show, setShow] = useState(false);
21
-
22
- const handleOnChange = (event: any, selectedDate: any) => {
23
- const currentDate = selectedDate;
24
- setShow(false);
25
- setDate(currentDate);
26
- onChange(moment(currentDate).format("hh:mm A"));
27
- }
28
-
29
- return (
30
-
31
- <View style={tw`flex-1 ${ style ? style : ""}`}>
32
- <ELabel label={label} />
33
- <TouchableOpacity
34
- style={tw`h-12 rounded-lg px-4 flex-row justify-between items-center border border-slate-300 lowercase my-2 bg-white`}
35
- onPress={() => setShow(true)}
36
- >
37
- <EText size={"sm"} style={tw`font-normal`}>
38
- {
39
- // value ? value : moment(date).format("hh:mm A")
40
- value ? value : "Select Time"
41
- }
42
- </EText>
43
- {show ? <DateTimePicker
44
- testID="dateTimePicker"
45
- value={date}
46
- mode={"time"}
47
- is24Hour={false}
48
- onChange={handleOnChange}
49
- /> : <></>}
50
- <ClockIcon size={20} style={tw`text-slate-500`} />
51
- </TouchableOpacity>
52
- </View>
53
- )
54
- }
55
-
1
+ import moment from 'moment'
2
+ import React, { useState } from 'react'
3
+ import { View, TouchableOpacity } from 'react-native'
4
+ import { ClockIcon } from 'react-native-heroicons/outline'
5
+ import { onChange } from 'react-native-reanimated'
6
+ import DateTimePicker from '@react-native-community/datetimepicker';
7
+ import tw from '../../../lib/tailwind'
8
+ import EText from './EText';
9
+ import ELabel from './ELabel';
10
+
11
+ interface IProps {
12
+ label: string;
13
+ value: string;
14
+ onChange: (value: string) => void;
15
+ style?: string;
16
+ }
17
+
18
+ export default function ETimeInput( { label, value,style, onChange }: IProps ) {
19
+ const [date, setDate] = useState(new Date());
20
+ const [show, setShow] = useState(false);
21
+
22
+ const handleOnChange = (event: any, selectedDate: any) => {
23
+ const currentDate = selectedDate;
24
+ setShow(false);
25
+ setDate(currentDate);
26
+ onChange(moment(currentDate).format("hh:mm A"));
27
+ }
28
+
29
+ return (
30
+
31
+ <View style={tw`flex-1 ${ style ? style : ""}`}>
32
+ <ELabel label={label} />
33
+ <TouchableOpacity
34
+ style={tw`h-12 rounded-lg px-4 flex-row justify-between items-center border border-slate-300 lowercase my-2 bg-white`}
35
+ onPress={() => setShow(true)}
36
+ >
37
+ <EText size={"sm"} style={tw`font-normal`}>
38
+ {
39
+ // value ? value : moment(date).format("hh:mm A")
40
+ value ? value : "Select Time"
41
+ }
42
+ </EText>
43
+ {show ? <DateTimePicker
44
+ testID="dateTimePicker"
45
+ value={date}
46
+ mode={"time"}
47
+ is24Hour={false}
48
+ onChange={handleOnChange}
49
+ /> : <></>}
50
+ <ClockIcon size={20} style={tw`text-slate-500`} />
51
+ </TouchableOpacity>
52
+ </View>
53
+ )
54
+ }
55
+