2020-10-17 13:12:00 +02:00
|
|
|
import { VNode, defineComponent, h } from 'vue';
|
2021-04-02 03:36:11 +02:00
|
|
|
import * as mfm from 'mfm-js';
|
2021-03-23 09:30:14 +01:00
|
|
|
import MkUrl from '@client/components/global/url.vue';
|
|
|
|
import MkLink from '@client/components/link.vue';
|
|
|
|
import MkMention from '@client/components/mention.vue';
|
|
|
|
import MkEmoji from '@client/components/global/emoji.vue';
|
|
|
|
import { concat } from '@client/../prelude/array';
|
|
|
|
import MkFormula from '@client/components/formula.vue';
|
|
|
|
import MkCode from '@client/components/code.vue';
|
|
|
|
import MkGoogle from '@client/components/google.vue';
|
2021-09-22 15:09:23 +02:00
|
|
|
import MkSparkle from '@client/components/sparkle.vue';
|
2021-03-23 09:30:14 +01:00
|
|
|
import MkA from '@client/components/global/a.vue';
|
|
|
|
import { host } from '@client/config';
|
2021-11-01 15:47:13 +01:00
|
|
|
import { fnNameList } from '@/mfm/fn-name-list';
|
2018-03-31 14:41:08 +02:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2018-03-31 14:41:08 +02:00
|
|
|
props: {
|
|
|
|
text: {
|
|
|
|
type: String,
|
|
|
|
required: true
|
|
|
|
},
|
2019-07-05 17:46:00 +02:00
|
|
|
plain: {
|
2018-03-31 14:41:08 +02:00
|
|
|
type: Boolean,
|
2019-07-05 17:46:00 +02:00
|
|
|
default: false
|
2018-03-31 14:41:08 +02:00
|
|
|
},
|
2019-07-05 17:46:00 +02:00
|
|
|
nowrap: {
|
2018-12-06 02:02:04 +01:00
|
|
|
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
|
|
|
},
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
render() {
|
2018-11-20 21:11:00 +01:00
|
|
|
if (this.text == null || this.text == '') return;
|
|
|
|
|
2021-11-01 15:47:13 +01:00
|
|
|
const ast = (this.plain ? mfm.parsePlain : mfm.parse)(this.text, { fnNameList });
|
2018-03-31 14:41:08 +02:00
|
|
|
|
2021-01-03 04:51:50 +01:00
|
|
|
const validTime = (t: string | null | undefined) => {
|
|
|
|
if (t == null) return null;
|
|
|
|
return t.match(/^[0-9.]+s$/) ? t : null;
|
|
|
|
};
|
|
|
|
|
2021-04-02 03:36:11 +02:00
|
|
|
const genEl = (ast: mfm.MfmNode[]) => concat(ast.map((token): VNode[] => {
|
|
|
|
switch (token.type) {
|
2018-08-05 12:20:26 +02:00
|
|
|
case 'text': {
|
2021-04-02 03:36:11 +02:00
|
|
|
const text = token.props.text.replace(/(\r\n|\n|\r)/g, '\n');
|
2018-03-31 14:41:08 +02:00
|
|
|
|
2019-07-05 17:46:00 +02:00
|
|
|
if (!this.plain) {
|
2021-04-15 05:37:58 +02:00
|
|
|
const res = [];
|
|
|
|
for (const t of text.split('\n')) {
|
|
|
|
res.push(h('br'));
|
|
|
|
res.push(t);
|
|
|
|
}
|
|
|
|
res.shift();
|
|
|
|
return res;
|
2018-03-31 14:41:08 +02:00
|
|
|
} else {
|
2020-10-17 13:12:00 +02:00
|
|
|
return [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': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return [h('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': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return [h('del', genEl(token.children))];
|
2018-12-03 17:28:21 +01:00
|
|
|
}
|
|
|
|
|
2018-12-05 09:39:26 +01:00
|
|
|
case 'italic': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return h('i', {
|
|
|
|
style: 'font-style: oblique;'
|
2018-12-05 09:39:26 +01:00
|
|
|
}, genEl(token.children));
|
|
|
|
}
|
|
|
|
|
2020-11-07 15:41:21 +01:00
|
|
|
case 'fn': {
|
2021-04-02 03:36:11 +02:00
|
|
|
// TODO: CSSを文字列で組み立てていくと token.props.args.~~~ 経由でCSSインジェクションできるのでよしなにやる
|
2020-11-07 15:41:21 +01:00
|
|
|
let style;
|
2021-04-02 03:36:11 +02:00
|
|
|
switch (token.props.name) {
|
2020-11-07 15:41:21 +01:00
|
|
|
case 'tada': {
|
2020-12-19 02:55:52 +01:00
|
|
|
style = `font-size: 150%;` + (this.$store.state.animatedMfm ? 'animation: tada 1s linear infinite both;' : '');
|
2020-11-07 15:41:21 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'jelly': {
|
2021-04-02 03:36:11 +02:00
|
|
|
const speed = validTime(token.props.args.speed) || '1s';
|
2020-12-19 02:55:52 +01:00
|
|
|
style = (this.$store.state.animatedMfm ? `animation: mfm-rubberBand ${speed} linear infinite both;` : '');
|
2020-11-07 15:41:21 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'twitch': {
|
2021-04-02 03:36:11 +02:00
|
|
|
const speed = validTime(token.props.args.speed) || '0.5s';
|
2020-12-19 02:55:52 +01:00
|
|
|
style = this.$store.state.animatedMfm ? `animation: mfm-twitch ${speed} ease infinite;` : '';
|
2020-11-07 15:41:21 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'shake': {
|
2021-04-02 03:36:11 +02:00
|
|
|
const speed = validTime(token.props.args.speed) || '0.5s';
|
2020-12-19 02:55:52 +01:00
|
|
|
style = this.$store.state.animatedMfm ? `animation: mfm-shake ${speed} ease infinite;` : '';
|
2020-11-07 15:41:21 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'spin': {
|
|
|
|
const direction =
|
2021-04-02 03:36:11 +02:00
|
|
|
token.props.args.left ? 'reverse' :
|
|
|
|
token.props.args.alternate ? 'alternate' :
|
2020-11-07 15:41:21 +01:00
|
|
|
'normal';
|
|
|
|
const anime =
|
2021-04-02 03:36:11 +02:00
|
|
|
token.props.args.x ? 'mfm-spinX' :
|
|
|
|
token.props.args.y ? 'mfm-spinY' :
|
2020-11-07 15:41:21 +01:00
|
|
|
'mfm-spin';
|
2021-04-02 03:36:11 +02:00
|
|
|
const speed = validTime(token.props.args.speed) || '1.5s';
|
2020-12-19 02:55:52 +01:00
|
|
|
style = this.$store.state.animatedMfm ? `animation: ${anime} ${speed} linear infinite; animation-direction: ${direction};` : '';
|
2020-11-07 15:41:21 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'jump': {
|
2020-12-19 02:55:52 +01:00
|
|
|
style = this.$store.state.animatedMfm ? 'animation: mfm-jump 0.75s linear infinite;' : '';
|
2020-11-07 15:41:21 +01:00
|
|
|
break;
|
|
|
|
}
|
2020-11-08 09:08:51 +01:00
|
|
|
case 'bounce': {
|
2020-12-19 02:55:52 +01:00
|
|
|
style = this.$store.state.animatedMfm ? 'animation: mfm-bounce 0.75s linear infinite; transform-origin: center bottom;' : '';
|
2020-11-08 09:08:51 +01:00
|
|
|
break;
|
|
|
|
}
|
2020-11-07 15:41:21 +01:00
|
|
|
case 'flip': {
|
|
|
|
const transform =
|
2021-04-02 03:36:11 +02:00
|
|
|
(token.props.args.h && token.props.args.v) ? 'scale(-1, -1)' :
|
|
|
|
token.props.args.v ? 'scaleY(-1)' :
|
2020-11-07 15:41:21 +01:00
|
|
|
'scaleX(-1)';
|
|
|
|
style = `transform: ${transform};`;
|
|
|
|
break;
|
|
|
|
}
|
2020-12-30 18:51:51 +01:00
|
|
|
case 'x2': {
|
|
|
|
style = `font-size: 200%;`;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'x3': {
|
|
|
|
style = `font-size: 400%;`;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'x4': {
|
|
|
|
style = `font-size: 600%;`;
|
|
|
|
break;
|
|
|
|
}
|
2020-12-31 11:42:23 +01:00
|
|
|
case 'font': {
|
|
|
|
const family =
|
2021-04-02 03:36:11 +02:00
|
|
|
token.props.args.serif ? 'serif' :
|
|
|
|
token.props.args.monospace ? 'monospace' :
|
|
|
|
token.props.args.cursive ? 'cursive' :
|
|
|
|
token.props.args.fantasy ? 'fantasy' :
|
|
|
|
token.props.args.emoji ? 'emoji' :
|
|
|
|
token.props.args.math ? 'math' :
|
2020-12-31 11:42:23 +01:00
|
|
|
null;
|
|
|
|
if (family) style = `font-family: ${family};`;
|
|
|
|
break;
|
|
|
|
}
|
2020-12-30 18:51:51 +01:00
|
|
|
case 'blur': {
|
2020-12-30 19:02:09 +01:00
|
|
|
return h('span', {
|
|
|
|
class: '_mfm_blur_',
|
|
|
|
}, genEl(token.children));
|
2020-12-30 18:51:51 +01:00
|
|
|
}
|
2021-08-05 14:55:41 +02:00
|
|
|
case 'rainbow': {
|
|
|
|
style = this.$store.state.animatedMfm ? 'animation: mfm-rainbow 1s linear infinite;' : '';
|
|
|
|
break;
|
|
|
|
}
|
2021-09-22 15:09:23 +02:00
|
|
|
case 'sparkle': {
|
|
|
|
if (!this.$store.state.animatedMfm) {
|
|
|
|
return genEl(token.children);
|
|
|
|
}
|
|
|
|
let count = token.props.args.count ? parseInt(token.props.args.count) : 10;
|
|
|
|
if (count > 100) {
|
|
|
|
count = 100;
|
|
|
|
}
|
|
|
|
const speed = token.props.args.speed ? parseFloat(token.props.args.speed) : 1;
|
|
|
|
return h(MkSparkle, {
|
|
|
|
count, speed,
|
|
|
|
}, genEl(token.children));
|
|
|
|
}
|
2020-11-07 15:41:21 +01:00
|
|
|
}
|
2020-11-09 14:32:01 +01:00
|
|
|
if (style == null) {
|
2021-10-19 17:55:38 +02:00
|
|
|
return h('span', {}, ['$[', token.props.name, ' ', ...genEl(token.children), ']']);
|
2020-11-09 14:32:01 +01:00
|
|
|
} else {
|
|
|
|
return h('span', {
|
|
|
|
style: 'display: inline-block;' + style,
|
|
|
|
}, 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': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return [h('small', {
|
|
|
|
style: 'opacity: 0.7;'
|
2019-01-31 04:24:21 +01:00
|
|
|
}, genEl(token.children))];
|
2018-12-05 12:11:54 +01:00
|
|
|
}
|
|
|
|
|
2018-11-25 05:36:40 +01:00
|
|
|
case 'center': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return [h('div', {
|
|
|
|
style: 'text-align:center;'
|
2018-11-25 05:36:40 +01:00
|
|
|
}, genEl(token.children))];
|
|
|
|
}
|
|
|
|
|
2018-08-05 12:20:26 +02:00
|
|
|
case 'url': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return [h(MkUrl, {
|
2018-11-20 21:11:00 +01:00
|
|
|
key: Math.random(),
|
2021-04-02 03:36:11 +02:00
|
|
|
url: token.props.url,
|
2020-10-17 13:12:00 +02:00
|
|
|
rel: 'nofollow noopener',
|
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': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return [h(MkLink, {
|
2020-02-09 19:48:45 +01:00
|
|
|
key: Math.random(),
|
2021-04-02 03:36:11 +02:00
|
|
|
url: token.props.url,
|
2020-10-17 13:12:00 +02:00
|
|
|
rel: 'nofollow noopener',
|
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': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return [h(MkMention, {
|
2018-11-20 21:11:00 +01:00
|
|
|
key: Math.random(),
|
2021-04-02 03:36:11 +02:00
|
|
|
host: (token.props.host == null && this.author && this.author.host != null ? this.author.host : token.props.host) || host,
|
|
|
|
username: token.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': {
|
2020-10-24 18:21:41 +02:00
|
|
|
return [h(MkA, {
|
2018-11-20 21:11:00 +01:00
|
|
|
key: Math.random(),
|
2021-04-02 03:36:11 +02:00
|
|
|
to: this.isNote ? `/tags/${encodeURIComponent(token.props.hashtag)}` : `/explore/tags/${encodeURIComponent(token.props.hashtag)}`,
|
2020-10-17 13:12:00 +02:00
|
|
|
style: 'color:var(--hashtag);'
|
2021-04-02 03:36:11 +02: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': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return [h(MkCode, {
|
2019-01-27 06:34:52 +01:00
|
|
|
key: Math.random(),
|
2021-04-02 03:36:11 +02:00
|
|
|
code: token.props.code,
|
|
|
|
lang: token.props.lang,
|
2019-01-27 06:34:52 +01: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': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return [h(MkCode, {
|
2019-01-27 06:34:52 +01:00
|
|
|
key: Math.random(),
|
2021-04-02 03:36:11 +02:00
|
|
|
code: token.props.code,
|
2020-10-17 13:12:00 +02:00
|
|
|
inline: true
|
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': {
|
2020-10-17 13:12:00 +02:00
|
|
|
if (!this.nowrap) {
|
|
|
|
return [h('div', {
|
|
|
|
class: 'quote'
|
2018-11-20 21:11:00 +01:00
|
|
|
}, genEl(token.children))];
|
2018-03-31 14:41:08 +02:00
|
|
|
} else {
|
2020-10-17 13:12:00 +02:00
|
|
|
return [h('span', {
|
|
|
|
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
|
|
|
|
2021-04-02 03:36:11 +02:00
|
|
|
case 'emojiCode': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return [h(MkEmoji, {
|
2018-11-20 21:11:00 +01:00
|
|
|
key: Math.random(),
|
2021-04-02 03:36:11 +02:00
|
|
|
emoji: `:${token.props.name}:`,
|
|
|
|
customEmojis: this.customEmojis,
|
|
|
|
normal: this.plain
|
|
|
|
})];
|
|
|
|
}
|
|
|
|
|
|
|
|
case 'unicodeEmoji': {
|
|
|
|
return [h(MkEmoji, {
|
|
|
|
key: Math.random(),
|
|
|
|
emoji: token.props.emoji,
|
2020-10-17 13:12:00 +02:00
|
|
|
customEmojis: this.customEmojis,
|
|
|
|
normal: this.plain
|
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': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return [h(MkFormula, {
|
2018-11-20 21:11:00 +01:00
|
|
|
key: Math.random(),
|
2021-04-02 03:36:11 +02:00
|
|
|
formula: token.props.formula,
|
2020-10-17 13:12:00 +02:00
|
|
|
block: false
|
2019-01-25 15:08:06 +01:00
|
|
|
})];
|
|
|
|
}
|
|
|
|
|
|
|
|
case 'mathBlock': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return [h(MkFormula, {
|
2019-01-25 15:08:06 +01:00
|
|
|
key: Math.random(),
|
2021-04-02 03:36:11 +02:00
|
|
|
formula: token.props.formula,
|
2020-10-17 13:12:00 +02:00
|
|
|
block: true
|
2018-11-16 09:03:52 +01:00
|
|
|
})];
|
|
|
|
}
|
|
|
|
|
2018-08-05 12:20:26 +02:00
|
|
|
case 'search': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return [h(MkGoogle, {
|
2018-11-20 21:11:00 +01:00
|
|
|
key: Math.random(),
|
2021-04-02 03:36:11 +02:00
|
|
|
q: token.props.query
|
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: {
|
2021-04-02 03:36:11 +02:00
|
|
|
console.error('unrecognized ast type:', token.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
|
2020-10-17 13:12:00 +02:00
|
|
|
return h('span', genEl(ast));
|
2018-03-31 14:41:08 +02:00
|
|
|
}
|
|
|
|
});
|