forked from 1024--/govnokod.ru-userscripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinfinite_stok.user.js
211 lines (183 loc) · 7.19 KB
/
infinite_stok.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
// ==UserScript==
// @name Бесконечный сток
// @namespace govnokod
// @description Подключает бесконечный сток Борманда к стоку ГК
// @include *://govnokod.ru/comments
// @include *://www.govnokod.ru/comments
// @require https://code.jquery.com/jquery-1.4.min.js
// @version 3.1
// @grant none
// ==/UserScript==
(function($){
function text(t){ return document.createTextNode(t); };
function id(el){
var url = el.attr('href');
if(!url) return;
var m = url.match(/\d+$/);
return m && m[0];
}
function filterInfiniteStok(comments){
var stokPostsElements = $('li.hentry');
var stokPosts = {}, Nstok = 0;
stokPostsElements.each(function(){
var ID = id($(this).find('a.entry-title:first'));
if(ID) stokPosts[ID] = true;
});
return comments.filter(function(comm){
return !(comm.post_id in stokPosts);
});
}
function postInfo(entry){
var UID = entry.user_id;
var PID = entry.post_id;
var PID2 = entry.comment_list_id;
var CID = entry.id;
var postRef = '/' + PID;
var commName = 'comment' + CID;
var commRef = '/' + PID + '#comment' + CID;
var answerRef = PID2 == null ?
commRef :
'/comments/' + PID2 + '/post?replyTo=' + CID;
var userRef = '/user/' + UID;
var userName = entry.user_name;
var time = entry.posted;
var hrtime = (new Date(entry.posted)).toLocaleString();
var avatar = UID == 1 ?
'/files/avatars/guest_28.png' :
'http://www.gravatar.com/avatar/' + entry.user_avatar +
'?default=https%3A%2F%2Fgovnokod.ru%2Ffiles' +
'%2Favatars%2Fnoavatar_28.png&r=pg&size=28';
var commHTML = entry.text;
return $('<li/>', {'class': "hentry"})
.append($('<h2/>', {text: 'Комментарий к ' })
.append($('<a/>', {rel: "bookmark", 'class': "entry-title",
href: postRef, text: 'говнокоду #' + PID})))
.append($('<div/>', {'class': "entry-comments"})
.append($('<ul/>')
.append($('<li/>', {'class': "hcomment"})
.append($('<div/>', {'class': "entry-comment-wrapper"})
.append($('<p/>', {'class': "entry-info"})
.append($('<img/>', {'class': "avatar", src: avatar,
alt: "ava", title: "Аватар"}))
.append($('<strong/>', {'class': "entry-author"})
.append($('<a/>', {href: userRef, text: userName})))
.append($('<abbr/>', {'class': "published",
title: time, text: hrtime}))
.append($('<a/>', {href: commRef, name: commName,
title: "Ссылка на комментарий",
'class': "comment-link", text: '#'})))
.append($('<li/>', {'class': "entry-comment", 'html': commHTML}))
.append($('<a/>', {'class': "answer", href: answerRef,
text: 'Ответить'}))))))
.append($('<div/>', {'class': "show-code"})
.append($('<a/>', {href: '/'+PID, 'class': "show-code-trigger", text: 'Показать код ▼'})
.click(function(){
var $this = $(this);
var $holder = $this.parent().children('.code-holder');
if($holder.css('display') == 'block') {
$this.text('Показать код ▼');
$holder.css('display', '');
} else {
$this.text('Скрыть код ▲');
$holder.css('display', 'block');
if(!$holder.children().length) {
$holder.text('Загружается...');
$.ajax({
url: this.href,
success: function(data){
$holder.text('');
$holder.append($(data).find('li.hentry').children());
},
error: function(){
$holder.text('Ошибка загрузки :(');
}
});
}
}
return false;
}))
.append($('<div/>', {'class': "code-holder"}))
);
;
}
function stokElement(){ return $('ol.posts'); }
function infoBlock(type, color){
return $('<li/>', {'class': "hentry", style: 'background-color: ' + color })
.append($('<h2/>', { text: type, style: 'color: #444' }));
}
function error(t){
return infoBlock('Ошибка', '#fcc').append(text(t));
}
function warning(t){
return infoBlock('Предупреждение', '#ffc').append(text(t));
}
function appendPosts(stok){
// no api_version
// var REQUIRED_VERSION = 2;
// if(stok.api_version != REQUIRED_VERSION) {
// stokElement().append(error('Борманд сменил версию API. Было ' +
// REQUIRED_VERSION + ', стало ' + stok.api_version + '.' +
// ' Надеемся на обратную совместимость.'));
// }
var comments = filterInfiniteStok(stok);
if(comments.length) {
var fragment = document.createDocumentFragment();
if(comments.length >= stok.length)
fragment.appendChild(warning('Возможно, сток порван.')[0]);
for(var i=0; i < comments.length; ++i)
fragment.appendChild(postInfo(comments[i])[0]);
stokElement().append(fragment);
}
return comments.length;
}
var oldestCommentDate = new Date($($('li.hcomment abbr.published').get(18)).attr('title'));
var stub = null, stubCounter = '...';
function onLBClick(event){
$(this).remove();
if(!stub) {
stub = infoBlock('Бесконечный сток', '#cfc')
.append($('<span/>').text('Загружается...'));
stubCounter = '...';
}
stokElement().append(stub);
$.ajax({
url: "http://bormand.gcode.cx/ngk/api/comments?before=" +
oldestCommentDate.toISOString().replace(/\.\d\d\dZ/, 'Z'),
cache: false,
success: function(data){
try {
// if(typeof data === 'string')
// data = JSON.parse(data);
var inserted = appendPosts(data);
oldestCommentDate = new Date(data[18].posted);
if(inserted) {
appendLoadButton('');
} else {
stub.find('span').text('Загружается' + stubCounter);
stubCounter += '.';
onLBClick();
return;
}
} catch(e){
appendLoadButton('Ошибка: ' + e.message);
}
stub.remove();
stub = null;
},
error: function(e){
appendLoadButton('Ошибка загрузки бесконечного стока.');
stub.remove();
}
});
return false;
}
function appendLoadButton(error){
var button = infoBlock('Бесконечный сток', '#cfc');
if(error) button.append($('<span/>', {text: error}));
button.append('<a class="bormand-stok" href="#">' +
'Хочу ещё!</a>');
button.click(onLBClick);
stokElement().append(button);
}
appendLoadButton('');
})(window.jQuery || window.$);