1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-09-24 18:18:49 +02:00
blog/_src/_assets/js/_search.js

113 lines
3.4 KiB
JavaScript
Raw Normal View History

2015-12-02 00:19:46 +01:00
//=require ../../../bower_components/simple-jekyll-search/dest/jekyll-search.js
2015-11-19 16:52:44 +01:00
var Search = (function(w, d) {
var content = $('.site__content'),
searchlink = $('.search-btn'),
searcharea = $('.search-area'),
searchfield = $('#search-input'),
searchresults = $('#search-results'),
searchpop = $('#search-popover');
var app, _private;
_private = {
searchShow: function() {
2015-11-20 22:30:58 +01:00
var body = $('body');
2015-11-19 16:52:44 +01:00
searchlink.on('click', function(e) {
e.preventDefault();
// show search field
searcharea
2015-11-28 01:19:31 +01:00
.removeClass('is-ready animation-bounceOutUp')
.addClass('is-ready animation-slideDown')
2015-11-19 16:52:44 +01:00
.on('animationend webkitAnimationEnd oAnimationEnd', function(){
2015-11-28 01:19:31 +01:00
body.addClass('has-search-open');
2015-11-19 16:52:44 +01:00
});
2015-11-20 22:30:58 +01:00
2015-11-19 16:52:44 +01:00
searchfield.focus();
2015-11-20 22:30:58 +01:00
_private.searchSimpleJekyllSearch();
2015-11-19 16:52:44 +01:00
2015-11-20 22:30:58 +01:00
// hide menu too just in case
2015-11-28 01:19:31 +01:00
if (body.hasClass('has-menu-open')) {
body.removeClass('has-menu-open');
2015-11-19 16:52:44 +01:00
}
// bind the hide controls
$(document).bind('click.hidethepop', function() {
_private.searchReset();
// unbind the hide controls
$(document).unbind('click.hidethepop');
});
// dont close thepop when click on thepop
searchpop.on('click', function(e) {
e.stopPropagation();
});
// dont close thepop when click on search field
searchfield.on('click', function(e) {
e.stopPropagation();
});
// and dont close thepop now
e.stopPropagation();
2015-11-19 16:07:27 +01:00
});
2015-11-20 22:30:58 +01:00
},
2015-11-19 14:55:49 +01:00
2015-11-20 22:30:58 +01:00
searchResultsShow: function() {
// show popup upon first keypress
2015-11-19 16:52:44 +01:00
searchfield.on('keyup', function() {
searchpop.removeClass('hide');
});
},
2015-11-19 14:55:49 +01:00
2015-11-20 22:30:58 +01:00
searchSimpleJekyllSearch: function() {
SimpleJekyllSearch({
searchInput: document.getElementById('search-input'),
resultsContainer: document.getElementById('search-results'),
json: '/search.json',
searchResultTemplate: '<li class="grid__col"><a class="search-link" href="{url}">{title}</a></li>',
fuzzy: false
});
},
2015-11-19 16:52:44 +01:00
searchHide: function() {
$('.search-close').on('click', function(e) {
e.preventDefault();
2015-11-19 14:55:49 +01:00
2015-11-19 16:52:44 +01:00
_private.searchReset();
2015-11-19 14:55:49 +01:00
2015-11-19 16:52:44 +01:00
// empty search field
searchfield.val('').blur();
2015-11-19 14:55:49 +01:00
});
2015-11-19 16:52:44 +01:00
},
searchReset: function() {
// revert all search elements
searcharea
2015-11-28 01:19:31 +01:00
.removeClass('animation-slideDown')
.addClass('animation-bounceOutUp')
2015-11-19 16:52:44 +01:00
.on('animationend webkitAnimationEnd oAnimationEnd', function(){
2015-11-28 01:19:31 +01:00
$('body').removeClass('has-search-open');
2015-11-19 16:52:44 +01:00
});
searchpop.addClass('hide');
}
};
app = {
init: function() {
_private.searchShow();
2015-11-20 22:30:58 +01:00
_private.searchResultsShow();
2015-11-19 16:52:44 +01:00
_private.searchHide();
}
};
return app;
})(document, window);