├── .gitignore ├── .netlify └── state.json ├── LICENSE ├── README.md ├── assets └── preview.png ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png └── manifest.json └── src ├── Utils ├── extractParams.js ├── getColumnFromParam.js ├── index.js ├── moveElement.js ├── randomColor.js └── utils.js ├── components ├── App │ ├── App.js │ └── style.js ├── Calender │ ├── Calender.js │ └── style.js ├── Day │ ├── Day.js │ └── style.js ├── Dock │ ├── Dock.js │ └── style.js ├── EditableDescription │ ├── EditableDescription.js │ └── style.js ├── NewTicketForm │ ├── NewTicketForm.js │ └── style.js ├── Tags │ ├── Tags.js │ └── style.js ├── Ticket │ ├── Ticket.js │ └── style.js └── ToolBar │ ├── ToolBar.js │ └── style.js ├── context └── CalendarContext.js ├── hooks ├── hooks.js ├── useCalendar.js ├── useInput.js └── useTheme.js ├── index.js ├── initalData.js ├── service-worker.js ├── serviceWorkerRegistration.js └── styles ├── base.css └── setting.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/.gitignore -------------------------------------------------------------------------------- /.netlify/state.json: -------------------------------------------------------------------------------- 1 | { 2 | "siteId": "d1bba6bc-7bc6-406d-80d5-d9077bef6a9c" 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/README.md -------------------------------------------------------------------------------- /assets/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/assets/preview.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/Utils/extractParams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/Utils/extractParams.js -------------------------------------------------------------------------------- /src/Utils/getColumnFromParam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/Utils/getColumnFromParam.js -------------------------------------------------------------------------------- /src/Utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/Utils/index.js -------------------------------------------------------------------------------- /src/Utils/moveElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/Utils/moveElement.js -------------------------------------------------------------------------------- /src/Utils/randomColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/Utils/randomColor.js -------------------------------------------------------------------------------- /src/Utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/Utils/utils.js -------------------------------------------------------------------------------- /src/components/App/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/components/App/App.js -------------------------------------------------------------------------------- /src/components/App/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/components/App/style.js -------------------------------------------------------------------------------- /src/components/Calender/Calender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/components/Calender/Calender.js -------------------------------------------------------------------------------- /src/components/Calender/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/components/Calender/style.js -------------------------------------------------------------------------------- /src/components/Day/Day.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/components/Day/Day.js -------------------------------------------------------------------------------- /src/components/Day/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/components/Day/style.js -------------------------------------------------------------------------------- /src/components/Dock/Dock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/components/Dock/Dock.js -------------------------------------------------------------------------------- /src/components/Dock/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/components/Dock/style.js -------------------------------------------------------------------------------- /src/components/EditableDescription/EditableDescription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/components/EditableDescription/EditableDescription.js -------------------------------------------------------------------------------- /src/components/EditableDescription/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/components/EditableDescription/style.js -------------------------------------------------------------------------------- /src/components/NewTicketForm/NewTicketForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/components/NewTicketForm/NewTicketForm.js -------------------------------------------------------------------------------- /src/components/NewTicketForm/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/components/NewTicketForm/style.js -------------------------------------------------------------------------------- /src/components/Tags/Tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/components/Tags/Tags.js -------------------------------------------------------------------------------- /src/components/Tags/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/components/Tags/style.js -------------------------------------------------------------------------------- /src/components/Ticket/Ticket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/components/Ticket/Ticket.js -------------------------------------------------------------------------------- /src/components/Ticket/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/components/Ticket/style.js -------------------------------------------------------------------------------- /src/components/ToolBar/ToolBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/components/ToolBar/ToolBar.js -------------------------------------------------------------------------------- /src/components/ToolBar/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/components/ToolBar/style.js -------------------------------------------------------------------------------- /src/context/CalendarContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/context/CalendarContext.js -------------------------------------------------------------------------------- /src/hooks/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/hooks/hooks.js -------------------------------------------------------------------------------- /src/hooks/useCalendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/hooks/useCalendar.js -------------------------------------------------------------------------------- /src/hooks/useInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/hooks/useInput.js -------------------------------------------------------------------------------- /src/hooks/useTheme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/hooks/useTheme.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/index.js -------------------------------------------------------------------------------- /src/initalData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/initalData.js -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /src/serviceWorkerRegistration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/serviceWorkerRegistration.js -------------------------------------------------------------------------------- /src/styles/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/styles/base.css -------------------------------------------------------------------------------- /src/styles/setting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guyariely/scalendar/HEAD/src/styles/setting.css --------------------------------------------------------------------------------