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';
|
2019-01-30 06:51:30 +01:00
|
|
|
import { MfmForest } from '../../../../../mfm/types';
|
2019-01-30 08:56:27 +01:00
|
|
|
import { parse, parsePlain } from '../../../../../mfm/parse';
|
2018-03-31 14:41:08 +02:00
|
|
|
import MkUrl from './url.vue';
|
2018-12-12 05:06:05 +01:00
|
|
|
import MkMention from './mention.vue';
|
2018-12-08 17:00:03 +01:00
|
|
|
import { concat, sum } from '../../../../../prelude/array';
|
2018-11-16 09:55:48 +01:00
|
|
|
import MkFormula from './formula.vue';
|
2019-01-27 06:34:52 +01:00
|
|
|
import MkCode from './code.vue';
|
2018-11-16 09:55:48 +01:00
|
|
|
import MkGoogle from './google.vue';
|
2019-05-24 12:19:43 +02:00
|
|
|
import { host, url } from '../../../config';
|
2018-12-20 11:41:04 +01:00
|
|
|
import { preorderF, countNodesF } from '../../../../../prelude/tree';
|
2018-11-20 21:11:00 +01:00
|
|
|
|
2018-12-20 11:41:04 +01:00
|
|
|
function sumTextsLength(ts: MfmForest): number {
|
|
|
|
const textNodes = preorderF(ts).filter(n => n.type === 'text');
|
|
|
|
return sum(textNodes.map(x => length(x.props.text)));
|
2018-11-20 21:11:00 +01:00
|
|
|
}
|
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
|
|
|
|
},
|
|
|
|
shouldBreak: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true
|
|
|
|
},
|
2018-12-06 02:02:04 +01:00
|
|
|
plainText: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
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,
|
2019-02-17 15:41:47 +01:00
|
|
|
},
|
|
|
|
isNote: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true
|
|
|
|
},
|
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;
|
|
|
|
|
2019-01-30 07:27:54 +01:00
|
|
|
const ast = (this.plainText ? parsePlain : parse)(this.text);
|
2018-03-31 14:41:08 +02:00
|
|
|
|
2018-08-05 12:36:19 +02:00
|
|
|
let bigCount = 0;
|
|
|
|
let motionCount = 0;
|
|
|
|
|
2018-12-20 11:41:04 +01:00
|
|
|
const genEl = (ast: MfmForest) => concat(ast.map((token): VNode[] => {
|
|
|
|
switch (token.node.type) {
|
2018-08-05 12:20:26 +02:00
|
|
|
case 'text': {
|
2018-12-20 11:41:04 +01:00
|
|
|
const text = token.node.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++;
|
2019-01-27 14:04:50 +01:00
|
|
|
const isLong = sumTextsLength(token.children) > 15 || countNodesF(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-12-05 12:11:54 +01:00
|
|
|
case 'small': {
|
2019-01-31 04:24:21 +01:00
|
|
|
return [createElement('small', {
|
|
|
|
attrs: {
|
|
|
|
style: 'opacity: 0.7;'
|
|
|
|
},
|
|
|
|
}, genEl(token.children))];
|
2018-12-05 12:11:54 +01: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++;
|
2019-01-27 14:04:50 +01:00
|
|
|
const isLong = sumTextsLength(token.children) > 15 || countNodesF(token.children) > 5;
|
|
|
|
const isMany = motionCount > 5;
|
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
|
|
|
|
2019-01-27 08:18:04 +01:00
|
|
|
case 'spin': {
|
|
|
|
motionCount++;
|
2019-01-31 04:24:14 +01:00
|
|
|
const isLong = sumTextsLength(token.children) > 10 || countNodesF(token.children) > 5;
|
2019-01-27 14:04:50 +01:00
|
|
|
const isMany = motionCount > 5;
|
2019-01-27 11:32:35 +01:00
|
|
|
const direction =
|
|
|
|
token.node.props.attr == 'left' ? 'reverse' :
|
|
|
|
token.node.props.attr == 'alternate' ? 'alternate' :
|
|
|
|
'normal';
|
|
|
|
const style = (this.$store.state.settings.disableAnimatedMfm || isLong || isMany)
|
|
|
|
? ''
|
|
|
|
: `animation: spin 1.5s linear infinite; animation-direction: ${direction};`;
|
2019-01-27 08:18:04 +01:00
|
|
|
return (createElement as any)('span', {
|
|
|
|
attrs: {
|
2019-01-27 11:32:35 +01:00
|
|
|
style: 'display: inline-block;' + style
|
2019-01-27 08:31:00 +01:00
|
|
|
},
|
|
|
|
}, genEl(token.children));
|
|
|
|
}
|
|
|
|
|
2019-01-27 11:12:45 +01:00
|
|
|
case 'jump': {
|
|
|
|
motionCount++;
|
2019-01-31 04:24:14 +01:00
|
|
|
const isLong = sumTextsLength(token.children) > 30 || countNodesF(token.children) > 5;
|
2019-01-27 14:04:50 +01:00
|
|
|
const isMany = motionCount > 5;
|
2019-01-27 11:12:45 +01:00
|
|
|
return (createElement as any)('span', {
|
|
|
|
attrs: {
|
|
|
|
style: (this.$store.state.settings.disableAnimatedMfm || isLong || isMany) ? 'display: inline-block;' : 'display: inline-block; animation: jump 0.75s linear infinite;'
|
|
|
|
},
|
|
|
|
}, genEl(token.children));
|
|
|
|
}
|
|
|
|
|
2019-01-27 08:31:00 +01:00
|
|
|
case 'flip': {
|
|
|
|
return (createElement as any)('span', {
|
|
|
|
attrs: {
|
|
|
|
style: 'display: inline-block; transform: scaleX(-1);'
|
2019-01-27 08:18:04 +01:00
|
|
|
},
|
|
|
|
}, genEl(token.children));
|
|
|
|
}
|
|
|
|
|
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-12-20 11:41:04 +01:00
|
|
|
url: token.node.props.url,
|
2019-05-13 19:50:23 +02:00
|
|
|
rel: 'nofollow noopener',
|
2019-05-24 12:19:43 +02:00
|
|
|
...(token.node.props.url.startsWith(url) ? {} : {
|
|
|
|
target: '_blank'
|
|
|
|
})
|
2018-12-30 01:15:56 +01:00
|
|
|
},
|
|
|
|
attrs: {
|
2018-12-30 01:21:07 +01:00
|
|
|
style: 'color:var(--mfmUrl);'
|
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-12-20 11:41:04 +01:00
|
|
|
href: token.node.props.url,
|
2019-05-13 19:50:23 +02:00
|
|
|
rel: 'nofollow noopener',
|
2018-03-31 14:41:08 +02:00
|
|
|
target: '_blank',
|
2018-12-20 11:41:04 +01:00
|
|
|
title: token.node.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-12-12 05:06:05 +01:00
|
|
|
return [createElement(MkMention, {
|
2018-11-20 21:11:00 +01:00
|
|
|
key: Math.random(),
|
2018-12-12 05:06:05 +01:00
|
|
|
props: {
|
2018-12-20 11:41:04 +01:00
|
|
|
host: (token.node.props.host == null && this.author && this.author.host != null ? this.author.host : token.node.props.host) || host,
|
|
|
|
username: token.node.props.username
|
2018-12-12 05:06:05 +01: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 '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: {
|
2019-02-17 15:41:47 +01:00
|
|
|
to: this.isNote ? `/tags/${encodeURIComponent(token.node.props.hashtag)}` : `/explore/tags/${encodeURIComponent(token.node.props.hashtag)}`,
|
2018-10-08 08:47:41 +02:00
|
|
|
style: 'color:var(--mfmHashtag);'
|
2018-03-31 14:41:08 +02:00
|
|
|
}
|
2018-12-20 11:41:04 +01:00
|
|
|
}, `#${token.node.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': {
|
2019-01-27 06:34:52 +01:00
|
|
|
return [createElement(MkCode, {
|
|
|
|
key: Math.random(),
|
|
|
|
props: {
|
|
|
|
code: token.node.props.code,
|
|
|
|
lang: token.node.props.lang,
|
|
|
|
}
|
|
|
|
})];
|
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': {
|
2019-01-27 06:34:52 +01:00
|
|
|
return [createElement(MkCode, {
|
|
|
|
key: Math.random(),
|
|
|
|
props: {
|
|
|
|
code: token.node.props.code,
|
|
|
|
lang: token.node.props.lang,
|
|
|
|
inline: true
|
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-12-20 11:41:04 +01:00
|
|
|
emoji: token.node.props.emoji,
|
|
|
|
name: token.node.props.name
|
2018-11-05 12:49:02 +01:00
|
|
|
},
|
|
|
|
props: {
|
2018-12-06 02:02:04 +01:00
|
|
|
customEmojis: this.customEmojis || customEmojis,
|
|
|
|
normal: this.plainText
|
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
|
|
|
|
2019-01-25 15:08:06 +01:00
|
|
|
case 'mathInline': {
|
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: {
|
2019-01-25 15:08:06 +01:00
|
|
|
formula: token.node.props.formula,
|
|
|
|
block: false
|
|
|
|
}
|
|
|
|
})];
|
|
|
|
}
|
|
|
|
|
|
|
|
case 'mathBlock': {
|
|
|
|
//const MkFormula = () => import('./formula.vue').then(m => m.default);
|
|
|
|
return [createElement(MkFormula, {
|
|
|
|
key: Math.random(),
|
|
|
|
props: {
|
|
|
|
formula: token.node.props.formula,
|
|
|
|
block: true
|
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-12-20 11:41:04 +01:00
|
|
|
q: token.node.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-12-20 11:41:04 +01:00
|
|
|
console.log('unknown ast type:', token.node.type);
|
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
|
|
|
}
|
|
|
|
});
|