mirror of
https://bitbucket.org/skobkin/chrome_point_plus.git
synced 2024-11-23 10:46:02 +00:00
#97 done. Side panel with "Go to new comment" button.
This commit is contained in:
parent
dc58ac8532
commit
99760d2eb7
|
@ -116,6 +116,12 @@
|
||||||
"option_ajax_comments": {
|
"option_ajax_comments": {
|
||||||
"message": "Send comments via AJAX (CTRL+Enter)"
|
"message": "Send comments via AJAX (CTRL+Enter)"
|
||||||
},
|
},
|
||||||
|
"option_right_panel": {
|
||||||
|
"message": "Right side panel"
|
||||||
|
},
|
||||||
|
"option_right_panel_to_unread": {
|
||||||
|
"message": "\"Go to unread comment\" button"
|
||||||
|
},
|
||||||
"option_fluid_layout": {
|
"option_fluid_layout": {
|
||||||
"message": "Fluid layout"
|
"message": "Fluid layout"
|
||||||
},
|
},
|
||||||
|
|
|
@ -116,6 +116,12 @@
|
||||||
"option_ajax_comments": {
|
"option_ajax_comments": {
|
||||||
"message": "Отправка комментариев через AJAX (CTRL+Enter)"
|
"message": "Отправка комментариев через AJAX (CTRL+Enter)"
|
||||||
},
|
},
|
||||||
|
"option_right_panel": {
|
||||||
|
"message": "Боковая панель справа"
|
||||||
|
},
|
||||||
|
"option_right_panel_to_unread": {
|
||||||
|
"message": "Кнопка \"Перейти к непрочитанному\""
|
||||||
|
},
|
||||||
"option_fluid_layout": {
|
"option_fluid_layout": {
|
||||||
"message": ""Резиновая" вёрстка (растянуть сайт по горизонтали)"
|
"message": ""Резиновая" вёрстка (растянуть сайт по горизонтали)"
|
||||||
},
|
},
|
||||||
|
|
28
chrome_point_plus/css/modules/side_panel.css
Normal file
28
chrome_point_plus/css/modules/side_panel.css
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
#pp-right-panel {
|
||||||
|
width: 32px;
|
||||||
|
position: fixed;
|
||||||
|
top: 50%;
|
||||||
|
right: 3px;
|
||||||
|
opacity: .3;
|
||||||
|
transition: opacity 500ms;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pp-right-panel:hover {
|
||||||
|
opacity: 1;
|
||||||
|
transition: opacity 500ms;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pp-right-panel #pp-go-to-unread {
|
||||||
|
background-image: url("/img/menu-my.png");
|
||||||
|
height: 32px;
|
||||||
|
width: 32px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pp-right-panel span#pp-unread-count {
|
||||||
|
position: relative;
|
||||||
|
top: 7px;
|
||||||
|
left: 11px;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
user-select: none;
|
||||||
|
}
|
|
@ -52,6 +52,45 @@ function PointPlus(ppVersion) {
|
||||||
$('div.secret a').insertAfter('a#menu-recent').css('background-image','url("img/icon-private-inactive.png")');
|
$('div.secret a').insertAfter('a#menu-recent').css('background-image','url("img/icon-private-inactive.png")');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Side panel
|
||||||
|
if (options.is('option_right_panel')) {
|
||||||
|
// Loading side panel CSS
|
||||||
|
messenger.css('css/modules/side_panel.css');
|
||||||
|
|
||||||
|
// Creating side panel
|
||||||
|
var $side_panel = $('<div>').attr({
|
||||||
|
id: 'pp-right-panel'
|
||||||
|
});
|
||||||
|
|
||||||
|
$('body').append($side_panel);
|
||||||
|
|
||||||
|
if (options.is('option_right_panel_to_unread')) {
|
||||||
|
$go_to_unread_block = $('<div>').attr({
|
||||||
|
id: 'pp-go-to-unread',
|
||||||
|
}).click(function() {
|
||||||
|
var $unread_comment = $('.unread').first();
|
||||||
|
|
||||||
|
if ($unread_comment.length > 0) {
|
||||||
|
$('html body').animate({ scrollTop: $unread_comment.offset().top }, 500);
|
||||||
|
$unread_comment.removeClass('unread');
|
||||||
|
// Updating count
|
||||||
|
update_right_panel_unread_count();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$side_panel.append($go_to_unread_block);
|
||||||
|
|
||||||
|
$go_to_unread_link = $('<span>').attr({
|
||||||
|
id: 'pp-unread-count',
|
||||||
|
});
|
||||||
|
|
||||||
|
$go_to_unread_block.append($go_to_unread_link);
|
||||||
|
|
||||||
|
// Updating count
|
||||||
|
update_right_panel_unread_count();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Embedding
|
// Embedding
|
||||||
if (options.is('option_embedding')) {
|
if (options.is('option_embedding')) {
|
||||||
// Load pictures from Booru, Tumblr and some other sites
|
// Load pictures from Booru, Tumblr and some other sites
|
||||||
|
@ -681,6 +720,23 @@ function create_comment_elements(commentData, onCommentCreated) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update undread comments count in right panel
|
||||||
|
*
|
||||||
|
* @param {?object} $span jQuery object of unread count <span>
|
||||||
|
*/
|
||||||
|
function update_right_panel_unread_count($span) {
|
||||||
|
var unread_count = $('.post.unread').length;
|
||||||
|
|
||||||
|
if (typeof $span === 'undefined') {
|
||||||
|
$span = $('#pp-unread-count');
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($span.length > 0) {
|
||||||
|
$span.text(unread_count);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Помечаем непрочитанные посты более видимо чем каким-то баджем
|
// Помечаем непрочитанные посты более видимо чем каким-то баджем
|
||||||
// Эта часть написана @RainbowSpike
|
// Эта часть написана @RainbowSpike
|
||||||
function mark_unread_post() {
|
function mark_unread_post() {
|
||||||
|
|
|
@ -155,6 +155,16 @@
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="option-node">
|
||||||
|
<input type="checkbox" name="option-right-panel" id="option-right-panel">
|
||||||
|
<label for="option-right-panel" data-i18n="option_right_panel"></label>
|
||||||
|
|
||||||
|
<label class="option-node">
|
||||||
|
<input type="checkbox" name="option-right-panel-to-unread">
|
||||||
|
<span data-i18n="option_right_panel_to_unread"></span>
|
||||||
|
</label>
|
||||||
|
</div>
|
||||||
|
|
||||||
<label class="option-node">
|
<label class="option-node">
|
||||||
<input type="checkbox" name="option-fluid-layout">
|
<input type="checkbox" name="option-fluid-layout">
|
||||||
<span data-i18n="option_fluid_layout"></span>
|
<span data-i18n="option_fluid_layout"></span>
|
||||||
|
|
Loading…
Reference in a new issue