Created
October 26, 2010 04:59
-
-
Save rmurphey/646354 to your computer and use it in GitHub Desktop.
JS for pubsub screencast
This file contains hidden or 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
/* traditional way */ | |
(function($) { | |
$(document).ready(function() { | |
$('#searchForm').submit(function(e) { | |
var term = $.trim($(this).find('input[name="q"]').val()); | |
if (!term) { return; } | |
$.getJSON( | |
'http://query.yahooapis.com/v1/public/yql?format=json&callback=', | |
{ q : getQuery(term) }, | |
function(resp) { | |
var results = resp.query.results.result, | |
tmpl = '<li><p><a href="{{url}}">{{title}}</a></p></li>', | |
html; | |
if (!results.length) { return; } | |
html = $.map(results, function(result) { | |
return tmpl | |
.replace('{{url}}', result.url) | |
.replace('{{title}}', result.title) | |
}).join(''); | |
$('#results').html(html); | |
} | |
); | |
e.preventDefault(); | |
}); | |
function getQuery(term) { | |
return 'select title,url from search.news where query="' + term + '"'; | |
} | |
}); | |
})(jQuery); | |
/* pubsub way */ | |
(function($) { | |
$.subscribe('/search/term', function(term) { | |
$.getJSON( | |
'http://query.yahooapis.com/v1/public/yql?format=json&callback=', | |
{ q : getQuery(term) }, | |
function(resp) { | |
if (!resp.query.results.result.length) { return; } | |
$.publish('/search/results', [ resp.query.results.result ]); | |
} | |
); | |
}); | |
// look ma, a new feature! | |
$.subscribe('/search/term', function(term) { | |
$('#searches').append('<li>' + term + '</li>'); | |
}); | |
$.subscribe('/search/results', function(results) { | |
var tmpl = '<li><p><a href="{{url}}">{{title}}</a></p></li>', | |
html = $.map(results, function(result) { | |
return tmpl | |
.replace('{{url}}', result.url) | |
.replace('{{title}}', result.title) | |
}).join(''); | |
$('#results').html(html); | |
}); | |
function getQuery(term) { | |
return 'select title,url from search.news where query="' + term + '"'; | |
} | |
$(document).ready(function() { | |
$('#searchForm').submit(function(e) { | |
e.preventDefault(); | |
var term = $.trim($(this).find('input[name="q"]').val()); | |
if (!term) { return; } | |
$.publish('/search/term', [ term ]); | |
}); | |
}); | |
})(jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
$.fn.bind
and$.fn.trigger
do far more work that$.publish
and$.subscribe
do. that said, they can be used to achieve the same effect.