Initial commit 🍀

This commit is contained in:
syuilo
2016-12-29 07:49:51 +09:00
commit b3f42e62af
405 changed files with 31017 additions and 0 deletions

View File

@ -0,0 +1,17 @@
/**
* Bold
*/
const regexp = /\*\*(.+?)\*\*/;
module.exports = {
test: x => new RegExp('^' + regexp.source).test(x),
parse: text => {
const bold = text.match(new RegExp('^' + regexp.source))[0];
return {
type: 'bold',
content: bold,
bold: bold.substr(2, bold.length - 4)
};
}
};

View File

@ -0,0 +1,23 @@
/**
* Hashtag
*/
module.exports = {
test: (x, i) =>
/^\s#[^\s]+/.test(x) || (i == 0 && /^#[^\s]+/.test(x))
,
parse: text => {
const isHead = text[0] == '#';
const hashtag = text.match(/^\s?#[^\s]+/)[0];
const res = !isHead ? [{
type: 'text',
content: text[0]
}] : [];
res.push({
type: 'hashtag',
content: isHead ? hashtag : hashtag.substr(1),
hashtag: isHead ? hashtag.substr(1) : hashtag.substr(2)
});
return res;
}
};

View File

@ -0,0 +1,17 @@
/**
* Mention
*/
const regexp = /@[a-zA-Z0-9\-]+/;
module.exports = {
test: x => new RegExp('^' + regexp.source).test(x),
parse: text => {
const mention = text.match(new RegExp('^' + regexp.source))[0];
return {
type: 'mention',
content: mention,
username: mention.substr(1)
};
}
};

View File

@ -0,0 +1,16 @@
/**
* URL
*/
const regexp = /https?:\/\/[\w\/:%#@\$&\?!\(\)\[\]~\.=\+\-]+/;
module.exports = {
test: x => new RegExp('^' + regexp.source).test(x),
parse: text => {
const link = text.match(new RegExp('^' + regexp.source))[0];
return {
type: 'link',
content: link
};
}
};

67
src/common/text/index.js Normal file
View File

@ -0,0 +1,67 @@
/**
* Misskey Text Analyzer
*/
const elements = [
require('./elements/bold'),
require('./elements/url'),
require('./elements/mention'),
require('./elements/hashtag')
];
function analyze(source) {
if (source == '') {
return null;
}
const tokens = [];
function push(token) {
if (token != null) {
tokens.push(token);
source = source.substr(token.content.length);
}
}
let i = 0;
// パース
while (source != '') {
const parsed = elements.some(el => {
if (el.test(source, i)) {
let tokens = el.parse(source);
if (!Array.isArray(tokens)) {
tokens = [tokens];
}
tokens.forEach(push);
return true;
}
});
if (!parsed) {
push({
type: 'text',
content: source[0]
});
}
i++;
}
// テキストを纏める
tokens[0] = [tokens[0]];
return tokens.reduce((a, b) => {
if (a[a.length - 1].type == 'text' && b.type == 'text') {
const tail = a.pop();
return a.concat({
type: 'text',
content: tail.content + b.content
});
} else {
return a.concat(b);
}
});
}
module.exports = analyze;