mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
a78df3d57d
Feature to allow each imported post to be created using a different discourse username. A possible use case of this is a multi-author blog where discourse is being used to track comments. This feature allows authors to receive updates when someone leaves a comment on one of their articles because each of the imported posts can be created using the discourse username of the author.
68 lines
1.7 KiB
JavaScript
68 lines
1.7 KiB
JavaScript
/* global discourseUrl */
|
|
/* global discourseUserName */
|
|
/* global discourseEmbedUrl */
|
|
(function() {
|
|
var comments = document.getElementById('discourse-comments'),
|
|
iframe = document.createElement('iframe');
|
|
if (typeof discourseUserName === 'undefined') {
|
|
iframe.src =
|
|
[ discourseUrl,
|
|
'embed/comments?embed_url=',
|
|
encodeURIComponent(discourseEmbedUrl)
|
|
].join('');
|
|
} else {
|
|
iframe.src =
|
|
[ discourseUrl,
|
|
'embed/comments?embed_url=',
|
|
encodeURIComponent(discourseEmbedUrl),
|
|
'&discourse_username=',
|
|
discourseUserName
|
|
].join('');
|
|
}
|
|
iframe.id = 'discourse-embed-frame';
|
|
iframe.width = "100%";
|
|
iframe.frameBorder = "0";
|
|
iframe.scrolling = "no";
|
|
comments.appendChild(iframe);
|
|
|
|
// Thanks http://amendsoft-javascript.blogspot.ca/2010/04/find-x-and-y-coordinate-of-html-control.html
|
|
function findPosY(obj)
|
|
{
|
|
var top = 0;
|
|
if(obj.offsetParent)
|
|
{
|
|
while(1)
|
|
{
|
|
top += obj.offsetTop;
|
|
if(!obj.offsetParent)
|
|
break;
|
|
obj = obj.offsetParent;
|
|
}
|
|
}
|
|
else if(obj.y)
|
|
{
|
|
top += obj.y;
|
|
}
|
|
return top;
|
|
}
|
|
|
|
function postMessageReceived(e) {
|
|
if (!e) { return; }
|
|
if (discourseUrl.indexOf(e.origin) === -1) { return; }
|
|
|
|
if (e.data) {
|
|
if (e.data.type === 'discourse-resize' && e.data.height) {
|
|
iframe.height = e.data.height + "px";
|
|
}
|
|
|
|
if (e.data.type === 'discourse-scroll' && e.data.top) {
|
|
// find iframe offset
|
|
var destY = findPosY(iframe) + e.data.top;
|
|
window.scrollTo(0, destY);
|
|
}
|
|
}
|
|
}
|
|
window.addEventListener('message', postMessageReceived, false);
|
|
|
|
})();
|