2017-06-09 06:02:30 +08:00
|
|
|
import { performEmojiUnescape } from 'pretty-text/emoji';
|
|
|
|
|
|
|
|
const rule = {
|
|
|
|
tag: 'quote',
|
|
|
|
|
2017-11-21 05:28:03 +08:00
|
|
|
before(state, tagInfo) {
|
2017-06-09 06:02:30 +08:00
|
|
|
|
2017-07-22 04:09:27 +08:00
|
|
|
const attrs = tagInfo.attrs;
|
|
|
|
let options = state.md.options.discourse;
|
2017-06-09 06:02:30 +08:00
|
|
|
|
|
|
|
let quoteInfo = attrs['_default'];
|
2017-11-21 05:28:03 +08:00
|
|
|
let username, postNumber, topicId, avatarImg, primaryGroupName, full, displayName;
|
2017-06-09 06:02:30 +08:00
|
|
|
|
|
|
|
if (quoteInfo) {
|
|
|
|
let split = quoteInfo.split(/\,\s*/);
|
|
|
|
username = split[0];
|
|
|
|
|
|
|
|
let i;
|
|
|
|
for(i=1;i<split.length;i++) {
|
|
|
|
if (split[i].indexOf("post:") === 0) {
|
|
|
|
postNumber = parseInt(split[i].substr(5),10);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (split[i].indexOf("topic:") === 0) {
|
|
|
|
topicId = parseInt(split[i].substr(6),10);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-07-14 20:27:28 +08:00
|
|
|
if (/full:\s*true/.test(split[i])) {
|
2017-06-09 06:02:30 +08:00
|
|
|
full = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-03 21:51:40 +08:00
|
|
|
if (options.lookupAvatarByPostNumber) {
|
|
|
|
// client-side, we can retrieve the avatar from the post
|
|
|
|
avatarImg = options.lookupAvatarByPostNumber(postNumber, topicId);
|
|
|
|
} else if (options.lookupAvatar) {
|
|
|
|
// server-side, we need to lookup the avatar from the username
|
|
|
|
avatarImg = options.lookupAvatar(username);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (options.lookupPrimaryUserGroupByPostNumber) {
|
|
|
|
// client-side, we can retrieve the primary user group from the post
|
|
|
|
primaryGroupName = options.lookupPrimaryUserGroupByPostNumber(postNumber, topicId);
|
|
|
|
} else if (options.lookupPrimaryUserGroup) {
|
|
|
|
// server-side, we need to lookup the primary user group from the username
|
|
|
|
primaryGroupName = options.lookupPrimaryUserGroup(username);
|
|
|
|
}
|
2017-06-09 06:02:30 +08:00
|
|
|
|
2017-11-21 05:28:03 +08:00
|
|
|
if (options.formatUsername) {
|
|
|
|
displayName = options.formatUsername(username);
|
|
|
|
} else {
|
|
|
|
displayName = username;
|
|
|
|
}
|
|
|
|
|
2017-11-03 21:51:40 +08:00
|
|
|
let token = state.push('bbcode_open', 'aside', 1);
|
|
|
|
token.attrs = [];
|
|
|
|
|
|
|
|
if (primaryGroupName && primaryGroupName.length !== 0) {
|
|
|
|
token.attrs.push(['class', `quote group-${primaryGroupName}`]);
|
|
|
|
} else {
|
|
|
|
token.attrs.push(['class', 'quote']);
|
|
|
|
}
|
2017-06-09 06:02:30 +08:00
|
|
|
|
|
|
|
if (postNumber) {
|
|
|
|
token.attrs.push(['data-post', postNumber]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (topicId) {
|
|
|
|
token.attrs.push(['data-topic', topicId]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (full) {
|
|
|
|
token.attrs.push(['data-full', 'true']);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (username) {
|
|
|
|
let offTopicQuote = options.topicId &&
|
|
|
|
postNumber &&
|
|
|
|
options.getTopicInfo &&
|
|
|
|
topicId !== options.topicId;
|
|
|
|
|
|
|
|
// on topic quote
|
|
|
|
token = state.push('quote_header_open', 'div', 1);
|
|
|
|
token.attrs = [['class', 'title']];
|
|
|
|
|
|
|
|
token = state.push('quote_controls_open', 'div', 1);
|
|
|
|
token.attrs = [['class', 'quote-controls']];
|
|
|
|
|
|
|
|
token = state.push('quote_controls_close', 'div', -1);
|
|
|
|
|
|
|
|
if (avatarImg) {
|
|
|
|
token = state.push('html_inline', '', 0);
|
|
|
|
token.content = avatarImg;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (offTopicQuote) {
|
|
|
|
const topicInfo = options.getTopicInfo(topicId);
|
|
|
|
if (topicInfo) {
|
|
|
|
var href = topicInfo.href;
|
|
|
|
if (postNumber > 0) { href += "/" + postNumber; }
|
|
|
|
|
|
|
|
let title = topicInfo.title;
|
|
|
|
|
|
|
|
|
|
|
|
if (options.enableEmoji) {
|
|
|
|
title = performEmojiUnescape(topicInfo.title, {
|
|
|
|
getURL: options.getURL, emojiSet: options.emojiSet
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
token = state.push('link_open', 'a', 1);
|
|
|
|
token.attrs = [[ 'href', href ]];
|
|
|
|
token.block = false;
|
|
|
|
|
|
|
|
token = state.push('html_inline', '', 0);
|
|
|
|
token.content = title;
|
|
|
|
|
|
|
|
token = state.push('link_close', 'a', -1);
|
|
|
|
token.block = false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
token = state.push('text', '', 0);
|
2017-11-21 05:28:03 +08:00
|
|
|
token.content = ` ${displayName}:`;
|
2017-06-09 06:02:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
token = state.push('quote_header_close', 'div', -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
token = state.push('bbcode_open', 'blockquote', 1);
|
|
|
|
},
|
|
|
|
|
|
|
|
after: function(state) {
|
|
|
|
state.push('bbcode_close', 'blockquote', -1);
|
|
|
|
state.push('bbcode_close', 'aside', -1);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export function setup(helper) {
|
|
|
|
|
|
|
|
helper.registerOptions((opts, siteSettings) => {
|
|
|
|
opts.enableEmoji = siteSettings.enable_emoji;
|
|
|
|
opts.emojiSet = siteSettings.emoji_set;
|
|
|
|
});
|
|
|
|
|
|
|
|
helper.registerPlugin(md=>{
|
2017-07-18 04:21:47 +08:00
|
|
|
md.block.bbcode.ruler.push('quotes', rule);
|
2017-06-09 06:02:30 +08:00
|
|
|
});
|
2017-10-16 06:34:30 +08:00
|
|
|
|
|
|
|
helper.whiteList(['img[class=avatar]']);
|
2017-11-03 21:51:40 +08:00
|
|
|
helper.whiteList({
|
|
|
|
custom(tag, name, value) {
|
|
|
|
if (tag === 'aside' && name === 'class') {
|
|
|
|
return !!/^quote group\-(.+)$/.exec(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2017-06-09 06:02:30 +08:00
|
|
|
}
|