-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdateCourseSearchFilterOption.tsx
More file actions
178 lines (157 loc) · 8.58 KB
/
Copy pathdateCourseSearchFilterOption.tsx
File metadata and controls
178 lines (157 loc) · 8.58 KB
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
import React, { useEffect, useRef, useState } from 'react';
import type { TDateCourseSearchFilterOption, TRegion } from '@/types/dateCourse/dateCourse';
import DATE_KEYWORD from '@/constants/dateKeywords';
import { useSearchRegion } from '@/hooks/course/useSearchRegion';
import DateCourseOptionButton from './dateCourseOptionButton';
import DateKeyword from './dateKeyword';
import PlaceButton from './placeButton';
import EditableInputBox from '../common/EditableInputBox';
import Calendar from '@/assets/icons/calendar_Blank.svg?react';
export default function DateCourseSearchFilterOption({ options, type, value, onChange, title, subTitle, errorMessage }: TDateCourseSearchFilterOption) {
const now = new Date();
const defaultDate = now.toISOString().split('T')[0]; // '2025-07-17'
const defaultTime = now.toTimeString().slice(0, 5);
const dateInputRef = useRef<HTMLInputElement>(null);
const timeInputRef = useRef<HTMLInputElement>(null);
const [date, setDate] = useState(defaultDate);
const [time, setTime] = useState(defaultTime);
const [inputValue, setInputValue] = useState('');
useEffect(() => {
onChange(`${date} ${time}`);
}, []);
const handleDateClick = () => {
dateInputRef.current?.showPicker?.();
};
const handleTimeClick = () => {
timeInputRef.current?.showPicker?.();
};
const handleDeletePlaceOption = (val: string) => {
if (Array.isArray(value)) {
onChange(value.filter((v) => v !== val));
}
};
const handleInputChange = (e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => {
setInputValue(e.target.value);
};
const { data: regionList, refetch } = useSearchRegion({ keyword: inputValue }, { enabled: false });
const handleSearch = () => {
const keyword = inputValue.trim();
if (!keyword) return;
refetch();
};
return (
<div className="flex w-full gap-[24px] flex-col h-fit">
<div className="flex w-full text-default-gray-700 sm:flex-row flex-col gap-[8px] sm:items-center">
<div className="flex flex-nowrap font-heading3">{title}</div>
<span className="text-default-gray-700 font-heading3 flex">{subTitle}</span>
</div>
<div className="font-body3 text-warning">{errorMessage}</div>
<div className="flex w-full gap-[16px] flex-wrap sm:justify-start justify-center">
{type === 'choice' &&
options?.map((option, idx) => (
<DateCourseOptionButton key={idx} option={option} isSelected={value === option} onClick={() => onChange(option)} />
))}
{type === 'choices' &&
options?.map((option, idx) => {
const current = Array.isArray(value) ? value : [];
const isSelected = current.includes(option);
return (
<DateCourseOptionButton
key={idx}
option={option}
isSelected={isSelected}
onClick={() => onChange(isSelected ? current.filter((v) => v !== option) : [...current, option])}
/>
);
})}
{type === 'search' && (
<div className="flex flex-col w-full">
<div className="flex justify-center items-center gap-4 w-full relative">
<EditableInputBox
mode="search"
onSearchClick={handleSearch}
placeholder="ex: 서울시 강남구"
className="w-full"
value={inputValue}
onChange={handleInputChange}
/>
</div>
{regionList && regionList.result.regions.length > 0 && (
<ul className="mt-2 w-full border border-primary-500 rounding-16 shadow-default bg-white max-h-[200px] overflow-auto">
{regionList.result.regions.map((region: TRegion, idx: number) => (
<li
key={idx}
className="px-4 py-2 cursor-pointer hover:bg-gray-100 text-sm text-default-gray-800"
onClick={() => {
const current = Array.isArray(value) ? value : [];
if (!current.includes(region.name)) {
onChange([...current, region.name]);
}
setInputValue('');
}}
>
{region.name}
</li>
))}
</ul>
)}
<div className="mt-4 flex flex-wrap gap-2">
{Array.isArray(value) && value.map((v, idx) => <PlaceButton key={idx} placeName={v} onClick={() => handleDeletePlaceOption(v)} />)}
</div>
</div>
)}
{type === 'keyword' && (
<div className="flex w-full flex-col md:px-[16px] gap-[64px]">
{Object.entries(DATE_KEYWORD).map(([category, keywords]) => (
<div key={category} className="flex flex-wrap gap-2 self-center max-w-[90%] w-[656px] min-w-[260px] shadow-default rounding-16">
<DateKeyword
category={category}
tags={keywords}
setState={(val) => {
if (val !== null && typeof val !== 'function') onChange(val);
}}
state={value}
/>
</div>
))}
</div>
)}
{type === 'time' && (
<div className="flex flex-col gap-4 justify-center items-center w-full">
<div className="flex gap-3 items-center w-fit flex-nowrap sm:flex-nowrap rounding-32 border-[2px] border-primary-500 py-[16px] px-[32px]">
<div className="relative flex gap-[4px]" onClick={handleDateClick}>
<Calendar stroke="#000000" />
<div className="cursor-pointer font-heading3 text-default-gray-800 whitespace-nowrap">{date}</div>
<input
ref={dateInputRef}
type="date"
onChange={(e) => {
const val = e.target.value;
setDate(val);
if (time) onChange(`${val} ${time}`);
}}
className="absolute top-0 left-0 w-full h-full opacity-0"
/>
</div>
<div className="w-[1px] h-full border-[1px] border-default-gray-500" />
<div className="relative flex" onClick={handleTimeClick}>
<div className="cursor-pointer font-heading3 text-default-gray-800">{time || '시간 선택'}</div>
<input
type="time"
ref={timeInputRef}
value={time}
onChange={(e) => {
const val = e.target.value;
setTime(val);
if (date) onChange(`${date} ${val}`);
}}
className="absolute top-0 left-0 w-full h-full opacity-0"
/>
</div>
</div>
</div>
)}
</div>
</div>
);
}