Created
April 12, 2018 22:07
-
-
Save tylermcginnis/72f9db6e3ee160417ffc8910e6c9034e 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