diff --git a/public/src/app.js b/public/src/app.js
index 89be5c0a2c..bf5065d6c6 100644
--- a/public/src/app.js
+++ b/public/src/app.js
@@ -33,6 +33,8 @@ var socket,
// use unique alert_id to have multiple alerts visible at a time, use the same alert_id to fade out the current instance
// type : error, success, info, warning/notify
+ // title = bolded title text
+ // message = alert message content
// timeout default = permanent
// location : notification_window (default) or content
app.alert = function(params) {
@@ -41,7 +43,7 @@ var socket,
strong = document.createElement('strong'),
p = document.createElement('p');
- var alert_id = 'alert_button_' + ((alert_id) ? alert_id : new Date().getTime());
+ var alert_id = 'alert_button_' + ((params.alert_id) ? params.alert_id : new Date().getTime());
jQuery('#'+alert_id).fadeOut(500, function() {
this.remove();
diff --git a/public/templates/category.tpl b/public/templates/category.tpl
index 7f01999c9c..99d54f8140 100644
--- a/public/templates/category.tpl
+++ b/public/templates/category.tpl
@@ -10,7 +10,7 @@
-
-
{topics.title}
+ {topics.title}
Posted {topics.relativeTime} ago by {topics.username}. {topics.post_count} posts.
diff --git a/public/templates/topic.tpl b/public/templates/topic.tpl
index ca07094fd2..b5e007e58f 100644
--- a/public/templates/topic.tpl
+++ b/public/templates/topic.tpl
@@ -163,25 +163,25 @@
socket.on('event:topic_locked', function(data) {
if (data.tid === tid && data.status === 'ok') {
- set_locked_state(true);
+ set_locked_state(true, 1);
}
});
socket.on('event:topic_unlocked', function(data) {
if (data.tid === tid && data.status === 'ok') {
- set_locked_state(false);
+ set_locked_state(false, 1);
}
});
socket.on('event:topic_pinned', function(data) {
if (data.tid === tid && data.status === 'ok') {
- set_pinned_state(true);
+ set_pinned_state(true, 1);
}
});
socket.on('event:topic_unpinned', function(data) {
if (data.tid === tid && data.status === 'ok') {
- set_pinned_state(false);
+ set_pinned_state(false, 1);
}
});
@@ -241,7 +241,7 @@
});
}
- function set_locked_state(locked) {
+ function set_locked_state(locked, alert) {
var threadReplyBtn = document.getElementById('post_reply'),
postReplyBtns = document.querySelectorAll('#post-container .post_reply'),
quoteBtns = document.querySelectorAll('#post-container .quote'),
@@ -250,6 +250,7 @@
numReplyBtns = postReplyBtns.length,
lockThreadEl = document.getElementById('lock_thread'),
x;
+
if (locked === true) {
lockThreadEl.innerHTML = ' Unlock Thread';
threadReplyBtn.disabled = true;
@@ -261,6 +262,16 @@
deleteBtns[x].style.display = 'none';
}
+ if (alert) {
+ app.alert({
+ 'alert_id': 'thread_lock',
+ type: 'success',
+ title: 'Thread Locked',
+ message: 'Thread has been successfully locked',
+ timeout: 5000
+ });
+ }
+
thread_state.locked = '1';
} else {
lockThreadEl.innerHTML = ' Lock Thread';
@@ -273,6 +284,16 @@
deleteBtns[x].style.display = 'inline-block';
}
+ if (alert) {
+ app.alert({
+ 'alert_id': 'thread_lock',
+ type: 'success',
+ title: 'Thread Unlocked',
+ message: 'Thread has been successfully unlocked',
+ timeout: 5000
+ });
+ }
+
thread_state.locked = '0';
}
}
@@ -303,15 +324,33 @@
}
}
- function set_pinned_state(pinned) {
+ function set_pinned_state(pinned, alert) {
var pinEl = document.getElementById('pin_thread');
if (pinned) {
pinEl.innerHTML = ' Unpin Thread';
+ if (alert) {
+ app.alert({
+ 'alert_id': 'thread_pin',
+ type: 'success',
+ title: 'Thread Pinned',
+ message: 'Thread has been successfully pinned',
+ timeout: 5000
+ });
+ }
thread_state.pinned = '1';
} else {
pinEl.innerHTML = ' Pin Thread';
+ if (alert) {
+ app.alert({
+ 'alert_id': 'thread_pin',
+ type: 'success',
+ title: 'Thread Unpinned',
+ message: 'Thread has been successfully unpinned',
+ timeout: 5000
+ });
+ }
thread_state.pinned = '0';
}
diff --git a/src/posts.js b/src/posts.js
index c16b7cb770..ae74b0ed57 100644
--- a/src/posts.js
+++ b/src/posts.js
@@ -44,6 +44,7 @@ var RDB = require('./redis.js'),
'category_slug':thread_data.category_slug,
'locked': parseInt(thread_data.locked) || 0,
'deleted': parseInt(thread_data.deleted) || 0,
+ 'pinned': parseInt(thread_data.pinned) || 0,
'topic_id': tid,
'expose_tools': viewer_data.reputation >= config.privilege_thresholds.manage_thread ? 1 : 0,
'posts': posts
@@ -80,6 +81,7 @@ var RDB = require('./redis.js'),
.get('tid:' + tid + ':category_name')
.get('tid:' + tid + ':category_slug')
.get('tid:' + tid + ':deleted')
+ .get('tid:' + tid + ':pinned')
.exec(function(err, replies) {
post_data = {
pid: pids,
@@ -91,10 +93,11 @@ var RDB = require('./redis.js'),
thread_data = {
topic_name: replies[4],
- locked: replies[5],
+ locked: replies[5] || 0,
category_name: replies[6],
category_slug: replies[7],
- deleted: replies[8] || 0
+ deleted: replies[8] || 0,
+ pinned: replies[9] || 0
};
user.getMultipleUserFields(post_data.uid, ['username','reputation','picture'], function(user_details){
diff --git a/src/topics.js b/src/topics.js
index 1b2044a4d6..94b36a872c 100644
--- a/src/topics.js
+++ b/src/topics.js
@@ -27,16 +27,18 @@ var RDB = require('./redis.js'),
slug = [],
postcount = [],
locked = [],
- deleted = [];
+ deleted = [],
+ pinned = [];
for (var i=0, ii=tids.length; i