#app-con {
margin-top: 10px;
justify-content: flex-start;
align-content: flex-start;
}
#search {
width: 90vw;
max-width: 1320px;
justify-content: flex-start;
align-content: flex-start;
align-items: flex-start;
margin: 25vh 0 1% 0;
} #search h2 {
color: #c5dec2;
margin: 0 0 2px -10px;
font-size: 1.6em;
} #search h2 i {
font-size: 1.4em;
font-style: italic;
}
.ceremony {
margin: 0 0 1% 0 !important;
transition: margin 1.5s ease;
}
#search-bar {
overflow: hidden;
width: 100%;
white-space: nowrap;
}
#search-bar input[type=search] {
outline: none;
border: none;
width: 100%;
height: 50px;
background-color: #c5dec2;
color: #3b4c4c;
font-size: 1.5em;
padding-left: 15px;
border-radius: 5px;
float: left;
}
#search-bar input[type=search]:focus {
background: rgba(190, 214, 187, 0.87);
} #search-bar input[type=search]::-webkit-input-placeholder {
color: #405353;
} #search-bar input[type=search]:-ms-input-placeholder {
color: #405353;
}
#search-btn {
border-top-right-radius: 4.5px;
border-bottom-right-radius: 4.5px;
font-size: 1.5em;
height: 50px;
width: 55px;
margin-left: -55px;
transition: all .55s ease;
outline: none;
border: none;
background: #324141;
color: #c5dec2;
}
#search-btn:hover {
background: #293535;
}
#random {
display: block;
padding-top: 5px;
padding-left: 3px;
color: #c5dec2;
}
#random:hover,
#random:focus {
color: #c5dec2;
text-decoration: none;
text-shadow: 0px 1px 8px #969696;
}
#results-con {
}
#results-heading {
width: 90vw;
max-width: 1320px;
margin-bottom: .5%;
color: #bed6bb;
font-weight: 100;
animation: fadeIn 2s;
animation-timing-function: ease-out;
}
#result-list {
width: 85vw;
max-width: 1250px;
}
.result-list-item {
width: inherit;
max-width: inherit;
height: calc(2vh + 30px);
margin-top: .5%;
margin-bottom: .5%;
text-align: left;
border-radius: 3px;
border: 1px solid transparent;
animation: fadeIn 2s;
animation-timing-function: ease-out;
transition:background 1s ease;
}
.result-list-item:hover {
border: 1px solid #a8bda5;
}
.result-list-item:hover,
.result-list-item:focus {
background: #263331;
text-shadow: 0px 1px 8px #969696;
transition: all 1s ease;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.item-link {
height: inherit;
color: #bed6bb;
text-decoration: none;
justify-content: flex-start;
padding: 0 25px 0 15px;
outline-color: #bed6bb;
}
.title-link:hover,
.item-link:focus {
text-decoration: none;
background: #263331;
text-shadow: 0px 1px 8px #969696;
transition: all 1.2s ease;
}
.item-icon {
font-size: 1em;
font-weight: bold;
}
.item-title {
margin: 0 0 0 15px;
font-weight: bold;
font-size: 1em;
width: auto;
white-space: nowrap;
}
.item-description {
color: #9eb9a6;
font-size: 1em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: auto;
}
#NetworkErr {
position: absolute;
text-align: center;
top: 45%; bottom: 0;
text-transform: capitalize;
color: #273432;
animation: fadeIn 1s;
}
const searchSection = document.querySelector('#search');
const searchBtn = document.querySelector('#search-btn');
const searchInput = document.querySelector('#search-input');
const resultsCon = document.querySelector('#results-con');
const keypressHandler = (key) => {
if (key.keyCode === 13) { ceremony(); }
};
searchBtn.addEventListener("click", ceremony);
searchInput.addEventListener('keypress', keypressHandler);
function ceremony() {
searchBtn.removeEventListener("click", ceremony);
searchInput.removeEventListener('keypress', keypressHandler);
searchSection.classList.add("ceremony");
function eventListeners() {
searchBtn.addEventListener("click", getResults);
searchInput.addEventListener('keypress', (key) => {
if (key.keyCode === 13) { getResults(); }}
);
getResults();
}
window.setTimeout(eventListeners, 1800);
}
function getResults() {
let keyword = encodeURIComponent(searchInput.value.trim());
let url = `https://en.wikipedia.org/w/api.php?action=opensearch&limit=15&format=json&search=${keyword}&origin=*`;
xhr = new XMLHttpRequest();
xhr.open('GET', url, true);
xhr.setRequestHeader('Api-User-Agent', 'Header_doest_work_._Update_your_MediaWiki_API_doc_.');
xhr.onerror = () => getScriptJsonp(keyword);
xhr.onload = () => resultsHandler(JSON.parse(xhr.response));
xhr.send(null);
}
function resultsHandler(response) {
let results = '';
resultsCon.innerHTML = '';
searchInput.value = '';
if (response[1].length !== 0) {
resultsCon.innerHTML += `<h2 id="results-heading">Wikipedia Articles For: <i>${response[0]}</i></h2>`;
resultsCon.innerHTML += `<ul id="result-list"></ul>`;
let ul = document.querySelector('#result-list');
response[1].forEach(
(item, index) =>
results += component(item, index, response)
);
ul.innerHTML += results;
} else {
resultsCon.innerHTML =
`<h2 id="results-heading">No Resutls Found For: ${response[0]}</h2>`;
}
}
function component(item, index, results) {
return `
<li class="result-list-item flex-r">
<a class="item-link flex-r" href="${results[3][index]}" target="_blank">
<i class="fa fa-wikipedia-w item-icon" aria-hidden="true"></i>
<h3 class="item-title">${results[1][index]}</h3>
<p class="item-description"><b>:</b> ${results[2][index]}</p>
</a>
</li>`;
}
function getScriptJsonp(keyword) {
let script = document.createElement('script');
let url = `https://en.wikipedia.org/w/api.php?action=opensearch&format=json&search=${keyword}` + '&callback=wikiJsonpCb';
window.wikiJsonpCb = response => {
delete window.wikiJsonpCb;
document.body.removeChild(script);
resultsHandler(response);
};
script.src = url;
script.onerror = connectionErr;
document.body.appendChild(script);
}
function connectionErr() {
resultsCon.innerHTML = '<h2 id="NetworkErr">Unable to connect to the intrenet, Please check your network connection</h2>';
}
addProjDetails(0, 'Project Overview', 'This is a Wikipedia viewer application. Consider it something similar to the google search engine, it uses the Wikimedia API to search through the Wikipedia entries, then it displays a sum of the results with a brief description for each title.');
addProjDetails(0, 'Techniques/Technologies', 'This project had no complex components. AJAX was used for better client-side interactivity, and HTML and CSS was used for structure and presentation. I added some decent on search, hover, and display animation for a better UX.');
addProjDetails(1, 'Hurdles encountered', 'The Wikimedia API (the core for my search engine) had some outdated and misleading documentation. So I had a bit of trouble following the instruction provided, as they were incorrect.');
addProjDetails(1, 'Future implementations', 'I am interested into integrating caching functionality to the application. So if the user searched a keyword before, it should not request it again form the server. Instead, it should use the cached results for a faster and more efficient processing.');