File size: 9,105 Bytes
0c20ea8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
import { useState, useEffect } from "react";
import seiki from "../../assets/images/seiki.png";
import { BsSearch, BsChevronDown } from "react-icons/bs";
import { FaMapLocationDot, FaLocationDot } from "react-icons/fa6";
import { AiFillCar, AiFillDatabase } from "react-icons/ai";
import { RiDashboardFill } from "react-icons/ri";
import { IoFootstepsSharp, IoStatsChartSharp } from "react-icons/io5";
import { FaBusAlt, FaInfoCircle, FaMapMarkedAlt } from "react-icons/fa";
import { Poi } from "../../redux/types/Poi";
import FootfallSection from "../footfall";

type DrawerSectionProps = {
  poiList: Poi[];
  setSelectedPoi: React.Dispatch<React.SetStateAction<Poi>>;
  isFootfallSection: boolean;
  setFootfallSection: React.Dispatch<React.SetStateAction<boolean>>;
  isModeSection: boolean;
  setModeSection: React.Dispatch<React.SetStateAction<boolean>>;
  isDemographicsSection: boolean;
  setDemographicsSection: React.Dispatch<React.SetStateAction<boolean>>;
  isInformationSection: boolean;
  setInformationSection: React.Dispatch<React.SetStateAction<boolean>>;
  isTraficSection: boolean;
  setTraficSection: React.Dispatch<React.SetStateAction<boolean>>;
  isMapView: boolean;
  setIsMapView: React.Dispatch<React.SetStateAction<boolean>>;
};

const DrawerSection: React.FC<DrawerSectionProps> = ({
  poiList,
  setSelectedPoi,
  isFootfallSection,
  setFootfallSection,
  isModeSection,
  setModeSection,
  isDemographicsSection,
  setDemographicsSection,
  isInformationSection,
  setInformationSection,
  isTraficSection,
  setTraficSection,
  isMapView,
  setIsMapView,
}) => {
  const [open, setOpen] = useState(true);
  const [submenuOpen, setSubmenuOpen] = useState(false);

  const Menus = [
    {
      title: "Points of interest",
      icon: <FaLocationDot />,
      submenu: true,
      submenuItems: poiList,
    },
    {
      title: "Footfall",
      icon: <IoFootstepsSharp />,
    },
    {
      title: "Mode",
      icon: <AiFillCar />,
    },
    {
      title: "Demographics",
      icon: <IoStatsChartSharp />,
    },
    {
      title: "Section info",
      icon: <FaInfoCircle />,
    },
    {
      title: "Trafic data",
      icon: <AiFillDatabase />,
    },
  ];

  return (
    <div
      className={`p-5 pt-8 ${open ? "w-72" : "w-20"} duration-300 relative`}
      style={{ height: "100%", backgroundColor: "#191F20" }}
    >
      <div className="inline-flex">
        <img
          src={seiki}
          width={40}
          height={100}
          className={`text-4xl rounded cursor-pointer block float-left mr-4 duration-500 ${
            open && "rotate-[360deg]"
          }`}
          onClick={() => setOpen(!open)}
        />
        <h1
          className={`text-white origin-left font-medium text-2xl duration-300 ${
            !open && "scale-0"
          }`}
          style={{ fontFamily: "airbnb_semi_bold", fontSize: 35 }}
        >
          seiki
        </h1>
      </div>

      <div
        className={`flex items-center rounded-md bg-light-white mt-6 ${
          !open ? "px-2.5" : "px-4"
        } py-2`}
      >
        <BsSearch
          className={`text-white text-lg block float-left cursor-pointer ${
            open && "mr-2"
          }`}
        />
        <input
          type={"search"}
          placeholder="Search"
          className={`text-base bg-transparent w-full text-white focus:outline-none ${
            !open && "hidden"
          }`}
        />
      </div>

      <ul className="pt-2">
        <li
          className={`text-gray-300 text-sm flex items-center gap-x-4 cursor-pointer p-2
              hover:bg-light-white rounded-md mb-2`}
        >
          <span className="text-2xl block float-left">
            <FaLocationDot />
          </span>
          <span
            className={`text-base font-medium flex-1 duration-200 ${
              !open && "hidden"
            }`}
            style={{ fontFamily: "airbnb_light" }}
          >
            Points of interest
          </span>
          {open && (
            <BsChevronDown
              className={`${submenuOpen && "rotate-180"}`}
              onClick={() => {
                setSubmenuOpen(!submenuOpen);
              }}
            />
          )}
        </li>
        {submenuOpen && open && (
          <ul>
            {Menus[0].submenuItems ? (
              Menus[0].submenuItems.map((submenuItem, index) => (
                <li
                  onClick={() => {
                    setSelectedPoi(submenuItem);
                  }}
                  key={index}
                  className="text-gray-300 text-sm flex items-center gap-x-4 cursor-pointer p-2 px-5
              hover:bg-light-white rounded-md"
                  style={{ fontFamily: "airbnb_light" }}
                >
                  {submenuItem.address}
                </li>
              ))
            ) : (
              <></>
            )}
          </ul>
        )}
        <li
          className={`text-gray-300 text-sm flex items-center gap-x-4 cursor-pointer p-2
              hover:bg-light-white rounded-md mb-2 ${
                isFootfallSection ? "" : "bg-light-white"
              }`}
          onClick={() => {
            setFootfallSection(!isFootfallSection);
          }}
        >
          <span className="text-2xl block float-left">
            <IoFootstepsSharp />
          </span>
          <span
            className={`text-base font-medium flex-1 duration-200 ${
              !open && "hidden"
            }`}
            style={{ fontFamily: "airbnb_light" }}
          >
            Footfall
          </span>
        </li>

        <li
          className={`text-gray-300 text-sm flex items-center gap-x-4 cursor-pointer p-2
              hover:bg-light-white rounded-md mb-2 ${
                isModeSection ? "" : "bg-light-white"
              }`}
          onClick={() => {
            setModeSection(!isModeSection);
          }}
        >
          <span className="text-2xl block float-left">
            <AiFillCar />
          </span>
          <span
            className={`text-base font-medium flex-1 duration-200 ${
              !open && "hidden"
            }`}
            style={{ fontFamily: "airbnb_light" }}
          >
            Mode
          </span>
        </li>

        <li
          className={`text-gray-300 text-sm flex items-center gap-x-4 cursor-pointer p-2
              hover:bg-light-white rounded-md mb-2 ${
                isDemographicsSection ? "" : "bg-light-white"
              }`}
          onClick={() => {
            setDemographicsSection(!isDemographicsSection);
          }}
        >
          <span className="text-2xl block float-left">
            <IoStatsChartSharp />
          </span>
          <span
            className={`text-base font-medium flex-1 duration-200 ${
              !open && "hidden"
            }`}
            style={{ fontFamily: "airbnb_light" }}
          >
            Demographics
          </span>
        </li>

        <li
          className={`text-gray-300 text-sm flex items-center gap-x-4 cursor-pointer p-2
              hover:bg-light-white rounded-md mb-2 ${
                isInformationSection ? "" : "bg-light-white"
              }`}
          onClick={() => {
            setInformationSection(!isInformationSection);
          }}
        >
          <span className="text-2xl block float-left">
            <FaInfoCircle />
          </span>
          <span
            className={`text-base font-medium flex-1 duration-200 ${
              !open && "hidden"
            }`}
            style={{ fontFamily: "airbnb_light" }}
          >
            Section info
          </span>
        </li>

        <li
          className={`text-gray-300 text-sm flex items-center gap-x-4 cursor-pointer p-2
              hover:bg-light-white rounded-md mb-2 ${
                isTraficSection ? "" : "bg-light-white"
              }`}
          onClick={() => {
            setTraficSection(!isTraficSection);
          }}
        >
          <span className="text-2xl block float-left">
            <AiFillDatabase />
          </span>
          <span
            className={`text-base font-medium flex-1 duration-200 ${
              !open && "hidden"
            }`}
            style={{ fontFamily: "airbnb_light" }}
          >
            Trafic data
          </span>
        </li>

        <li
          className={`text-gray-300 text-sm flex items-center gap-x-4 cursor-pointer p-2
              hover:bg-light-white rounded-md mb-2 ${
                isTraficSection ? "" : "bg-light-white"
              }`}
          onClick={() => {
            setIsMapView(!isMapView);
          }}
        >
          <span className="text-2xl block float-left">
            <FaMapMarkedAlt />
          </span>
          <span
            className={`text-base font-medium flex-1 duration-200 ${
              !open && "hidden"
            }`}
            style={{ fontFamily: "airbnb_light" }}
          >
            Map View
          </span>
        </li>
      </ul>
    </div>
  );
};

export default DrawerSection;