diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..3c3629e64 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/README.md b/README.md index 027584c5e..93ee80efc 100644 --- a/README.md +++ b/README.md @@ -1,33 +1,9 @@ -Assignment 4 - Components -=== +## Budgeteer -Due: October 4th, by 11:59 AM. +By Joe Dobbelaar: https://a4-r2pen2.glitch.me/ -For this assignment you will re-implement the client side portion of *either* A2 or A3 using either React or Svelte components. If you choose A3 you only need to use components for the data display / updating; you can leave your login UI as is. +I switched my server over to express and created a React app for my client. +I found using react much easier as I didn't just have one big scripts file. +Everything could be contained within it's relevant component. -[Svelte Tutorial](https://github.com/cs4241-21a/cs4241-21a.github.io/blob/main/using_svelte.md) -[React Tutorial](https://github.com/cs4241-21a/cs4241-21a.github.io/blob/main/using_react.md) - -This project can be implemented on any hosting service (Glitch, DigitalOcean, Heroku etc.), however, you must include all files in your GitHub repo so that the course staff can view them. - -Deliverables ---- - -Do the following to complete this assignment: - -1. Implement your project with the above requirements. -3. Test your project to make sure that when someone goes to your main page on Glitch/Heroku/etc., it displays correctly. -4. Ensure that your project has the proper naming scheme `a4-firstname-lastname` so we can find it. -5. Fork this repository and modify the README to the specifications below. Be sure to add *all* project files. -6. Create and submit a Pull Request to the original repo. Name the pull request using the following template: `a4-firstname-lastname`. - -Sample Readme (delete the above when you're ready to submit, and modify the below so with your links and descriptions) ---- - -## Your Web Application Title - -your hosting link e.g. http://a4-charlieroberts.glitch.me - -Include a very brief summary of your project here and what you changed / added to assignment #3. Briefly (3–4 sentences) answer the following question: did the new technology improve or hinder the development experience? - -Unlike previous assignments, this assignment will be solely graded on whether or not you successfully complete it. Partial credit will be generously given. +The only hinderance was getting the server to actually SERVE the application. I had to switch over to express to do this, but I find express much easier to work with than writing the server on my own anyway. I was running into issues where my client and server were on different ports, so fetch() didn't work as intended. I was able to fix this by making a BUILD of my react app and sending that to the client with express. \ No newline at end of file diff --git a/client/.gitignore b/client/.gitignore new file mode 100644 index 000000000..4d29575de --- /dev/null +++ b/client/.gitignore @@ -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* diff --git a/client/README.md b/client/README.md new file mode 100644 index 000000000..58beeaccd --- /dev/null +++ b/client/README.md @@ -0,0 +1,70 @@ +# Getting Started with Create React App + +This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). + +## Available Scripts + +In the project directory, you can run: + +### `npm start` + +Runs the app in the development mode.\ +Open [http://localhost:3000](http://localhost:3000) to view it in your browser. + +The page will reload when you make changes.\ +You may also see any lint errors in the console. + +### `npm test` + +Launches the test runner in the interactive watch mode.\ +See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. + +### `npm run build` + +Builds the app for production to the `build` folder.\ +It correctly bundles React in production mode and optimizes the build for the best performance. + +The build is minified and the filenames include the hashes.\ +Your app is ready to be deployed! + +See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. + +### `npm run eject` + +**Note: this is a one-way operation. Once you `eject`, you can't go back!** + +If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. + +Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own. + +You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it. + +## Learn More + +You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). + +To learn React, check out the [React documentation](https://reactjs.org/). + +### Code Splitting + +This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting) + +### Analyzing the Bundle Size + +This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size) + +### Making a Progressive Web App + +This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app) + +### Advanced Configuration + +This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration) + +### Deployment + +This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment) + +### `npm run build` fails to minify + +This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify) diff --git a/client/build/asset-manifest.json b/client/build/asset-manifest.json new file mode 100644 index 000000000..193927028 --- /dev/null +++ b/client/build/asset-manifest.json @@ -0,0 +1,14 @@ +{ + "files": { + "main.css": "/static/css/main.9bee4f6d.css", + "main.js": "/static/js/main.f4846179.js", + "static/media/goldPeaks.svg": "/static/media/goldPeaks.db9486b04295e8f50cfb.svg", + "index.html": "/index.html", + "main.9bee4f6d.css.map": "/static/css/main.9bee4f6d.css.map", + "main.f4846179.js.map": "/static/js/main.f4846179.js.map" + }, + "entrypoints": [ + "static/css/main.9bee4f6d.css", + "static/js/main.f4846179.js" + ] +} \ No newline at end of file diff --git a/client/build/favicon.ico b/client/build/favicon.ico new file mode 100644 index 000000000..a11777cc4 Binary files /dev/null and b/client/build/favicon.ico differ diff --git a/client/build/goldPeaks.svg b/client/build/goldPeaks.svg new file mode 100644 index 000000000..b64a098ce --- /dev/null +++ b/client/build/goldPeaks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/client/build/index.html b/client/build/index.html new file mode 100644 index 000000000..9004c30c1 --- /dev/null +++ b/client/build/index.html @@ -0,0 +1 @@ +React App
\ No newline at end of file diff --git a/client/build/logo192.png b/client/build/logo192.png new file mode 100644 index 000000000..fc44b0a37 Binary files /dev/null and b/client/build/logo192.png differ diff --git a/client/build/logo512.png b/client/build/logo512.png new file mode 100644 index 000000000..a4e47a654 Binary files /dev/null and b/client/build/logo512.png differ diff --git a/client/build/manifest.json b/client/build/manifest.json new file mode 100644 index 000000000..080d6c77a --- /dev/null +++ b/client/build/manifest.json @@ -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" +} diff --git a/client/build/robots.txt b/client/build/robots.txt new file mode 100644 index 000000000..e9e57dc4d --- /dev/null +++ b/client/build/robots.txt @@ -0,0 +1,3 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Disallow: diff --git a/client/build/static/css/main.9bee4f6d.css b/client/build/static/css/main.9bee4f6d.css new file mode 100644 index 000000000..47f61fa0e --- /dev/null +++ b/client/build/static/css/main.9bee4f6d.css @@ -0,0 +1,2 @@ +:root{--budgeteer-black1:#0a0a0a;--budgeteer-black2:#151515;--budgeteer-cream:#fbfcd4;--budgeteer-yellow:#ffdd03;--budgeteer-gold:#fbc403}body{background-color:#0a0a0a;background-color:var(--budgeteer-black1);color:#fbfcd4;color:var(--budgeteer-cream);font-family:Share Tech Mono,monospace;margin:0;overflow:hidden;padding:0}.app-container{background-image:url(/static/media/goldPeaks.db9486b04295e8f50cfb.svg);background-position-y:bottom;height:100vh;width:100vw}.app-container,.title-page{display:flex;flex-direction:column}.title-page{align-items:center;height:100%;justify-content:center;text-transform:uppercase;transition:all .5s ease;width:100%}.title-page.hidden{height:0;opacity:0}h1{font-size:100px;margin-bottom:0;margin-top:0}h1,h2{-webkit-user-select:none;user-select:none}h2{font-size:32px;margin-top:10px}button{border-radius:0;font-family:Share Tech Mono,monospace;font-size:16px;margin-bottom:20px;opacity:1;padding:10px 20px;text-decoration:none;text-transform:uppercase;transition:opacity 1s ease,-webkit-transform .5s ease;transition:opacity 1s ease,transform .5s ease;transition:opacity 1s ease,transform .5s ease,-webkit-transform .5s ease;-webkit-user-select:none;user-select:none}button.dark{background:#0a0a0a;background:var(--budgeteer-black1);border:3px solid #ffdd03;border:3px solid var(--budgeteer-yellow);color:#fbfcd4;color:var(--budgeteer-cream)}button.light{background:#fbfcd4;background:var(--budgeteer-cream);border:3px solid #151515;border:3px solid var(--budgeteer-black2);color:#151515;color:var(--budgeteer-black2)}button.dark:hover{background:#151515;background:var(--budgeteer-black2);border:3px solid #fbc403;border:3px solid var(--budgeteer-gold)}button.large{font-size:32px;width:8em}button.hidden{opacity:0}button:hover{-webkit-transform:scale(1.1);transform:scale(1.1)}.main-page{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:space-between;opacity:1;transition:all .5s ease;width:100%}.main-page.hidden{height:0;opacity:0}section{align-items:center;display:flex;flex-direction:column}section.top{height:30vh;margin-bottom:0;margin-top:5vh}section.bottom{height:20vh;margin-bottom:10vh;margin-top:0}section.middle{border:4px solid #fbfcd4;border:4px solid var(--budgeteer-cream);height:35vh;justify-content:space-between;margin-bottom:3vh;opacity:1;width:50vw}.form-container,section.middle{display:flex;flex-direction:column;transition:opacity .5s ease}.form-container{align-items:center}.form-container.invisible{height:0;opacity:0}form{margin-bottom:2px;margin-top:0;padding:0}input,select{background-color:#151515;background-color:var(--budgeteer-black2);border:1px solid #fbfcd4;border:1px solid var(--budgeteer-cream);border-radius:0;color:#fbfcd4;color:var(--budgeteer-cream);height:25px;margin-bottom:5px;width:100%}input.error,select.error{border:1px solid red}span.positive{color:#0f0}span.negative{color:red}.table-container{height:100%;overflow-y:scroll;transition:opacity .5s ease;width:100%}.table-container.invisible{height:0;opacity:0}.table-contents{height:calc(100% - 5vh)}.centered{align-items:center;height:100%;justify-content:center;-webkit-user-select:none;user-select:none}.centered,.table-row{display:flex;flex-direction:column;width:100%}.table-row{height:5vh}ul{display:flex;flex-direction:row;height:100%;list-style:none;margin:0;padding:0;-webkit-user-select:none;user-select:none}li{background-color:#0a0a0a;background-color:var(--budgeteer-black1);border:1px solid #fbfcd4;border:1px solid var(--budgeteer-cream)}li,li.data{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;margin:0;padding:0;text-align:center;width:12.5vw}li.data{background-color:#151515;background-color:var(--budgeteer-black2);border-bottom:1px solid #0a0a0a;border-bottom:1px solid var(--budgeteer-black1);border-left:1px solid #0a0a0a;border-left:1px solid var(--budgeteer-black1);border-right:1px solid #0a0a0a;border-right:1px solid var(--budgeteer-black1)}li.data.clickable:hover{background-color:#0a0a0a;background-color:var(--budgeteer-black1)} +/*# sourceMappingURL=main.9bee4f6d.css.map*/ \ No newline at end of file diff --git a/client/build/static/css/main.9bee4f6d.css.map b/client/build/static/css/main.9bee4f6d.css.map new file mode 100644 index 000000000..87463597c --- /dev/null +++ b/client/build/static/css/main.9bee4f6d.css.map @@ -0,0 +1 @@ +{"version":3,"file":"static/css/main.9bee4f6d.css","mappings":"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","sources":["App.css"],"sourcesContent":[":root {\n --budgeteer-black1: #0A0A0A;\n --budgeteer-black2: #151515;\n --budgeteer-cream: #FBFCD4;\n --budgeteer-yellow: #FFDD03;\n --budgeteer-gold: #FBC403;\n}\n\nbody {\n background-color: var(--budgeteer-black1);\n color: var(--budgeteer-cream);\n overflow: hidden;\n font-family: 'Share Tech Mono', monospace;\n margin: 0;\n padding: 0;\n}\n\n.app-container {\n display: flex;\n flex-direction: column;\n background-image: url(\"../public/goldPeaks.svg\");\n background-position-y: bottom;\n height: 100vh;\n width: 100vw;\n}\n\n.title-page {\n display: flex;\n height: 100%;\n width: 100%;\n flex-direction: column;\n justify-content: center;\n align-items: center;\n text-transform: uppercase;\n transition: all 0.5s ease;\n}\n\n.title-page.hidden {\n height: 0px;\n opacity: 0;\n}\n\nh1 {\n font-size: 100px;\n margin-bottom: 0px;\n margin-top: 0px;\n user-select: none;\n}\n\nh2 {\n user-select: none;\n margin-top: 10px;\n font-size: 32px;\n}\n\nbutton {\n text-transform: uppercase;\n font-family: 'Share Tech Mono', monospace;\n border-radius: 0px;\n font-size: 16px;\n padding: 10px 20px 10px 20px;\n user-select: none;\n opacity: 1;\n transition: opacity 1s ease, transform 0.5s ease;\n text-decoration: none;\n margin-bottom: 20px;\n}\n\nbutton.dark {\n color: var(--budgeteer-cream);\n border: solid var(--budgeteer-yellow) 3px;\n background: var(--budgeteer-black1);\n}\n\nbutton.light {\n color: var(--budgeteer-black2);\n border: solid var(--budgeteer-black2) 3px;\n background: var(--budgeteer-cream);\n}\n\nbutton.dark:hover {\n background: var(--budgeteer-black2);\n border: solid var(--budgeteer-gold) 3px;\n}\n\nbutton.large {\n font-size: 32px;\n width: 8em;\n}\n\nbutton.hidden {\n opacity: 0;\n}\n\nbutton:hover {\n transform: scale(1.1);\n}\n\n.main-page {\n transition: all 0.5s ease;\n height: 100%;\n width: 100%;\n opacity: 1;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n align-items: center;\n}\n\n.main-page.hidden {\n height: 0px;\n opacity: 0;\n}\n\nsection {\n display: flex;\n flex-direction: column;\n align-items: center;\n}\n\nsection.top {\n height: 30vh;\n margin-top: 5vh;\n margin-bottom: 0px;\n}\n\nsection.bottom {\n height: 20vh;\n margin-bottom: 10vh;\n margin-top: 0px;\n}\n\nsection.middle {\n height: 35vh;\n width: 50vw;\n border: 4px solid var(--budgeteer-cream);\n margin-bottom: 3vh;\n opacity: 1;\n transition: opacity 0.5s ease;\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n}\n\n.form-container {\n display: flex;\n flex-direction: column;\n align-items: center;\n transition: opacity 0.5s ease;\n}\n\n.form-container.invisible {\n height: 0px;\n opacity: 0;\n}\n\nform {\n margin-top: 0px;\n padding: 0;\n margin-bottom: 2px;\n}\n\nselect {\n width: 100%;\n background-color: var(--budgeteer-black2);\n color: var(--budgeteer-cream);\n border-radius: 0px;\n border: 1px solid var(--budgeteer-cream);\n height: 25px;\n margin-bottom: 5px;\n}\n\ninput {\n width: 100%;\n background-color: var(--budgeteer-black2);\n color: var(--budgeteer-cream);\n border-radius: 0px;\n border: 1px solid var(--budgeteer-cream);\n height: 25px;\n margin-bottom: 5px;\n}\n\ninput.error {\n border: 1px solid red;\n}\n\nselect.error {\n border: 1px solid red;\n}\n\nspan.positive {\n color: rgb(0, 255, 0);\n}\n\nspan.negative {\n color: red;\n}\n\n.table-container {\n width: 100%;\n height: 100%;\n transition: opacity 0.5s ease;\n overflow-y: scroll;\n}\n\n.table-container.invisible {\n height: 0px;\n opacity: 0;\n}\n\n.table-contents {\n height: calc(100% - 5vh);\n}\n\n.centered {\n display: flex;\n width: 100%;\n height: 100%;\n justify-content: center;\n align-items: center;\n flex-direction: column;\n user-select: none;\n}\n\n.table-row { \n display: flex;\n flex-direction: column;\n height: 5vh;\n width: 100%;\n}\n\nul {\n display: flex;\n flex-direction: row;\n list-style: none;\n padding: 0;\n margin: 0;\n height: 100%;\n user-select: none;\n}\n\nli {\n border: 1px solid var(--budgeteer-cream);\n background-color: var(--budgeteer-black1);\n height: 100%;\n width: 12.5vw;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n text-align: center;\n padding: 0;\n margin: 0;\n}\n\nli.data {\n background-color: var(--budgeteer-black2);\n border-left: 1px solid var(--budgeteer-black1);\n border-right: 1px solid var(--budgeteer-black1);\n border-bottom: 1px solid var(--budgeteer-black1);\n height: 100%;\n width: 12.5vw;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n text-align: center;\n padding: 0;\n margin: 0;\n}\n\nli.data.clickable:hover {\n background-color: var(--budgeteer-black1);\n}"],"names":[],"sourceRoot":""} \ No newline at end of file diff --git a/client/build/static/js/main.f4846179.js b/client/build/static/js/main.f4846179.js new file mode 100644 index 000000000..43c5cce81 --- /dev/null +++ b/client/build/static/js/main.f4846179.js @@ -0,0 +1,3 @@ +/*! For license information please see main.f4846179.js.LICENSE.txt */ +!function(){"use strict";var e={463:function(e,n,t){var r=t(791),l=t(296);function a(e){for(var n="https://reactjs.org/docs/error-decoder.html?invariant="+e,t=1;t