Skip to content

Rodrigo final exercise #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
74 changes: 18 additions & 56 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,61 +1,23 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# node-waf configuration
.lock-wscript
# dependencies
/node_modules
/.pnp
.pnp.js

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# testing
/coverage

# Dependency directories
node_modules/
jspm_packages/
# production
/build

# TypeScript v1 declaration files
typings/
# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# next.js build output
.next
npm-debug.log*
yarn-debug.log*
yarn-error.log*
13 changes: 2 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,2 @@
# React Learning

Exercises to learn React with a hands-on approach.
Each branch is a different lesson/exercise.
Navigate the differente exercises with the different branchs.

## Presentation Slides

[Modern JS](https://slides.com/rubenmateus/modern-js/fullscreen)

[React-beginner](https://slides.com/rubenmateus/react-beginner/fullscreen)
# GitHub Profile Searcher
It's a GitHub Profile Searcher bem podre, mas foi o que se arranjou
41 changes: 41 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"name": "github-profiles-searcher",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"antd": "^4.8.0",
"axios": "^0.21.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.0",
"web-vitals": "^0.2.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
Binary file added public/favicon.ico
Binary file not shown.
43 changes: 43 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/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="%PUBLIC_URL%/logo192.png" />
<!--
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>GitHub Profile Searcher</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>
Binary file added public/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 public/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 public/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 public/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:
59 changes: 59 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
@import '~antd/dist/antd.css';
.App {
text-align: center;
}

.App-logo {
margin: 6px;
height: 3rem;
pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 5s linear;
}
}

.App-header {
background-color: #282c34;
min-height: 10vh;
display: flex;
flex-direction: column;
align-items: center;
font-size: calc(10px + 2vmin);
color: white;
}

.App-link {
color: #61dafb;
}

@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

.minHeight {
min-height: 100vh;
}

#components-layout-demo-fixed .logo {
width: 120px;
height: 31px;
background: rgba(255, 255, 255, 0.2);
margin: 16px 24px 16px 0;
float: left;
}

.site-layout .site-layout-background {
background: #fff;
}

.mt10{
margin-top: 2rem;
}
29 changes: 29 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import {
BrowserRouter as Router,

Route, Switch
} from "react-router-dom";
import './App.css';
import ListPage from './components/ListPage';
import Profile from './components/Profile';

function App() {
return (
<div className="App">
<Router>
<div>
<Switch>
<Route exact path="/">
<ListPage />
</Route>
<Route path="/user/:username">
<Profile />
</Route>
</Switch>
</div>
</Router>
</div>
);
}

export default App;
27 changes: 27 additions & 0 deletions src/api/requester.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import { get } from 'axios';

const config = {
headers: {
}
};

async function getUsers(username) {
try {
const response = await get(`https://api.github.com/search/users?q=${username}+in:name+type%3Auser&type=Users`, config);
return response.data.items;
} catch (error) {
return [];
}
}

async function getUser(username) {
try {
const response = await get(`https://api.github.com/users/${username}`, config);
return response;
} catch (error) {
console.log(error)
return null;
}
}

export { getUsers, getUser };
45 changes: 45 additions & 0 deletions src/components/ListPage.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
import { UserOutlined } from '@ant-design/icons';
import { Input, Layout } from 'antd';
import React, { useState } from 'react';
import { getUsers } from '../api/requester';
import logo from '../logo.svg';
import Users from './Users';

const { Header, Content, Footer } = Layout;

const ListPage = () => {

const [users, setUsers] = useState([]);

const requestAPI = async (e) => {

if (e.keyCode === 13) {

let usersList = await getUsers(e.target.value)

setUsers(usersList)
}
}

return (
<Layout key="listpage-layout" className="minHeight">
<Header style={{ position: 'fixed', zIndex: 1, width: '100%' }}>
<div style={{ width: '20rem', margin: '0 auto' }}>
<img src={logo} className="App-logo" alt="logo" style={{ float: "left" }} />
<h4 style={{ float: "right", fontSize: '1.3rem', color: 'white' }}>GitHub Profile Searcher</h4>
</div>
</Header>
<Content className="site-layout" style={{ padding: '0 50px', marginTop: 64 }}>
<div style={{ margin: '16px 0' }}>
<Input size="large" placeholder="Name" prefix={<UserOutlined />} style={{ maxWidth: '20rem' }} onKeyUp={requestAPI} />
</div>
<div className="site-layout-background" style={{ padding: 24, minHeight: 380 }}>
<Users users={users} />
</div>
</Content>
<Footer style={{ textAlign: 'center' }}>© 2020 GitHub Profile Searcher</Footer>
</Layout>
)
}

export default ListPage
3 changes: 3 additions & 0 deletions src/components/Profile.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.info {
text-align: left;
}
Loading