mirror of
https://github.com/acid-info/nimbus-site.git
synced 2025-01-21 06:39:30 +00:00
5f98d3dac6
* Replicate the same structure as on status.im * Fixes parallax effect and overlapping with main menu popups * Remove twitter social link on header Co-Authored-By: santteegt <hernangt12re3@gmail.com> * Remove github link on header Co-Authored-By: santteegt <hernangt12re3@gmail.com> * Remove unnecessary SCSS files
172 lines
5.2 KiB
JavaScript
172 lines
5.2 KiB
JavaScript
$(document).ready(function () {
|
|
|
|
// Fixes Parallax effect and div to popup overlapping with the main menu options
|
|
$('div#container').append($('.popup-wrap.popup-wrap--community')[0])
|
|
$('div#container').append($('.popup-wrap.popup-wrap--projects')[0])
|
|
|
|
let url = 'https://our.status.im/ghost/api/v0.1/posts/?filter=tag:nimbus&order=published_at%20desc&limit=3&formats=plaintext&client_id=ghost-frontend&client_secret=2b055fcd57ba';
|
|
var urlBase = [location.protocol, '//', location.host, location.pathname].join('');
|
|
|
|
$.ajax({
|
|
type: "get",
|
|
url: url,
|
|
success: function (response) {
|
|
response.posts = response.posts.reverse();
|
|
$.each(response.posts, function (index, val) {
|
|
var excerpt = '';
|
|
if(val.custom_excerpt != null) {
|
|
excerpt = val.custom_excerpt;
|
|
}else{
|
|
excerpt = getWords(val.plaintext);
|
|
}
|
|
$('.contribute-wrap-blog').prepend('<div class="contribute blog"><a href="https://our.status.im/'+ val.slug +'" class="feature-image"><img src="https://our.status.im/'+ val.feature_image +'" alt="'+ val.title +'"></a><h3><a href="https://our.status.im/'+ val.slug +'">'+ val.title +'</a></h3><p>'+ excerpt +'</p><a href="https://our.status.im/'+ val.slug +'">Read More <img src="'+ urlBase +'/img/arrow_ogn.png" /></a></div>');
|
|
});
|
|
}
|
|
});
|
|
|
|
function getWords(str) {
|
|
return str.split(/\s+/).slice(0,25).join(" ");
|
|
}
|
|
|
|
var months = {'01':'Jan', '02':'Feb', '03':'Mar', '04':'Apr', '05':'May', '06':'Jun', '07':'Jul', '08':'Aug', '09':'Sep', '10':'Oct', '11':'Nov', '12':'Dec'};
|
|
url = 'https://our.status.im/ghost/api/v0.1/posts/?order=published_at%20desc&limit=2&formats=plaintext&client_id=ghost-frontend&client_secret=2b055fcd57ba';
|
|
|
|
$.ajax({
|
|
type: "get",
|
|
url: url,
|
|
success: function (response) {
|
|
response.posts = response.posts.reverse();
|
|
$.each(response.posts, function (index, val) {
|
|
var excerpt = '';
|
|
if(val.custom_excerpt != null) {
|
|
excerpt = val.custom_excerpt;
|
|
}else{
|
|
excerpt = getWords(val.plaintext);
|
|
}
|
|
var newDate = new Date(val.published_at);
|
|
var minutes = newDate.getMinutes();
|
|
minutes = minutes + "";
|
|
if(minutes.length == 1){
|
|
minutes = '0' + minutes;
|
|
}
|
|
$('.latest-posts').prepend(' \
|
|
<div class="post"> \
|
|
<time>'+ newDate.getDate() + ' ' + months[(newDate.getMonth()+1)] + ' at ' + newDate.getHours() + ':' + minutes + '</time> \
|
|
<h4><a href="https://our.status.im/'+ val.slug +'">'+ val.title +'</a></h3> \
|
|
</div> \
|
|
');
|
|
});
|
|
}
|
|
});
|
|
|
|
});
|
|
|
|
/* Popups */
|
|
|
|
let community = document.querySelectorAll(".item--dropdown-community")[0]
|
|
let projects = document.querySelectorAll(".item--dropdown-projects")[0]
|
|
|
|
let popups = document.querySelectorAll(".popup-wrap")
|
|
let overlays = document.querySelectorAll(".popup-overlay")
|
|
let closeButtons = document.querySelectorAll(".popup__button--close")
|
|
|
|
let activePopup = null;
|
|
let activeOverlay = null;
|
|
|
|
community.addEventListener('click', function(event){
|
|
showPopup(popups[0])
|
|
event.preventDefault()
|
|
})
|
|
|
|
projects.addEventListener('click', function(event){
|
|
showPopup(popups[1])
|
|
event.preventDefault()
|
|
})
|
|
|
|
closeButtons.forEach((button) => {
|
|
button.addEventListener('click', closeActivePopup)
|
|
})
|
|
|
|
overlays.forEach((overlay) => {
|
|
overlay.addEventListener('click', closeActivePopup)
|
|
})
|
|
|
|
function showPopup(whichPopup) {
|
|
activePopup = whichPopup
|
|
addClassToElement(whichPopup, "popup--shown");
|
|
}
|
|
|
|
function closeActivePopup() {
|
|
removeClassFromElement(activePopup, "popup--shown");
|
|
activePopup = null;
|
|
}
|
|
|
|
/* Code highlighting */
|
|
|
|
function highlight() {
|
|
$('pre code').each(function(i, block) {
|
|
hljs.highlightBlock(block);
|
|
});
|
|
}
|
|
$(document).ready(function() {
|
|
try {
|
|
highlight();
|
|
} catch(err) {
|
|
console.log("retrying...")
|
|
setTimeout(function() {
|
|
highlight();
|
|
}, 2500)
|
|
}
|
|
|
|
var clipboard = new ClipboardJS(".btn");
|
|
clipboard.on('success', function(e) {
|
|
var id = $(e.trigger).attr("data-clipboard-target");
|
|
$(id).toggleClass("flash");
|
|
setTimeout(function() {
|
|
$(id).toggleClass("flash");
|
|
}, 200);
|
|
e.clearSelection();
|
|
})
|
|
})
|
|
|
|
/* Mobile Nav */
|
|
|
|
let moreLink = document.querySelectorAll(".item--more")[0]
|
|
|
|
let nav = document.querySelectorAll(".mobile-nav-wrap")[0]
|
|
let navOverlay = document.querySelectorAll(".mobile-nav-overlay")[0]
|
|
let navCloseButton = document.querySelectorAll(".mobile-nav-close")[0]
|
|
|
|
|
|
moreLink.addEventListener('click', function(event){
|
|
showNav()
|
|
event.preventDefault()
|
|
})
|
|
|
|
navCloseButton.addEventListener('click', closeNav)
|
|
navOverlay.addEventListener('click', closeNav)
|
|
|
|
|
|
function showNav() {
|
|
addClassToElement(nav, "mobile-nav--shown");
|
|
}
|
|
|
|
function closeNav() {
|
|
removeClassFromElement(nav, "mobile-nav--shown");
|
|
}
|
|
|
|
/*--- Utils ---*/
|
|
function addClassToElement(element, className) {
|
|
(element.classList) ? element.classList.add(className) : element.className += ' ' + className
|
|
return element
|
|
}
|
|
|
|
function removeClassFromElement(element, className) {
|
|
if(element.classList) {
|
|
element.classList.remove(className)
|
|
} else {
|
|
element.className = element.className.replace(new RegExp('(^|\\b)' + className.split(' ').join('|') + '(\\b|$)', 'gi'), ' ')
|
|
}
|
|
return element
|
|
}
|