Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ajeetchaulagain/stay-productive-frontend-react-redux
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.0
Choose a base ref
...
head repository: ajeetchaulagain/stay-productive-frontend-react-redux
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref

Commits on Jun 10, 2020

  1. redux wired up

    ajeetchaulagain committed Jun 10, 2020
    Copy the full SHA
    8a32923 View commit details
  2. Copy the full SHA
    5f70592 View commit details

Commits on Jun 13, 2020

  1. Copy the full SHA
    770910d View commit details

Commits on Jun 16, 2020

  1. Copy the full SHA
    d1dc09c View commit details

Commits on Jun 20, 2020

  1. Copy the full SHA
    f75c516 View commit details

Commits on Jun 24, 2020

  1. Copy the full SHA
    9601f51 View commit details
  2. Copy the full SHA
    51a5879 View commit details
  3. Copy the full SHA
    b6208c7 View commit details

Commits on Jun 25, 2020

  1. Copy the full SHA
    a1886b3 View commit details

Commits on Jun 26, 2020

  1. Copy the full SHA
    b042b92 View commit details
  2. Copy the full SHA
    5b34891 View commit details

Commits on Jun 29, 2020

  1. minor code refacto

    ajeetchaulagain committed Jun 29, 2020
    Copy the full SHA
    9842c06 View commit details

Commits on Jul 13, 2020

  1. Copy the full SHA
    9f82541 View commit details

Commits on Jul 18, 2020

  1. Copy the full SHA
    49bad8d View commit details

Commits on Jul 19, 2020

  1. Copy the full SHA
    9622e63 View commit details

Commits on Jul 20, 2020

  1. Create FUNDING.yml

    ajeetchaulagain authored Jul 20, 2020
    Copy the full SHA
    eb5efae View commit details

Commits on Jan 6, 2021

  1. Bump axios from 0.19.2 to 0.21.1

    Bumps [axios](https://github.com/axios/axios) from 0.19.2 to 0.21.1.
    - [Release notes](https://github.com/axios/axios/releases)
    - [Changelog](https://github.com/axios/axios/blob/v0.21.1/CHANGELOG.md)
    - [Commits](axios/axios@v0.19.2...v0.21.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Jan 6, 2021
    Copy the full SHA
    02a3f57 View commit details

Commits on Jan 9, 2021

  1. Merge pull request #2 from ajeetchaulagain/dependabot/npm_and_yarn/ax…

    …ios-0.21.1
    
    Bump axios from 0.19.2 to 0.21.1
    ajeetchaulagain authored Jan 9, 2021
    Copy the full SHA
    aa3c34f View commit details

Commits on Jan 21, 2021

  1. Bump immer from 2.1.3 to 8.0.1

    Bumps [immer](https://github.com/immerjs/immer) from 2.1.3 to 8.0.1.
    - [Release notes](https://github.com/immerjs/immer/releases)
    - [Commits](immerjs/immer@v2.1.3...v8.0.1)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Jan 21, 2021
    Copy the full SHA
    a1d94a7 View commit details
  2. Merge pull request #3 from ajeetchaulagain/dependabot/npm_and_yarn/im…

    …mer-8.0.1
    
    Bump immer from 2.1.3 to 8.0.1
    ajeetchaulagain authored Jan 21, 2021
    Copy the full SHA
    f5a52e7 View commit details

Commits on Dec 8, 2021

  1. fix: package.json & package-lock.json to reduce vulnerabilities

    The following vulnerabilities are fixed with an upgrade:
    - https://snyk.io/vuln/SNYK-JS-NODESASS-1059081
    snyk-bot committed Dec 8, 2021
    Copy the full SHA
    91348f6 View commit details

Commits on Dec 19, 2021

  1. Merge pull request #15 from ajeetchaulagain/snyk-fix-f52eaadce4d753f7…

    …f31b2d79d7fa6fac
    
    [Snyk] Security upgrade node-sass from 4.14.1 to 7.0.0
    ajeetchaulagain authored Dec 19, 2021
    Copy the full SHA
    9f4b15b View commit details
Showing with 3,562 additions and 378 deletions.
  1. +12 −0 .github/FUNDING.yml
  2. +1,953 −307 package-lock.json
  3. +18 −5 package.json
  4. 0 src/components/{about → AboutPage}/AboutPage.js
  5. +25 −8 src/components/App.js
  6. +15 −0 src/components/DashboardPage/PomodoroSection/index.js
  7. +72 −0 src/components/DashboardPage/ProjectSection/DrawerForm.js
  8. +7 −0 src/components/DashboardPage/ProjectSection/ProjectForm.js
  9. +43 −0 src/components/DashboardPage/ProjectSection/ProjectListView.js
  10. +41 −0 src/components/DashboardPage/ProjectSection/StyledComponents.js
  11. +160 −0 src/components/DashboardPage/ProjectSection/index.js
  12. +118 −0 src/components/DashboardPage/TaskSection/index.js
  13. +131 −0 src/components/DashboardPage/index.js
  14. 0 src/components/{home → HomePage}/HomePage.js
  15. +37 −0 src/components/LoginPage/LoginPage.js
  16. +8 −1 src/components/PageNotFound.js
  17. +69 −0 src/components/RegisterPage/AntDashboard.js
  18. +158 −0 src/components/RegisterPage/RegisterPage.js
  19. +20 −0 src/components/common/Footer.js
  20. +0 −27 src/components/common/Header.js
  21. +60 −0 src/components/common/Header/HeaderMenu.js
  22. +43 −0 src/components/common/Header/index.js
  23. 0 src/components/common/MasterLayout.js
  24. +42 −0 src/components/common/Spinner.css
  25. +8 −0 src/components/common/Spinner.js
  26. +31 −0 src/components/common/TextInput.js
  27. +0 −25 src/components/dashboard/DashboardPage.js
  28. +16 −0 src/index.css
  29. +6 −0 src/index.html
  30. +12 −5 src/index.js
  31. 0 src/services/authService.js
  32. +25 −0 src/store/actions/actionTypes.js
  33. +22 −0 src/store/actions/apiActions.js
  34. +35 −0 src/store/actions/authActions.js
  35. +67 −0 src/store/actions/projectActions.js
  36. +5 −0 src/store/actions/taskActions.js
  37. +20 −0 src/store/configureStore.js
  38. +69 −0 src/store/middleware/apiMiddleware.js
  39. +21 −0 src/store/reducers/apiErrorReducer.js
  40. +14 −0 src/store/reducers/authReducer.js
  41. +14 −0 src/store/reducers/index.js
  42. +92 −0 src/store/reducers/projectReducer.js
  43. +12 −0 src/store/reducers/taskReducer.js
  44. +9 −0 src/util/inputValidator.js
  45. +11 −0 test.json
  46. +41 −0 webpack.config.dev.js
12 changes: 12 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: ajeetchaulagain
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
Loading