Created
May 25, 2012 03:22
-
-
Save edwardhotchkiss/2785568 to your computer and use it in GitHub Desktop.
Jekyll Live Search with AngularJS (blog)
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
/** | |
* Setup Module with `highlight` filter | |
*/ | |
var JekyllApp = angular.module('JekyllApp', [], function($routeProvider) { | |
}); | |
JekyllApp.filter('highlight', function() { | |
return function(text, filter) { | |
if (filter === undefined) { | |
return text; | |
} else { | |
return text.replace(new RegExp(filter, 'gi'), '<span class="match">$&</span>'); | |
}; | |
}; | |
}); | |
/** | |
* Inject $http Object into our Controller | |
*/ | |
JekyllSearchController.$inject = ['$scope', '$http']; | |
function JekyllSearchController($scope, $http) { | |
var posts = $scope.posts = []; | |
$http.get('/feed.xml').success(function(response) { | |
var feed = angular.element(response); | |
var entries = feed.children('entries'); | |
angular.forEach(entries, function(entry) { | |
var children = angular.element(entry).children(); | |
if (children.length === 5) { | |
posts.push({ | |
title : children[0].innerHTML, | |
url : children[1].href, | |
date : children[2].innerHTML | |
}); | |
}; | |
}); | |
}).error(function() { | |
console.error('xhr issue retreiving your feed!') | |
}); | |
}; |
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
$ git clone [email protected]:edwardhotchkiss/edwardhotchkiss.com.git |
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
leftCurleys: "{{" | |
rightCurleys: "}}" |
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
<script type="text/javascript" src="http://code.angularjs.org/1.0.0rc2/angular-1.0.0rc2.min.js"></script> |
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
<div id="search-container" class="entrance" ng-app="JekyllApp" ng-controller="JekyllSearchController"> | |
<div class="entrance-item"> | |
<h2>Error 404, Engineer Gone Rogue!</h2> | |
<p><input id="searchText" type="search" placeholder="Live Search Posts..." ng-model-instant ng-model="searchText" /> | |
or <a href="mailto:[email protected]">Email Me</a></p> | |
</div> | |
<div class="entrance-item"> | |
<h2>Blog Posts</h2> | |
<ul> | |
<li ng-repeat="post in posts | filter:searchText"> | |
- <span ng-bind-html="post.date | highlight:filterBy"></span> » | |
<a href="{{ site.leftCurleys }} post.url {{ site.rightCurleys }}" ng-bind-html="post.title | highlight:searchText"></a> | |
</li> | |
</ul> | |
</div> | |
</div> |
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
#searchText { | |
line-height:22px; | |
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset; | |
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset; | |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25) inset; | |
border: 1px solid #ccc; | |
color: #999; | |
padding: 6px 15px 6px 15px; | |
-webkit-border-radius:15px; | |
-moz-border-radius: 15px; | |
border-radius: 15px; | |
margin-right: 15px; | |
} | |
.match { | |
background-color: #f9ffa1; | |
-webkit-animation-name: pop; | |
-webkit-animation-duration: 0.3s; | |
-webkit-animation-iteration-count: 1; | |
-webkit-animation-timing-function: ease-in-out; | |
-webkit-border-radius: 3px; | |
-moz-border-radius: 3px; | |
border-radius: 3px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Where is demo link?