feature
deskripsi: - new component stack
This commit is contained in:
@@ -1,11 +1,18 @@
|
|||||||
import { Text, View } from "react-native";
|
/* eslint-disable @typescript-eslint/no-unused-vars */
|
||||||
|
import { TextInputCustom, ViewWrapper } from "@/components";
|
||||||
|
import { StackCustom } from "@/components/Stack";
|
||||||
import { useLocalSearchParams } from "expo-router";
|
import { useLocalSearchParams } from "expo-router";
|
||||||
|
|
||||||
export default function ProfileEdit() {
|
export default function ProfileEdit() {
|
||||||
const { id } = useLocalSearchParams();
|
const { id } = useLocalSearchParams();
|
||||||
return (
|
return (
|
||||||
<View>
|
<ViewWrapper>
|
||||||
<Text>Profile Edit {id}</Text>
|
<StackCustom>
|
||||||
</View>
|
<TextInputCustom label="Nama" value="Nama" required />
|
||||||
)
|
<TextInputCustom label="Email" value="Email" required />
|
||||||
|
<TextInputCustom label="Alamat" value="Alamat" required />
|
||||||
|
|
||||||
|
</StackCustom>
|
||||||
|
</ViewWrapper>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
@@ -1,7 +1,6 @@
|
|||||||
import { MainColor } from "@/constants/color-palet";
|
import { BackButton } from "@/components";
|
||||||
import { GStyles } from "@/styles/global-styles";
|
import { GStyles } from "@/styles/global-styles";
|
||||||
import { Ionicons } from "@expo/vector-icons";
|
import { Stack } from "expo-router";
|
||||||
import { router, Stack } from "expo-router";
|
|
||||||
|
|
||||||
export default function ProfileLayout() {
|
export default function ProfileLayout() {
|
||||||
return (
|
return (
|
||||||
@@ -12,14 +11,7 @@ export default function ProfileLayout() {
|
|||||||
headerTitleStyle: GStyles.headerTitleStyle,
|
headerTitleStyle: GStyles.headerTitleStyle,
|
||||||
headerTitleAlign: "center",
|
headerTitleAlign: "center",
|
||||||
headerBackButtonDisplayMode: "minimal",
|
headerBackButtonDisplayMode: "minimal",
|
||||||
headerLeft: () => (
|
headerLeft: () => <BackButton />,
|
||||||
<Ionicons
|
|
||||||
name="arrow-back"
|
|
||||||
size={20}
|
|
||||||
color={MainColor.yellow}
|
|
||||||
onPress={() => router.back()}
|
|
||||||
/>
|
|
||||||
),
|
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{/* <Stack.Screen name="[id]/index" options={{ headerShown: false }} /> */}
|
{/* <Stack.Screen name="[id]/index" options={{ headerShown: false }} /> */}
|
||||||
|
|||||||
66
components/Stack/StackCustom.tsx
Normal file
66
components/Stack/StackCustom.tsx
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
// components/Stack.tsx
|
||||||
|
|
||||||
|
import React from "react";
|
||||||
|
import { View, ViewStyle, StyleSheet } from "react-native";
|
||||||
|
|
||||||
|
import { AlignType, GapSizeType, JustifyType } from "@/components/Stack/stack-types";
|
||||||
|
|
||||||
|
interface StackProps {
|
||||||
|
children: React.ReactNode;
|
||||||
|
align?: AlignType;
|
||||||
|
justify?: JustifyType;
|
||||||
|
gap?: GapSizeType;
|
||||||
|
direction?: "row" | "column";
|
||||||
|
style?: ViewStyle | ViewStyle[];
|
||||||
|
}
|
||||||
|
|
||||||
|
const StackCustom: React.FC<StackProps> = ({
|
||||||
|
children,
|
||||||
|
align = "stretch",
|
||||||
|
justify = "flex-start",
|
||||||
|
gap = "md",
|
||||||
|
direction = "column",
|
||||||
|
style,
|
||||||
|
}) => {
|
||||||
|
const spacing = convertToSpacing(gap);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<View
|
||||||
|
style={[
|
||||||
|
// styles.stack,
|
||||||
|
{
|
||||||
|
flexDirection: direction,
|
||||||
|
alignItems: align,
|
||||||
|
justifyContent: justify,
|
||||||
|
gap: spacing,
|
||||||
|
},
|
||||||
|
style,
|
||||||
|
]}
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
</View>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
// Fungsi untuk mengubah nilai gap ke dalam ukuran pixel
|
||||||
|
const convertToSpacing = (value: GapSizeType): number => {
|
||||||
|
if (typeof value === "number") return value;
|
||||||
|
|
||||||
|
const sizes: Record<string, number> = {
|
||||||
|
xs: 4,
|
||||||
|
sm: 8,
|
||||||
|
md: 16,
|
||||||
|
lg: 24,
|
||||||
|
xl: 32,
|
||||||
|
};
|
||||||
|
|
||||||
|
return sizes[value] || 16; // default md
|
||||||
|
};
|
||||||
|
|
||||||
|
const styles = StyleSheet.create({
|
||||||
|
stack: {
|
||||||
|
flex: 1,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
export default StackCustom;
|
||||||
3
components/Stack/index.ts
Normal file
3
components/Stack/index.ts
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
import StackCustom from "./StackCustom";
|
||||||
|
|
||||||
|
export { StackCustom };
|
||||||
19
components/Stack/stack-types.ts
Normal file
19
components/Stack/stack-types.ts
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
// types/stack.types.ts
|
||||||
|
|
||||||
|
export type AlignType =
|
||||||
|
| "stretch"
|
||||||
|
| "flex-start"
|
||||||
|
| "center"
|
||||||
|
| "flex-end"
|
||||||
|
| "baseline";
|
||||||
|
|
||||||
|
export type JustifyType =
|
||||||
|
| "flex-start"
|
||||||
|
| "center"
|
||||||
|
| "flex-end"
|
||||||
|
| "space-between"
|
||||||
|
| "space-around"
|
||||||
|
| "space-evenly";
|
||||||
|
|
||||||
|
export type GapSizeType = "xs" | "sm" | "md" | "lg" | "xl" | number;
|
||||||
|
// | string;
|
||||||
3
components/TextInput/index.ts
Normal file
3
components/TextInput/index.ts
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
import { TextInputCustom } from "./TextInputCustom";
|
||||||
|
|
||||||
|
export { TextInputCustom };
|
||||||
@@ -8,7 +8,6 @@ import { useState } from "react";
|
|||||||
import { Text, View } from "react-native";
|
import { Text, View } from "react-native";
|
||||||
import PhoneInput, { ICountry } from "react-native-international-phone-number";
|
import PhoneInput, { ICountry } from "react-native-international-phone-number";
|
||||||
|
|
||||||
|
|
||||||
export default function LoginView() {
|
export default function LoginView() {
|
||||||
const [selectedCountry, setSelectedCountry] = useState<null | ICountry>(null);
|
const [selectedCountry, setSelectedCountry] = useState<null | ICountry>(null);
|
||||||
const [inputValue, setInputValue] = useState<string>("");
|
const [inputValue, setInputValue] = useState<string>("");
|
||||||
@@ -25,9 +24,10 @@ export default function LoginView() {
|
|||||||
const callingCode = selectedCountry?.callingCode.replace(/^\+/, "") || "";
|
const callingCode = selectedCountry?.callingCode.replace(/^\+/, "") || "";
|
||||||
const fixNumber = callingCode + inputValue;
|
const fixNumber = callingCode + inputValue;
|
||||||
console.log(fixNumber);
|
console.log(fixNumber);
|
||||||
// router.navigate("/(application)/profile/1");
|
const id = fixNumber.replace(/\D/g, "");
|
||||||
router.navigate("/(application)/home");
|
|
||||||
|
|
||||||
|
router.navigate(`/(application)/profile/${id}`);
|
||||||
|
// router.navigate("/(application)/home");
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|||||||
Reference in New Issue
Block a user