| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- import {
- useLayoutEffect,
- useState
- } from "react";
- import {
- View
- } from "react-native";
- import stylesheet from "./stylesheet";
- import {
- NCoreUIKitLocalize,
- NCoreUIKitTheme,
- PageContainer,
- RadioButton,
- 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 {
- IRadioButtonProps
- } from "ncore-ui-kit";
- const TYPES: Array<IRadioButtonProps["type"]> = [
- "primary",
- "danger",
- "warning",
- "success",
- "info"
- ];
- const SPREAD_BEHAVIOURS: Array<IRadioButtonProps["spreadBehaviour"]> = [
- "baseline",
- "stretch",
- "free"
- ];
- const TYPES_DATA = TYPES.map((item) => ({
- __title: item as string,
- __key: item as string
- }));
- const RadioButtonPage = () => {
- const {
- radiuses,
- borders,
- spaces,
- colors
- } = NCoreUIKitTheme.useContext();
- const {
- localize
- } = NCoreUIKitLocalize.useContext();
- const navigation = useNavigation<NativeStackNavigationProp<RootStackParamList>>();
- const [
- typeIndex,
- setTypeIndex
- ] = useState<number>(0);
- const [
- spreadIndex,
- setSpreadIndex
- ] = useState<number>(0);
- const [
- title,
- setTitle
- ] = useState<string>("");
- const [
- isDisabled,
- setIsDisabled
- ] = useState<boolean>(false);
- const [
- isLoading,
- setIsLoading
- ] = useState<boolean>(false);
- const [
- isSelected,
- setIsSelected
- ] = useState<boolean>(false);
- useLayoutEffect(() => {
- navigation.setOptions({
- header: () => (
- <Header
- title={localize("radioButton-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("radioButton-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
- }}
- >
- <RadioButton
- title={
- title || localize("radioButton-exampleTitle")
- }
- spreadBehaviour={SPREAD_BEHAVIOURS[spreadIndex]}
- onPress={() => setIsSelected(!isSelected)}
- type={TYPES[typeIndex]}
- isDisabled={isDisabled}
- isChecked={isSelected}
- isLoading={isLoading}
- />
- </View>
- <TextInput
- placeholder={localize("radioButton-enterTitle")}
- title={localize("radioButton-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
- onChange={(selectedItems) => {
- if (selectedItems.length > 0) {
- const index = TYPES.indexOf(
- selectedItems[0]!
- .__key as unknown as IRadioButtonProps["type"],
- );
- if (index !== -1) setTypeIndex(index);
- }
- }}
- initialSelectedItems={
- TYPES_DATA[typeIndex] ? [TYPES_DATA[typeIndex]] : []
- }
- title={localize("radioButton-changeType")}
- titleExtractor={(item) => item.__title}
- keyExtractor={(item) => item.__key}
- spreadBehaviour="free"
- data={TYPES_DATA}
- />
- <Button
- onPress={() => {
- setSpreadIndex((prev) =>
- prev + 1 > SPREAD_BEHAVIOURS.length - 1
- ? 0
- : prev + 1,
- );
- }}
- title={
- `${localize("radioButton-changeSpread")}: ${SPREAD_BEHAVIOURS[spreadIndex]}`
- }
- spreadBehaviour="free"
- />
- <View
- style={{
- justifyContent: "space-between",
- flexDirection: "row",
- alignItems: "center",
- flexWrap: "wrap",
- width: "100%"
- }}
- >
- <Switch
- title={localize(
- "radioButton-toggleDisabled",
- )}
- onPress={() => setIsDisabled(!isDisabled)}
- isActive={isDisabled}
- />
- <Switch
- title={localize("radioButton-toggleLoading")}
- onPress={() => setIsLoading(!isLoading)}
- isActive={isLoading}
- />
- <Switch
- title={localize(
- "radioButton-toggleSelected",
- )}
- onPress={() => setIsSelected(!isSelected)}
- isActive={isSelected}
- />
- </View>
- </View>
- </View>
- </PageContainer>
- );
- };
- export default RadioButtonPage;
|