Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created June 18, 2019 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/8b8cdd49959c97a54f9ef4ca89c95f46 to your computer and use it in GitHub Desktop.
Save codecademydev/8b8cdd49959c97a54f9ef4ca89c95f46 to your computer and use it in GitHub Desktop.
Codecademy export
// manipulate responseField to render a formatted and appropriate message
const renderResponse = (res) => {
if(res.errors){
responseField.innerHTML = "<p>Sorry, couldn't format your URL.</p><p>Try again.</p>"
} else {
responseField.innerHTML = `<p>Your shortened url is: </p><p> ${res.shortUrl} </p>`
}
}
// manipulate responseField to render an unformatted response
const renderRawResponse = (res) => {
if(res.errors){
responseField.innerHTML = "<p>Sorry, couldn't format your URL.</p><p>Try again.</p>"
} else {
let structuredRes = JSON.stringify(res).replace(/,/g, ", \n")
structuredRes = `<pre>${structuredRes}</pre>`
responseField.innerHTML = `${structuredRes}`
}
}
// Information to reach API
const apiKey = '<Your API Key>';
const url = 'https://api.rebrandly.com/v1/links';
// Some page elements
const inputField = document.querySelector('#input');
const shortenButton = document.querySelector('#shorten');
const responseField = document.querySelector('#responseField');
// AJAX functions
const shortenUrl = () => {
const urlToShorten = inputField.value;
const data = JSON.stringify({destination: urlToShorten});
const xhr = new XMLHttpRequest();
xhr.responseType = 'json';
xhr.onreadystatechange = () => {
if (xhr.readyState === XMLHttpRequest.DONE) {
renderResponse(xhr.response);
}
}
xhr.open('POST', url);
xhr.setRequestHeader('Content-type', 'application/json');
xhr.setRequestHeader('apikey', apiKey);
xhr.send(data);
}
// Clear page and call AJAX functions
const displayShortUrl = (event) => {
event.preventDefault();
while(responseField.firstChild){
responseField.removeChild(responseField.firstChild);
}
shortenUrl();
}
shortenButton.addEventListener('click', displayShortUrl);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment