Skip to content

A time management web application built with React, Redux, and Firebase [2019]

License

Notifications You must be signed in to change notification settings

kortfolio/livedazeDev

Repository files navigation

Livedaze logo

Livedaze

A Time management web application built with React, Redux, and Firebase.

πŸ’‘ Motivation

As a part of my 2019 new year resolution, I wanted to learn and use React to build my pet project. I was fascinated by the idea of Virtual DOM and its ecosystem. I started learning some basic syntax and mechanisms from React official website and jump straight to develop and learn more in-depth contents by actually using React. I tried my best not to use anything else but React. However, as state management getting complicated, and hearing things about how Redux is excellent with React, I soon integrated Redux to the project. The project is currently deployed at https://livedaze.com, and most of the basic functionalities are available. Although there are still many problems and issues to fix/update, I am quite satisfied with the current progress that I have made over time.

πŸ’» Technology Stack

πŸ“‚ Application Structure

β”œβ”€β”€ components
β”‚   └── LoadingSpinner
β”‚       β”œβ”€β”€ LoadingSpinner.enhancer.js
β”‚       β”œβ”€β”€ LoadingSpinner.js
β”‚       β”œβ”€β”€ LoadingSpinner.styles.js
β”‚       β”œβ”€β”€ LoadingSpinner.test.js
β”‚       └── index.js
β”œβ”€β”€ config.js
β”œβ”€β”€ constants
β”‚   β”œβ”€β”€ formNames.js
β”‚   └── paths.js
β”œβ”€β”€ containers
β”‚   β”œβ”€β”€ App
β”‚   β”‚   β”œβ”€β”€ App.js
β”‚   β”‚   └── index.js
β”‚   └── Navbar
β”‚       β”œβ”€β”€ AccountMenu.js
β”‚       β”œβ”€β”€ DrawerList.BackUp.js
β”‚       β”œβ”€β”€ DrawerList.js
β”‚       β”œβ”€β”€ LoginMenu.js
β”‚       β”œβ”€β”€ Navbar.enhancer.js
β”‚       β”œβ”€β”€ Navbar.js
β”‚       β”œβ”€β”€ NavbarTheme.js
β”‚       β”œβ”€β”€ ResponsiveDrawer.1.js
β”‚       β”œβ”€β”€ ResponsiveDrawer.js
β”‚       └── index.js
β”œβ”€β”€ css
β”‚   └── CustomCSS.css
β”œβ”€β”€ index.css
β”œβ”€β”€ index.js
β”œβ”€β”€ layouts
β”‚   └── CoreLayout
β”‚       β”œβ”€β”€ CoreLayout.enhancer.js
β”‚       β”œβ”€β”€ CoreLayout.js
β”‚       β”œβ”€β”€ CoreLayout.styles.js
β”‚       └── index.js
β”œβ”€β”€ modules
β”‚   └── notification
β”‚       β”œβ”€β”€ actionTypes.js
β”‚       β”œβ”€β”€ actions.js
β”‚       β”œβ”€β”€ components
β”‚       β”‚   β”œβ”€β”€ Notifications.js
β”‚       β”‚   └── withNotifications.js
β”‚       β”œβ”€β”€ index.js
β”‚       └── reducer.js
β”œβ”€β”€ routes
β”‚   β”œβ”€β”€ Account
β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”œβ”€β”€ AccountForm
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ AccountForm.enhancer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ AccountForm.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ AccountForm.styles.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   β”œβ”€β”€ AccountForm.1
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ AccountForm.enhancer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ AccountForm.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ AccountForm.styles.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   β”œβ”€β”€ AccountPage
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ AccountPage.enhancer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ AccountPage.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ AccountPage.styles.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ AccountSummary.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   β”œβ”€β”€ AccountStatistics
β”‚   β”‚   β”‚   β”‚   └── AccountStatistics.js
β”‚   β”‚   β”‚   β”œβ”€β”€ AccountSummary
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ AccountSummary.enhancer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ AccountSummary.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ AccountSummary.styles.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   └── ProviderDataForm
β”‚   β”‚   β”‚       β”œβ”€β”€ ProviderDataForm.js
β”‚   β”‚   β”‚       └── index.js
β”‚   β”‚   └── index.js
β”‚   β”œβ”€β”€ BreakTime
β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   └── FocusTimePage
β”‚   β”‚   β”‚       β”œβ”€β”€ FocusTime.enhancer.js
β”‚   β”‚   β”‚       β”œβ”€β”€ FocusTime.js
β”‚   β”‚   β”‚       β”œβ”€β”€ FocusTime.styles.js
β”‚   β”‚   β”‚       └── index.js
β”‚   β”‚   └── index.js
β”‚   β”œβ”€β”€ Dashboard
β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   └── DashboardPage
β”‚   β”‚   β”‚       β”œβ”€β”€ Dashboard.enhancer.js
β”‚   β”‚   β”‚       β”œβ”€β”€ Dashboard.js
β”‚   β”‚   β”‚       β”œβ”€β”€ Dashboard.styles.js
β”‚   β”‚   β”‚       └── index.js
β”‚   β”‚   └── index.js
β”‚   β”œβ”€β”€ FocusTime
β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   └── FocusTimePage
β”‚   β”‚   β”‚       β”œβ”€β”€ FocusTime.enhancer.js
β”‚   β”‚   β”‚       β”œβ”€β”€ FocusTime.js
β”‚   β”‚   β”‚       β”œβ”€β”€ FocusTime.styles.js
β”‚   β”‚   β”‚       └── index.js
β”‚   β”‚   └── index.js
β”‚   β”œβ”€β”€ Home
β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   └── HomePage
β”‚   β”‚   β”‚       β”œβ”€β”€ HomePage.enhancer.js
β”‚   β”‚   β”‚       β”œβ”€β”€ HomePage.js
β”‚   β”‚   β”‚       β”œβ”€β”€ HomePage.styles.js
β”‚   β”‚   β”‚       └── index.js
β”‚   β”‚   └── index.js
β”‚   β”œβ”€β”€ Login
β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”œβ”€β”€ LoginForm
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ Facebook.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ LoginForm.enhancer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ LoginForm.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ LoginForm.styles.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ UpdatedLoginForm.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   └── LoginPage
β”‚   β”‚   β”‚       β”œβ”€β”€ LoginPage.enhancer.js
β”‚   β”‚   β”‚       β”œβ”€β”€ LoginPage.js
β”‚   β”‚   β”‚       β”œβ”€β”€ LoginPage.styles.js
β”‚   β”‚   β”‚       └── index.js
β”‚   β”‚   └── index.js
β”‚   β”œβ”€β”€ NotFound
β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   └── NotFoundPage
β”‚   β”‚   β”‚       β”œβ”€β”€ NotFoundPage.enhancer.js
β”‚   β”‚   β”‚       β”œβ”€β”€ NotFoundPage.js
β”‚   β”‚   β”‚       β”œβ”€β”€ NotFoundPage.styles.js
β”‚   β”‚   β”‚       └── index.js
β”‚   β”‚   └── index.js
β”‚   β”œβ”€β”€ Projects
β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”œβ”€β”€ CompletedTask
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ CompletedTask.js
β”‚   β”‚   β”‚   β”‚   └── CustomizedInputs.js
β”‚   β”‚   β”‚   β”œβ”€β”€ ConfirmCompleteCheckBox
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ ConfirmCompleteCheckBox.enhancers.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ ConfirmCompleteCheckBox.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ ConfirmCompleteCheckBox.style.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   β”œβ”€β”€ ConfirmCompleteDialog
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ ConfirmCompleteDialog.enhancer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ ConfirmCompleteDialog.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ ConfirmCompleteDialog.styles.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   β”œβ”€β”€ ConfirmCompleteDialog.1
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ ConfirmCompleteDialog.enhancer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ ConfirmCompleteDialog.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ ConfirmCompleteDialog.styles.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   β”œβ”€β”€ ConfirmDeleteDialog
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ ConfirmDeleteDialog.enhancer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ ConfirmDeleteDialog.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ ConfirmDeleteDialog.styles.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   β”œβ”€β”€ DailyTask
β”‚   β”‚   β”‚   β”‚   └── DailyTask.js
β”‚   β”‚   β”‚   β”œβ”€β”€ DailyTask.1
β”‚   β”‚   β”‚   β”‚   └── DailyTask.js
β”‚   β”‚   β”‚   β”œβ”€β”€ DialogForSelfRating
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ DialogForSelfRating.enhancer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ DialogForSelfRating.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ DialogForSelfRating.styles.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ StarRatingReduxFieldForm.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   β”œβ”€β”€ EditTaskDialog
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ EditTaskDialog.enhancer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ EditTaskDialog.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ EditTaskDialog.styles.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ EditTaskTextField.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   β”œβ”€β”€ GoalDate
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ DatePickerField.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ DisplayGoalDay.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ GD_Backcup
β”‚   β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ AfterSetGoalDate.js
β”‚   β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ GoalDate.1.js
β”‚   β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ GoalDateBackUp.js
β”‚   β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ MyForm.js
β”‚   β”‚   β”‚   β”‚   β”‚   └── renderDatePicker.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ GoalDate.enhancer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ GoalDate.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ GoalDate.styles.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   β”œβ”€β”€ KanbanBoard
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ CustomCard.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ KanbanBoard.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ data.json
β”‚   β”‚   β”‚   β”‚   └── data2.json
β”‚   β”‚   β”‚   β”œβ”€β”€ NewProjectDialog
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ NewProjectDialog.enhancer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ NewProjectDialog.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ NewProjectDialog.styles.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   β”œβ”€β”€ NewProjectTile
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ NewProjectTile.enhancer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ NewProjectTile.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ NewProjectTile.styles.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   β”œβ”€β”€ PomodoroTimer
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ PomdoroTimerBackUp
β”‚   β”‚   β”‚   β”‚   β”‚   └── PomodoroTimer.BackUpScratchWork.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ PomodoroTimer.enhancer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ PomodoroTimer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ PomodoroTimer.styles.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   β”œβ”€β”€ ProjectTile
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ ConfirmCompleteCheckBox.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ DeleteButtonIcon.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ ProjectTile.enhancer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ ProjectTile.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ ProjectTile.styles.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   β”œβ”€β”€ ProjectsPage
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ DisplayAllProjectsDialog
β”‚   β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ DisplayAllProjectsDialog.js
β”‚   β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ DisplayAllProjectsDialog.styles.js
β”‚   β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ ProjectsPage.enhancer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ ProjectsPage.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ ProjectsPage.styles.1.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   β”œβ”€β”€ SelfDiagnosis
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ DisplayAllReviewsDialog
β”‚   β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ DisplayAllReviewsDialog.js
β”‚   β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ DisplayAllReviewsDialog.style.js
β”‚   β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ SelfDiagnosis.enhancer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ SelfDiagnosis.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ SelfDiagnosis.styles.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ SelfDiagnosisBackUp
β”‚   β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ SelfDiagnosis.js
β”‚   β”‚   β”‚   β”‚   β”‚   └── SelfDiagnosisForm.BackUp.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   β”œβ”€β”€ SleepTimeCountDown
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ DisplaySleepTime.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ SleepTime.enhancer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ SleepTime.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ SleepTime.styles.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ SleepTime_BackUp
β”‚   β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ AfterSetSleepTime.js
β”‚   β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ BeforeSetSleepTime.js
β”‚   β”‚   β”‚   β”‚   β”‚   └── DailyHourCountDown.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ SleepTimer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ TimePickerField.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   └── WakeUpTime
β”‚   β”‚   β”‚       β”œβ”€β”€ AfterWakeUpTime.js
β”‚   β”‚   β”‚       └── PreWakeUpTime.js
β”‚   β”‚   β”œβ”€β”€ index.js
β”‚   β”‚   └── routes
β”‚   β”‚       └── Project
β”‚   β”‚           β”œβ”€β”€ components
β”‚   β”‚           β”‚   └── ProjectPage
β”‚   β”‚           β”‚       β”œβ”€β”€ ProjectPage.enhancer.js
β”‚   β”‚           β”‚       β”œβ”€β”€ ProjectPage.js
β”‚   β”‚           β”‚       β”œβ”€β”€ ProjectPage.styles.js
β”‚   β”‚           β”‚       └── index.js
β”‚   β”‚           └── index.js
β”‚   β”œβ”€β”€ Signup
β”‚   β”‚   β”œβ”€β”€ components
β”‚   β”‚   β”‚   β”œβ”€β”€ SignupForm
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ SignupForm.enhancer.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ SignupForm.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ SignupForm.styles.js
β”‚   β”‚   β”‚   β”‚   β”œβ”€β”€ UpdatedSignupForm.js
β”‚   β”‚   β”‚   β”‚   └── index.js
β”‚   β”‚   β”‚   └── SignupPage
β”‚   β”‚   β”‚       β”œβ”€β”€ SignupPage.enhancer.js
β”‚   β”‚   β”‚       β”œβ”€β”€ SignupPage.js
β”‚   β”‚   β”‚       β”œβ”€β”€ SignupPage.styles.js
β”‚   β”‚   β”‚       └── index.js
β”‚   β”‚   └── index.js
β”‚   └── index.js
β”œβ”€β”€ static
β”‚   β”œβ”€β”€ User.png
β”‚   └── logo.svg
β”œβ”€β”€ store
β”‚   β”œβ”€β”€ createStore.js
β”‚   β”œβ”€β”€ location.js
β”‚   └── reducers.js
β”œβ”€β”€ theme.js
β”œβ”€β”€ types
β”‚   └── react-trello.d.ts
└── utils
    β”œβ”€β”€ components.js
    β”œβ”€β”€ form.js
    β”œβ”€β”€ index.js
    └── router.js

🏁 Project Status

The current version of livedaze supports the following functions.

Landing Page - Login/Registration Page

  • Designed and developed responsive Web Page (Login Page and Registration Page)
  • Integrated Material UI (Login Forms and Buttons)
  • Integrated social login function with Firebase API (Google, Facebook, Github Login)
  • Firebase Email Authentication
  • Integrated anonymous login function.
  • Vectorize social login icons to SVG and develop micro-animated UI(Hover, onClick, etc..)

Dashboard - Core Functionalities

  • Function for set a goal day.
  • Function for set a sleep time.
  • 25 Minute Pomodoro Timer.
  • Self-Evaluation function (With Emoji).
  • Daily Task Tracker (To do list).

Settings Page [IN PROGRESS]

  • Display User Information and manage email & Password.
  • Display basic analysis of the user's usage.

Data Visualization [IN PROGRESS]

  • Develop a function to visualize user's data and display in a chart form.

Documentation [IN PROGRESS]

  • Updating Github Markdown page.

About

A time management web application built with React, Redux, and Firebase [2019]

Topics

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published