| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- import {
- useLayoutEffect,
- useState
- } from "react";
- import {
- View
- } from "react-native";
- import stylesheet from "./stylesheet";
- import {
- NCoreUIKitLocalize,
- NCoreUIKitTheme,
- PageContainer,
- SelectBox,
- TextInput,
- Button,
- Header,
- Switch
- ,
- Text
- } from "ncore-ui-kit";
- import {
- useNavigation
- } from "@react-navigation/native";
- import type RootStackParamList from "../../navigation/type";
- import type {
- NativeStackNavigationProp
- } from "@react-navigation/native-stack";
- import type {
- ITextInputProps
- } from "ncore-ui-kit";
- import {
- Home as HomeIcon
- } from "lucide-react-native";
- const TYPES: Array<ITextInputProps["type"]> = [
- "default",
- "danger",
- "warning",
- "question",
- "success",
- "info"
- ];
- const VARIANTS: Array<ITextInputProps["variant"]> = [
- "text",
- "hidden"
- ];
- const SPREAD_BEHAVIOURS: Array<ITextInputProps["spreadBehaviour"]> = [
- "baseline",
- "stretch",
- "free"
- ];
- const TYPES_DATA = TYPES.map((item) => ({
- __title: item as string,
- __key: item as string
- }));
- const VARIANTS_DATA = VARIANTS.map((item) => ({
- __title: item as string,
- __key: item as string
- }));
- const TextInputPage = () => {
- const {
- radiuses,
- borders,
- spaces,
- colors
- } = NCoreUIKitTheme.useContext();
- const {
- localize
- } = NCoreUIKitLocalize.useContext();
- const navigation = useNavigation<NativeStackNavigationProp<RootStackParamList>>();
- const [
- typeIndex,
- setTypeIndex
- ] = useState<number>(0);
- const [
- variantIndex,
- setVariantIndex
- ] = useState<number>(0);
- const [
- spreadIndex,
- setSpreadIndex
- ] = useState<number>(0);
- const [
- title,
- setTitle
- ] = useState<string>("");
- const [
- isDisabled,
- setIsDisabled
- ] = useState<boolean>(false);
- const [
- showIcon,
- setShowIcon
- ] = useState<boolean>(false);
- const [
- isCleanEnabled,
- setIsCleanEnabled
- ] = useState<boolean>(true);
- const [
- isRequired,
- setIsRequired
- ] = useState<boolean>(false);
- const [
- isOptional,
- setIsOptional
- ] = useState<boolean>(false);
- const [
- val,
- setVal
- ] = useState<string>("");
- useLayoutEffect(() => {
- navigation.setOptions({
- header: () => (
- <Header
- title={localize("textInput-title")}
- isWrapSafeareaContext={false}
- navigation={navigation}
- isGoBackEnable={true}
- />
- ),
- headerShown: true
- });
- }, []);
- return (
- <PageContainer
- scrollViewProps={{
- contentContainerStyle: stylesheet.scrollContent
- }}
- scrollViewStyle={[stylesheet.container]}
- isWorkWithHeaderSpace={false}
- isScrollable={true}
- >
- <View style={[stylesheet.contentContainer]}>
- <Text
- variant="bodyMediumSize"
- color="mid"
- style={{
- marginBottom: 20
- }}
- >
- {localize("textInput-desc")}
- </Text>
- <View
- style={{
- borderColor: colors.content.border.subtle,
- marginBottom: spaces.spacingMd,
- borderRadius: radiuses.form,
- borderWidth: borders.line,
- padding: spaces.spacingMd,
- justifyContent: "center",
- alignItems: "center",
- minHeight: 120
- }}
- >
- <TextInput
- icon={
- showIcon
- ? ({
- color,
- size
- }) => (
- <HomeIcon
- color={colors.content.icon[color]}
- size={size}
- />
- )
- : undefined
- }
- title={
- title || localize("textInput-exampleTitle")
- }
- placeholder={localize("textInput-placeholder")}
- spreadBehaviour={SPREAD_BEHAVIOURS[spreadIndex]}
- variant={VARIANTS[variantIndex]}
- isCleanEnabled={isCleanEnabled}
- type={TYPES[typeIndex]}
- isDisabled={isDisabled}
- isRequired={isRequired}
- isOptional={isOptional}
- onChangeText={setVal}
- value={val}
- />
- </View>
- <TextInput
- placeholder={localize("textInput-enterTitle")}
- title={localize("textInput-titleLabel")}
- style={{
- marginBottom: spaces.spacingMd
- }}
- spreadBehaviour="stretch"
- onChangeText={setTitle}
- value={title}
- />
- <View
- style={{
- justifyContent: "space-between",
- gap: spaces.spacingMd,
- flexDirection: "row",
- flexWrap: "wrap",
- width: "100%"
- }}
- >
- <SelectBox
- initialSelectedItems={TYPES_DATA[typeIndex] ? [TYPES_DATA[typeIndex]] : []}
- onChange={(selectedItems) => {
- if (selectedItems.length > 0) {
- const index = TYPES.indexOf(selectedItems[0]!.__key as unknown as ITextInputProps["type"]);
- if (index !== -1) setTypeIndex(index);
- }
- }}
- title={localize("textInput-changeType")}
- titleExtractor={(item) => item.__title}
- keyExtractor={(item) => item.__key}
- spreadBehaviour="free"
- data={TYPES_DATA}
- />
- <SelectBox
- onChange={(selectedItems) => {
- if (selectedItems.length > 0) {
- const index = VARIANTS.indexOf(selectedItems[0]!.__key as unknown as ITextInputProps["variant"]);
- if (index !== -1) setVariantIndex(index);
- }
- }}
- initialSelectedItems={VARIANTS_DATA[variantIndex] ? [VARIANTS_DATA[variantIndex]] : []}
- title={localize("textInput-changeVariant")}
- titleExtractor={(item) => item.__title}
- keyExtractor={(item) => item.__key}
- spreadBehaviour="free"
- data={VARIANTS_DATA}
- />
- <Button
- onPress={() => {
- setSpreadIndex((prev) => prev + 1 > SPREAD_BEHAVIOURS.length - 1 ? 0 : prev + 1);
- }}
- title={`${localize("textInput-changeSpread")}: ${SPREAD_BEHAVIOURS[spreadIndex]}`}
- spreadBehaviour="free"
- />
- <View
- style={{
- justifyContent: "space-between",
- flexDirection: "row",
- alignItems: "center",
- flexWrap: "wrap",
- width: "100%"
- }}
- >
- <Switch
- title={localize("textInput-toggleIcon")}
- onPress={() => setShowIcon(!showIcon)}
- isActive={showIcon}
- />
- <Switch
- title={localize("textInput-toggleDisabled")}
- onPress={() => setIsDisabled(!isDisabled)}
- isActive={isDisabled}
- />
- <Switch
- onPress={() => setIsCleanEnabled(!isCleanEnabled)}
- title={localize("textInput-toggleClean")}
- isActive={isCleanEnabled}
- />
- <Switch
- title={localize("textInput-toggleRequired")}
- onPress={() => setIsRequired(!isRequired)}
- isActive={isRequired}
- />
- <Switch
- title={localize("textInput-toggleOptional")}
- onPress={() => setIsOptional(!isOptional)}
- isActive={isOptional}
- />
- </View>
- </View>
- </View>
- </PageContainer>
- );
- };
- export default TextInputPage;
|