├── .env.example ├── .eslintrc.cjs ├── .gitignore ├── LICENSE ├── README.md ├── components.json ├── images └── demo.gif ├── next.config.js ├── package.json ├── postcss.config.cjs ├── prettier.config.js ├── src ├── app │ ├── layout.tsx │ └── page.tsx ├── components │ ├── ModeToggle.tsx │ ├── planner │ │ ├── AddAppointmentDialog.tsx │ │ ├── Appointment.tsx │ │ ├── DropTableCell.tsx │ │ ├── Planner.tsx │ │ ├── PlannerToolbar.tsx │ │ ├── ResourceTableCell.tsx │ │ └── Timeline.tsx │ ├── theme-provider.tsx │ └── ui │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── date-input.tsx │ │ ├── date-range-picker.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── popover.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── sheet.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── time-picker-input.tsx │ │ ├── time-picker-utils.tsx │ │ └── time-picker.tsx ├── contexts │ ├── PlannerContext.tsx │ └── PlannerDataContext.tsx ├── env.js ├── lib │ └── utils.ts ├── models │ ├── Appointment.ts │ ├── Resource.ts │ └── index.ts ├── public │ └── favicon.ico ├── services │ ├── AppointmentService.ts │ ├── ResourceService.ts │ └── index.ts ├── styles │ └── globals.css └── utils │ └── fakeData.ts ├── tailwind.config.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/components.json -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/images/demo.gif -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/postcss.config.cjs -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/components/ModeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ModeToggle.tsx -------------------------------------------------------------------------------- /src/components/planner/AddAppointmentDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/planner/AddAppointmentDialog.tsx -------------------------------------------------------------------------------- /src/components/planner/Appointment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/planner/Appointment.tsx -------------------------------------------------------------------------------- /src/components/planner/DropTableCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/planner/DropTableCell.tsx -------------------------------------------------------------------------------- /src/components/planner/Planner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/planner/Planner.tsx -------------------------------------------------------------------------------- /src/components/planner/PlannerToolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/planner/PlannerToolbar.tsx -------------------------------------------------------------------------------- /src/components/planner/ResourceTableCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/planner/ResourceTableCell.tsx -------------------------------------------------------------------------------- /src/components/planner/Timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/planner/Timeline.tsx -------------------------------------------------------------------------------- /src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/date-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/date-input.tsx -------------------------------------------------------------------------------- /src/components/ui/date-range-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/date-range-picker.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/time-picker-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/time-picker-input.tsx -------------------------------------------------------------------------------- /src/components/ui/time-picker-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/time-picker-utils.tsx -------------------------------------------------------------------------------- /src/components/ui/time-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/components/ui/time-picker.tsx -------------------------------------------------------------------------------- /src/contexts/PlannerContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/contexts/PlannerContext.tsx -------------------------------------------------------------------------------- /src/contexts/PlannerDataContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/contexts/PlannerDataContext.tsx -------------------------------------------------------------------------------- /src/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/env.js -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/models/Appointment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/models/Appointment.ts -------------------------------------------------------------------------------- /src/models/Resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/models/Resource.ts -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/public/favicon.ico -------------------------------------------------------------------------------- /src/services/AppointmentService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/services/AppointmentService.ts -------------------------------------------------------------------------------- /src/services/ResourceService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/services/ResourceService.ts -------------------------------------------------------------------------------- /src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/services/index.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/utils/fakeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/src/utils/fakeData.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UretzkyZvi/planner/HEAD/tsconfig.json --------------------------------------------------------------------------------