2018-09-11 20:32:47 +02:00
|
|
|
import Vue, { VNode } from 'vue';
|
2018-08-05 12:20:26 +02:00
|
|
|
import { length } from 'stringz';
|
2018-11-20 21:11:00 +01:00
|
|
|
import { Node } from '../../../../../mfm/parser';
|
2018-06-20 18:21:57 +02:00
|
|
|
import parse from '../../../../../mfm/parse';
|
2018-03-31 14:41:08 +02:00
|
|
|
import MkUrl from './url.vue';
|
2018-09-11 20:32:47 +02:00
|
|
|
import { concat } from '../../../../../prelude/array';
|
2018-11-16 09:55:48 +01:00
|
|
|
import MkFormula from './formula.vue';
|
|
|
|
import MkGoogle from './google.vue';
|
2018-11-20 21:11:00 +01:00
|
|
|
import { toUnicode } from 'punycode';
|
|
|
|
import syntaxHighlight from '../../../../../mfm/syntax-highlight';
|
|
|
|
|
2018-11-21 17:51:26 +01:00
|
|
|
function getTextCount(tokens: Node[]): number {
|
|
|
|
let count = 0;
|
2018-11-20 21:11:00 +01:00
|
|
|
const extract = (tokens: Node[]) => {
|
|
|
|
tokens.filter(x => x.name === 'text').forEach(x => {
|
2018-11-21 17:51:26 +01:00
|
|
|
count += length(x.props.text);
|
2018-11-20 21:11:00 +01:00
|
|
|
});
|
|
|
|
tokens.filter(x => x.children).forEach(x => {
|
|
|
|
extract(x.children);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
extract(tokens);
|
2018-11-21 17:51:26 +01:00
|
|
|
return count;
|
2018-11-20 21:11:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function getChildrenCount(tokens: Node[]): number {
|
|
|
|
let count = 0;
|
|
|
|
const extract = (tokens: Node[]) => {
|
|
|
|
tokens.filter(x => x.children).forEach(x => {
|
|
|
|
count++;
|
|
|
|
extract(x.children);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
extract(tokens);
|
|
|
|
return count;
|
|
|
|
}
|
2018-03-31 14:41:08 +02:00
|
|
|
|
2018-06-20 12:55:34 +02:00
|
|
|
export default Vue.component('misskey-flavored-markdown', {
|
2018-03-31 14:41:08 +02:00
|
|
|
props: {
|
|
|
|
text: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
ast: {
|
|
|
|
type: [],
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
shouldBreak: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true
|
|
|
|
},
|
2018-11-20 21:11:00 +01:00
|
|
|
author: {
|
|
|
|
type: Object,
|
|
|
|
default: null
|
|
|
|
},
|
2018-03-31 14:41:08 +02:00
|
|
|
i: {
|
|
|
|
type: Object,
|
|
|
|
default: null
|
2018-11-02 00:59:40 +01:00
|
|
|
},
|
|
|
|
customEmojis: {
|
|
|
|
required: false,
|
2018-03-31 14:41:08 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
render(createElement) {
|
2018-11-20 21:11:00 +01:00
|
|
|
if (this.text == null || this.text == '') return;
|
|
|
|
|
|
|
|
let ast: Node[];
|
2018-03-31 14:41:08 +02:00
|
|
|
|
|
|
|
if (this.ast == null) {
|
|
|
|
// Parse text to ast
|
|
|
|
ast = parse(this.text);
|
|
|
|
} else {
|
2018-11-20 21:11:00 +01:00
|
|
|
ast = this.ast as Node[];
|
2018-03-31 14:41:08 +02:00
|
|
|
}
|
|
|
|
|
2018-08-05 12:36:19 +02:00
|
|
|
let bigCount = 0;
|
|
|
|
let motionCount = 0;
|
|
|
|
|
2018-11-20 21:11:00 +01:00
|
|
|
const genEl = (ast: Node[]) => concat(ast.map((token): VNode[] => {
|
|
|
|
switch (token.name) {
|
2018-08-05 12:20:26 +02:00
|
|
|
case 'text': {
|
2018-11-20 21:11:00 +01:00
|
|
|
const text = token.props.text.replace(/(\r\n|\n|\r)/g, '\n');
|
2018-03-31 14:41:08 +02:00
|
|
|
|
|
|
|
if (this.shouldBreak) {
|
|
|
|
const x = text.split('\n')
|
|
|
|
.map(t => t == '' ? [createElement('br')] : [createElement('span', t), createElement('br')]);
|
|
|
|
x[x.length - 1].pop();
|
|
|
|
return x;
|
|
|
|
} else {
|
2018-09-11 20:32:47 +02:00
|
|
|
return [createElement('span', text.replace(/\n/g, ' '))];
|
2018-03-31 14:41:08 +02:00
|
|
|
}
|
2018-08-05 12:20:26 +02:00
|
|
|
}
|
2018-03-31 14:41:08 +02:00
|
|
|
|
2018-08-05 12:20:26 +02:00
|
|
|
case 'bold': {
|
2018-11-20 21:11:00 +01:00
|
|
|
return [createElement('b', genEl(token.children))];
|
2018-08-05 12:20:26 +02:00
|
|
|
}
|
2018-08-03 16:27:37 +02:00
|
|
|
|
2018-12-03 17:28:21 +01:00
|
|
|
case 'strike': {
|
|
|
|
return [createElement('del', genEl(token.children))];
|
|
|
|
}
|
|
|
|
|
2018-12-05 09:39:26 +01:00
|
|
|
case 'italic': {
|
|
|
|
return (createElement as any)('i', {
|
|
|
|
attrs: {
|
|
|
|
style: 'font-style: oblique;'
|
|
|
|
},
|
|
|
|
}, genEl(token.children));
|
|
|
|
}
|
|
|
|
|
2018-08-05 12:20:26 +02:00
|
|
|
case 'big': {
|
2018-08-05 12:36:19 +02:00
|
|
|
bigCount++;
|
2018-11-21 17:51:26 +01:00
|
|
|
const isLong = getTextCount(token.children) > 10 || getChildrenCount(token.children) > 5;
|
2018-08-05 12:36:19 +02:00
|
|
|
const isMany = bigCount > 3;
|
2018-08-03 16:27:37 +02:00
|
|
|
return (createElement as any)('strong', {
|
|
|
|
attrs: {
|
2018-08-05 16:38:31 +02:00
|
|
|
style: `display: inline-block; font-size: ${ isMany ? '100%' : '150%' };`
|
2018-08-03 16:27:37 +02:00
|
|
|
},
|
2018-08-05 12:36:19 +02:00
|
|
|
directives: [this.$store.state.settings.disableAnimatedMfm || isLong || isMany ? {} : {
|
2018-08-03 16:27:37 +02:00
|
|
|
name: 'animate-css',
|
|
|
|
value: { classes: 'tada', iteration: 'infinite' }
|
|
|
|
}]
|
2018-11-20 21:11:00 +01:00
|
|
|
}, genEl(token.children));
|
2018-08-05 12:20:26 +02:00
|
|
|
}
|
2018-03-31 14:41:08 +02:00
|
|
|
|
2018-11-25 05:36:40 +01:00
|
|
|
case 'center': {
|
|
|
|
return [createElement('div', {
|
|
|
|
attrs: {
|
|
|
|
style: 'text-align:center;'
|
|
|
|
}
|
|
|
|
}, genEl(token.children))];
|
|
|
|
}
|
|
|
|
|
2018-08-05 12:20:26 +02:00
|
|
|
case 'motion': {
|
2018-08-05 12:36:19 +02:00
|
|
|
motionCount++;
|
2018-11-21 17:51:26 +01:00
|
|
|
const isLong = getTextCount(token.children) > 10 || getChildrenCount(token.children) > 5;
|
2018-08-05 12:36:19 +02:00
|
|
|
const isMany = motionCount > 3;
|
2018-08-05 05:33:51 +02:00
|
|
|
return (createElement as any)('span', {
|
|
|
|
attrs: {
|
|
|
|
style: 'display: inline-block;'
|
|
|
|
},
|
2018-08-05 12:36:19 +02:00
|
|
|
directives: [this.$store.state.settings.disableAnimatedMfm || isLong || isMany ? {} : {
|
2018-08-05 05:33:51 +02:00
|
|
|
name: 'animate-css',
|
|
|
|
value: { classes: 'rubberBand', iteration: 'infinite' }
|
|
|
|
}]
|
2018-11-20 21:11:00 +01:00
|
|
|
}, genEl(token.children));
|
2018-08-05 12:20:26 +02:00
|
|
|
}
|
2018-08-05 05:33:51 +02:00
|
|
|
|
2018-08-05 12:20:26 +02:00
|
|
|
case 'url': {
|
2018-09-11 20:32:47 +02:00
|
|
|
return [createElement(MkUrl, {
|
2018-11-20 21:11:00 +01:00
|
|
|
key: Math.random(),
|
2018-03-31 14:41:08 +02:00
|
|
|
props: {
|
2018-11-20 21:11:00 +01:00
|
|
|
url: token.props.url,
|
2018-10-08 08:47:41 +02:00
|
|
|
target: '_blank',
|
|
|
|
style: 'color:var(--mfmLink);'
|
2018-03-31 14:41:08 +02:00
|
|
|
}
|
2018-09-11 20:32:47 +02:00
|
|
|
})];
|
2018-08-05 12:20:26 +02:00
|
|
|
}
|
2018-03-31 14:41:08 +02:00
|
|
|
|
2018-08-05 12:20:26 +02:00
|
|
|
case 'link': {
|
2018-09-11 20:32:47 +02:00
|
|
|
return [createElement('a', {
|
2018-03-31 14:41:08 +02:00
|
|
|
attrs: {
|
|
|
|
class: 'link',
|
2018-11-20 21:11:00 +01:00
|
|
|
href: token.props.url,
|
2018-03-31 14:41:08 +02:00
|
|
|
target: '_blank',
|
2018-11-20 21:11:00 +01:00
|
|
|
title: token.props.url,
|
2018-10-08 08:47:41 +02:00
|
|
|
style: 'color:var(--mfmLink);'
|
2018-03-31 14:41:08 +02:00
|
|
|
}
|
2018-11-20 21:11:00 +01:00
|
|
|
}, genEl(token.children))];
|
2018-08-05 12:20:26 +02:00
|
|
|
}
|
2018-03-31 14:41:08 +02:00
|
|
|
|
2018-08-05 12:20:26 +02:00
|
|
|
case 'mention': {
|
2018-11-20 21:11:00 +01:00
|
|
|
const host = token.props.host == null && this.author && this.author.host != null ? this.author.host : token.props.host;
|
|
|
|
const canonical = host != null ? `@${token.props.username}@${toUnicode(host)}` : `@${token.props.username}`;
|
2018-10-20 02:34:34 +02:00
|
|
|
return (createElement as any)('router-link', {
|
2018-11-20 21:11:00 +01:00
|
|
|
key: Math.random(),
|
2018-03-31 14:41:08 +02:00
|
|
|
attrs: {
|
2018-11-20 21:11:00 +01:00
|
|
|
to: `/${canonical}`,
|
|
|
|
// TODO
|
|
|
|
//dataIsMe: (this as any).i && getAcct((this as any).i) == getAcct(token),
|
2018-10-08 08:47:41 +02:00
|
|
|
style: 'color:var(--mfmMention);'
|
2018-03-31 14:41:08 +02:00
|
|
|
},
|
|
|
|
directives: [{
|
|
|
|
name: 'user-preview',
|
2018-11-20 21:11:00 +01:00
|
|
|
value: canonical
|
2018-03-31 14:41:08 +02:00
|
|
|
}]
|
2018-11-20 21:11:00 +01:00
|
|
|
}, canonical);
|
2018-08-05 12:20:26 +02:00
|
|
|
}
|
2018-03-31 14:41:08 +02:00
|
|
|
|
2018-08-05 12:20:26 +02:00
|
|
|
case 'hashtag': {
|
2018-10-20 02:34:34 +02:00
|
|
|
return [createElement('router-link', {
|
2018-11-20 21:11:00 +01:00
|
|
|
key: Math.random(),
|
2018-03-31 14:41:08 +02:00
|
|
|
attrs: {
|
2018-11-20 21:11:00 +01:00
|
|
|
to: `/tags/${encodeURIComponent(token.props.hashtag)}`,
|
2018-10-08 08:47:41 +02:00
|
|
|
style: 'color:var(--mfmHashtag);'
|
2018-03-31 14:41:08 +02:00
|
|
|
}
|
2018-11-20 21:11:00 +01:00
|
|
|
}, `#${token.props.hashtag}`)];
|
2018-08-05 12:20:26 +02:00
|
|
|
}
|
2018-03-31 14:41:08 +02:00
|
|
|
|
2018-11-20 21:11:00 +01:00
|
|
|
case 'blockCode': {
|
2018-09-11 20:32:47 +02:00
|
|
|
return [createElement('pre', {
|
2018-04-19 08:05:39 +02:00
|
|
|
class: 'code'
|
|
|
|
}, [
|
2018-03-31 14:41:08 +02:00
|
|
|
createElement('code', {
|
|
|
|
domProps: {
|
2018-11-20 21:11:00 +01:00
|
|
|
innerHTML: syntaxHighlight(token.props.code)
|
2018-03-31 14:41:08 +02:00
|
|
|
}
|
|
|
|
})
|
2018-09-11 20:32:47 +02:00
|
|
|
])];
|
2018-08-05 12:20:26 +02:00
|
|
|
}
|
2018-03-31 14:41:08 +02:00
|
|
|
|
2018-11-20 21:11:00 +01:00
|
|
|
case 'inlineCode': {
|
2018-09-11 20:32:47 +02:00
|
|
|
return [createElement('code', {
|
2018-03-31 14:41:08 +02:00
|
|
|
domProps: {
|
2018-11-20 21:11:00 +01:00
|
|
|
innerHTML: syntaxHighlight(token.props.code)
|
2018-03-31 14:41:08 +02:00
|
|
|
}
|
2018-09-11 20:32:47 +02:00
|
|
|
})];
|
2018-08-05 12:20:26 +02:00
|
|
|
}
|
2018-03-31 14:41:08 +02:00
|
|
|
|
2018-08-05 12:20:26 +02:00
|
|
|
case 'quote': {
|
2018-03-31 14:41:08 +02:00
|
|
|
if (this.shouldBreak) {
|
2018-09-11 20:32:47 +02:00
|
|
|
return [createElement('div', {
|
2018-03-31 14:41:08 +02:00
|
|
|
attrs: {
|
|
|
|
class: 'quote'
|
|
|
|
}
|
2018-11-20 21:11:00 +01:00
|
|
|
}, genEl(token.children))];
|
2018-03-31 14:41:08 +02:00
|
|
|
} else {
|
2018-09-11 20:32:47 +02:00
|
|
|
return [createElement('span', {
|
2018-03-31 14:41:08 +02:00
|
|
|
attrs: {
|
|
|
|
class: 'quote'
|
|
|
|
}
|
2018-11-20 21:11:00 +01:00
|
|
|
}, genEl(token.children))];
|
2018-03-31 14:41:08 +02:00
|
|
|
}
|
2018-08-05 12:20:26 +02:00
|
|
|
}
|
2018-03-31 14:41:08 +02:00
|
|
|
|
2018-08-05 12:20:26 +02:00
|
|
|
case 'title': {
|
2018-09-11 20:32:47 +02:00
|
|
|
return [createElement('div', {
|
2018-04-19 08:05:39 +02:00
|
|
|
attrs: {
|
|
|
|
class: 'title'
|
|
|
|
}
|
2018-11-20 21:11:00 +01:00
|
|
|
}, genEl(token.children))];
|
2018-08-05 12:20:26 +02:00
|
|
|
}
|
2018-04-19 08:05:39 +02:00
|
|
|
|
2018-08-05 12:20:26 +02:00
|
|
|
case 'emoji': {
|
2018-11-09 00:13:34 +01:00
|
|
|
const customEmojis = (this.$root.getMetaSync() || { emojis: [] }).emojis || [];
|
2018-11-05 03:19:40 +01:00
|
|
|
return [createElement('mk-emoji', {
|
2018-11-20 21:11:00 +01:00
|
|
|
key: Math.random(),
|
2018-11-05 12:49:02 +01:00
|
|
|
attrs: {
|
2018-11-20 21:11:00 +01:00
|
|
|
emoji: token.props.emoji,
|
|
|
|
name: token.props.name
|
2018-11-05 12:49:02 +01:00
|
|
|
},
|
|
|
|
props: {
|
2018-11-05 19:57:02 +01:00
|
|
|
customEmojis: this.customEmojis || customEmojis
|
2018-11-05 12:49:02 +01:00
|
|
|
}
|
2018-11-05 03:19:40 +01:00
|
|
|
})];
|
2018-08-05 12:20:26 +02:00
|
|
|
}
|
2018-03-31 14:41:08 +02:00
|
|
|
|
2018-11-16 09:03:52 +01:00
|
|
|
case 'math': {
|
2018-11-16 09:55:48 +01:00
|
|
|
//const MkFormula = () => import('./formula.vue').then(m => m.default);
|
2018-11-16 09:03:52 +01:00
|
|
|
return [createElement(MkFormula, {
|
2018-11-20 21:11:00 +01:00
|
|
|
key: Math.random(),
|
2018-11-16 09:03:52 +01:00
|
|
|
props: {
|
2018-11-20 21:11:00 +01:00
|
|
|
formula: token.props.formula
|
2018-11-16 09:03:52 +01:00
|
|
|
}
|
|
|
|
})];
|
|
|
|
}
|
|
|
|
|
2018-08-05 12:20:26 +02:00
|
|
|
case 'search': {
|
2018-11-16 09:55:48 +01:00
|
|
|
//const MkGoogle = () => import('./google.vue').then(m => m.default);
|
2018-09-11 20:32:47 +02:00
|
|
|
return [createElement(MkGoogle, {
|
2018-11-20 21:11:00 +01:00
|
|
|
key: Math.random(),
|
2018-04-21 11:59:16 +02:00
|
|
|
props: {
|
2018-11-20 21:11:00 +01:00
|
|
|
q: token.props.query
|
2018-04-21 11:59:16 +02:00
|
|
|
}
|
2018-09-11 20:32:47 +02:00
|
|
|
})];
|
2018-08-05 12:20:26 +02:00
|
|
|
}
|
2018-04-21 11:59:16 +02:00
|
|
|
|
2018-08-05 12:20:26 +02:00
|
|
|
default: {
|
2018-11-20 21:11:00 +01:00
|
|
|
console.log('unknown ast type:', token.name);
|
2018-09-11 20:32:47 +02:00
|
|
|
|
|
|
|
return [];
|
2018-08-05 12:20:26 +02:00
|
|
|
}
|
2018-03-31 14:41:08 +02:00
|
|
|
}
|
|
|
|
}));
|
|
|
|
|
2018-11-20 21:11:00 +01:00
|
|
|
// Parse ast to DOM
|
|
|
|
return createElement('span', genEl(ast));
|
2018-03-31 14:41:08 +02:00
|
|
|
}
|
|
|
|
});
|