Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 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 | 1x 1x 1x 1x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 12x 1x 1x 1x 1x 12x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 12x 2x 2x 1x 1x 1x 2x 1x 12x 12x 1x 44x 88x 110x | import { useState } from "react"
import { motion, AnimatePresence } from "framer-motion"
import { X, ChevronDown, ChevronUp, Calendar, Clock, Repeat } from "lucide-react"
import { useMutation, useQueryClient } from "@tanstack/react-query"
import { tasksApi } from "../api/tasks"
import clsx from "clsx"
import { format, addDays } from "date-fns"
const COLORS = [
"#6B7280", "#6366f1", "#8b5cf6", "#d946ef", "#ec4899",
"#f43f5e", "#f97316", "#eab308", "#22c55e", "#0ea5e9",
]
const ICON_CATEGORIES = [
{ name: "Продуктивность", icons: ["📋", "📝", "✅", "📌", "🎯", "💡", "📅", "⏰"] },
{ name: "Работа", icons: ["💼", "💻", "📧", "📞", "📊", "📈", "🖥️", "⌨️"] },
{ name: "Дом", icons: ["🏠", "🧹", "🧺", "🍳", "🛒", "🔧", "🪴", "🛋️"] },
{ name: "Финансы", icons: ["💰", "💳", "📊", "💵", "🏦", "🧾"] },
{ name: "Здоровье", icons: ["💊", "🏃", "🧘", "💪", "🩺", "🦷"] },
{ name: "Разное", icons: ["⭐", "🎁", "📦", "✈️", "🚗", "📷", "🎉"] },
]
const PRIORITIES = [
{ value: 0, label: "Без приоритета", color: "bg-gray-100 dark:bg-gray-800 text-gray-600" },
{ value: 1, label: "Низкий", color: "bg-blue-100 text-blue-700" },
{ value: 2, label: "Средний", color: "bg-yellow-100 text-yellow-700" },
{ value: 3, label: "Высокий", color: "bg-red-100 text-red-700" },
]
const RECURRENCE_TYPES = [
{ value: "daily", label: "Ежедневно" },
{ value: "weekly", label: "Еженедельно" },
{ value: "monthly", label: "Ежемесячно" },
{ value: "custom", label: "Каждые N дней" },
]
export default function CreateTaskModal({ open, onClose, defaultDueDate = null }) {
const today = format(new Date(), "yyyy-MM-dd")
const tomorrow = format(addDays(new Date(), 1), "yyyy-MM-dd")
const [title, setTitle] = useState("")
const [description, setDescription] = useState("")
const [color, setColor] = useState(COLORS[0])
const [icon, setIcon] = useState("📋")
const [dueDate, setDueDate] = useState(defaultDueDate || today)
const [priority, setPriority] = useState(0)
const [reminderTime, setReminderTime] = useState("")
const [error, setError] = useState("")
const [showAllIcons, setShowAllIcons] = useState(false)
// Recurring state
const [isRecurring, setIsRecurring] = useState(false)
const [recurrenceType, setRecurrenceType] = useState("daily")
const [recurrenceInterval, setRecurrenceInterval] = useState(1)
const [recurrenceEndDate, setRecurrenceEndDate] = useState("")
const queryClient = useQueryClient()
const mutation = useMutation({
mutationFn: (data) => tasksApi.create(data),
onSuccess: () => {
queryClient.invalidateQueries({ queryKey: ["tasks"] })
queryClient.invalidateQueries({ queryKey: ["tasks-today"] })
handleClose()
},
onError: (err) => {
setError(err.response?.data?.error || "Ошибка создания")
},
})
const handleClose = () => {
setTitle("")
setDescription("")
setColor(COLORS[0])
setIcon("📋")
setDueDate(defaultDueDate || today)
setPriority(0)
setReminderTime("")
setError("")
setShowAllIcons(false)
setIsRecurring(false)
setRecurrenceType("daily")
setRecurrenceInterval(1)
setRecurrenceEndDate("")
onClose()
}
const handleSubmit = (e) => {
e.preventDefault()
if (!title.trim()) {
setError("Введи название задачи")
return
}
const data = {
title,
description,
color,
icon,
due_date: dueDate || null,
priority,
reminder_time: reminderTime || null,
is_recurring: isRecurring,
}
Iif (isRecurring) {
data.recurrence_type = recurrenceType
data.recurrence_interval = recurrenceType === "custom" ? recurrenceInterval : 1
data.recurrence_end_date = recurrenceEndDate || null
}
mutation.mutate(data)
}
const popularIcons = ["📋", "📝", "✅", "🎯", "💼", "🏠", "💰", "📞"]
return (
<AnimatePresence>
{open && (
<>
<motion.div
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
onClick={handleClose}
className="fixed inset-0 bg-black/50 backdrop-blur-sm z-40"
/>
<motion.div
initial={{ opacity: 0, y: 100 }}
animate={{ opacity: 1, y: 0 }}
exit={{ opacity: 0, y: 100 }}
className="fixed bottom-0 left-0 right-0 z-50 p-4 sm:p-0 sm:flex sm:items-center sm:justify-center sm:inset-0"
>
<div className="bg-white dark:bg-gray-900 rounded-2xl sm:rounded-2xl w-full max-w-md max-h-[85vh] overflow-auto">
<div className="sticky top-0 bg-white dark:bg-gray-900 border-b border-gray-100 dark:border-gray-800 px-4 py-3 flex items-center justify-between">
<h2 className="text-lg font-semibold">Новая задача</h2>
<button
onClick={handleClose}
className="p-2 text-gray-400 dark:text-gray-500 hover:text-gray-600 rounded-xl hover:bg-gray-100 dark:hover:bg-gray-800 dark:bg-gray-800"
>
<X size={20} />
</button>
</div>
<form onSubmit={handleSubmit} className="p-4 space-y-4">
{error && (
<div className="p-3 rounded-xl bg-red-50 text-red-600 text-sm">
{error}
</div>
)}
<div>
<label className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1.5">
Название
</label>
<input
type="text"
value={title}
onChange={(e) => setTitle(e.target.value)}
className="input"
placeholder="Что нужно сделать?"
autoFocus
/>
</div>
<div>
<label className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-1.5">
Описание (опционально)
</label>
<textarea
value={description}
onChange={(e) => setDescription(e.target.value)}
className="input min-h-[80px] resize-none"
placeholder="Подробности задачи..."
/>
</div>
<div>
<label className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2">
Срок выполнения
</label>
<div className="flex gap-2 mb-2">
<button
type="button"
onClick={() => setDueDate(today)}
className={clsx(
"px-3 py-1.5 rounded-lg text-sm font-medium transition-all",
dueDate === today
? "bg-primary-500 text-white"
: "bg-gray-100 dark:bg-gray-800 text-gray-600 hover:bg-gray-200"
)}
>
Сегодня
</button>
<button
type="button"
onClick={() => setDueDate(tomorrow)}
className={clsx(
"px-3 py-1.5 rounded-lg text-sm font-medium transition-all",
dueDate === tomorrow
? "bg-primary-500 text-white"
: "bg-gray-100 dark:bg-gray-800 text-gray-600 hover:bg-gray-200"
)}
>
Завтра
</button>
<button
type="button"
onClick={() => setDueDate("")}
className={clsx(
"px-3 py-1.5 rounded-lg text-sm font-medium transition-all",
!dueDate
? "bg-primary-500 text-white"
: "bg-gray-100 dark:bg-gray-800 text-gray-600 hover:bg-gray-200"
)}
>
Без срока
</button>
</div>
<div className="relative">
<Calendar className="absolute left-3 top-1/2 -translate-y-1/2 text-gray-400 dark:text-gray-500" size={18} />
<input
type="date"
value={dueDate}
onChange={(e) => setDueDate(e.target.value)}
className="input pl-10"
/>
</div>
</div>
{/* Recurring Section */}
<div className="border-t border-gray-100 dark:border-gray-800 pt-4">
<div className="flex items-center justify-between mb-3">
<div className="flex items-center gap-2">
<Repeat size={18} className={isRecurring ? "text-primary-500" : "text-gray-400 dark:text-gray-500"} />
<label className="text-sm font-medium text-gray-700 dark:text-gray-300">Повторять</label>
</div>
<button
type="button"
onClick={() => setIsRecurring(!isRecurring)}
className={clsx(
"w-12 h-6 rounded-full transition-all relative",
isRecurring ? "bg-primary-500" : "bg-gray-200"
)}
>
<div className={clsx(
"absolute top-1 w-4 h-4 rounded-full bg-white dark:bg-gray-900 shadow-sm transition-all",
isRecurring ? "right-1" : "left-1"
)} />
</button>
</div>
<AnimatePresence>
{isRecurring && (
<motion.div
initial={{ opacity: 0, height: 0 }}
animate={{ opacity: 1, height: "auto" }}
exit={{ opacity: 0, height: 0 }}
className="space-y-3"
>
<div className="flex flex-wrap gap-2">
{RECURRENCE_TYPES.map((type) => (
<button
key={type.value}
type="button"
onClick={() => setRecurrenceType(type.value)}
className={clsx(
"px-3 py-1.5 rounded-lg text-sm font-medium transition-all",
recurrenceType === type.value
? "bg-primary-500 text-white"
: "bg-gray-100 dark:bg-gray-800 text-gray-600 hover:bg-gray-200"
)}
>
{type.label}
</button>
))}
</div>
{recurrenceType === "custom" && (
<div className="flex items-center gap-2">
<span className="text-sm text-gray-600">Каждые</span>
<input
type="number"
min="1"
max="365"
value={recurrenceInterval}
onChange={(e) => setRecurrenceInterval(parseInt(e.target.value) || 1)}
className="input w-20 text-center"
/>
<span className="text-sm text-gray-600">дней</span>
</div>
)}
<div>
<label className="block text-xs text-gray-500 dark:text-gray-400 dark:text-gray-500 mb-1">
Повторять до (опционально)
</label>
<input
type="date"
value={recurrenceEndDate}
onChange={(e) => setRecurrenceEndDate(e.target.value)}
className="input"
min={dueDate || today}
/>
</div>
</motion.div>
)}
</AnimatePresence>
</div>
<div>
<label className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2">
Напоминание (опционально)
</label>
<div className="relative">
<Clock className="absolute left-3 top-1/2 -translate-y-1/2 text-gray-400 dark:text-gray-500" size={18} />
<input
type="time"
value={reminderTime}
onChange={(e) => setReminderTime(e.target.value)}
className="input pl-10"
/>
</div>
<p className="text-xs text-gray-500 dark:text-gray-400 dark:text-gray-500 mt-1">
Получишь напоминание в Telegram в указанное время
</p>
</div>
<div>
<label className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2">
Приоритет
</label>
<div className="flex gap-2 flex-wrap">
{PRIORITIES.map((p) => (
<button
key={p.value}
type="button"
onClick={() => setPriority(p.value)}
className={clsx(
"px-3 py-1.5 rounded-lg text-sm font-medium transition-all",
priority === p.value
? p.color + " ring-2 ring-offset-1 ring-gray-400"
: "bg-gray-100 dark:bg-gray-800 text-gray-600 hover:bg-gray-200"
)}
>
{p.label}
</button>
))}
</div>
</div>
<div>
<label className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2">
Иконка
</label>
<div className="flex flex-wrap gap-2">
{popularIcons.map((ic) => (
<button
key={ic}
type="button"
onClick={() => setIcon(ic)}
className={clsx(
"w-10 h-10 rounded-xl flex items-center justify-center text-xl transition-all",
icon === ic
? "bg-primary-100 ring-2 ring-primary-500"
: "bg-gray-100 dark:bg-gray-800 hover:bg-gray-200"
)}
>
{ic}
</button>
))}
</div>
<button
type="button"
onClick={() => setShowAllIcons(!showAllIcons)}
className="mt-2 flex items-center gap-1 text-sm text-primary-600 hover:text-primary-700"
>
{showAllIcons ? <ChevronUp size={16} /> : <ChevronDown size={16} />}
{showAllIcons ? "Скрыть" : "Все иконки"}
</button>
<AnimatePresence>
{showAllIcons && (
<motion.div
initial={{ opacity: 0, height: 0 }}
animate={{ opacity: 1, height: "auto" }}
exit={{ opacity: 0, height: 0 }}
className="mt-3 space-y-3"
>
{ICON_CATEGORIES.map((category) => (
<div key={category.name}>
<p className="text-xs text-gray-500 dark:text-gray-400 dark:text-gray-500 mb-1.5">{category.name}</p>
<div className="flex flex-wrap gap-1.5">
{category.icons.map((ic) => (
<button
key={ic}
type="button"
onClick={() => setIcon(ic)}
className={clsx(
"w-9 h-9 rounded-lg flex items-center justify-center text-lg transition-all",
icon === ic
? "bg-primary-100 ring-2 ring-primary-500"
: "bg-gray-100 dark:bg-gray-800 hover:bg-gray-200"
)}
>
{ic}
</button>
))}
</div>
</div>
))}
</motion.div>
)}
</AnimatePresence>
</div>
<div>
<label className="block text-sm font-medium text-gray-700 dark:text-gray-300 mb-2">
Цвет
</label>
<div className="flex flex-wrap gap-2">
{COLORS.map((c) => (
<button
key={c}
type="button"
onClick={() => setColor(c)}
className={clsx(
"w-8 h-8 rounded-full transition-all",
color === c ? "ring-2 ring-offset-2 ring-gray-400 scale-110" : ""
)}
style={{ backgroundColor: c }}
/>
))}
</div>
</div>
<div className="pt-2">
<button
type="submit"
disabled={mutation.isPending}
className="btn btn-primary w-full"
>
{mutation.isPending ? "Создаём..." : "Создать задачу"}
</button>
</div>
</form>
</div>
</motion.div>
</>
)}
</AnimatePresence>
)
}
|