Created
April 11, 2018 22:12
-
-
Save tylermcginnis/29f885fdb5d9d5206e6fedc9168134aa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>First React App</title> | |
<script crossorigin src="https://unpkg.com/react@16/umd/react.development.js"></script> | |
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script> | |
<script src='https://unpkg.com/babel-standalone@6/babel.min.js'></script> | |
</head> | |
<body> | |
<div id='app'></div> | |
<script> | |
window.API = { | |
fetchPopularRepos(language = 'all') { | |
const encodedURI = encodeURI(`https://api.github.com/search/repositories?q=stars:>1+language:${language}&sort=stars&order=desc&type=Repositories`) | |
return fetch(encodedURI) | |
.then((data) => data.json()) | |
.then((repos) => repos.items) | |
.catch((error) => { | |
console.warn(error) | |
return null | |
}); | |
} | |
} | |
</script> | |
<script type='text/babel'> | |
class Loading extends React.Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
text: 'Loading' | |
}; | |
} | |
componentDidMount() { | |
const stopper = this.state.text + '...'; | |
this.interval = window.setInterval(() => { | |
this.state.text === stopper | |
? this.setState(() => ({ text: 'Loading' })) | |
: this.setState((prevState) => ({ text: prevState.text + '.' })) | |
}, 300) | |
} | |
componentWillUnmount() { | |
window.clearInterval(this.interval); | |
} | |
render() { | |
return ( | |
<p> | |
{this.state.text} | |
</p> | |
) | |
} | |
} | |
function RepoGrid (props) { | |
return ( | |
<ul style={{display: 'flex', flexWrap: 'wrap'}}> | |
{props.repos.map(({ name, owner, stargazers_count, html_url }) => ( | |
<li key={name} style={{margin: 30}}> | |
<ul> | |
<li><a href={html_url}>{name}</a></li> | |
<li>@{owner.login}</li> | |
<li>{stargazers_count} stars</li> | |
</ul> | |
</li> | |
))} | |
</ul> | |
) | |
} | |
function Nav (props) { | |
const languages = ['all', 'javascript', 'ruby', 'python'] | |
return ( | |
<nav> | |
<ul> | |
{languages.map((lang) => ( | |
<li key={lang} onClick={() => props.onSelectLanguage(lang)}> | |
{lang} | |
</li> | |
))} | |
</ul> | |
</nav> | |
) | |
} | |
class App extends React.Component { | |
constructor(props) { | |
super(props) | |
this.state = { | |
repos: [], | |
activeLanguage: 'all', | |
loading: true, | |
} | |
this.handleSelectLanguage = this.handleSelectLanguage.bind(this) | |
this.fetchRepos = this.fetchRepos.bind(this) | |
} | |
componentDidMount() { | |
this.fetchRepos(this.state.activeLanguage) | |
} | |
componentDidUpdate (prevProps, prevState) { | |
if (prevState.activeLanguage !== this.state.activeLanguage) { | |
this.fetchRepos(this.state.activeLanguage) | |
} | |
} | |
fetchRepos(lang) { | |
this.setState({ | |
loading: true | |
}) | |
window.API.fetchPopularRepos(lang) | |
.then((data) => { | |
this.setState({ | |
loading: false, | |
repos: data | |
}) | |
}) | |
} | |
handleSelectLanguage(lang) { | |
this.setState({ | |
activeLanguage: lang | |
}) | |
} | |
render() { | |
return ( | |
<div> | |
<Nav onSelectLanguage={this.handleSelectLanguage} /> | |
{this.state.loading === true | |
? <Loading /> | |
: <div> | |
<h1 style={{textAlign: 'center'}}> | |
{this.state.activeLanguage} | |
</h1> | |
<RepoGrid repos={this.state.repos} /> | |
</div>} | |
</div> | |
) | |
} | |
} | |
ReactDOM.render( | |
<App />, | |
document.getElementById('app') | |
) | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Like the approach, mine turned out a little different but I think functionality wise it should match: https://github.com/pedro-mass/learn/blob/master/react/tyler-mcginnis_react-bootcamp/3-wednesday/homework.html
Tried using some css-grid to get the Repo Listing working, but your flexbox solution looks more responsive.