diff --git a/react-exercises/grocery-list-react/README.md b/react-exercises/grocery-list-react/README.md new file mode 100644 index 00000000..14d2b101 --- /dev/null +++ b/react-exercises/grocery-list-react/README.md @@ -0,0 +1,21 @@ +# Instructions + +In this exercises, you'll will make a reactive grocery list. + +## How to do the question +- Run `npm install` in the `grocery-list-react` folder. +- Run `npm run start` to start the development server. + +## Requirements +- Users should see a grocery list items a couple of button to control the behavior of the list. +- User should be able to add more grocery items through an input box and click a `Add` button to add it to the list displaying the item. +- There should be a button to clear all the grocery list items at once. +- If there is an item already, and the same item is added again, show `2` now beside that grocery item. This number is going to increase everytime the same item is added to the grocery list. +- Clicking on a grocery item should change its color to red. Clicking again should change + it back to black. Red means the item has been purchased. +- You can add any other control as you prefer. +- **The UI is totally up to you. Make it as beautiful as you can by using any CSS that you can write. No libraries allowed of any kind.** +- Make sure to make your as readable, maintainable as possible. + +## Restrictions +- You are not allowed to use any extra library at all for `CSS` or any other thing. \ No newline at end of file diff --git a/react-exercises/grocery-list-react/package.json b/react-exercises/grocery-list-react/package.json new file mode 100644 index 00000000..a20cff46 --- /dev/null +++ b/react-exercises/grocery-list-react/package.json @@ -0,0 +1,34 @@ +{ + "name": "grocery-list", + "version": "0.1.0", + "private": true, + "dependencies": { + "@testing-library/jest-dom": "^4.2.4", + "@testing-library/react": "^9.3.2", + "@testing-library/user-event": "^7.1.2", + "react": "^16.13.1", + "react-dom": "^16.13.1", + "react-scripts": "3.4.1" + }, + "scripts": { + "start": "react-scripts start", + "build": "react-scripts build", + "test": "react-scripts test", + "eject": "react-scripts eject" + }, + "eslintConfig": { + "extends": "react-app" + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + } +} diff --git a/react-exercises/grocery-list-react/public/favicon.ico b/react-exercises/grocery-list-react/public/favicon.ico new file mode 100644 index 00000000..d77e85d9 Binary files /dev/null and b/react-exercises/grocery-list-react/public/favicon.ico differ diff --git a/react-exercises/grocery-list-react/public/index.html b/react-exercises/grocery-list-react/public/index.html new file mode 100644 index 00000000..aa069f27 --- /dev/null +++ b/react-exercises/grocery-list-react/public/index.html @@ -0,0 +1,43 @@ + + + + + + + + + + + + + React App + + + +
+ + + diff --git a/react-exercises/grocery-list-react/public/logo192.png b/react-exercises/grocery-list-react/public/logo192.png new file mode 100644 index 00000000..1918ff2e Binary files /dev/null and b/react-exercises/grocery-list-react/public/logo192.png differ diff --git a/react-exercises/grocery-list-react/public/logo512.png b/react-exercises/grocery-list-react/public/logo512.png new file mode 100644 index 00000000..7e7dc74f Binary files /dev/null and b/react-exercises/grocery-list-react/public/logo512.png differ diff --git a/react-exercises/grocery-list-react/public/manifest.json b/react-exercises/grocery-list-react/public/manifest.json new file mode 100644 index 00000000..080d6c77 --- /dev/null +++ b/react-exercises/grocery-list-react/public/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/react-exercises/grocery-list-react/public/robots.txt b/react-exercises/grocery-list-react/public/robots.txt new file mode 100644 index 00000000..e9e57dc4 --- /dev/null +++ b/react-exercises/grocery-list-react/public/robots.txt @@ -0,0 +1,3 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Disallow: diff --git a/react-exercises/grocery-list-react/src/App.css b/react-exercises/grocery-list-react/src/App.css new file mode 100644 index 00000000..74b5e053 --- /dev/null +++ b/react-exercises/grocery-list-react/src/App.css @@ -0,0 +1,38 @@ +.App { + text-align: center; +} + +.App-logo { + height: 40vmin; + pointer-events: none; +} + +@media (prefers-reduced-motion: no-preference) { + .App-logo { + animation: App-logo-spin infinite 20s linear; + } +} + +.App-header { + background-color: #282c34; + min-height: 100vh; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + font-size: calc(10px + 2vmin); + color: white; +} + +.App-link { + color: #61dafb; +} + +@keyframes App-logo-spin { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} diff --git a/react-exercises/grocery-list-react/src/App.js b/react-exercises/grocery-list-react/src/App.js new file mode 100644 index 00000000..a94a0f65 --- /dev/null +++ b/react-exercises/grocery-list-react/src/App.js @@ -0,0 +1,54 @@ +import React from 'react'; +import GroceryList from './components/GroceryList'; + +function App() { + const [groceryItems, setGroceryItems] = React.useState([]); + const [inputBoxValue, setInputBoxValue] = React.useState(''); + + const groceryItemExists = newGroceryItem => { + return groceryItems.findIndex(groceryItem => groceryItem.name === newGroceryItem) > -1; + }; + + const addGroceryItem = e => { + e.preventDefault(); + if (!inputBoxValue) return; + const newGroceryItem = inputBoxValue; + let newGroceryItems = []; + if (groceryItemExists(inputBoxValue)) { + const duplicateGroceryItemIndex = groceryItems.findIndex( + groceryItem => groceryItem.name === newGroceryItem + ); + newGroceryItems = [...groceryItems]; + newGroceryItems[duplicateGroceryItemIndex].quantity += 1; + } else { + newGroceryItems = [ + ...groceryItems, + { name: inputBoxValue, clicked: 0, id: groceryItems.length, quantity: 1 } + ]; + } + setGroceryItems(newGroceryItems); + setInputBoxValue(''); + }; + + const handleGroceryItemClick = groceryItemId => { + const newGroceryItems = [...groceryItems]; + newGroceryItems[groceryItemId].clicked += 1; + setGroceryItems(newGroceryItems); + }; + + return ( +
+
+ setInputBoxValue(e.target.value)} + > + +
+ +
+ ); +} + +export default App; diff --git a/react-exercises/grocery-list-react/src/App.test.js b/react-exercises/grocery-list-react/src/App.test.js new file mode 100644 index 00000000..4db7ebc2 --- /dev/null +++ b/react-exercises/grocery-list-react/src/App.test.js @@ -0,0 +1,9 @@ +import React from 'react'; +import { render } from '@testing-library/react'; +import App from './App'; + +test('renders learn react link', () => { + const { getByText } = render(); + const linkElement = getByText(/learn react/i); + expect(linkElement).toBeInTheDocument(); +}); diff --git a/react-exercises/grocery-list-react/src/components/GroceryItem.jsx b/react-exercises/grocery-list-react/src/components/GroceryItem.jsx new file mode 100644 index 00000000..e45db119 --- /dev/null +++ b/react-exercises/grocery-list-react/src/components/GroceryItem.jsx @@ -0,0 +1,17 @@ +import React from 'react'; + +const GroceryItem = ({ item, handleClick }) => { + const redText = { + color: 'red' + }; + const blackText = { + color: 'black' + }; + return ( +

handleClick(item.id)} style={item.clicked > 0 ? redText : blackText}> + {item.name} {item.quantity} +

+ ); +}; + +export default GroceryItem; diff --git a/react-exercises/grocery-list-react/src/components/GroceryList.jsx b/react-exercises/grocery-list-react/src/components/GroceryList.jsx new file mode 100644 index 00000000..178149e3 --- /dev/null +++ b/react-exercises/grocery-list-react/src/components/GroceryList.jsx @@ -0,0 +1,14 @@ +import React from 'react'; +import GroceryItem from './GroceryItem'; + +const GroceryList = ({ items, handleClick }) => { + return ( + + {items.map(item => ( + + ))} + + ); +}; + +export default GroceryList; diff --git a/react-exercises/grocery-list-react/src/index.css b/react-exercises/grocery-list-react/src/index.css new file mode 100644 index 00000000..ec2585e8 --- /dev/null +++ b/react-exercises/grocery-list-react/src/index.css @@ -0,0 +1,13 @@ +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', + 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', + sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +code { + font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', + monospace; +} diff --git a/react-exercises/grocery-list-react/src/index.js b/react-exercises/grocery-list-react/src/index.js new file mode 100644 index 00000000..f5185c1e --- /dev/null +++ b/react-exercises/grocery-list-react/src/index.js @@ -0,0 +1,17 @@ +import React from 'react'; +import ReactDOM from 'react-dom'; +import './index.css'; +import App from './App'; +import * as serviceWorker from './serviceWorker'; + +ReactDOM.render( + + + , + document.getElementById('root') +); + +// If you want your app to work offline and load faster, you can change +// unregister() to register() below. Note this comes with some pitfalls. +// Learn more about service workers: https://bit.ly/CRA-PWA +serviceWorker.unregister(); diff --git a/react-exercises/grocery-list-react/src/logo.svg b/react-exercises/grocery-list-react/src/logo.svg new file mode 100644 index 00000000..6b60c104 --- /dev/null +++ b/react-exercises/grocery-list-react/src/logo.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/react-exercises/grocery-list-react/src/serviceWorker.js b/react-exercises/grocery-list-react/src/serviceWorker.js new file mode 100644 index 00000000..b04b771a --- /dev/null +++ b/react-exercises/grocery-list-react/src/serviceWorker.js @@ -0,0 +1,141 @@ +// This optional code is used to register a service worker. +// register() is not called by default. + +// This lets the app load faster on subsequent visits in production, and gives +// it offline capabilities. However, it also means that developers (and users) +// will only see deployed updates on subsequent visits to a page, after all the +// existing tabs open on the page have been closed, since previously cached +// resources are updated in the background. + +// To learn more about the benefits of this model and instructions on how to +// opt-in, read https://bit.ly/CRA-PWA + +const isLocalhost = Boolean( + window.location.hostname === 'localhost' || + // [::1] is the IPv6 localhost address. + window.location.hostname === '[::1]' || + // 127.0.0.0/8 are considered localhost for IPv4. + window.location.hostname.match( + /^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/ + ) +); + +export function register(config) { + if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) { + // The URL constructor is available in all browsers that support SW. + const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href); + if (publicUrl.origin !== window.location.origin) { + // Our service worker won't work if PUBLIC_URL is on a different origin + // from what our page is served on. This might happen if a CDN is used to + // serve assets; see https://github.com/facebook/create-react-app/issues/2374 + return; + } + + window.addEventListener('load', () => { + const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`; + + if (isLocalhost) { + // This is running on localhost. Let's check if a service worker still exists or not. + checkValidServiceWorker(swUrl, config); + + // Add some additional logging to localhost, pointing developers to the + // service worker/PWA documentation. + navigator.serviceWorker.ready.then(() => { + console.log( + 'This web app is being served cache-first by a service ' + + 'worker. To learn more, visit https://bit.ly/CRA-PWA' + ); + }); + } else { + // Is not localhost. Just register service worker + registerValidSW(swUrl, config); + } + }); + } +} + +function registerValidSW(swUrl, config) { + navigator.serviceWorker + .register(swUrl) + .then(registration => { + registration.onupdatefound = () => { + const installingWorker = registration.installing; + if (installingWorker == null) { + return; + } + installingWorker.onstatechange = () => { + if (installingWorker.state === 'installed') { + if (navigator.serviceWorker.controller) { + // At this point, the updated precached content has been fetched, + // but the previous service worker will still serve the older + // content until all client tabs are closed. + console.log( + 'New content is available and will be used when all ' + + 'tabs for this page are closed. See https://bit.ly/CRA-PWA.' + ); + + // Execute callback + if (config && config.onUpdate) { + config.onUpdate(registration); + } + } else { + // At this point, everything has been precached. + // It's the perfect time to display a + // "Content is cached for offline use." message. + console.log('Content is cached for offline use.'); + + // Execute callback + if (config && config.onSuccess) { + config.onSuccess(registration); + } + } + } + }; + }; + }) + .catch(error => { + console.error('Error during service worker registration:', error); + }); +} + +function checkValidServiceWorker(swUrl, config) { + // Check if the service worker can be found. If it can't reload the page. + fetch(swUrl, { + headers: { 'Service-Worker': 'script' }, + }) + .then(response => { + // Ensure service worker exists, and that we really are getting a JS file. + const contentType = response.headers.get('content-type'); + if ( + response.status === 404 || + (contentType != null && contentType.indexOf('javascript') === -1) + ) { + // No service worker found. Probably a different app. Reload the page. + navigator.serviceWorker.ready.then(registration => { + registration.unregister().then(() => { + window.location.reload(); + }); + }); + } else { + // Service worker found. Proceed as normal. + registerValidSW(swUrl, config); + } + }) + .catch(() => { + console.log( + 'No internet connection found. App is running in offline mode.' + ); + }); +} + +export function unregister() { + if ('serviceWorker' in navigator) { + navigator.serviceWorker.ready + .then(registration => { + registration.unregister(); + }) + .catch(error => { + console.error(error.message); + }); + } +} diff --git a/react-exercises/grocery-list-react/src/setupTests.js b/react-exercises/grocery-list-react/src/setupTests.js new file mode 100644 index 00000000..74b1a275 --- /dev/null +++ b/react-exercises/grocery-list-react/src/setupTests.js @@ -0,0 +1,5 @@ +// jest-dom adds custom jest matchers for asserting on DOM nodes. +// allows you to do things like: +// expect(element).toHaveTextContent(/react/i) +// learn more: https://github.com/testing-library/jest-dom +import '@testing-library/jest-dom/extend-expect';