├── .firebaserc ├── .gitignore ├── .prettierrc.js ├── CODEOWNERS ├── LICENSE ├── README.md ├── firebase.json ├── firestore.indexes.json ├── firestore.rules ├── functions ├── .eslintrc.json ├── .gitignore ├── index.js ├── package-lock.json └── package.json ├── package.json ├── public ├── _redirects ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── react-redux-todo-app.code-workspace ├── src ├── App.js ├── App.scss ├── assets │ ├── combination-logo.svg │ ├── img │ │ ├── avatar-placeholder.png │ │ ├── screenshot-header.png │ │ ├── screenshot-section-add-todo.png │ │ ├── screenshot-section-due-dates.png │ │ ├── screenshot-section-projects.png │ │ ├── screenshot-section-search.png │ │ ├── testimonial-avatar-1.jpg │ │ ├── testimonial-avatar-2.jpg │ │ └── testimonial-avatar-3.jpg │ ├── logo.svg │ └── search-by-algolia-light-background.svg ├── components │ ├── AddItemSkeletonButton │ │ ├── AddItemSkeletonButton.js │ │ └── AddItemSkeletonButton.styles.scss │ ├── AddLabelModal │ │ ├── AddLabelModal.js │ │ └── AddLabelModal.styles.scss │ ├── AddNew │ │ ├── AddNew.js │ │ └── AddNew.styles.scss │ ├── AddProjectModal │ │ ├── AddProjectModal.js │ │ └── AddProjectModal.styles.scss │ ├── AddTime │ │ ├── AddTime.js │ │ └── AddTime.styles.scss │ ├── AddTodoModal │ │ ├── AddTodoLocalReducer.js │ │ ├── AddTodoModal.js │ │ └── AddTodoModal.styles.scss │ ├── AppMain │ │ ├── AppMain.js │ │ └── AppMain.styles.scss │ ├── AriaText │ │ ├── AriaText.js │ │ └── AriaText.styles.scss │ ├── Checkbox │ │ ├── Checkbox.js │ │ └── Checkbox.styles.scss │ ├── ColorSelect │ │ ├── ColorSelect.js │ │ └── ColorSelect.styles.scss │ ├── CookieConsent │ │ ├── CookieConsent.js │ │ └── CookieConsent.styles.scss │ ├── CurrentUserAvatar │ │ ├── CurrentUserAvatar.js │ │ └── CurrentUserAvatar.styles.scss │ ├── DashboardMain │ │ ├── DashboardMain.js │ │ └── DashboardMain.styles.scss │ ├── DatePicker │ │ ├── DatePicker.js │ │ └── DatePicker.styles.scss │ ├── ErrorBoundary │ │ └── ErrorBoundary.js │ ├── Footer │ │ ├── Footer.js │ │ └── Footer.styles.scss │ ├── FormattedTodoDueDate │ │ └── FormattedTodoDueDate.js │ ├── Header │ │ ├── Header.js │ │ └── Header.styles.scss │ ├── HomePageCurrentUserAvatar │ │ ├── HomePageCurrentUserAvatar.js │ │ └── HomePageCurrentUserAvatar.styles.scss │ ├── HomePageHeader │ │ ├── HomePageHeader.js │ │ └── HomePageHeader.styles.scss │ ├── Input │ │ ├── Input.js │ │ └── Input.styles.scss │ ├── LabelSidebarItem │ │ └── LabelSidebarItem.js │ ├── LabelsCard │ │ ├── LabelsCard.js │ │ └── LabelsCard.styles.scss │ ├── LinkButton │ │ ├── LinkButton.js │ │ └── LinkButton.styles.scss │ ├── LiveRegion │ │ ├── LiveRegion.js │ │ └── LiveRegion.styles.scss │ ├── Logo │ │ ├── Logo.js │ │ └── Logo.styles.scss │ ├── MenuButton │ │ ├── MenuButton.js │ │ └── MenuButton.styles.scss │ ├── MobileSearchBar │ │ ├── MobileSearchBar.js │ │ └── MobileSearchBar.styles.scss │ ├── OrDivider │ │ ├── OrDivider.js │ │ └── OrDivider.styles.scss │ ├── OutlinedButton │ │ ├── OutlinedButton.js │ │ └── OutlinedButton.styles.scss │ ├── PageSectionTitleSkeleton │ │ ├── PageSectionTitleSkeleton.js │ │ └── PageSectionTitleSkeleton.styles.scss │ ├── PageSkeleton │ │ ├── PageSkeleton.js │ │ └── PageSkeleton.styles.scss │ ├── PageTitleSkeleton │ │ ├── PageTitleSkeleton.js │ │ └── PageTitleSkeleton.styles.scss │ ├── Portal │ │ └── Portal.js │ ├── PrimaryButton │ │ ├── PrimaryButton.js │ │ └── PrimaryButton.styles.scss │ ├── ProjectSidebarItem │ │ └── ProjectSidebarItem.js │ ├── ProjectsCard │ │ ├── ProjectsCard.js │ │ └── ProjectsCard.styles.scss │ ├── SEO │ │ └── SEO.js │ ├── SVGSprite │ │ └── SVGSprite.js │ ├── SearchBar │ │ ├── SearchBar.js │ │ └── SearchBar.styles.scss │ ├── SearchModal │ │ ├── SearchModal.js │ │ └── SearchModal.styles.scss │ ├── Sidebar │ │ ├── Sidebar.js │ │ └── Sidebar.styles.scss │ ├── SidebarAvatarSkeleton │ │ ├── SidebarAvatarSkeleton.js │ │ └── SidebarAvatarSkeleton.styles.scss │ ├── SidebarItemButtonSkeleton │ │ ├── SidebarItemButtonSkeleton.js │ │ └── SidebarItemButtonSkeleton.styles.scss │ ├── SidebarItemSkeleton │ │ ├── SidebarItemSkeleton.js │ │ └── SidebarItemSkeleton.styles.scss │ ├── SidebarSignoutButton │ │ ├── SidebarSignoutButton.js │ │ └── SidebarSignoutButton.styles.scss │ ├── SidebarSkeleton │ │ ├── SidebarSkeleton.js │ │ └── SidebarSkeleton.styles.scss │ ├── SidebarTitleSkeleton │ │ ├── SidebarTitleSkeleton.js │ │ └── SidebarTitleSkeleton.styles.scss │ ├── SignInWithGoogle │ │ ├── SignInWithGoogle.js │ │ └── SignInWithGoogle.styles.scss │ ├── SignUpWithGoogle │ │ ├── SignUpWithGoogle.js │ │ └── SignUpWithGoogle.styles.scss │ ├── SkeletonGradient │ │ └── SkeletonGradient.js │ ├── Spinner │ │ ├── Spinner.js │ │ └── Spinner.styles.scss │ ├── TextButton │ │ ├── TextButton.js │ │ └── TextButton.styles.scss │ ├── TimeInput │ │ ├── TimeInput.js │ │ ├── TimeInput.styles.scss │ │ └── __tests__ │ │ │ └── TimeInput.test.js │ ├── ToastsNotifier │ │ └── ToastsNotifier.js │ ├── Todo │ │ └── Todo.js │ ├── TodoDueDate │ │ ├── TodoDueDate.js │ │ └── TodoDueDate.styles.scss │ ├── TodoForm │ │ ├── TodoForm.js │ │ ├── TodoForm.styles.scss │ │ └── __tests__ │ │ │ └── TodoForm.test.js │ ├── TodoItem │ │ ├── TodoItem.js │ │ ├── TodoItem.styles.scss │ │ └── __tests__ │ │ │ └── TodoItem.test.js │ ├── TodoItemDueDate │ │ ├── TodoItemDueDate.js │ │ └── TodoItemDueDate.styles.scss │ ├── TodoItemSkeleton │ │ ├── TodoItemSkeleton.js │ │ └── TodoItemSkeleton.styles.scss │ ├── TodoLabelTag │ │ ├── TodoLabelTag.js │ │ └── TodoLabelTag.styles.scss │ ├── TodoProjectTag │ │ ├── TodoProjectTag.js │ │ └── TodoProjectTag.styles.scss │ ├── UserAvatar │ │ ├── UserAvatar.js │ │ └── UserAvatar.styles.scss │ └── ValidationErrorMessage │ │ ├── ValidationErrorMessage.js │ │ └── ValidationErrorMessage.styles.scss ├── constants │ ├── collectionLimits.js │ ├── collections.js │ ├── routes.js │ └── ui.js ├── firebase │ ├── firebase.js │ └── seedColors.js ├── hoc │ ├── withAuth.js │ └── withProtectedRoute.js ├── hooks │ ├── firebase │ │ ├── index.js │ │ └── useCollection.js │ ├── index.js │ ├── useAnimation.js │ ├── useCollapsible.js │ ├── useCollapsible.styles.scss │ ├── useCollapsibleAnimation.js │ ├── useDisableBodyBackground.js │ ├── useDisableModalBackground.js │ ├── useDisableSidebarBackground.js │ ├── useEventListener.js │ ├── useFocusRef.js │ ├── useIsKeyPressed.js │ ├── useKeyDownPress.js │ ├── useKeyUpPress.js │ ├── useLogger.js │ ├── useMeasure.js │ ├── useMeasureCollapsible.js │ ├── useMultipleKeysPressed.js │ ├── useOnClickOutside.js │ ├── usePortal.js │ ├── useRectSize.js │ └── useSessionStorage.js ├── index.js ├── index.scss ├── pages │ ├── Home │ │ ├── Home.js │ │ └── Home.styles.scss │ ├── Inbox │ │ └── Inbox.js │ ├── Label │ │ └── Label.js │ ├── Labels │ │ ├── Labels.js │ │ └── Labels.styles.scss │ ├── Login │ │ ├── Login.js │ │ └── Login.styles.scss │ ├── NextDays │ │ ├── NextDays.js │ │ └── NextDays.styles.scss │ ├── NotFound │ │ ├── NotFound.js │ │ └── NotFound.styles.scss │ ├── PasswordReset │ │ ├── PasswordReset.js │ │ └── PasswordReset.styles.scss │ ├── Profile │ │ ├── Profile.js │ │ └── Profile.styles.scss │ ├── Project │ │ └── Project.js │ ├── Projects │ │ ├── Projects.js │ │ └── Projects.styles.scss │ ├── Signup │ │ ├── Signup.js │ │ └── Signup.styles.scss │ └── Today │ │ ├── Today.js │ │ └── Today.styles.scss ├── redux │ ├── colors │ │ ├── colors-actions.js │ │ ├── colors-reducer.js │ │ ├── colors-selectors.js │ │ ├── colors-types.js │ │ └── test-colors.js │ ├── containers │ │ ├── components │ │ │ ├── AddLabelModalContainer.js │ │ │ ├── AddProjectModalContainer.js │ │ │ ├── AddTodoModalContainer.js │ │ │ ├── ColorsSelectContainer.js │ │ │ ├── CookieConsentContainer.js │ │ │ ├── CurrentUserAvatarContainer.js │ │ │ ├── DashboardMainContainer.js │ │ │ ├── HeaderContainer.js │ │ │ ├── HomePageCurrentUserAvatarContainer.js │ │ │ ├── HomePageHeaderContainer.js │ │ │ ├── LabelSidebarItemContainer.js │ │ │ ├── LabelsCardContainer.js │ │ │ ├── LiveRegionContainer.js │ │ │ ├── MenuButtonContainer.js │ │ │ ├── MobileSearchBarContainer.js │ │ │ ├── PageSkeletonContainer.js │ │ │ ├── ProjectSidebarItemContainer.js │ │ │ ├── ProjectsCardContainer.js │ │ │ ├── SearchBarContainer.js │ │ │ ├── SearchModalContainer.js │ │ │ ├── SidebarContainer.js │ │ │ ├── SidebarSkeletonContainer.js │ │ │ ├── ToastsNotifierContainer.js │ │ │ ├── TodoFormContainer.js │ │ │ ├── TodoItemContainer.js │ │ │ ├── TodoLabelTagContainer.js │ │ │ ├── TodoProjectTagContainer.js │ │ │ └── UserAvatarContainer.js │ │ └── pages │ │ │ ├── AppContainer.js │ │ │ ├── InboxContainer.js │ │ │ ├── LabelContainer.js │ │ │ ├── LabelsContainer.js │ │ │ ├── LoginContainer.js │ │ │ ├── NextDaysContainer.js │ │ │ ├── ProjectContainer.js │ │ │ ├── ProjectsContainer.js │ │ │ ├── SignupContainer.js │ │ │ └── TodayContainer.js │ ├── labels │ │ ├── labels-actions.js │ │ ├── labels-reducer.js │ │ ├── labels-selectors.js │ │ ├── labels-types.js │ │ └── test-labels.js │ ├── localState │ │ ├── localState-actions.js │ │ ├── localState-reducer.js │ │ ├── localState-selectors.js │ │ └── localState-types.js │ ├── projects │ │ ├── projects-actions.js │ │ ├── projects-reducer.js │ │ ├── projects-selectors.js │ │ ├── projects-types.js │ │ └── test-projects.js │ ├── root-reducer.js │ ├── store.js │ ├── todos │ │ ├── test-todos.js │ │ ├── todos-actions.js │ │ ├── todos-reducer.js │ │ ├── todos-selectors.js │ │ └── todos-types.js │ └── user │ │ ├── test-user.js │ │ ├── user-actions.js │ │ ├── user-reducer.js │ │ ├── user-selectors.js │ │ └── user-types.js ├── serviceWorker.js ├── styles │ ├── base │ │ ├── _colors.scss │ │ ├── _fonts.scss │ │ ├── _functions.scss │ │ ├── _layout.scss │ │ ├── _mixins.scss │ │ └── _placeholders.scss │ ├── reset │ │ ├── _box-sizing.scss │ │ ├── _html.scss │ │ ├── _index.scss │ │ └── _normalize.scss │ └── tokens │ │ ├── _animations.scss │ │ ├── _box-shadows.scss │ │ ├── _colors.scss │ │ ├── _fonts.scss │ │ ├── _grid.scss │ │ ├── _index.scss │ │ ├── _sizing.scss │ │ ├── _spacing.scss │ │ └── _z-index.scss └── utils │ ├── __tests__ │ └── dates.test.js │ ├── a11y.js │ ├── dates.js │ ├── firebase │ ├── createSignUpUserDocument.js │ ├── createUserProfileDocument.js │ ├── getCurrentUserDataFromSnapshot.js │ ├── getObjectFromDocs.js │ ├── getObjectFromSingleDoc.js │ ├── getTodoObjectFromSingleDoc.js │ ├── getTodosObjectFromDocs.js │ ├── helpers.js │ └── revertUserCreation.js │ ├── helpers.js │ ├── seo.js │ └── tests.js └── storage.rules /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @danilucaci -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/README.md -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/firebase.json -------------------------------------------------------------------------------- /firestore.indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/firestore.indexes.json -------------------------------------------------------------------------------- /firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/firestore.rules -------------------------------------------------------------------------------- /functions/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/functions/.eslintrc.json -------------------------------------------------------------------------------- /functions/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/functions/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 2 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/public/robots.txt -------------------------------------------------------------------------------- /react-redux-todo-app.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/react-redux-todo-app.code-workspace -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/App.scss -------------------------------------------------------------------------------- /src/assets/combination-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/assets/combination-logo.svg -------------------------------------------------------------------------------- /src/assets/img/avatar-placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/assets/img/avatar-placeholder.png -------------------------------------------------------------------------------- /src/assets/img/screenshot-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/assets/img/screenshot-header.png -------------------------------------------------------------------------------- /src/assets/img/screenshot-section-add-todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/assets/img/screenshot-section-add-todo.png -------------------------------------------------------------------------------- /src/assets/img/screenshot-section-due-dates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/assets/img/screenshot-section-due-dates.png -------------------------------------------------------------------------------- /src/assets/img/screenshot-section-projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/assets/img/screenshot-section-projects.png -------------------------------------------------------------------------------- /src/assets/img/screenshot-section-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/assets/img/screenshot-section-search.png -------------------------------------------------------------------------------- /src/assets/img/testimonial-avatar-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/assets/img/testimonial-avatar-1.jpg -------------------------------------------------------------------------------- /src/assets/img/testimonial-avatar-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/assets/img/testimonial-avatar-2.jpg -------------------------------------------------------------------------------- /src/assets/img/testimonial-avatar-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/assets/img/testimonial-avatar-3.jpg -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/assets/search-by-algolia-light-background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/assets/search-by-algolia-light-background.svg -------------------------------------------------------------------------------- /src/components/AddItemSkeletonButton/AddItemSkeletonButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/AddItemSkeletonButton/AddItemSkeletonButton.js -------------------------------------------------------------------------------- /src/components/AddItemSkeletonButton/AddItemSkeletonButton.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/AddItemSkeletonButton/AddItemSkeletonButton.styles.scss -------------------------------------------------------------------------------- /src/components/AddLabelModal/AddLabelModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/AddLabelModal/AddLabelModal.js -------------------------------------------------------------------------------- /src/components/AddLabelModal/AddLabelModal.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/AddLabelModal/AddLabelModal.styles.scss -------------------------------------------------------------------------------- /src/components/AddNew/AddNew.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/AddNew/AddNew.js -------------------------------------------------------------------------------- /src/components/AddNew/AddNew.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/AddNew/AddNew.styles.scss -------------------------------------------------------------------------------- /src/components/AddProjectModal/AddProjectModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/AddProjectModal/AddProjectModal.js -------------------------------------------------------------------------------- /src/components/AddProjectModal/AddProjectModal.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/AddProjectModal/AddProjectModal.styles.scss -------------------------------------------------------------------------------- /src/components/AddTime/AddTime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/AddTime/AddTime.js -------------------------------------------------------------------------------- /src/components/AddTime/AddTime.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/AddTime/AddTime.styles.scss -------------------------------------------------------------------------------- /src/components/AddTodoModal/AddTodoLocalReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/AddTodoModal/AddTodoLocalReducer.js -------------------------------------------------------------------------------- /src/components/AddTodoModal/AddTodoModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/AddTodoModal/AddTodoModal.js -------------------------------------------------------------------------------- /src/components/AddTodoModal/AddTodoModal.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/AddTodoModal/AddTodoModal.styles.scss -------------------------------------------------------------------------------- /src/components/AppMain/AppMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/AppMain/AppMain.js -------------------------------------------------------------------------------- /src/components/AppMain/AppMain.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/AppMain/AppMain.styles.scss -------------------------------------------------------------------------------- /src/components/AriaText/AriaText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/AriaText/AriaText.js -------------------------------------------------------------------------------- /src/components/AriaText/AriaText.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/AriaText/AriaText.styles.scss -------------------------------------------------------------------------------- /src/components/Checkbox/Checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/Checkbox/Checkbox.js -------------------------------------------------------------------------------- /src/components/Checkbox/Checkbox.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/Checkbox/Checkbox.styles.scss -------------------------------------------------------------------------------- /src/components/ColorSelect/ColorSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/ColorSelect/ColorSelect.js -------------------------------------------------------------------------------- /src/components/ColorSelect/ColorSelect.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/ColorSelect/ColorSelect.styles.scss -------------------------------------------------------------------------------- /src/components/CookieConsent/CookieConsent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/CookieConsent/CookieConsent.js -------------------------------------------------------------------------------- /src/components/CookieConsent/CookieConsent.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/CookieConsent/CookieConsent.styles.scss -------------------------------------------------------------------------------- /src/components/CurrentUserAvatar/CurrentUserAvatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/CurrentUserAvatar/CurrentUserAvatar.js -------------------------------------------------------------------------------- /src/components/CurrentUserAvatar/CurrentUserAvatar.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/CurrentUserAvatar/CurrentUserAvatar.styles.scss -------------------------------------------------------------------------------- /src/components/DashboardMain/DashboardMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/DashboardMain/DashboardMain.js -------------------------------------------------------------------------------- /src/components/DashboardMain/DashboardMain.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/DashboardMain/DashboardMain.styles.scss -------------------------------------------------------------------------------- /src/components/DatePicker/DatePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/DatePicker/DatePicker.js -------------------------------------------------------------------------------- /src/components/DatePicker/DatePicker.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/DatePicker/DatePicker.styles.scss -------------------------------------------------------------------------------- /src/components/ErrorBoundary/ErrorBoundary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/ErrorBoundary/ErrorBoundary.js -------------------------------------------------------------------------------- /src/components/Footer/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/Footer/Footer.js -------------------------------------------------------------------------------- /src/components/Footer/Footer.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/Footer/Footer.styles.scss -------------------------------------------------------------------------------- /src/components/FormattedTodoDueDate/FormattedTodoDueDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/FormattedTodoDueDate/FormattedTodoDueDate.js -------------------------------------------------------------------------------- /src/components/Header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/Header/Header.js -------------------------------------------------------------------------------- /src/components/Header/Header.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/Header/Header.styles.scss -------------------------------------------------------------------------------- /src/components/HomePageCurrentUserAvatar/HomePageCurrentUserAvatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/HomePageCurrentUserAvatar/HomePageCurrentUserAvatar.js -------------------------------------------------------------------------------- /src/components/HomePageCurrentUserAvatar/HomePageCurrentUserAvatar.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/HomePageCurrentUserAvatar/HomePageCurrentUserAvatar.styles.scss -------------------------------------------------------------------------------- /src/components/HomePageHeader/HomePageHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/HomePageHeader/HomePageHeader.js -------------------------------------------------------------------------------- /src/components/HomePageHeader/HomePageHeader.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/HomePageHeader/HomePageHeader.styles.scss -------------------------------------------------------------------------------- /src/components/Input/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/Input/Input.js -------------------------------------------------------------------------------- /src/components/Input/Input.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/Input/Input.styles.scss -------------------------------------------------------------------------------- /src/components/LabelSidebarItem/LabelSidebarItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/LabelSidebarItem/LabelSidebarItem.js -------------------------------------------------------------------------------- /src/components/LabelsCard/LabelsCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/LabelsCard/LabelsCard.js -------------------------------------------------------------------------------- /src/components/LabelsCard/LabelsCard.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/LabelsCard/LabelsCard.styles.scss -------------------------------------------------------------------------------- /src/components/LinkButton/LinkButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/LinkButton/LinkButton.js -------------------------------------------------------------------------------- /src/components/LinkButton/LinkButton.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/LinkButton/LinkButton.styles.scss -------------------------------------------------------------------------------- /src/components/LiveRegion/LiveRegion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/LiveRegion/LiveRegion.js -------------------------------------------------------------------------------- /src/components/LiveRegion/LiveRegion.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/LiveRegion/LiveRegion.styles.scss -------------------------------------------------------------------------------- /src/components/Logo/Logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/Logo/Logo.js -------------------------------------------------------------------------------- /src/components/Logo/Logo.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/Logo/Logo.styles.scss -------------------------------------------------------------------------------- /src/components/MenuButton/MenuButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/MenuButton/MenuButton.js -------------------------------------------------------------------------------- /src/components/MenuButton/MenuButton.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/MenuButton/MenuButton.styles.scss -------------------------------------------------------------------------------- /src/components/MobileSearchBar/MobileSearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/MobileSearchBar/MobileSearchBar.js -------------------------------------------------------------------------------- /src/components/MobileSearchBar/MobileSearchBar.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/MobileSearchBar/MobileSearchBar.styles.scss -------------------------------------------------------------------------------- /src/components/OrDivider/OrDivider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/OrDivider/OrDivider.js -------------------------------------------------------------------------------- /src/components/OrDivider/OrDivider.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/OrDivider/OrDivider.styles.scss -------------------------------------------------------------------------------- /src/components/OutlinedButton/OutlinedButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/OutlinedButton/OutlinedButton.js -------------------------------------------------------------------------------- /src/components/OutlinedButton/OutlinedButton.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/OutlinedButton/OutlinedButton.styles.scss -------------------------------------------------------------------------------- /src/components/PageSectionTitleSkeleton/PageSectionTitleSkeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/PageSectionTitleSkeleton/PageSectionTitleSkeleton.js -------------------------------------------------------------------------------- /src/components/PageSectionTitleSkeleton/PageSectionTitleSkeleton.styles.scss: -------------------------------------------------------------------------------- 1 | @use "../../styles/tokens"; 2 | 3 | .PageSectionTitleSkeleton { 4 | } 5 | -------------------------------------------------------------------------------- /src/components/PageSkeleton/PageSkeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/PageSkeleton/PageSkeleton.js -------------------------------------------------------------------------------- /src/components/PageSkeleton/PageSkeleton.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/PageSkeleton/PageSkeleton.styles.scss -------------------------------------------------------------------------------- /src/components/PageTitleSkeleton/PageTitleSkeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/PageTitleSkeleton/PageTitleSkeleton.js -------------------------------------------------------------------------------- /src/components/PageTitleSkeleton/PageTitleSkeleton.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/PageTitleSkeleton/PageTitleSkeleton.styles.scss -------------------------------------------------------------------------------- /src/components/Portal/Portal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/Portal/Portal.js -------------------------------------------------------------------------------- /src/components/PrimaryButton/PrimaryButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/PrimaryButton/PrimaryButton.js -------------------------------------------------------------------------------- /src/components/PrimaryButton/PrimaryButton.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/PrimaryButton/PrimaryButton.styles.scss -------------------------------------------------------------------------------- /src/components/ProjectSidebarItem/ProjectSidebarItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/ProjectSidebarItem/ProjectSidebarItem.js -------------------------------------------------------------------------------- /src/components/ProjectsCard/ProjectsCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/ProjectsCard/ProjectsCard.js -------------------------------------------------------------------------------- /src/components/ProjectsCard/ProjectsCard.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/ProjectsCard/ProjectsCard.styles.scss -------------------------------------------------------------------------------- /src/components/SEO/SEO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SEO/SEO.js -------------------------------------------------------------------------------- /src/components/SVGSprite/SVGSprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SVGSprite/SVGSprite.js -------------------------------------------------------------------------------- /src/components/SearchBar/SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SearchBar/SearchBar.js -------------------------------------------------------------------------------- /src/components/SearchBar/SearchBar.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SearchBar/SearchBar.styles.scss -------------------------------------------------------------------------------- /src/components/SearchModal/SearchModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SearchModal/SearchModal.js -------------------------------------------------------------------------------- /src/components/SearchModal/SearchModal.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SearchModal/SearchModal.styles.scss -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/Sidebar/Sidebar.js -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/Sidebar/Sidebar.styles.scss -------------------------------------------------------------------------------- /src/components/SidebarAvatarSkeleton/SidebarAvatarSkeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SidebarAvatarSkeleton/SidebarAvatarSkeleton.js -------------------------------------------------------------------------------- /src/components/SidebarAvatarSkeleton/SidebarAvatarSkeleton.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SidebarAvatarSkeleton/SidebarAvatarSkeleton.styles.scss -------------------------------------------------------------------------------- /src/components/SidebarItemButtonSkeleton/SidebarItemButtonSkeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SidebarItemButtonSkeleton/SidebarItemButtonSkeleton.js -------------------------------------------------------------------------------- /src/components/SidebarItemButtonSkeleton/SidebarItemButtonSkeleton.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SidebarItemButtonSkeleton/SidebarItemButtonSkeleton.styles.scss -------------------------------------------------------------------------------- /src/components/SidebarItemSkeleton/SidebarItemSkeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SidebarItemSkeleton/SidebarItemSkeleton.js -------------------------------------------------------------------------------- /src/components/SidebarItemSkeleton/SidebarItemSkeleton.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SidebarItemSkeleton/SidebarItemSkeleton.styles.scss -------------------------------------------------------------------------------- /src/components/SidebarSignoutButton/SidebarSignoutButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SidebarSignoutButton/SidebarSignoutButton.js -------------------------------------------------------------------------------- /src/components/SidebarSignoutButton/SidebarSignoutButton.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SidebarSignoutButton/SidebarSignoutButton.styles.scss -------------------------------------------------------------------------------- /src/components/SidebarSkeleton/SidebarSkeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SidebarSkeleton/SidebarSkeleton.js -------------------------------------------------------------------------------- /src/components/SidebarSkeleton/SidebarSkeleton.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SidebarSkeleton/SidebarSkeleton.styles.scss -------------------------------------------------------------------------------- /src/components/SidebarTitleSkeleton/SidebarTitleSkeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SidebarTitleSkeleton/SidebarTitleSkeleton.js -------------------------------------------------------------------------------- /src/components/SidebarTitleSkeleton/SidebarTitleSkeleton.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SidebarTitleSkeleton/SidebarTitleSkeleton.styles.scss -------------------------------------------------------------------------------- /src/components/SignInWithGoogle/SignInWithGoogle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SignInWithGoogle/SignInWithGoogle.js -------------------------------------------------------------------------------- /src/components/SignInWithGoogle/SignInWithGoogle.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SignInWithGoogle/SignInWithGoogle.styles.scss -------------------------------------------------------------------------------- /src/components/SignUpWithGoogle/SignUpWithGoogle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SignUpWithGoogle/SignUpWithGoogle.js -------------------------------------------------------------------------------- /src/components/SignUpWithGoogle/SignUpWithGoogle.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SignUpWithGoogle/SignUpWithGoogle.styles.scss -------------------------------------------------------------------------------- /src/components/SkeletonGradient/SkeletonGradient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/SkeletonGradient/SkeletonGradient.js -------------------------------------------------------------------------------- /src/components/Spinner/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/Spinner/Spinner.js -------------------------------------------------------------------------------- /src/components/Spinner/Spinner.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/Spinner/Spinner.styles.scss -------------------------------------------------------------------------------- /src/components/TextButton/TextButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TextButton/TextButton.js -------------------------------------------------------------------------------- /src/components/TextButton/TextButton.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TextButton/TextButton.styles.scss -------------------------------------------------------------------------------- /src/components/TimeInput/TimeInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TimeInput/TimeInput.js -------------------------------------------------------------------------------- /src/components/TimeInput/TimeInput.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TimeInput/TimeInput.styles.scss -------------------------------------------------------------------------------- /src/components/TimeInput/__tests__/TimeInput.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TimeInput/__tests__/TimeInput.test.js -------------------------------------------------------------------------------- /src/components/ToastsNotifier/ToastsNotifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/ToastsNotifier/ToastsNotifier.js -------------------------------------------------------------------------------- /src/components/Todo/Todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/Todo/Todo.js -------------------------------------------------------------------------------- /src/components/TodoDueDate/TodoDueDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TodoDueDate/TodoDueDate.js -------------------------------------------------------------------------------- /src/components/TodoDueDate/TodoDueDate.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TodoDueDate/TodoDueDate.styles.scss -------------------------------------------------------------------------------- /src/components/TodoForm/TodoForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TodoForm/TodoForm.js -------------------------------------------------------------------------------- /src/components/TodoForm/TodoForm.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TodoForm/TodoForm.styles.scss -------------------------------------------------------------------------------- /src/components/TodoForm/__tests__/TodoForm.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TodoForm/__tests__/TodoForm.test.js -------------------------------------------------------------------------------- /src/components/TodoItem/TodoItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TodoItem/TodoItem.js -------------------------------------------------------------------------------- /src/components/TodoItem/TodoItem.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TodoItem/TodoItem.styles.scss -------------------------------------------------------------------------------- /src/components/TodoItem/__tests__/TodoItem.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TodoItem/__tests__/TodoItem.test.js -------------------------------------------------------------------------------- /src/components/TodoItemDueDate/TodoItemDueDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TodoItemDueDate/TodoItemDueDate.js -------------------------------------------------------------------------------- /src/components/TodoItemDueDate/TodoItemDueDate.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TodoItemDueDate/TodoItemDueDate.styles.scss -------------------------------------------------------------------------------- /src/components/TodoItemSkeleton/TodoItemSkeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TodoItemSkeleton/TodoItemSkeleton.js -------------------------------------------------------------------------------- /src/components/TodoItemSkeleton/TodoItemSkeleton.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TodoItemSkeleton/TodoItemSkeleton.styles.scss -------------------------------------------------------------------------------- /src/components/TodoLabelTag/TodoLabelTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TodoLabelTag/TodoLabelTag.js -------------------------------------------------------------------------------- /src/components/TodoLabelTag/TodoLabelTag.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TodoLabelTag/TodoLabelTag.styles.scss -------------------------------------------------------------------------------- /src/components/TodoProjectTag/TodoProjectTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TodoProjectTag/TodoProjectTag.js -------------------------------------------------------------------------------- /src/components/TodoProjectTag/TodoProjectTag.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/TodoProjectTag/TodoProjectTag.styles.scss -------------------------------------------------------------------------------- /src/components/UserAvatar/UserAvatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/UserAvatar/UserAvatar.js -------------------------------------------------------------------------------- /src/components/UserAvatar/UserAvatar.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/UserAvatar/UserAvatar.styles.scss -------------------------------------------------------------------------------- /src/components/ValidationErrorMessage/ValidationErrorMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/ValidationErrorMessage/ValidationErrorMessage.js -------------------------------------------------------------------------------- /src/components/ValidationErrorMessage/ValidationErrorMessage.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/components/ValidationErrorMessage/ValidationErrorMessage.styles.scss -------------------------------------------------------------------------------- /src/constants/collectionLimits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/constants/collectionLimits.js -------------------------------------------------------------------------------- /src/constants/collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/constants/collections.js -------------------------------------------------------------------------------- /src/constants/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/constants/routes.js -------------------------------------------------------------------------------- /src/constants/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/constants/ui.js -------------------------------------------------------------------------------- /src/firebase/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/firebase/firebase.js -------------------------------------------------------------------------------- /src/firebase/seedColors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/firebase/seedColors.js -------------------------------------------------------------------------------- /src/hoc/withAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hoc/withAuth.js -------------------------------------------------------------------------------- /src/hoc/withProtectedRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hoc/withProtectedRoute.js -------------------------------------------------------------------------------- /src/hooks/firebase/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/firebase/index.js -------------------------------------------------------------------------------- /src/hooks/firebase/useCollection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/firebase/useCollection.js -------------------------------------------------------------------------------- /src/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/index.js -------------------------------------------------------------------------------- /src/hooks/useAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/useAnimation.js -------------------------------------------------------------------------------- /src/hooks/useCollapsible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/useCollapsible.js -------------------------------------------------------------------------------- /src/hooks/useCollapsible.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/useCollapsible.styles.scss -------------------------------------------------------------------------------- /src/hooks/useCollapsibleAnimation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/useCollapsibleAnimation.js -------------------------------------------------------------------------------- /src/hooks/useDisableBodyBackground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/useDisableBodyBackground.js -------------------------------------------------------------------------------- /src/hooks/useDisableModalBackground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/useDisableModalBackground.js -------------------------------------------------------------------------------- /src/hooks/useDisableSidebarBackground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/useDisableSidebarBackground.js -------------------------------------------------------------------------------- /src/hooks/useEventListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/useEventListener.js -------------------------------------------------------------------------------- /src/hooks/useFocusRef.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/useFocusRef.js -------------------------------------------------------------------------------- /src/hooks/useIsKeyPressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/useIsKeyPressed.js -------------------------------------------------------------------------------- /src/hooks/useKeyDownPress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/useKeyDownPress.js -------------------------------------------------------------------------------- /src/hooks/useKeyUpPress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/useKeyUpPress.js -------------------------------------------------------------------------------- /src/hooks/useLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/useLogger.js -------------------------------------------------------------------------------- /src/hooks/useMeasure.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/useMeasure.js -------------------------------------------------------------------------------- /src/hooks/useMeasureCollapsible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/useMeasureCollapsible.js -------------------------------------------------------------------------------- /src/hooks/useMultipleKeysPressed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/useMultipleKeysPressed.js -------------------------------------------------------------------------------- /src/hooks/useOnClickOutside.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/useOnClickOutside.js -------------------------------------------------------------------------------- /src/hooks/usePortal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/usePortal.js -------------------------------------------------------------------------------- /src/hooks/useRectSize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/useRectSize.js -------------------------------------------------------------------------------- /src/hooks/useSessionStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/hooks/useSessionStorage.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/Home/Home.js -------------------------------------------------------------------------------- /src/pages/Home/Home.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/Home/Home.styles.scss -------------------------------------------------------------------------------- /src/pages/Inbox/Inbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/Inbox/Inbox.js -------------------------------------------------------------------------------- /src/pages/Label/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/Label/Label.js -------------------------------------------------------------------------------- /src/pages/Labels/Labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/Labels/Labels.js -------------------------------------------------------------------------------- /src/pages/Labels/Labels.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/Labels/Labels.styles.scss -------------------------------------------------------------------------------- /src/pages/Login/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/Login/Login.js -------------------------------------------------------------------------------- /src/pages/Login/Login.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/Login/Login.styles.scss -------------------------------------------------------------------------------- /src/pages/NextDays/NextDays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/NextDays/NextDays.js -------------------------------------------------------------------------------- /src/pages/NextDays/NextDays.styles.scss: -------------------------------------------------------------------------------- 1 | @use "../../styles/tokens"; 2 | -------------------------------------------------------------------------------- /src/pages/NotFound/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/NotFound/NotFound.js -------------------------------------------------------------------------------- /src/pages/NotFound/NotFound.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/NotFound/NotFound.styles.scss -------------------------------------------------------------------------------- /src/pages/PasswordReset/PasswordReset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/PasswordReset/PasswordReset.js -------------------------------------------------------------------------------- /src/pages/PasswordReset/PasswordReset.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/PasswordReset/PasswordReset.styles.scss -------------------------------------------------------------------------------- /src/pages/Profile/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/Profile/Profile.js -------------------------------------------------------------------------------- /src/pages/Profile/Profile.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/Profile/Profile.styles.scss -------------------------------------------------------------------------------- /src/pages/Project/Project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/Project/Project.js -------------------------------------------------------------------------------- /src/pages/Projects/Projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/Projects/Projects.js -------------------------------------------------------------------------------- /src/pages/Projects/Projects.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/Projects/Projects.styles.scss -------------------------------------------------------------------------------- /src/pages/Signup/Signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/Signup/Signup.js -------------------------------------------------------------------------------- /src/pages/Signup/Signup.styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/Signup/Signup.styles.scss -------------------------------------------------------------------------------- /src/pages/Today/Today.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/pages/Today/Today.js -------------------------------------------------------------------------------- /src/pages/Today/Today.styles.scss: -------------------------------------------------------------------------------- 1 | @use "../../styles/tokens"; 2 | -------------------------------------------------------------------------------- /src/redux/colors/colors-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/colors/colors-actions.js -------------------------------------------------------------------------------- /src/redux/colors/colors-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/colors/colors-reducer.js -------------------------------------------------------------------------------- /src/redux/colors/colors-selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/colors/colors-selectors.js -------------------------------------------------------------------------------- /src/redux/colors/colors-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/colors/colors-types.js -------------------------------------------------------------------------------- /src/redux/colors/test-colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/colors/test-colors.js -------------------------------------------------------------------------------- /src/redux/containers/components/AddLabelModalContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/AddLabelModalContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/AddProjectModalContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/AddProjectModalContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/AddTodoModalContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/AddTodoModalContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/ColorsSelectContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/ColorsSelectContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/CookieConsentContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/CookieConsentContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/CurrentUserAvatarContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/CurrentUserAvatarContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/DashboardMainContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/DashboardMainContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/HeaderContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/HeaderContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/HomePageCurrentUserAvatarContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/HomePageCurrentUserAvatarContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/HomePageHeaderContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/HomePageHeaderContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/LabelSidebarItemContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/LabelSidebarItemContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/LabelsCardContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/LabelsCardContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/LiveRegionContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/LiveRegionContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/MenuButtonContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/MenuButtonContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/MobileSearchBarContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/MobileSearchBarContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/PageSkeletonContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/PageSkeletonContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/ProjectSidebarItemContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/ProjectSidebarItemContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/ProjectsCardContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/ProjectsCardContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/SearchBarContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/SearchBarContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/SearchModalContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/SearchModalContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/SidebarContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/SidebarContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/SidebarSkeletonContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/SidebarSkeletonContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/ToastsNotifierContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/ToastsNotifierContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/TodoFormContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/TodoFormContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/TodoItemContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/TodoItemContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/TodoLabelTagContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/TodoLabelTagContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/TodoProjectTagContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/TodoProjectTagContainer.js -------------------------------------------------------------------------------- /src/redux/containers/components/UserAvatarContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/components/UserAvatarContainer.js -------------------------------------------------------------------------------- /src/redux/containers/pages/AppContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/pages/AppContainer.js -------------------------------------------------------------------------------- /src/redux/containers/pages/InboxContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/pages/InboxContainer.js -------------------------------------------------------------------------------- /src/redux/containers/pages/LabelContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/pages/LabelContainer.js -------------------------------------------------------------------------------- /src/redux/containers/pages/LabelsContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/pages/LabelsContainer.js -------------------------------------------------------------------------------- /src/redux/containers/pages/LoginContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/pages/LoginContainer.js -------------------------------------------------------------------------------- /src/redux/containers/pages/NextDaysContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/pages/NextDaysContainer.js -------------------------------------------------------------------------------- /src/redux/containers/pages/ProjectContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/pages/ProjectContainer.js -------------------------------------------------------------------------------- /src/redux/containers/pages/ProjectsContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/pages/ProjectsContainer.js -------------------------------------------------------------------------------- /src/redux/containers/pages/SignupContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/pages/SignupContainer.js -------------------------------------------------------------------------------- /src/redux/containers/pages/TodayContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/containers/pages/TodayContainer.js -------------------------------------------------------------------------------- /src/redux/labels/labels-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/labels/labels-actions.js -------------------------------------------------------------------------------- /src/redux/labels/labels-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/labels/labels-reducer.js -------------------------------------------------------------------------------- /src/redux/labels/labels-selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/labels/labels-selectors.js -------------------------------------------------------------------------------- /src/redux/labels/labels-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/labels/labels-types.js -------------------------------------------------------------------------------- /src/redux/labels/test-labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/labels/test-labels.js -------------------------------------------------------------------------------- /src/redux/localState/localState-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/localState/localState-actions.js -------------------------------------------------------------------------------- /src/redux/localState/localState-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/localState/localState-reducer.js -------------------------------------------------------------------------------- /src/redux/localState/localState-selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/localState/localState-selectors.js -------------------------------------------------------------------------------- /src/redux/localState/localState-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/localState/localState-types.js -------------------------------------------------------------------------------- /src/redux/projects/projects-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/projects/projects-actions.js -------------------------------------------------------------------------------- /src/redux/projects/projects-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/projects/projects-reducer.js -------------------------------------------------------------------------------- /src/redux/projects/projects-selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/projects/projects-selectors.js -------------------------------------------------------------------------------- /src/redux/projects/projects-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/projects/projects-types.js -------------------------------------------------------------------------------- /src/redux/projects/test-projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/projects/test-projects.js -------------------------------------------------------------------------------- /src/redux/root-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/root-reducer.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/redux/todos/test-todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/todos/test-todos.js -------------------------------------------------------------------------------- /src/redux/todos/todos-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/todos/todos-actions.js -------------------------------------------------------------------------------- /src/redux/todos/todos-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/todos/todos-reducer.js -------------------------------------------------------------------------------- /src/redux/todos/todos-selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/todos/todos-selectors.js -------------------------------------------------------------------------------- /src/redux/todos/todos-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/todos/todos-types.js -------------------------------------------------------------------------------- /src/redux/user/test-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/user/test-user.js -------------------------------------------------------------------------------- /src/redux/user/user-actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/user/user-actions.js -------------------------------------------------------------------------------- /src/redux/user/user-reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/user/user-reducer.js -------------------------------------------------------------------------------- /src/redux/user/user-selectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/user/user-selectors.js -------------------------------------------------------------------------------- /src/redux/user/user-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/redux/user/user-types.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/styles/base/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/styles/base/_colors.scss -------------------------------------------------------------------------------- /src/styles/base/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/styles/base/_fonts.scss -------------------------------------------------------------------------------- /src/styles/base/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/styles/base/_functions.scss -------------------------------------------------------------------------------- /src/styles/base/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/styles/base/_layout.scss -------------------------------------------------------------------------------- /src/styles/base/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/styles/base/_mixins.scss -------------------------------------------------------------------------------- /src/styles/base/_placeholders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/styles/base/_placeholders.scss -------------------------------------------------------------------------------- /src/styles/reset/_box-sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/styles/reset/_box-sizing.scss -------------------------------------------------------------------------------- /src/styles/reset/_html.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/styles/reset/_html.scss -------------------------------------------------------------------------------- /src/styles/reset/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/styles/reset/_index.scss -------------------------------------------------------------------------------- /src/styles/reset/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/styles/reset/_normalize.scss -------------------------------------------------------------------------------- /src/styles/tokens/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/styles/tokens/_animations.scss -------------------------------------------------------------------------------- /src/styles/tokens/_box-shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/styles/tokens/_box-shadows.scss -------------------------------------------------------------------------------- /src/styles/tokens/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/styles/tokens/_colors.scss -------------------------------------------------------------------------------- /src/styles/tokens/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/styles/tokens/_fonts.scss -------------------------------------------------------------------------------- /src/styles/tokens/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/styles/tokens/_grid.scss -------------------------------------------------------------------------------- /src/styles/tokens/_index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/styles/tokens/_index.scss -------------------------------------------------------------------------------- /src/styles/tokens/_sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/styles/tokens/_sizing.scss -------------------------------------------------------------------------------- /src/styles/tokens/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/styles/tokens/_spacing.scss -------------------------------------------------------------------------------- /src/styles/tokens/_z-index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/styles/tokens/_z-index.scss -------------------------------------------------------------------------------- /src/utils/__tests__/dates.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/utils/__tests__/dates.test.js -------------------------------------------------------------------------------- /src/utils/a11y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/utils/a11y.js -------------------------------------------------------------------------------- /src/utils/dates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/utils/dates.js -------------------------------------------------------------------------------- /src/utils/firebase/createSignUpUserDocument.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/utils/firebase/createSignUpUserDocument.js -------------------------------------------------------------------------------- /src/utils/firebase/createUserProfileDocument.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/utils/firebase/createUserProfileDocument.js -------------------------------------------------------------------------------- /src/utils/firebase/getCurrentUserDataFromSnapshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/utils/firebase/getCurrentUserDataFromSnapshot.js -------------------------------------------------------------------------------- /src/utils/firebase/getObjectFromDocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/utils/firebase/getObjectFromDocs.js -------------------------------------------------------------------------------- /src/utils/firebase/getObjectFromSingleDoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/utils/firebase/getObjectFromSingleDoc.js -------------------------------------------------------------------------------- /src/utils/firebase/getTodoObjectFromSingleDoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/utils/firebase/getTodoObjectFromSingleDoc.js -------------------------------------------------------------------------------- /src/utils/firebase/getTodosObjectFromDocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/utils/firebase/getTodosObjectFromDocs.js -------------------------------------------------------------------------------- /src/utils/firebase/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/utils/firebase/helpers.js -------------------------------------------------------------------------------- /src/utils/firebase/revertUserCreation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/utils/firebase/revertUserCreation.js -------------------------------------------------------------------------------- /src/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/utils/helpers.js -------------------------------------------------------------------------------- /src/utils/seo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/utils/seo.js -------------------------------------------------------------------------------- /src/utils/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/src/utils/tests.js -------------------------------------------------------------------------------- /storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danilucaci/dl-react-redux-firebase-todo-app/HEAD/storage.rules --------------------------------------------------------------------------------