egirlskey/src/client/components/mfm.ts

296 lines
6.9 KiB
TypeScript
Raw Normal View History

2018-09-11 18:32:47 +00:00
import Vue, { VNode } from 'vue';
import { MfmForest } from '../../mfm/types';
import { parse, parsePlain } from '../../mfm/parse';
import MkUrl from './url.vue';
2018-12-12 04:06:05 +00:00
import MkMention from './mention.vue';
import { concat } from '../../prelude/array';
2018-11-16 08:55:48 +00:00
import MkFormula from './formula.vue';
import MkCode from './code.vue';
2018-11-16 08:55:48 +00:00
import MkGoogle from './google.vue';
import { host } from '../config';
2018-06-20 10:55:34 +00:00
export default Vue.component('misskey-flavored-markdown', {
props: {
text: {
type: String,
required: true
},
2019-07-05 15:46:00 +00:00
plain: {
type: Boolean,
2019-07-05 15:46:00 +00:00
default: false
},
2019-07-05 15:46:00 +00:00
nowrap: {
type: Boolean,
default: false
},
author: {
type: Object,
default: null
},
i: {
type: Object,
default: null
},
customEmojis: {
required: false,
},
isNote: {
type: Boolean,
default: true
},
},
render(createElement) {
if (this.text == null || this.text == '') return;
2019-07-05 15:46:00 +00:00
const ast = (this.plain ? parsePlain : parse)(this.text);
const genEl = (ast: MfmForest) => concat(ast.map((token): VNode[] => {
switch (token.node.type) {
case 'text': {
const text = token.node.props.text.replace(/(\r\n|\n|\r)/g, '\n');
2019-07-05 15:46:00 +00:00
if (!this.plain) {
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 18:32:47 +00:00
return [createElement('span', text.replace(/\n/g, ' '))];
}
}
case 'bold': {
return [createElement('b', genEl(token.children))];
}
2018-08-03 14:27:37 +00:00
case 'strike': {
return [createElement('del', genEl(token.children))];
}
2018-12-05 08:39:26 +00:00
case 'italic': {
return (createElement as any)('i', {
attrs: {
style: 'font-style: oblique;'
},
}, genEl(token.children));
}
case 'big': {
2018-08-03 14:27:37 +00:00
return (createElement as any)('strong', {
attrs: {
2020-02-05 12:38:19 +00:00
style: `display: inline-block; font-size: 150%;`
2018-08-03 14:27:37 +00:00
},
directives: [this.$store.state.settings.disableAnimatedMfm ? {} : {
2018-08-03 14:27:37 +00:00
name: 'animate-css',
value: { classes: 'tada', iteration: 'infinite' }
}]
}, genEl(token.children));
}
2018-12-05 11:11:54 +00:00
case 'small': {
2019-01-31 03:24:21 +00:00
return [createElement('small', {
attrs: {
style: 'opacity: 0.7;'
},
}, genEl(token.children))];
2018-12-05 11:11:54 +00:00
}
2018-11-25 04:36:40 +00:00
case 'center': {
return [createElement('div', {
attrs: {
style: 'text-align:center;'
}
}, genEl(token.children))];
}
case 'motion': {
2018-08-05 03:33:51 +00:00
return (createElement as any)('span', {
attrs: {
style: 'display: inline-block;'
},
directives: [this.$store.state.settings.disableAnimatedMfm ? {} : {
2018-08-05 03:33:51 +00:00
name: 'animate-css',
value: { classes: 'rubberBand', iteration: 'infinite' }
}]
}, genEl(token.children));
}
2018-08-05 03:33:51 +00:00
2019-01-27 07:18:04 +00:00
case 'spin': {
2019-01-27 10:32:35 +00:00
const direction =
token.node.props.attr == 'left' ? 'reverse' :
token.node.props.attr == 'alternate' ? 'alternate' :
'normal';
const style = (this.$store.state.settings.disableAnimatedMfm)
2019-01-27 10:32:35 +00:00
? ''
: `animation: spin 1.5s linear infinite; animation-direction: ${direction};`;
2019-01-27 07:18:04 +00:00
return (createElement as any)('span', {
attrs: {
2019-01-27 10:32:35 +00:00
style: 'display: inline-block;' + style
2019-01-27 07:31:00 +00:00
},
}, genEl(token.children));
}
case 'jump': {
return (createElement as any)('span', {
attrs: {
style: (this.$store.state.settings.disableAnimatedMfm) ? 'display: inline-block;' : 'display: inline-block; animation: jump 0.75s linear infinite;'
},
}, genEl(token.children));
}
2019-01-27 07:31:00 +00:00
case 'flip': {
return (createElement as any)('span', {
attrs: {
style: 'display: inline-block; transform: scaleX(-1);'
2019-01-27 07:18:04 +00:00
},
}, genEl(token.children));
}
case 'url': {
2018-09-11 18:32:47 +00:00
return [createElement(MkUrl, {
key: Math.random(),
props: {
url: token.node.props.url,
2019-05-13 17:50:23 +00:00
rel: 'nofollow noopener',
2018-12-30 00:15:56 +00:00
},
2018-09-11 18:32:47 +00:00
})];
}
case 'link': {
2018-09-11 18:32:47 +00:00
return [createElement('a', {
attrs: {
2020-02-08 06:47:16 +00:00
class: 'link _link',
href: token.node.props.url,
2019-05-13 17:50:23 +00:00
rel: 'nofollow noopener',
target: '_blank',
title: token.node.props.url,
}
}, genEl(token.children))];
}
case 'mention': {
2018-12-12 04:06:05 +00:00
return [createElement(MkMention, {
key: Math.random(),
2018-12-12 04:06:05 +00:00
props: {
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 04:06:05 +00:00
}
})];
}
case 'hashtag': {
return [createElement('router-link', {
key: Math.random(),
attrs: {
to: this.isNote ? `/tags/${encodeURIComponent(token.node.props.hashtag)}` : `/explore/tags/${encodeURIComponent(token.node.props.hashtag)}`,
style: 'color:var(--hashtag);'
}
}, `#${token.node.props.hashtag}`)];
}
case 'blockCode': {
return [createElement(MkCode, {
key: Math.random(),
props: {
code: token.node.props.code,
lang: token.node.props.lang,
}
})];
}
case 'inlineCode': {
return [createElement(MkCode, {
key: Math.random(),
props: {
code: token.node.props.code,
lang: token.node.props.lang,
inline: true
}
2018-09-11 18:32:47 +00:00
})];
}
case 'quote': {
if (this.shouldBreak) {
2018-09-11 18:32:47 +00:00
return [createElement('div', {
attrs: {
class: 'quote'
}
}, genEl(token.children))];
} else {
2018-09-11 18:32:47 +00:00
return [createElement('span', {
attrs: {
class: 'quote'
}
}, genEl(token.children))];
}
}
case 'title': {
2018-09-11 18:32:47 +00:00
return [createElement('div', {
2018-04-19 06:05:39 +00:00
attrs: {
class: 'title'
}
}, genEl(token.children))];
}
2018-04-19 06:05:39 +00:00
case 'emoji': {
2018-11-08 23:13:34 +00:00
const customEmojis = (this.$root.getMetaSync() || { emojis: [] }).emojis || [];
2018-11-05 02:19:40 +00:00
return [createElement('mk-emoji', {
key: Math.random(),
2018-11-05 11:49:02 +00:00
attrs: {
emoji: token.node.props.emoji,
name: token.node.props.name
2018-11-05 11:49:02 +00:00
},
props: {
customEmojis: this.customEmojis || customEmojis,
2019-07-05 15:46:00 +00:00
normal: this.plain
2018-11-05 11:49:02 +00:00
}
2018-11-05 02:19:40 +00:00
})];
}
case 'mathInline': {
2018-11-16 08:55:48 +00:00
//const MkFormula = () => import('./formula.vue').then(m => m.default);
2018-11-16 08:03:52 +00:00
return [createElement(MkFormula, {
key: Math.random(),
2018-11-16 08:03:52 +00:00
props: {
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 08:03:52 +00:00
}
})];
}
case 'search': {
2018-11-16 08:55:48 +00:00
//const MkGoogle = () => import('./google.vue').then(m => m.default);
2018-09-11 18:32:47 +00:00
return [createElement(MkGoogle, {
key: Math.random(),
2018-04-21 09:59:16 +00:00
props: {
q: token.node.props.query
2018-04-21 09:59:16 +00:00
}
2018-09-11 18:32:47 +00:00
})];
}
2018-04-21 09:59:16 +00:00
default: {
console.log('unknown ast type:', token.node.type);
2018-09-11 18:32:47 +00:00
return [];
}
}
}));
// Parse ast to DOM
return createElement('span', genEl(ast));
}
});