brotherton-erpnext/website/templates/js/blog.js

86 lines
2.2 KiB
JavaScript
Raw Normal View History

// Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
// License: GNU General Public License v3. See license.txt
// js inside blog page
2012-12-17 07:22:43 +00:00
$(document).ready(function() {
// make list of blogs
blog.get_list();
$("#next-page").click(function() {
blog.get_list();
})
2013-03-07 13:21:10 +00:00
if(get_url_arg("by_name")) {
2013-03-11 12:27:57 +00:00
$("#blot-subtitle").html("Posts by " + get_url_arg("by_name")).toggle(true);
2013-03-07 13:21:10 +00:00
}
if(get_url_arg("category")) {
2013-03-11 12:27:57 +00:00
$("#blot-subtitle").html("Posts filed under " + get_url_arg("category")).toggle(true);
}
2012-12-17 07:22:43 +00:00
});
var blog = {
start: 0,
get_list: function() {
$.ajax({
method: "GET",
url: "server.py",
data: {
cmd: "website.helpers.blog.get_blog_list",
2013-03-07 13:21:10 +00:00
start: blog.start,
by: get_url_arg("by"),
category: get_url_arg("category")
2012-12-17 07:22:43 +00:00
},
dataType: "json",
success: function(data) {
2013-03-11 10:42:56 +00:00
$(".progress").toggle(false);
2013-03-07 13:21:10 +00:00
if(data.exc) console.log(data.exc);
2012-12-17 07:22:43 +00:00
blog.render(data.message);
}
});
},
render: function(data) {
var $wrap = $("#blog-list");
$.each(data, function(i, b) {
// comments
if(!b.comments) {
b.comment_text = 'No comments yet.'
} else if (b.comments===1) {
b.comment_text = '1 comment.'
} else {
2012-12-17 07:22:43 +00:00
b.comment_text = b.comments + ' comments.'
2013-03-12 14:56:33 +00:00
}
b.page_name = encodeURIComponent(b.page_name);
2013-03-07 13:21:10 +00:00
$(repl('<div class="row">\
2013-08-21 12:18:08 +00:00
<div class="col-md-1">\
2013-03-07 13:21:10 +00:00
<div class="avatar avatar-medium" style="margin-top: 6px;">\
<img src="%(avatar)s" />\
</div>\
</div>\
2013-08-21 12:18:08 +00:00
<div class="col-md-11">\
2013-03-07 13:21:10 +00:00
<h4><a href="%(page_name)s">%(title)s</a></h4>\
<p>%(content)s</p>\
<p style="color: #aaa; font-size: 90%">\
<a href="blog?by=%(blogger)s&by_name=%(full_name)s">\
%(full_name)s</a> wrote this on %(published)s / %(comment_text)s</p>\
</div>\
</div><hr>', b)).appendTo($wrap);
2012-12-17 07:22:43 +00:00
});
2012-12-19 04:44:59 +00:00
blog.start += (data.length || 0);
2013-03-11 10:42:56 +00:00
if(!data.length || data.length < 20) {
2012-12-19 04:44:59 +00:00
if(blog.start) {
$("#next-page").toggle(false)
2013-05-27 09:17:56 +00:00
.parent().append("<div class='text-muted'>Nothing more to show.</div>");
2012-12-19 04:44:59 +00:00
} else {
$("#next-page").toggle(false)
2013-08-21 12:18:08 +00:00
.parent().append("<div class='alert alert-warning'>No blogs written yet.</div>");
2012-12-19 04:44:59 +00:00
}
} else {
$("#next-page").toggle(true);
2012-12-17 07:22:43 +00:00
}
}
2012-07-12 13:11:12 +00:00
}