-
Notifications
You must be signed in to change notification settings - Fork 29
/
inlineDisqussions.js
291 lines (235 loc) · 7.93 KB
/
inlineDisqussions.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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
/*
* inlineDisqussions
* By Tsachi Shlidor ( @shlidor )
* Inspired by http://mystrd.at/articles/multiple-disqus-threads-on-one-page/
*
* USAGE:
*
* disqus_shortname = 'your_disqus_shortname';
* $(document).ready(function() {
* $("p").inlineDisqussions(options);
* });
*
* See https://github.com/tsi/inlineDisqussions for more info.
*/
// Disqus global vars.
var disqus_shortname;
var disqus_identifier;
var disqus_url;
(function($) {
var settings = {};
$.fn.extend({
inlineDisqussions: function(options) {
// Set up defaults
var defaults = {
identifier: 'disqussion',
displayCount: true,
highlighted: false,
position: 'right',
background: 'white',
maxWidth: 9999
};
// Overwrite default options with user provided ones.
settings = $.extend({}, defaults, options);
// Append #disqus_thread to body if it doesn't exist yet.
if ($('#disqussions_wrapper').length === 0) {
$('<div id="disqussions_wrapper"></div>').appendTo($('body'));
}
if ($('#disqus_thread').length === 0) {
$('<div id="disqus_thread"></div>').appendTo('#disqussions_wrapper');
}
else {
mainThreadHandler();
}
if (settings.highlighted) {
$('<div id="disqussions_overlay"></div>').appendTo($('body'));
}
// Attach a discussion to each paragraph.
$(this).each(function(i) {
disqussionNotesHandler(i, $(this));
});
// Display comments count.
if (settings.displayCount) {
loadDisqusCounter();
}
// Hide the discussion.
$('html').click(function(event) {
if($(event.target).parents('#disqussions_wrapper, .main-disqussion-link-wrp').length === 0) {
hideDisqussion();
}
});
}
});
var disqussionNotesHandler = function(i, node) {
var identifier;
// You can force a specific identifier by adding an attribute to the paragraph.
if (node.attr('data-disqus-identifier')) {
identifier = node.attr('data-disqus-identifier');
}
else {
while ($('[data-disqus-identifier="' + window.location.pathname + settings.identifier + '-' + i + '"]').length > 0) {
i++;
}
identifier = window.location.pathname + settings.identifier + '-' + i;
}
// Create the discussion note.
var cls = settings.highlighted ? 'disqussion-link disqussion-highlight' : 'disqussion-link';
var a = $('<a class="' + cls + '" />')
.attr('href', window.location.pathname + settings.identifier + '-' + i + '#disqus_thread')
.attr('data-disqus-identifier', identifier)
.attr('data-disqus-url', window.location.href + settings.identifier + '-' + i)
.attr('data-disqus-position', settings.position)
.text('+')
.wrap('<div class="disqussion" />')
.parent()
.appendTo('#disqussions_wrapper');
a.css({
'top': node.offset().top,
'left': settings.position == 'right' ? node.offset().left + node.outerWidth() : node.offset().left - a.outerWidth()
});
node.attr('data-disqus-identifier', identifier).mouseover(function() {
a.addClass("hovered");
}).mouseout(function() {
a.removeClass("hovered");
});
// Load the relative discussion.
a.delegate('a.disqussion-link', "click", function(e) {
e.preventDefault();
if ($(this).is('.active')) {
e.stopPropagation();
hideDisqussion();
}
else {
loadDisqus($(this), function(source) {
relocateDisqussion(source);
});
}
});
};
var mainThreadHandler = function() {
// Create the discussion note.
if ($('a.main-disqussion-link').length === 0) {
var a = $('<a class="main-disqussion-link" />')
.attr('href', window.location.pathname + '#disqus_thread')
.text('Comments')
.wrap('<h2 class="main-disqussion-link-wrp" />')
.parent()
.insertBefore('#disqus_thread');
// Load the relative discussion.
a.delegate('a.main-disqussion-link', "click", function(e) {
e.preventDefault();
if ($(this).is('.active')) {
e.stopPropagation();
}
else {
loadDisqus($(this), function(source) {
relocateDisqussion(source, true);
});
}
});
}
};
var loadDisqus = function(source, callback) {
disqus_identifier = source.attr('data-disqus-identifier');
disqus_url = source.attr('data-disqus-url');
if (window.DISQUS) {
// If Disqus exists, call it's reset method with new parameters.
DISQUS.reset({
reload: true,
config: function () {
this.page.identifier = disqus_identifier;
this.page.url = disqus_url;
}
});
} else {
// Append the Disqus embed script to <head>.
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = '//' + disqus_shortname + '.disqus.com/embed.js';
$('head').append(s);
}
// Add 'active' class.
$('a.disqussion-link, a.main-disqussion-link').removeClass('active').filter(source).addClass('active');
// Highlight
if (source.is('.disqussion-highlight')) {
highlightDisqussion(disqus_identifier);
}
callback(source);
};
var loadDisqusCounter = function() {
// Append the Disqus count script to <head>.
if (!$('script[src*="disqus.com/count.js"]').length) {
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = '//' + disqus_shortname + '.disqus.com/count.js';
$('head').append(s);
var limit = 0;
var timer = setInterval(function() {
limit++;
// After script is loaded, show bubles with numbers.
if (typeof(DISQUSWIDGETS) === 'object') {
$('.disqussion-link').filter(function() {
return $(this).text().match(/[1-9]/g);
}).addClass("has-comments");
clearInterval(timer);
}
// Don't run forever.
if (limit > 10) {
clearInterval(timer);
}
}, 1000)
}
};
var relocateDisqussion = function(el, main) {
// Move the discussion to the right position.
var css = {};
if (main === true) {
$('#disqus_thread').removeClass("positioned");
css = {
'position': 'static',
'width': 'auto'
};
}
else {
$('#disqus_thread').addClass("positioned");
css = {
'position': 'absolute'
};
}
css.backgroundColor = settings.background;
var animate = {};
if (el.attr('data-disqus-position') == 'right') {
animate = {
"top": el.offset().top,
"left": el.offset().left + el.outerWidth(),
"width": Math.min(parseInt($(window).width() - (el.offset().left + el.outerWidth()), 10), settings.maxWidth)
};
}
else if (el.attr('data-disqus-position') == 'left') {
animate = {
"top": el.offset().top,
"left": el.offset().left - Math.min(parseInt(el.offset().left, 10), settings.maxWidth),
"width": Math.min(parseInt(el.offset().left, 10), settings.maxWidth)
};
}
$('#disqus_thread').stop().fadeIn('fast').animate(animate, "fast").css(css);
};
var hideDisqussion = function() {
$('#disqus_thread').stop().fadeOut('fast');
$('a.disqussion-link').removeClass('active');
// settings.highlighted
$('#disqussions_overlay').fadeOut('fast');
$('body').removeClass('disqussion-highlight');
$('[data-disqus-identifier]').removeClass('disqussion-highlighted');
};
var highlightDisqussion = function(identifier) {
$('body').addClass('disqussion-highlight');
$('#disqussions_overlay').fadeIn('fast');
$('[data-disqus-identifier]')
.removeClass('disqussion-highlighted')
.filter('[data-disqus-identifier="' + identifier + '"]:not(".disqussion-link")')
.addClass('disqussion-highlighted');
};
})(jQuery);