Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
ca35688
created react app and added all dependencies that I will need
TaylorBelk1 Feb 12, 2019
6c4e724
added link to trello board in readme.md
TaylorBelk1 Feb 12, 2019
6428830
created main files and folders needed
TaylorBelk1 Feb 12, 2019
ea3fb2d
added import react and export defaults to all functions and added bas…
TaylorBelk1 Feb 12, 2019
8f16988
set app up to render Sidebar and Notes views
TaylorBelk1 Feb 12, 2019
12de18a
implemented ability to do a basic view of the notes
TaylorBelk1 Feb 12, 2019
3da4347
added form and formviewer files to create the form that will pop up t…
TaylorBelk1 Feb 12, 2019
83cc4fd
got basic form to render
TaylorBelk1 Feb 12, 2019
71bfe1a
added react router in order to implement the add form correctly
TaylorBelk1 Feb 13, 2019
46c1b4c
added basic styling for sidebar and basic note view
TaylorBelk1 Feb 13, 2019
4e29b66
added the ability to add notes to note view
TaylorBelk1 Feb 14, 2019
76c5133
added delete modal and styled it and dynamically linked it to the sin…
TaylorBelk1 Feb 14, 2019
d446b83
added ability to delete a note from the list
TaylorBelk1 Feb 15, 2019
4cf65d2
added the editform to route and designed it
TaylorBelk1 Feb 16, 2019
e3de39d
added ability to update a note
TaylorBelk1 Feb 16, 2019
90a8abe
everything now functions as it should. Can View all note, edit a note…
TaylorBelk1 Feb 16, 2019
f2a1bd8
cleaned up some spacing in app.js that was bugging me
TaylorBelk1 Feb 16, 2019
05f2a35
re did some styling on the view notes component using React Straps Ca…
TaylorBelk1 Feb 20, 2019
6491410
implemented a search bar that takes in a string and searches and filt…
TaylorBelk1 Feb 21, 2019
ad02392
found bug in addNote.js where it was using a string value to display …
TaylorBelk1 Feb 21, 2019
e91c1aa
added sortbutton.js and changed sort.js to searchbar.js
TaylorBelk1 Feb 21, 2019
5cc64ea
implemented the sort functionality, also rendered a new view of the s…
TaylorBelk1 Feb 22, 2019
6d4b435
redesigned application, and added basic login page without functional…
TaylorBelk1 Feb 23, 2019
a28f043
added basic authentication using a manual test user and pass
TaylorBelk1 Feb 23, 2019
62da49d
notes view title was hiding behind sidebar, changed padding left to a…
TaylorBelk1 Feb 23, 2019
716d7a5
Removed commented out code in app.css;
TaylorBelk1 Feb 26, 2019
70ca97f
just cleared up a spacing issue that was bothering me
TaylorBelk1 Feb 26, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
23 changes: 23 additions & 0 deletions lamdanotes/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
1 change: 1 addition & 0 deletions lamdanotes/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Trello: https://trello.com/b/b4MoDi9V/lambda-notes
30 changes: 30 additions & 0 deletions lamdanotes/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"name": "lamdanotes",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^3.9.2",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-redux": "^6.0.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.5",
"reactstrap": "^7.1.0",
"redux": "^4.0.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}
Binary file added lamdanotes/public/favicon.ico
Binary file not shown.
41 changes: 41 additions & 0 deletions lamdanotes/public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="theme-color" content="#000000" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.

Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.

You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.

To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>
15 changes: 15 additions & 0 deletions lamdanotes/public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
Loading