Blame view

components/vendor/ActivityDetails.js 65.1 KB
1
import Image from "next/image";
Jyotsna committed
2
import { ErrorMessage, FieldArray, Formik } from "formik";
jaymehta committed
3
import { Fragment, useEffect, useRef, useState } from "react";
jaymehta committed
4
import { Button, Form, Modal } from "react-bootstrap";
5
import * as Yup from "yup";
jaymehta committed
6 7 8 9 10 11 12
import { FaTimes } from "react-icons/fa";
import { useDispatch, useSelector } from "react-redux";
import { getAllSubCategories } from "../../redux/actions/categoriesAction";
import { getLoggedInVendor, pincodeSearchByFilter } from "../../redux/actions/vendorActions";
import { AsyncTypeahead } from "react-bootstrap-typeahead";
import Select from "react-select";
import makeAnimated from "react-select/animated";
jaymehta committed
13 14
import { Select as AntSelect, Switch, Upload, Image as AntImage, message } from "antd";
// import { Image as AntSelect, Switch, Upload } from "antd";
jaymehta committed
15 16
// import { getMasterDays } from "../../redux/actions/activityAction";
import axios from "axios";
jaymehta committed
17
import { sanitizeTimeFormat, sanitizeTimeRange } from "../../services/imageHandling";
.  
jaymehta committed
18
import { createActivity, getActivityById, updateActivityById } from "../../redux/actions/activityAction";
jaymehta committed
19
import { toast } from "react-toastify";
jaymehta committed
20 21 22 23
import { DatePicker, Space } from "antd";
import dayjs from "dayjs";
import customParseFormat from "dayjs/plugin/customParseFormat";
import LazyLoad from "react-lazyload";
jaymehta committed
24
import { ArrowLeftOutlined, CheckCircleTwoTone, PlusOutlined } from "@ant-design/icons";
jaymehta committed
25
import { useRouter } from "next/router";
jaymehta committed
26 27
import ImageUploadPopUp from "./ImageUploadPopUp";
import { loadUser } from "../../redux/actions/userActions";
.  
jaymehta committed
28
import UploadImageComponent from "./UploadImageComponent";
jaymehta committed
29
import UploadImageCustom from "./UploadImageCustom";
jaymehta committed
30 31 32 33
dayjs.extend(customParseFormat);

const { RangePicker } = DatePicker;
const dateFormat = "YYYY/MM/DD";
jaymehta committed
34 35 36 37 38 39 40
const getBase64 = file =>
  new Promise((resolve, reject) => {
    const reader = new FileReader();
    reader.readAsDataURL(file);
    reader.onload = () => resolve(reader.result);
    reader.onerror = error => reject(error);
  });
41

jaymehta committed
42 43
// import { colourOptions } from '../data';
const animatedComponents = makeAnimated();
jaymehta committed
44
const ActivityDetails = ({ isUpdate }) => {
jaymehta committed
45 46 47
  // const [fileList, setFileList] = useState([]);
  // const [uploading, setUploading] = useState(false);
  const [showImageUploadModal, setshowImageUploadModal] = useState(false);
.  
jaymehta committed
48
  const [imagesArrayComponent, setimagesArrayComponent] = useState([]);
jaymehta committed
49 50 51 52 53
  const [image1, setimage1] = useState();
  const [image2, setimage2] = useState();
  const [image3, setimage3] = useState();
  const [image4, setimage4] = useState();
  const [image5, setimage5] = useState();
jaymehta committed
54
  const [displayImage, setdisplayImage] = useState();
jaymehta committed
55 56
  const [termsConditions, settermsConditions] = useState();
  const [cancellationPolicy, setCancellationPolicy] = useState();
jaymehta committed
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99

  useEffect(() => {
    // dispatch(loadUser());
    // setFileList([
    //   // {
    //   //   uid: "-1",
    //   //   name: "image.png",
    //   //   status: "done",
    //   //   url: "https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
    //   // },
    //   // {
    //   //   uid: "-2",
    //   //   name: "image.png",
    //   //   status: "done",
    //   //   url: "https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
    //   // },
    //   // {
    //   //   uid: "-3",
    //   //   name: "image.png",
    //   //   status: "done",
    //   //   url: "https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
    //   // },
    //   // {
    //   //   uid: "-4",
    //   //   name: "image.png",
    //   //   status: "done",
    //   //   url: "https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
    //   // },
    //   // {
    //   //   uid: "-xxx",
    //   //   percent: 50,
    //   //   name: "image.png",
    //   //   status: "uploading",
    //   //   url: "https://zos.alipayobjects.com/rmsportal/jkjgkEfvpUPVyRjUImniVslZfWPnJuuZ.png"
    //   // },
    //   // {
    //   //   uid: "-5",
    //   //   name: "image.png",
    //   //   status: "error"
    //   // }
    // ]);
  }, []);

jaymehta committed
100 101 102
  const ActivityApprovalStatus = ({ status }) => {
    if (status) {
      switch (status) {
jaymehta committed
103
        case "approved":
jaymehta committed
104 105 106 107 108 109 110 111 112 113 114 115
          return (
            <>
              <div className=" ">
                <div className="alert alert-success alert-dismissible fade show text-center" role="alert">
                  <div className="text-center">
                    <span>
                      <p className=" text-center">
                        Activity approved! <CheckCircleTwoTone twoToneColor="#00b33c" />
                      </p>
                    </span>
                    <p className=" text-center">If you make changes, the details will be sent again for approval.</p>
                  </div>
.  
jaymehta committed
116 117
                </div>
              </div>
jaymehta committed
118 119
            </>
          );
.  
jaymehta committed
120

jaymehta committed
121
        case "rejected":
jaymehta committed
122 123 124 125 126 127 128 129
          return (
            <>
              <div className="col-12 offset-lg-2 col-lg-8 ">
                <div className="alert alert-danger alert-dismissible fade show text-center" role="alert">
                  <div className="text-center">
                    <p className="p1 text-center">Your profile has been rejected!</p>
                    <p className="p2 text-center"> Please contact the admin for more details!</p>
                  </div>
.  
jaymehta committed
130 131
                </div>
              </div>
jaymehta committed
132 133
            </>
          );
.  
jaymehta committed
134

jaymehta committed
135 136 137 138 139 140 141 142 143 144 145 146 147
        case "pending":
          return (
            <>
              <div className="col-12 offset-lg-2 col-lg-8 ">
                <div className="alert alert-warning alert-dismissible fade show text-center" role="alert">
                  <div className="text-center">
                    <p className="p1 text-center">Your profile has been sent for approval!</p>
                    <p className="p2 text-center"> Please wait till the vendor takes action!</p>
                  </div>
                </div>
              </div>
            </>
          );
.  
jaymehta committed
148

jaymehta committed
149 150 151
        default:
          break;
      }
.  
jaymehta committed
152
    }
jaymehta committed
153
  };
jaymehta committed
154 155 156 157
  const dispatch = useDispatch();
  const { categories } = useSelector(state => state.categories);
  const { subCategories } = useSelector(state => state.subCategories);
  const { loggedInVendor } = useSelector(state => state.loggedInVendor);
jaymehta committed
158
  const { activityById } = useSelector(state => state.activityById);
.  
jaymehta committed
159

jaymehta committed
160
  console.log("activityById", activityById);
.  
jaymehta committed
161
  // console.log("tostring",activityById?.data.attributes.duration.toString())
jaymehta committed
162 163
  const currentDate = new Date();
  const sanitizedCurrentDate = sanitizeTimeRange({ data: { $d: currentDate } });
jaymehta committed
164
  console.log("subCategories", subCategories);
jaymehta committed
165
  const router = useRouter();
jaymehta committed
166 167 168 169 170 171 172
  let categoryRef = useRef();
  let timeLines;
  const activityDetailsValidationSchema = Yup.object().shape({
    category: Yup.string().required("Category is Required"),
    subCategory: Yup.string().required("Sub Category is Required"),
    activityName: Yup.string().required("Activity Name is Required"),
    activityDescription: Yup.string().required("Activity Description is Required"),
.  
jaymehta committed
173
    location: Yup.string(),
jaymehta committed
174 175 176 177
    addressLine1: Yup.string().required("Address is Required"),
    addressLine2: Yup.string(),
    pricePerPerson: Yup.string().required("Price Per Person is Required"),
    giftingToSomeone: Yup.string().required("Required field"),
.  
jaymehta committed
178
    place: Yup.string(),
jaymehta committed
179 180 181 182 183 184 185
    activityType: Yup.string().required("Required field"),
    contactPersonForActivity: Yup.string().required("Contact Person Name is Required"),
    minGroupSize: Yup.string().required("Min Group Size is Required"),
    maxGroupSize: Yup.string().required("Max Group Size is Required"),
    months: Yup.array(),
    minDuration: Yup.string().required("Min Duration is Required"),
    maxDuration: Yup.string().required("Max Duration is Required"),
jaymehta committed
186
    durationUnit: Yup.string().required("This is a required field"),
jaymehta committed
187 188 189 190 191 192 193
    ageGroup: Yup.string().required("Age Group is Required"),
    linkOfBooking: Yup.string().required("Link of Booking is Required"),
    activityImages: Yup.array(),
    contactPersonForBooking: Yup.string().required("Contact person is a required field"),
    countryCode: Yup.string(),
    contactNumberForBooking: Yup.string().required("Number is a required field"),
    cancellationPolicyFile: Yup.string(),
jaymehta committed
194 195 196
    termsConditionsFile: Yup.string(),
    activityPeriod: Yup.array().required("Please mention both dates!")
    // availableOnMonday: Yup.bool()
jaymehta committed
197 198 199
  });
  const [pincodeData, setPinCodeData] = useState();
  const [activeDays, setActiveDays] = useState();
jaymehta committed
200 201
  // const [minDisabled, setMinDisabled] = useState(true);
  // const [months, setMonths] = useState(true);
jaymehta committed
202
  const [masterDays, setMasterDays] = useState();
jaymehta committed
203 204 205 206 207 208 209 210 211 212 213 214 215
  // const [timeSlotError, setTimeSlotError] = useState();
  const [activityPeriodState, setActivityPeriodState] = useState([]);
  const [startDate, setStartDate] = useState();
  const [endDate, setEndDate] = useState();
  const [daysBoolean, setDaysBoolean] = useState({
    availableOnMonday: false,
    availableOnTuesday: false,
    availableOnWednesday: false,
    availableOnThursday: false,
    availableOnFriday: false,
    availableOnSaturday: false,
    availableOnSunday: false
  });
jaymehta committed
216 217 218 219 220 221 222 223 224 225
  // const [timeArray, setTimeArray] = useState([]);
  console.log("loggedInVendor", loggedInVendor);
  // const [timeLines, setTimeLines] = useState()
  const ref = useRef(null);
  // let
  const handleSearch = async pin => {
    if (isNaN(pin)) {
      return;
    }
    let pincodeDataSet = await pincodeSearchByFilter(pin);
jaymehta committed
226 227 228 229
    console.log("pincodeDataSet.data.data", pincodeDataSet.data.data);
    // if (pincodeDataSet.data.data.length > 0) {
    //   return { label: "no values available" };
    // }
jaymehta committed
230 231
    setPinCodeData(pincodeDataSet.data.data);
  };
.  
jaymehta committed
232

jaymehta committed
233 234 235
  useEffect(() => {
    dispatch(getLoggedInVendor());
  }, []);
jaymehta committed
236 237 238 239
  useEffect(() => {
    if (isUpdate) {
      ref.current.state.selected = [{ id: activityById?.data.attributes?.masterPincode.data.id, name: activityById?.data.attributes?.masterPincode.data.attributes.name }];
      setDaysBoolean({
jaymehta committed
240 241 242 243 244 245 246
        availableOnSunday: activityById?.data.attributes.availableOnSunday ? activityById?.data.attributes.availableOnSunday : false,
        availableOnMonday: activityById?.data.attributes.availableOnMonday ? activityById?.data.attributes.availableOnMonday : false,
        availableOnTuesday: activityById?.data.attributes.availableOnTuesday ? activityById?.data.attributes.availableOnTuesday : false,
        availableOnWednesday: activityById?.data.attributes.availableOnWednesday ? activityById?.data.attributes.availableOnWednesday : false,
        availableOnThursday: activityById?.data.attributes.availableOnThursday ? activityById?.data.attributes.availableOnThursday : false,
        availableOnFriday: activityById?.data.attributes.availableOnFriday ? activityById?.data.attributes.availableOnFriday : false,
        availableOnSaturday: activityById?.data.attributes.availableOnSaturday ? activityById?.data.attributes.availableOnSaturday : false
jaymehta committed
247 248 249
      });
      setStartDate(activityById?.data.attributes.fromDate);
      setEndDate(activityById?.data.attributes.toDate);
jaymehta committed
250
      setimagesArrayComponent(activityById?.data.attributes.imagesComponent.map(item => item.image.data?.id));
jaymehta committed
251 252 253 254 255
      setimage1(activityById?.data.attributes.imagesComponent[0].image.data?.id);
      setimage2(activityById?.data.attributes.imagesComponent[1].image.data?.id);
      setimage3(activityById?.data.attributes.imagesComponent[2].image.data?.id);
      setimage4(activityById?.data.attributes.imagesComponent[3].image.data?.id);
      setimage5(activityById?.data.attributes.imagesComponent[4].image.data?.id);
256
      setdisplayImage(activityById?.data.attributes.image?.data?.id);
jaymehta committed
257 258
      setCancellationPolicy(activityById?.data.attributes.cancellationPolicy?.data?.id);
      settermsConditions(activityById?.data.attributes.termsConditions?.data?.id);
jaymehta committed
259 260 261 262 263
    }
  }, []);
  // useEffect(() => {
  //   dispatch(updateActivityById(8))
  // }, [])
jaymehta committed
264
  console.log("pincodeData", pincodeData && pincodeData.length > 0);
.  
jaymehta committed
265
  console.log("activityById", activityById);
jaymehta committed
266
  console.log("activityPeriodState", activityPeriodState);
jaymehta committed
267 268
  return (
    <Fragment>
Chetan committed
269
      <div className="container p-5">
jaymehta committed
270 271 272
        <div className="row">
          <div className="col-12 col-lg-8">
            <div className="content-div business-details">
jaymehta committed
273
              {isUpdate ? <h2>{activityById?.data.attributes.name}</h2> : <div>Add Details</div>}
jaymehta committed
274
              {isUpdate && <ActivityApprovalStatus status={activityById?.data.attributes.approved} />}
jaymehta committed
275 276
              <div className="form-container">
                <Formik
jaymehta committed
277
                  enableReinitialize
jaymehta committed
278
                  initialValues={{
jaymehta committed
279 280 281 282 283 284
                    category: activityById?.data.attributes?.subCategory?.data?.attributes?.category?.data?.attributes?.name
                      ? activityById?.data.attributes?.subCategory?.data?.attributes?.category?.data?.attributes?.name
                      : "",
                    subCategory: activityById?.data.attributes?.subCategory?.data?.attributes.name ? activityById?.data.attributes?.subCategory?.data?.attributes.name : "",
                    activityName: activityById?.data.attributes.name ? activityById?.data.attributes.name : "",
                    activityDescription: activityById?.data.attributes?.description ? activityById?.data.attributes?.description : "",
jaymehta committed
285
                    location: "",
jaymehta committed
286
                    addressLine1: activityById?.data.attributes.address ? activityById?.data.attributes.address : "",
jaymehta committed
287
                    addressLine2: "",
jaymehta committed
288 289 290 291 292 293
                    pricePerPerson: activityById?.data.attributes.pricePerPerson ? activityById?.data.attributes.pricePerPerson : "",
                    giftingToSomeone: activityById?.data.attributes.giftSomeone ? activityById?.data.attributes.giftSomeone : "",
                    place: activityById?.data.attributes.activityType ? activityById?.data.attributes.activityType : "",
                    contactPersonForActivity: activityById?.data.attributes.activityType ? activityById?.data.attributes.activityType : "",
                    minGroupSize: activityById?.data.attributes.minGroupSize ? activityById?.data.attributes.minGroupSize : "",
                    maxGroupSize: activityById?.data.attributes.maxGroupSize ? activityById?.data.attributes.maxGroupSize : "",
jaymehta committed
294
                    months: [],
.  
jaymehta committed
295 296 297 298
                    minDuration: activityById?.data.attributes.minimumDuration ? activityById?.data.attributes.minimumDuration.toString() : "",
                    maxDuration: activityById?.data.attributes.maximumDuration ? activityById?.data.attributes.maximumDuration.toString() : "",
                    durationUnit: activityById?.data.attributes.duration ? activityById?.data.attributes.duration.toString() : "",
                    ageGroup: activityById?.data.attributes.ageLowerLimit ? activityById?.data.attributes.ageLowerLimit.toString() : "",
jaymehta committed
299
                    linkOfBooking: activityById?.data.attributes.link ? activityById?.data.attributes.link : "",
jaymehta committed
300
                    activityImages: [],
jaymehta committed
301
                    contactPersonForBooking: activityById?.data.attributes.contactPersonForBooking ? activityById?.data.attributes.contactPersonForBooking : "",
jaymehta committed
302
                    countryCode: "",
.  
jaymehta committed
303
                    contactNumberForBooking: activityById?.data.attributes.phoneNumber ? activityById?.data.attributes.phoneNumber : "",
jaymehta committed
304
                    cancellationPolicyFile: "",
jaymehta committed
305 306 307
                    termsConditionsFile: "",
                    activityPeriod: [],
                    activityType: activityById?.data.attributes.activityType ? activityById?.data.attributes.activityType : ""
jaymehta committed
308 309 310
                  }}
                  validationSchema={activityDetailsValidationSchema}
                  // enableReinitialize={true}
311
                  onSubmit={values => { }}
jaymehta committed
312
                >
jaymehta committed
313
                  {({ values, errors, touched, handleChange, handleBlur, handleSubmit, setFieldValue, resetForm }) => (
jaymehta committed
314 315 316 317
                    <Form
                      onSubmit={async e => {
                        e.preventDefault();
                        console.log("activity details values", values);
jaymehta committed
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
                        if (
                          !(
                            daysBoolean.availableOnMonday ||
                            daysBoolean.availableOnTuesday ||
                            daysBoolean.availableOnWednesday ||
                            daysBoolean.availableOnThursday ||
                            daysBoolean.availableOnFriday ||
                            daysBoolean.availableOnSaturday ||
                            daysBoolean.availableOnSunday
                          )
                        ) {
                          toast.error("Please select days you will be active on");
                          return;
                        }
                        let fromDate;
                        let toDate;
jaymehta committed
334
                        console.log("timeslots", activityPeriodState, startDate, endDate);
jaymehta committed
335 336 337 338 339
                        if (!startDate || !endDate) {
                          fromDate = sanitizeTimeRange({ data: activityPeriodState[0] });
                          toDate = sanitizeTimeRange({ data: activityPeriodState[1] });
                          if (!activityPeriodState || !activityPeriodState.length > 0) {
                            toast.error("Please select time range");
jaymehta committed
340
                            return;
jaymehta committed
341
                          }
jaymehta committed
342 343 344
                        } else if (startDate && endDate) {
                          fromDate = startDate;
                          toDate = endDate;
jaymehta committed
345
                        }
jaymehta committed
346

jaymehta committed
347
                        if (!image1 || !image2 || !image3 || !image4 || !image5) {
jaymehta committed
348 349 350 351
                          toast.error("You need to upload 5 images!");
                          return;
                        }

.  
jaymehta committed
352 353 354 355
                        if (!displayImage) {
                          toast.error("You need to upload a display image!");
                          return;
                        }
jaymehta committed
356 357 358
                        handleSubmit();
                        values = {
                          ...values,
jaymehta committed
359 360
                          // timeSlots,
                          // months,
jaymehta committed
361 362 363 364
                          pincode: ref.current.state.selected[0],
                          vendor: loggedInVendor,
                          name: values.activityName,
                          description: values.activityDescription,
.  
jaymehta committed
365
                          address: `${values.addressLine1}`,
jaymehta committed
366 367 368 369 370
                          minimumDuration: values.minDuration,
                          maximumDuration: values.maxDuration,
                          ageLowerLimit: values.ageGroup,
                          phoneNumber: values.contactNumberForBooking,
                          link: values.linkOfBooking,
jaymehta committed
371 372 373 374 375
                          giftSomeone: values.giftingToSomeone,
                          fromDate,
                          toDate,
                          daysBoolean,
                          contactPersonForActivity: values.contactPersonForActivity,
.  
jaymehta committed
376
                          duration: values.durationUnit.toString(),
jaymehta committed
377
                          imagesComponent: [image1, image2, image3, image4, image5],
.  
jaymehta committed
378
                          image: displayImage,
379 380 381
                          approved: "pending",
                          termsConditions: termsConditions,
                          cancellationPolicy: cancellationPolicy
jaymehta committed
382
                        };
.  
jaymehta committed
383 384 385
                        if (!ref.current.state.selected[0]) {
                          toast.error("Please select location!");
                        }
jaymehta committed
386
                        console.log("values 123", values);
jaymehta committed
387 388 389 390
                        if (isUpdate) {
                          console.log("router", router);
                          const updateRes = await dispatch(updateActivityById({ activityId: router.query.id, updatedData: values }));
                          console.log("updateRes", updateRes);
.  
jaymehta committed
391
                          toast.success("Activity sent for approval.");
jaymehta committed
392 393 394 395 396 397 398 399 400 401
                        }
                        if (!isUpdate) {
                          const res = await dispatch(createActivity(values));
                          console.log("res", res);
                          if (res.success) {
                            toast.success("Activity added successfully!");
                            resetForm();
                            setActiveDays([]);
                            // setMonths([]);
                          }
jaymehta committed
402
                        }
.  
jaymehta committed
403
                        dispatch(getActivityById(router.query.id));
jaymehta committed
404 405 406 407 408 409 410 411
                      }}
                    >
                      <div className="activityDetails">
                        <div>
                          <div className="mt-4">
                            <div className="d-flex justify-content-between">
                              <p className="textH">Basic Details</p>
                            </div>
412

jaymehta committed
413 414 415 416 417 418 419 420 421 422 423
                            <div className="row">
                              <div className="col-12 col-lg-6">
                                <div className="input-group">
                                  <label>Category</label>
                                  <select
                                    ref={categoryRef}
                                    value={values.category}
                                    name="category"
                                    onChange={async e => {
                                      handleChange(e);
                                      console.log(categoryRef);
jaymehta committed
424
                                      // console.log("subCategories", categoryRef.current.value);
jaymehta committed
425
                                      await dispatch(getAllSubCategories(categoryRef.current.value));
.  
jaymehta committed
426
                                      setFieldValue("subCategory", "");
427
                                    }}
jaymehta committed
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
                                    onBlur={handleBlur}
                                  >
                                    <option value="">Select</option>
                                    {categories &&
                                      categories?.data.length > 0 &&
                                      categories.data.map((item, index) => {
                                        return (
                                          <option key={index} value={item.attributes.name}>
                                            {item.attributes.name}
                                          </option>
                                        );
                                      })}
                                  </select>
                                  {touched.category && errors.category && (
                                    <span className="form-error" style={{ color: "red", fontSize: "10px" }}>
                                      {errors.category}
                                    </span>
                                  )}
                                </div>
                              </div>
                              <div className="col-12 col-lg-6">
                                <div className="input-group">
                                  <label>Sub Category</label>
                                  <select id={`subCategory`} value={values.subCategory} name={`subCategory`} onChange={handleChange} onBlur={handleBlur}>
                                    <option value="">Select</option>
                                    {subCategories &&
                                      subCategories?.data.length > 0 &&
                                      subCategories.data.map((item, index) => {
                                        return (
                                          <option key={index} value={item.value}>
                                            {item.attributes.name}
                                          </option>
                                        );
                                      })}
                                  </select>
                                  {touched.subCategory && errors.subCategory && (
                                    <span className="form-error" style={{ color: "red", fontSize: "10px" }}>
                                      {errors.subCategory}
                                    </span>
                                  )}
                                </div>
                              </div>
                            </div>
                            <div className="row">
                              <div className="col-12 col-lg-6">
                                <div className="input-group">
                                  <label>Activity Name</label>
                                  <input type="text" name={`activityName`} onChange={handleChange} onBlur={handleBlur} value={values.activityName} />
                                  {touched.activityName && errors.activityName && (
                                    <span className="form-error" style={{ color: "red", fontSize: "10px" }}>
                                      {errors.activityName}
                                    </span>
                                  )}
                                </div>
                              </div>
                              <div className="col-12 col-lg-6">
                                <div className="input-group">
                                  <label>Activity Description</label>
                                  <textarea rows="4" name={`activityDescription`} onChange={handleChange} onBlur={handleBlur} value={values.activityDescription} />
                                  {touched.activityDescription && errors.activityDescription && (
                                    <span className="form-error" style={{ color: "red", fontSize: "10px" }}>
                                      {errors.activityDescription}
                                    </span>
                                  )}
                                </div>
                              </div>
                            </div>
                            <div className="row">
                              <div className="col-12 col-lg-6">
                                <div className="input-group">
                                  <label>Location</label>
                                  <AsyncTypeahead
                                    type="number"
                                    onSearch={handleSearch}
                                    minLength={3}
                                    value={values.location}
                                    id="basic-behaviors-example"
                                    labelKey="name"
                                    options={
jaymehta committed
507 508 509 510 511
                                      pincodeData && pincodeData.length > 0
                                        ? pincodeData.map(item => {
                                            return { name: item.attributes.name, id: item.id };
                                          })
                                        : [{}]
jaymehta committed
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551
                                    }
                                    placeholder="Choose a pincode"
                                    ref={ref}
                                    onBlur={() => {
                                      console.log(ref.current);
                                      if (!ref.current.state.selected.length > 0) {
                                        ref.current?.clear();
                                      }
                                    }}
                                    onChange={e => {
                                      console.log("input change", e);
                                      // handleChange(e);
                                    }}
                                  />
                                </div>
                              </div>
                              <div className="col-12 col-lg-6">
                                <div className="input-group">
                                  <label>Price (per person)</label>
                                  <input type="text" name={`pricePerPerson`} onChange={handleChange} onBlur={handleBlur} value={values.pricePerPerson} />
                                  {touched.pricePerPerson && errors.pricePerPerson && (
                                    <span className="form-error" style={{ color: "red", fontSize: "10px" }}>
                                      {errors.pricePerPerson}
                                    </span>
                                  )}
                                </div>
                              </div>
                            </div>
                            <div className="row">
                              <div className="col-12 col-lg-6">
                                <div className="input-group">
                                  <label>Address Line 1</label>
                                  <input type="text" name={`addressLine1`} onChange={handleChange} onBlur={handleBlur} value={values.addressLine1} />
                                  {touched.addressLine1 && errors.addressLine1 && (
                                    <span className="form-error" style={{ color: "red", fontSize: "10px" }}>
                                      {errors.addressLine1}
                                    </span>
                                  )}
                                </div>
                              </div>
.  
jaymehta committed
552
                              {/* <div className="col-12 col-lg-6">
jaymehta committed
553 554 555 556
                                <div className="input-group">
                                  <label>Address Line 2</label>
                                  <input type="text" name={`addressLine2`} onChange={handleChange} onBlur={handleBlur} value={values.addressLine2} />
                                </div>
.  
jaymehta committed
557
                              </div> */}
jaymehta committed
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
                            </div>
                            <div className="row">
                              <div className="col-12 col-lg-6">
                                <div className="input-group mb-2">
                                  <label>Gifting to Someone</label>
                                  <div className="row">
                                    <div className="col-12 col-lg-12">
                                      <select id="giftingToSomeone" name="giftingToSomeone" value={values.giftingToSomeone} onChange={handleChange} onBlur={handleBlur}>
                                        {" "}
                                        Gift someone
                                        <option value="">Select</option>
                                        <option value={true}>Yes</option>
                                        <option value={false}>No</option>
                                      </select>
                                    </div>
                                    {touched.giftingToSomeone && errors.giftingToSomeone && (
                                      <span className="form-error" style={{ color: "red", fontSize: "10px" }}>
                                        {errors.giftingToSomeone}
                                      </span>
577
                                    )}
jaymehta committed
578 579 580 581 582
                                  </div>
                                </div>
                              </div>
                              <div className="col-12 col-lg-6">
                                <div className="input-group mb-2">
jaymehta committed
583
                                  <label>Activity Type</label>
jaymehta committed
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643
                                  <div className="row">
                                    <div className="">
                                      <div className="col-12 col-lg-12">
                                        <select id="activityType" name="activityType" onChange={handleChange} onBlur={handleBlur} value={values.activityType}>
                                          {" "}
                                          Activity Type
                                          <option value="">Select</option>
                                          <option value={"indoor"}>Indoor</option>
                                          <option value={"outdoor"}>Outdoor</option>
                                        </select>
                                      </div>
                                      {touched.activityType && errors.activityType && (
                                        <span className="form-error" style={{ color: "red", fontSize: "10px" }}>
                                          {errors.activityType}
                                        </span>
                                      )}
                                    </div>
                                  </div>
                                </div>
                              </div>
                            </div>
                          </div>
                          <hr />
                          <div className="mt-4">
                            <p className="textH">Group Information</p>
                            <div className="row">
                              <div className="col-12 col-lg-6">
                                <div className="input-group">
                                  <label>Contact Person for the Activity</label>
                                  <input type="text" name={`contactPersonForActivity`} onChange={handleChange} onBlur={handleBlur} value={values.contactPersonForActivity} />
                                  {touched.contactPersonForActivity && errors.contactPersonForActivity && (
                                    <span className="form-error" style={{ color: "red", fontSize: "10px" }}>
                                      {errors.contactPersonForActivity}
                                    </span>
                                  )}
                                </div>
                              </div>
                              <div className="col-12 col-lg-6">
                                <div className="input-group">
                                  <label>Size of the Group</label>
                                  <div className="row">
                                    <div className="col-6 col-lg-5">
                                      <input type="text" placeholder="Min." name={`minGroupSize`} onChange={handleChange} onBlur={handleBlur} value={values.minGroupSize} />
                                      {touched.minGroupSize && errors.minGroupSize && (
                                        <span className="form-error" style={{ color: "red", fontSize: "10px" }}>
                                          {errors.minGroupSize}
                                        </span>
                                      )}
                                    </div>
                                    <div className="col-6 col-lg-5">
                                      <input type="text" placeholder="Max." name={`maxGroupSize`} onChange={handleChange} onBlur={handleBlur} value={values.maxGroupSize} />
                                      {touched.maxGroupSize && errors.maxGroupSize && (
                                        <span className="form-error" style={{ color: "red", fontSize: "10px" }}>
                                          {errors.maxGroupSize}
                                        </span>
                                      )}
                                    </div>
                                  </div>
                                </div>
                              </div>
644
                            </div>
jaymehta committed
645 646 647 648 649
                          </div>
                          <hr />
                          <div className="mt-4">
                            <p className="textH">Availability</p>
                            <div className="row">
jaymehta committed
650
                              <div className="col-md-12 ">
jaymehta committed
651
                                <div className="input-group">
jaymehta committed
652
                                  <span className="col-md-12 my-1">Start date and end date of the activity:</span>
.  
jaymehta committed
653
                                  {/* <LazyLoad> */}
jaymehta committed
654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
                                    {isUpdate ? (
                                      <RangePicker
                                        id="activityPeriod"
                                        name="activityPeriod"
                                        defaultValue={[
                                          dayjs(activityById?.data.attributes.fromDate ? activityById?.data.attributes.fromDate : sanitizedCurrentDate, dateFormat),
                                          dayjs(activityById?.data.attributes.toDate ? activityById?.data.attributes.toDate : sanitizedCurrentDate, dateFormat)
                                        ]}
                                        format={dateFormat}
                                        onBlur={() => {
                                          if (true) {
                                          }
                                        }}
                                        onChange={e => {
                                          console.log("change", e);
                                          setActivityPeriodState(e);
                                          // handleChange(e);
                                        }}
                                      />
                                    ) : (
                                      <RangePicker
                                        id="activityPeriod"
                                        name="activityPeriod"
                                        format={dateFormat}
                                        onBlur={() => {
                                          if (true) {
                                          }
                                        }}
                                        onChange={e => {
                                          console.log("change", e);
                                          setActivityPeriodState(e);
                                          // handleChange(e);
                                        }}
                                      />
                                    )}
.  
jaymehta committed
689
                                  {/* </LazyLoad> */}
jaymehta committed
690
                                  {touched.activityPeriod && errors.activityPeriod && (
jaymehta committed
691
                                    <span className="form-error" style={{ color: "red", fontSize: "10px" }}>
jaymehta committed
692
                                      {errors.activityPeriod}
jaymehta committed
693
                                    </span>
jaymehta committed
694
                                  )}
jaymehta committed
695 696 697
                                </div>
                              </div>

jaymehta committed
698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719
                              <div className="col-md-12 ">
                                <div className="row">
                                  <label>Active on days:</label>
                                  <div className="col-6 my-2">
                                    <div className="d-flex">
                                      <span className="col-md-6">Select all:</span>
                                      <Switch
                                        // style={{ backgroundColor: "green" }}
                                        className="col-md-4"
                                        value={
                                          daysBoolean.availableOnMonday &&
                                          daysBoolean.availableOnTuesday &&
                                          daysBoolean.availableOnWednesday &&
                                          daysBoolean.availableOnThursday &&
                                          daysBoolean.availableOnFriday &&
                                          daysBoolean.availableOnSaturday &&
                                          daysBoolean.availableOnSunday
                                        }
                                        id={"availableOnMonday"}
                                        name="availableOnMonday"
                                        onChange={e => {
                                          setDaysBoolean({
jaymehta committed
720 721 722 723 724 725 726
                                            availableOnMonday: e === true ? true : false,
                                            availableOnTuesday: e === true ? true : false,
                                            availableOnWednesday: e === true ? true : false,
                                            availableOnThursday: e === true ? true : false,
                                            availableOnFriday: e === true ? true : false,
                                            availableOnSaturday: e === true ? true : false,
                                            availableOnSunday: e === true ? true : false
jaymehta committed
727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744
                                          });
                                          // setDaysBoolean({ ...daysBoolean, availableOnMonday: e });
                                          // console.log("availableOnMonday", daysBoolean);
                                        }}
                                        checkedChildren="Active"
                                        unCheckedChildren="Not Active"
                                      />
                                    </div>
                                  </div>
                                  <div className="col-6 my-2">
                                    <div className="d-flex">
                                      <span className="col-md-6">Monday:</span>
                                      <Switch
                                        className="col-md-4"
                                        value={daysBoolean.availableOnMonday}
                                        id={"availableOnMonday"}
                                        name="availableOnMonday"
                                        onChange={e => {
jaymehta committed
745
                                          setDaysBoolean({ ...daysBoolean, availableOnMonday: e === true ? true : false });
jaymehta committed
746 747 748 749 750 751 752 753 754 755 756 757 758 759
                                          console.log("availableOnMonday", daysBoolean);
                                        }}
                                        checkedChildren="Active"
                                        unCheckedChildren="Not Active"
                                      />
                                    </div>
                                  </div>
                                  <div className="col-6 my-2">
                                    <div className="d-flex">
                                      <span className="col-md-6">Tuesday:</span>
                                      <Switch
                                        className="col-md-4"
                                        value={daysBoolean.availableOnTuesday}
                                        onChange={e => {
jaymehta committed
760
                                          setDaysBoolean({ ...daysBoolean, availableOnTuesday: e === true ? true : false });
jaymehta committed
761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778
                                          // console.log("availableOnTuesday", daysBoolean);
                                        }}
                                        id={"availableOnTuesday"}
                                        // onChange={handleChange}
                                        checkedChildren="Active"
                                        unCheckedChildren="Not Active"
                                      />
                                    </div>
                                  </div>
                                  <div className="col-6 my-2">
                                    <div className="d-flex">
                                      <span className="col-md-6">Wednesday:</span>
                                      <Switch
                                        className="col-md-4"
                                        value={daysBoolean.availableOnWednesday}
                                        id={"availableOnWednesday"}
                                        // onChange={handleChange}
                                        onChange={e => {
jaymehta committed
779
                                          setDaysBoolean({ ...daysBoolean, availableOnWednesday: e === true ? true : false });
jaymehta committed
780 781 782 783 784 785 786 787 788 789 790 791 792 793 794
                                          // console.log("availableOnTuesday", daysBoolean);
                                        }}
                                        checkedChildren="Active"
                                        unCheckedChildren="Not Active"
                                      />
                                    </div>
                                  </div>
                                  <div className="col-6 my-2">
                                    <div className="d-flex">
                                      <span className="col-md-6">Thursday:</span>
                                      <Switch
                                        className="col-md-4"
                                        value={daysBoolean.availableOnThursday}
                                        id={"availableOnThursday"}
                                        onChange={e => {
jaymehta committed
795
                                          setDaysBoolean({ ...daysBoolean, availableOnThursday: e === true ? true : false });
jaymehta committed
796 797 798 799 800 801 802 803 804 805 806 807 808 809 810
                                          // console.log("availableOnTuesday", daysBoolean);
                                        }}
                                        checkedChildren="Active"
                                        unCheckedChildren="Not Active"
                                      />
                                    </div>
                                  </div>
                                  <div className="col-6 my-2">
                                    <div className="d-flex">
                                      <span className="col-md-6">Friday:</span>
                                      <Switch
                                        className="col-md-4"
                                        value={daysBoolean.availableOnFriday}
                                        id={"availableOnFriday"}
                                        onChange={e => {
jaymehta committed
811
                                          setDaysBoolean({ ...daysBoolean, availableOnFriday: e === true ? true : false });
jaymehta committed
812 813 814 815 816 817 818 819 820 821 822 823 824 825 826
                                          // console.log("availableOnTuesday", daysBoolean);
                                        }}
                                        checkedChildren="Active"
                                        unCheckedChildren="Not Active"
                                      />
                                    </div>
                                  </div>
                                  <div className="col-6 my-2">
                                    <div className="d-flex">
                                      <span className="col-md-6">Saturday:</span>
                                      <Switch
                                        className="col-md-4"
                                        value={daysBoolean.availableOnSaturday}
                                        id={"availableOnSaturday"}
                                        onChange={e => {
jaymehta committed
827
                                          setDaysBoolean({ ...daysBoolean, availableOnSaturday: e === true ? true : false });
jaymehta committed
828 829 830 831 832 833 834 835 836 837 838 839 840 841 842
                                          // console.log("availableOnTuesday", daysBoolean);
                                        }}
                                        checkedChildren="Active"
                                        unCheckedChildren="Not Active"
                                      />
                                    </div>
                                  </div>
                                  <div className="col-6 my-2">
                                    <div className="d-flex">
                                      <span className="col-md-6">Sunday:</span>
                                      <Switch
                                        className="col-md-4"
                                        value={daysBoolean.availableOnSunday}
                                        id={"availableOnSunday"}
                                        onChange={e => {
jaymehta committed
843
                                          setDaysBoolean({ ...daysBoolean, availableOnSunday: e === true ? true : false });
jaymehta committed
844 845 846 847 848 849
                                          // console.log("availableOnTuesday", daysBoolean);
                                        }}
                                        checkedChildren="Active"
                                        unCheckedChildren="Not Active"
                                      />
                                    </div>
jaymehta committed
850 851 852 853
                                  </div>
                                </div>
                              </div>
                            </div>
jaymehta committed
854 855

                            <div className="row mt-5">
jaymehta committed
856 857 858
                              <div className="col-12 col-lg-6">
                                <div className="input-group">
                                  <div className="row">
jaymehta committed
859 860
                                    <div className="col-2 col-lg-4">
                                      <label>Total duration (in Mins)</label>
.  
jaymehta committed
861 862 863 864 865 866 867 868 869
                                      <input
                                        value={values.durationUnit}
                                        type="number"
                                        id="durationUnit"
                                        name="durationUnit"
                                        onChange={handleChange}
                                        onBlur={handleBlur}
                                        style={{ width: "100%" }}
                                      ></input>
jaymehta committed
870 871
                                      {errors.durationUnit && touched.durationUnit && <span className="form-error">{errors.durationUnit}</span>}
                                    </div>
jaymehta committed
872
                                    <div className="col-5 col-lg-4">
jaymehta committed
873
                                      <label>Minimum duration</label>
.  
jaymehta committed
874
                                      <input value={values.minDuration} id="minDuration" name="minDuration" onChange={handleChange} onBlur={handleBlur}></input>
jaymehta committed
875 876 877 878 879 880
                                      {touched.minDuration && errors.minDuration && (
                                        <span className="form-error" style={{ color: "red", fontSize: "10px" }}>
                                          {errors.minDuration}
                                        </span>
                                      )}
                                    </div>
jaymehta committed
881

jaymehta committed
882
                                    <div className="col-2 col-lg-4">
jaymehta committed
883
                                      <label>Maximum duration</label>
.  
jaymehta committed
884 885 886 887 888 889 890 891
                                      <input
                                        value={values.maxDuration}
                                        id="maxDuration"
                                        name="maxDuration"
                                        onChange={handleChange}
                                        onBlur={handleBlur}
                                        style={{ width: "100%" }}
                                      ></input>
jaymehta committed
892
                                      {errors.maxDuration && touched.maxDuration && <span className="form-error">{errors.maxDuration}</span>}
jaymehta committed
893 894 895 896 897 898 899
                                    </div>
                                  </div>
                                </div>
                              </div>
                              <div className="col-12 col-lg-6">
                                <div className="input-group">
                                  <label>Age Group</label>
.  
jaymehta committed
900
                                  <select value={values.ageGroup} id={"ageGroup"} name={"ageGroup"} onChange={handleChange} onBlur={handleBlur}>
jaymehta committed
901
                                    <option value="">Select</option>
jaymehta committed
902 903 904 905 906
                                    <option value="5">5+</option>
                                    <option value="10">10+</option>
                                    <option value="15">15+</option>
                                    <option value="20">20+</option>
                                    <option value="25">25+</option>
jaymehta committed
907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971
                                  </select>
                                  {touched.ageGroup && errors.ageGroup && (
                                    <span className="form-error" style={{ color: "red", fontSize: "10px" }}>
                                      {errors.ageGroup}
                                    </span>
                                  )}
                                </div>
                              </div>
                            </div>
                          </div>
                          <hr />
                          <div className="mt-4">
                            <p className="textH">Booking & Activity Information</p>
                            <div className="row">
                              <div className="col-12 col-lg-6">
                                <div className="input-group">
                                  <label>Link of Booking</label>
                                  <input type="text" name={`linkOfBooking`} onChange={handleChange} onBlur={handleBlur} value={values.linkOfBooking} />
                                  {touched.linkOfBooking && errors.linkOfBooking && (
                                    <span className="form-error" style={{ color: "red", fontSize: "10px" }}>
                                      {errors.linkOfBooking}
                                    </span>
                                  )}
                                </div>
                              </div>
                            </div>
                            <div className="row">
                              <div className="col-12 col-lg-6">
                                <div className="input-group">
                                  <label>Contact Person Name</label>
                                  <input type="text" name={`contactPersonForBooking`} onChange={handleChange} onBlur={handleBlur} value={values.contactPersonForBooking} />
                                  {touched.contactPersonForBooking && errors.contactPersonForBooking && (
                                    <span className="form-error" style={{ color: "red", fontSize: "10px" }}>
                                      {errors.contactPersonForBooking}
                                    </span>
                                  )}
                                </div>
                              </div>
                              <div className="col-12 col-lg-6">
                                <div className="input-group">
                                  <label>Contact Person Number</label>
                                  <div className="contact-number">
                                    <select id={`countryCode`} name={`countryCode`} onChange={handleChange} onBlur={handleBlur} style={{ width: "80px" }}>
                                      <option value="+91">+91</option>
                                      <option value="+44">+44</option>
                                    </select>
                                    <input type="text" name={`contactNumberForBooking`} onChange={handleChange} onBlur={handleBlur} value={values.contactNumberForBooking} />
                                  </div>
                                  {touched.contactNumberForBooking && errors.contactNumberForBooking && (
                                    <span className="form-error" style={{ color: "red", fontSize: "10px" }}>
                                      {errors.contactNumberForBooking}
                                    </span>
                                  )}
                                </div>
                              </div>
                            </div>
                          </div>
                          <hr />
                          <div className="mt-4">
                            <p className="textH">Policy & Terms</p>
                            <div className="row">
                              <div className="col-12 col-lg-6">
                                <div className="input-group">
                                  <label>Cancellation Policy</label>
                                  <div className="custom-file">
.  
jaymehta committed
972 973 974 975 976 977 978
                                    <UploadImageCustom
                                      isUpdate={isUpdate}
                                      setImage={setCancellationPolicy}
                                      populatedImages={activityById?.data.attributes.termsConditions}
                                      isPdf={true}
                                    />
                                    {console.log("cancellationPolicy", cancellationPolicy, termsConditions)}
jaymehta committed
979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996
                                  </div>
                                  {values.cancellationPolicyFile && (
                                    <div className="d-flex align-items-center justify-content-between p-1" style={{ width: "100%" }}>
                                      <p className="textS m-0">{values.cancellationPolicyFile.name}</p>
                                      <FaTimes
                                        style={{ cursor: "pointer" }}
                                        onClick={() => {
                                          setFieldValue(`cancellationPolicyFile`, "");
                                        }}
                                      />
                                    </div>
                                  )}
                                </div>
                              </div>
                              <div className="col-12 col-lg-6">
                                <div className="input-group">
                                  <label>Terms & Conditions</label>
                                  <div className="custom-file">
.  
jaymehta committed
997 998 999 1000 1001 1002
                                    <UploadImageCustom
                                      isUpdate={isUpdate}
                                      setImage={settermsConditions}
                                      populatedImages={activityById?.data.attributes.cancellationPolicy}
                                      isPdf={true}
                                    />
jaymehta committed
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
                                  </div>
                                  {values.termsConditionsFile && (
                                    <div className="d-flex align-items-center justify-content-between p-1" style={{ width: "100%" }}>
                                      <p className="textS m-0">{values.termsConditionsFile.name}</p>
                                      <FaTimes
                                        style={{ cursor: "pointer" }}
                                        onClick={() => {
                                          setFieldValue(`termsConditionsFile`, "");
                                        }}
                                      />
                                    </div>
                                  )}
                                </div>
                              </div>
                            </div>
                          </div>
jaymehta committed
1019 1020 1021 1022
                          <hr />
                        </div>
                        <div className="row d-flex mt-4">
                          <p className="textH">Add display image</p>
jaymehta committed
1023 1024
                          {/* {console.log(displayImage)} */}
                          <UploadImageCustom isUpdate={isUpdate} setImage={setdisplayImage} populatedImages={activityById?.data.attributes.image} />
jaymehta committed
1025
                          <hr />
1026
                        </div>
jaymehta committed
1027
                        <div className="row d-flex ">
jaymehta committed
1028
                          <p className="textH">Add other images</p>
jaymehta committed
1029 1030 1031
                          <div className="col-2">
                            <ImageUploadPopUp
                              isUpdate={isUpdate}
jaymehta committed
1032
                              setimagesArrayComponent={setimage1}
jaymehta committed
1033
                              imagesArrayComponent={imagesArrayComponent}
jaymehta committed
1034
                              populatedImages={activityById?.data.attributes.imagesComponent[0]}
jaymehta committed
1035 1036 1037 1038 1039
                            />
                          </div>
                          <div className="col-2">
                            <ImageUploadPopUp
                              isUpdate={isUpdate}
jaymehta committed
1040
                              setimagesArrayComponent={setimage2}
jaymehta committed
1041
                              imagesArrayComponent={imagesArrayComponent}
jaymehta committed
1042
                              populatedImages={activityById?.data.attributes.imagesComponent[1]}
jaymehta committed
1043 1044 1045 1046 1047
                            />
                          </div>
                          <div className="col-2">
                            <ImageUploadPopUp
                              isUpdate={isUpdate}
jaymehta committed
1048
                              setimagesArrayComponent={setimage3}
jaymehta committed
1049
                              imagesArrayComponent={imagesArrayComponent}
jaymehta committed
1050
                              populatedImages={activityById?.data.attributes.imagesComponent[2]}
jaymehta committed
1051 1052 1053 1054 1055
                            />
                          </div>
                          <div className="col-2">
                            <ImageUploadPopUp
                              isUpdate={isUpdate}
jaymehta committed
1056
                              setimagesArrayComponent={setimage4}
jaymehta committed
1057
                              imagesArrayComponent={imagesArrayComponent}
jaymehta committed
1058
                              populatedImages={activityById?.data.attributes.imagesComponent[3]}
jaymehta committed
1059 1060 1061 1062 1063
                            />
                          </div>
                          <div className="col-2">
                            <ImageUploadPopUp
                              isUpdate={isUpdate}
jaymehta committed
1064
                              setimagesArrayComponent={setimage5}
jaymehta committed
1065
                              imagesArrayComponent={imagesArrayComponent}
jaymehta committed
1066
                              populatedImages={activityById?.data.attributes.imagesComponent[4]}
jaymehta committed
1067 1068 1069
                            />
                          </div>
                        </div>
jaymehta committed
1070
                        {console.log("setimagesArrayComponent", [image1, image2, image3, image4, image5])}
.  
jaymehta committed
1071
                        {/* <button
jaymehta committed
1072 1073 1074 1075 1076 1077
                          onClick={e => {
                            e.preventDefault();
                            console.log("ids", [image1, image2, image3, image4, image5]);
                          }}
                        >
                          asd
.  
jaymehta committed
1078
                        </button> */}
jaymehta committed
1079 1080 1081
                        <br />
                        <br />
                        <br />
.  
jaymehta committed
1082 1083 1084
                        <br />
                        <>
                          {/* <button
jaymehta committed
1085 1086 1087 1088 1089 1090
                            onClick={e => {
                              e.preventDefault();
                              setshowImageUploadModal(true);
                            }}
                          >
                            Open{" "}
.  
jaymehta committed
1091 1092 1093 1094 1095
                          </button> */}
                          {/* <br />
                          <br /> */}
                        </>
                        {console.log("errors", errors)}
jaymehta committed
1096
                        <div className="row">
.  
jaymehta committed
1097
                          <div className="col-6 col-lg-5">
jaymehta committed
1098
                            <div className="input-group">
.  
jaymehta committed
1099
                              <Button type="submit" className="btn btn-primary btn-submit" disabled={Object.keys(errors).length > 0}>
jaymehta committed
1100 1101
                                Submit
                              </Button>
.  
jaymehta committed
1102 1103 1104 1105
                            </div>
                          </div>
                          <div className="col-6 col-lg-5">
                            <div className="input-group">
jaymehta committed
1106 1107 1108 1109 1110 1111
                              <Button
                                onClick={() => {
                                  router.push("/vendor/activities");
                                }}
                                className="btn btn-primary btn-submit"
                              >
.  
jaymehta committed
1112 1113
                                See all activities
                              </Button>
jaymehta committed
1114 1115
                            </div>
                          </div>
1116
                        </div>
jaymehta committed
1117 1118 1119 1120 1121 1122 1123
                      </div>
                    </Form>
                  )}
                </Formik>
              </div>
            </div>
          </div>
.  
jaymehta committed
1124
          {/* <Modal show={showImageUploadModal} centered onHide={() => setshowImageUploadModal()}>
jaymehta committed
1125 1126 1127
            <Modal.Header closeButton>Add Images</Modal.Header>
            <Modal.Body>
            </Modal.Body>
.  
jaymehta committed
1128
          </Modal> */}
jaymehta committed
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
          <div className="col-12 col-lg-4">
            <div className="content-div help-center">
              <h2>Help Center</h2>
              <ul className="helplist">
                <li>
                  <img src="/images/vendor/question.svg" className="img-fluid" />
                  <p>Lorem Ipsum Dolor Sit?</p>
                </li>
                <li>
                  <img src="/images/vendor/question.svg" className="img-fluid" />
                  <p>Lorem Ipsum Dolor Sit?</p>
                </li>
                <li>
                  <img src="/images/vendor/question.svg" className="img-fluid" />
                  <p>Lorem Ipsum Dolor Sit?</p>
                </li>
                <li>
                  <img src="/images/vendor/question.svg" className="img-fluid" />
                  <p>Lorem Ipsum Dolor Sit?</p>
                </li>
                <li>
                  <img src="/images/vendor/call.svg" className="img-fluid" />
                  <p>+1 (407) 8798 789</p>
                </li>
              </ul>
1154
            </div>
jaymehta committed
1155 1156 1157 1158 1159 1160
          </div>
        </div>
      </div>
    </Fragment>
  );
};
1161

Jyotsna committed
1162
const AccordionItem = ({ index, expanded, toggleAccordion, remove, children }) => {
jaymehta committed
1163 1164 1165 1166 1167 1168
  return (
    <div>
      <div className="d-flex align-items-center justify-content-between" onClick={toggleAccordion} style={{ cursor: "pointer" }}>
        <p className="textH mb-0">Activity Name {index + 1}</p>
        <div>{expanded ? <Image alt="" width="24" height="24" src="/images/vendor/minus.svg" /> : <Image alt="" width="24" height="24" src="/images/vendor/plus.svg" />}</div>
      </div>
Jyotsna committed
1169

jaymehta committed
1170 1171 1172
      <div style={{ display: expanded ? "block" : "none" }}>{children}</div>
    </div>
  );
Jyotsna committed
1173 1174
};

jaymehta committed
1175
export default ActivityDetails;