forked from GitHub/dbot
add initial yearbook feature
This commit is contained in:
parent
9d87fb7b7d
commit
278bc8b93c
@ -21,6 +21,17 @@ var pages = function(dbot) {
|
||||
'profile': profile,
|
||||
'stats': stats.channels,
|
||||
});
|
||||
},
|
||||
|
||||
'/grid/:connection': function(req, res) {
|
||||
var connection = req.params.connection;
|
||||
var profiles = dbot.db.profiles[connection];
|
||||
|
||||
res.render('profile_grid', {
|
||||
'name': dbot.config.name,
|
||||
'connection': connection,
|
||||
'profiles': profiles,
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
|
51
views/profile/profile_grid.jade
Normal file
51
views/profile/profile_grid.jade
Normal file
@ -0,0 +1,51 @@
|
||||
extends ../layout
|
||||
|
||||
block content
|
||||
script(type="text/javascript", src="http://ajax.aspnetcdn.com/ajax/jquery.dataTables/1.9.4/jquery.dataTables.min.js")
|
||||
|
||||
script
|
||||
$(document).ready(function(){
|
||||
// Allowing forcing of string stats data to sort as numeric
|
||||
jQuery.extend( jQuery.fn.dataTableExt.oSort, {
|
||||
"forcenum-pre": function ( a ) {
|
||||
a = a.replace("\,", "");
|
||||
return parseFloat( a );
|
||||
},
|
||||
|
||||
"forcenum-asc": function ( a, b ) {
|
||||
return a - b;
|
||||
},
|
||||
|
||||
"forcenum-desc": function ( a, b ) {
|
||||
return b - a;
|
||||
}
|
||||
} );
|
||||
|
||||
$('.tip').tooltip();
|
||||
$('.data').dataTable({
|
||||
"aoColumnDefs": [
|
||||
{ "sType": "forcenum",
|
||||
"asSorting": [ "desc", "asc" ],
|
||||
"aTargets": [ 1, 2, 3, 4, 5 ] }
|
||||
],
|
||||
"bPaginate": false,
|
||||
"bFilter": false,
|
||||
"bLengthChange": false,
|
||||
"oLanguage": {
|
||||
"sInfo": "",
|
||||
"sInfoEmpty": "",
|
||||
"sInfoFiltered": ""
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
div.page-header.profile_page-header
|
||||
h1
|
||||
#{connection}
|
||||
div.span9
|
||||
each profile, key in profiles
|
||||
if profile.hasOwnProperty('profile') && profile.profile.avatar
|
||||
div.span2
|
||||
a(href='/profile/'+connection+'/'+encodeURIComponent(key))
|
||||
h3= profile.profile.primary
|
||||
img.profile_avatar(src="#{profile.profile.avatar}")
|
@ -7,3 +7,4 @@ block content
|
||||
#modulelinks
|
||||
-each connection in connections
|
||||
a.module(href='/channels/'+connection) #{connection}
|
||||
a.module(href='/grid/'+connection) #{connection} headshots
|
||||
|
Loading…
Reference in New Issue
Block a user