Code Monkey home page Code Monkey logo

Comments (3)

carlospence avatar carlospence commented on June 3, 2024 1
import * as React from 'react'
import { Select, CaretIcon, ErrorIcon } from 'react-responsive-select-next';
import { Formik, Form, Field, FieldProps, useFormikContext, useField } from 'formik'
import { FormFeedback, FormGroup, Input, InputGroup, InputGroupAddon, InputGroupText, Label } from "reactstrap";
import "react-responsive-select-next/dist/react-responsive-select.css";
import { compareArray } from '../utils/SyncUtils';

const RRSMultiInput = ({
    // field, // { name, value, onChange, onBlur }
    iconOrText,
    // form: { touched, errors, setFieldValue, values, handleBlur }, // also values, setXXXX, handleXXXX, dirty, isValid, status, etc.
    ...props
}) => {
    const { options, isRequired = false, label, showLabel = false, isMulti = false } = props
    const [field, meta] = useField(props);
    const { values, errors, touched, setFieldValue, handleBlur } = useFormikContext();
    const icon = iconOrText ?? ""
    let error = errors[field.name];
    let touch = touched[field.name];
    let currentValue = values[field.name];

    return (
        <FormGroup>
            {showLabel ? <Label for={props.id || props.name} className={props.labelColor}>{label}</Label> : ""}
          
            <Select
                {...field}
                {...props}
                options={options}
                selectedValues={values[field.name]}
                multiselect
               
                // caretIcon={<CaretIcon key={`${field.name}-caret`} />}
                caretIcon={<CaretIcon />}
                key={`${field.name}-rrs-multi`}
                onChange={({ options }) => {
                    if (props.onSelectChange) {
                        props.onSelectChange(options)
                    }
                    if (options.length) {
                      
                        const name = options[0].name;
                        const value = options.map(x => x.value);
                          if (compareArray(values[field.name], value) == false)
                          {
                            setFieldValue(name, value);
                          }
                    }
                    else {
                        setFieldValue(field.name, [])
                    }
                }}
                onBlur={({ options }) => {
                    if (options.length) {
                      
                        const name = options[0].name;
                       const value = options.map(x => x.value);
                          if (compareArray(values[field.name], value) == false)
                          {
                            handleBlur({ target: { value, name } });
                          }
                    }
                   
                }}
           
            />

           
            {touched[field.name] && errors[field.name] && (
                <div className="error text-danger">&nbsp;<ErrorIcon /> {errors[field.name]}</div>
            )}
            {error && <FormFeedback>{error}</FormFeedback>}
        </FormGroup>
    )
}

export default RRSMultiInput

I used react-responsive-select-next, It can also be modified for react-responsive-select

from react-responsive-select.

benbowes avatar benbowes commented on June 3, 2024

see #150

from react-responsive-select.

benbowes avatar benbowes commented on June 3, 2024

released in 6.0.0

from react-responsive-select.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.