Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
e629833
Test Commit
haroonahmad12 Sep 21, 2021
89d5444
audit fix
gonzalogarahuetes Sep 21, 2021
bc6de80
Updated
haroonahmad12 Sep 21, 2021
2a80f62
Component Folders and JS Added
haroonahmad12 Sep 21, 2021
1bbc0cc
Main Footer Structure
gonzalogarahuetes Sep 21, 2021
f8b8da6
NoTodo Main Structure
gonzalogarahuetes Sep 21, 2021
dc5d46f
Add todo to Local Storage
haroonahmad12 Sep 21, 2021
df19d38
Styles Atached
gonzalogarahuetes Sep 21, 2021
ede3d47
Trying
gonzalogarahuetes Sep 21, 2021
ac2e461
Merge branch 'main' into NoTodo
gonzalogarahuetes Sep 21, 2021
8b490cd
Merge branch 'main' into TodoList
gonzalogarahuetes Sep 21, 2021
24807b8
Working Lists
haroonahmad12 Sep 22, 2021
55e9cb7
Merge branch 'main' of https://github.com/gonzalogarahuetes/reactjs-t…
haroonahmad12 Sep 22, 2021
5ea1dd6
Method No Render()
gonzalogarahuetes Sep 22, 2021
2aa8ff6
Merged
haroonahmad12 Sep 22, 2021
1854d3d
Styling
haroonahmad12 Sep 22, 2021
3c44c6d
Todo features
gonzalogarahuetes Sep 22, 2021
138a620
After merge
gonzalogarahuetes Sep 22, 2021
9673fae
Updated Styles
haroonahmad12 Sep 22, 2021
b1159e8
Updated Main
haroonahmad12 Sep 22, 2021
c31d3c2
Styles Added, Working
haroonahmad12 Sep 23, 2021
6deb44c
Bug Fixing#1
haroonahmad12 Sep 23, 2021
8dd5a0a
Style Merge
gonzalogarahuetes Sep 23, 2021
1c28db1
Added checked on completed Tasks
haroonahmad12 Sep 23, 2021
6d30e6f
Router created and minor problems fixed
gonzalogarahuetes Sep 23, 2021
cbf08ff
Clear All Button
gonzalogarahuetes Sep 23, 2021
da6203a
Active Items
gonzalogarahuetes Sep 23, 2021
1b03988
Dark Mode
haroonahmad12 Sep 23, 2021
f1ed6f6
Editable Tasks
gonzalogarahuetes Sep 23, 2021
7bbc176
Styled and Ready to Go!
haroonahmad12 Sep 27, 2021
7601ed9
Merge branch 'main' of https://github.com/gonzalogarahuetes/reactjs-t…
haroonahmad12 Sep 27, 2021
810cd42
Merged
haroonahmad12 Sep 27, 2021
423cbe0
Updated Bugs in DarkMode
haroonahmad12 Sep 27, 2021
2ed4fca
Drag and Drop Ready!
gonzalogarahuetes Sep 27, 2021
b467de7
saved
haroonahmad12 Sep 27, 2021
b5da7a1
Merge branch 'main' of https://github.com/gonzalogarahuetes/reactjs-t…
haroonahmad12 Sep 27, 2021
437b35d
Drag and Drop Fixed
gonzalogarahuetes Sep 27, 2021
6787139
Merge branch 'main' of https://github.com/gonzalogarahuetes/reactjs-t…
haroonahmad12 Sep 27, 2021
f14021e
Merged with main
haroonahmad12 Sep 27, 2021
bb1a0ba
Before Merge
gonzalogarahuetes Sep 27, 2021
bf63490
Merge branch 'main' of https://github.com/gonzalogarahuetes/reactjs-t…
gonzalogarahuetes Sep 27, 2021
36907cd
After merge
haroonahmad12 Sep 27, 2021
884842b
Merge branch 'main' of https://github.com/gonzalogarahuetes/reactjs-t…
haroonahmad12 Sep 27, 2021
ffe5fe7
Autofocus
haroonahmad12 Sep 27, 2021
1a5dcbb
Minor changes
gonzalogarahuetes Sep 27, 2021
b860d61
Merge branch 'main' of https://github.com/gonzalogarahuetes/reactjs-t…
gonzalogarahuetes Sep 27, 2021
236ef74
Code cleaned
gonzalogarahuetes Sep 27, 2021
b515f14
And cleaner
gonzalogarahuetes Sep 27, 2021
bae01b3
Recovered the Errors
haroonahmad12 Sep 28, 2021
dd775a7
Some cleaning
gonzalogarahuetes Sep 28, 2021
90b950b
After merge
gonzalogarahuetes Sep 28, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 0 additions & 84 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,84 +0,0 @@
module.exports = {
env: {
browser: true,
es2021: true,
jest: true,
"jest/globals": true,
},
extends: [
"airbnb",
"eslint:recommended",
"plugin:react/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:jsx-a11y/recommended",
"prettier",
"plugin:cypress/recommended",
],
parser: "@babel/eslint-parser",
parserOptions: {
ecmaVersion: 12,
sourceType: "module",
requireConfigFile: "false",
jsx: true,
},
plugins: [
"html",
"react",
"react-hooks",
"jsx-a11y",
"markdown",
"react-hooks",
"import",
"prettier",
],
settings: {
react: {
version: "detect",
},
jest: {
version: 26,
},
},
overrides: [
{
files: ["*.html"],
parser: "@html-eslint/parser",
extends: ["plugin:@html-eslint/recommended"],
},
{
files: ["src/**/*.test.js"],
plugins: ["jest"],
rules: {
"jest/expect-expect": "error",
},
extends: ["plugin:jest/recommended"],
},
],
rules: {
"prettier/prettier": [
"error",
{
endOfLine: "auto",
},
],
"react/jsx-filename-extension": "off",
"import/prefer-default-export": "off",
"prefer-destructuring": "off",
"object-shorthand": "off",
"react/jsx-props-no-spreading": "off",
"arrow-body-style": "off",
"no-underscore-dangle": "off",
"react/forbid-prop-types": "off",
"react/prop-types": "off",
"no-unused-expressions": "off",
"jsx-a11y/label-has-for": [
"error",
{
required: {
some: ["nesting", "id"],
},
},
],
},
};
1 change: 1 addition & 0 deletions .husky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_
29 changes: 29 additions & 0 deletions build/asset-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"files": {
"main.css": "/static/css/main.52713b7f.chunk.css",
"main.js": "/static/js/main.50ce64b5.chunk.js",
"main.js.map": "/static/js/main.50ce64b5.chunk.js.map",
"runtime-main.js": "/static/js/runtime-main.c0c4e1e1.js",
"runtime-main.js.map": "/static/js/runtime-main.c0c4e1e1.js.map",
"static/css/2.4c97ca4f.chunk.css": "/static/css/2.4c97ca4f.chunk.css",
"static/js/2.3bbf7d7c.chunk.js": "/static/js/2.3bbf7d7c.chunk.js",
"static/js/2.3bbf7d7c.chunk.js.map": "/static/js/2.3bbf7d7c.chunk.js.map",
"static/js/3.b2de24cb.chunk.js": "/static/js/3.b2de24cb.chunk.js",
"static/js/3.b2de24cb.chunk.js.map": "/static/js/3.b2de24cb.chunk.js.map",
"index.html": "/index.html",
"static/css/2.4c97ca4f.chunk.css.map": "/static/css/2.4c97ca4f.chunk.css.map",
"static/css/main.52713b7f.chunk.css.map": "/static/css/main.52713b7f.chunk.css.map",
"static/js/2.3bbf7d7c.chunk.js.LICENSE.txt": "/static/js/2.3bbf7d7c.chunk.js.LICENSE.txt",
"static/media/DarkMode.c9180100.svg": "/static/media/DarkMode.c9180100.svg",
"static/media/NoTodo.2662af3e.svg": "/static/media/NoTodo.2662af3e.svg",
"static/media/header-light-mode-background-image.50b29470.jpeg": "/static/media/header-light-mode-background-image.50b29470.jpeg",
"static/media/lightMode.faa5054f.svg": "/static/media/lightMode.faa5054f.svg"
},
"entrypoints": [
"static/js/runtime-main.c0c4e1e1.js",
"static/css/2.4c97ca4f.chunk.css",
"static/js/2.3bbf7d7c.chunk.js",
"static/css/main.52713b7f.chunk.css",
"static/js/main.50ce64b5.chunk.js"
]
}
Binary file added build/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions build/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="icon" href="/favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Web site created using create-react-app"/><link rel="apple-touch-icon" href="/logo192.png"/><link rel="manifest" href="/manifest.json"/><title>React App</title><link href="/static/css/2.4c97ca4f.chunk.css" rel="stylesheet"><link href="/static/css/main.52713b7f.chunk.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div><script>!function(e){function t(t){for(var n,i,a=t[0],c=t[1],l=t[2],f=0,p=[];f<a.length;f++)i=a[f],Object.prototype.hasOwnProperty.call(o,i)&&o[i]&&p.push(o[i][0]),o[i]=0;for(n in c)Object.prototype.hasOwnProperty.call(c,n)&&(e[n]=c[n]);for(s&&s(t);p.length;)p.shift()();return u.push.apply(u,l||[]),r()}function r(){for(var e,t=0;t<u.length;t++){for(var r=u[t],n=!0,a=1;a<r.length;a++){var c=r[a];0!==o[c]&&(n=!1)}n&&(u.splice(t--,1),e=i(i.s=r[0]))}return e}var n={},o={1:0},u=[];function i(t){if(n[t])return n[t].exports;var r=n[t]={i:t,l:!1,exports:{}};return e[t].call(r.exports,r,r.exports,i),r.l=!0,r.exports}i.e=function(e){var t=[],r=o[e];if(0!==r)if(r)t.push(r[2]);else{var n=new Promise((function(t,n){r=o[e]=[t,n]}));t.push(r[2]=n);var u,a=document.createElement("script");a.charset="utf-8",a.timeout=120,i.nc&&a.setAttribute("nonce",i.nc),a.src=function(e){return i.p+"static/js/"+({}[e]||e)+"."+{3:"b2de24cb"}[e]+".chunk.js"}(e);var c=new Error;u=function(t){a.onerror=a.onload=null,clearTimeout(l);var r=o[e];if(0!==r){if(r){var n=t&&("load"===t.type?"missing":t.type),u=t&&t.target&&t.target.src;c.message="Loading chunk "+e+" failed.\n("+n+": "+u+")",c.name="ChunkLoadError",c.type=n,c.request=u,r[1](c)}o[e]=void 0}};var l=setTimeout((function(){u({type:"timeout",target:a})}),12e4);a.onerror=a.onload=u,document.head.appendChild(a)}return Promise.all(t)},i.m=e,i.c=n,i.d=function(e,t,r){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(i.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)i.d(r,n,function(t){return e[t]}.bind(null,n));return r},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/",i.oe=function(e){throw console.error(e),e};var a=this["webpackJsonpreactjs-todo-list"]=this["webpackJsonpreactjs-todo-list"]||[],c=a.push.bind(a);a.push=t,a=a.slice();for(var l=0;l<a.length;l++)t(a[l]);var s=c;r()}([])</script><script src="/static/js/2.3bbf7d7c.chunk.js"></script><script src="/static/js/main.50ce64b5.chunk.js"></script></body></html>
Binary file added build/logo192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added build/logo512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions build/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
3 changes: 3 additions & 0 deletions build/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:
7 changes: 7 additions & 0 deletions build/static/css/2.4c97ca4f.chunk.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions build/static/css/2.4c97ca4f.chunk.css.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions build/static/css/main.52713b7f.chunk.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions build/static/css/main.52713b7f.chunk.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions build/static/js/2.3bbf7d7c.chunk.js

Large diffs are not rendered by default.

41 changes: 41 additions & 0 deletions build/static/js/2.3bbf7d7c.chunk.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/*
object-assign
(c) Sindre Sorhus
@license MIT
*/

/** @license React v0.20.2
* scheduler.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

/** @license React v17.0.2
* react-dom.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

/** @license React v17.0.2
* react-jsx-runtime.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

/** @license React v17.0.2
* react.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
1 change: 1 addition & 0 deletions build/static/js/2.3bbf7d7c.chunk.js.map

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions build/static/js/3.b2de24cb.chunk.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading