2020-10-17 13:12:00 +02:00
|
|
|
import { VNode, defineComponent, h } from 'vue';
|
2020-05-31 05:57:21 +02:00
|
|
|
import { MfmForest } from '../../mfm/prelude';
|
2020-01-29 20:37:25 +01:00
|
|
|
import { parse, parsePlain } from '../../mfm/parse';
|
2018-03-31 14:41:08 +02:00
|
|
|
import MkUrl from './url.vue';
|
2020-02-09 19:48:45 +01:00
|
|
|
import MkLink from './link.vue';
|
2018-12-12 05:06:05 +01:00
|
|
|
import MkMention from './mention.vue';
|
2020-10-17 13:12:00 +02:00
|
|
|
import MkEmoji from './emoji.vue';
|
2020-01-29 20:37:25 +01:00
|
|
|
import { concat } 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';
|
2020-10-24 18:21:41 +02:00
|
|
|
import MkA from './ui/a.vue';
|
2020-10-17 13:12:00 +02:00
|
|
|
import { host } from '@/config';
|
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;
|
|
|
|
|
2019-07-05 17:46:00 +02:00
|
|
|
const ast = (this.plain ? parsePlain : parse)(this.text);
|
2018-03-31 14:41:08 +02:00
|
|
|
|
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
|
|
|
|
2019-07-05 17:46:00 +02:00
|
|
|
if (!this.plain) {
|
2018-03-31 14:41:08 +02:00
|
|
|
const x = text.split('\n')
|
2020-10-17 13:12:00 +02:00
|
|
|
.map(t => t == '' ? [h('br')] : [t, h('br')]);
|
2018-03-31 14:41:08 +02:00
|
|
|
x[x.length - 1].pop();
|
|
|
|
return x;
|
|
|
|
} 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));
|
|
|
|
}
|
|
|
|
|
2018-08-05 12:20:26 +02:00
|
|
|
case 'big': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return h('strong', {
|
|
|
|
style: `display: inline-block; font-size: 150%;` + (this.$store.state.device.animatedMfm ? 'animation: anime-tada 1s linear infinite both;' : ''),
|
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': {
|
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 'motion': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return h('span', {
|
|
|
|
style: 'display: inline-block;' + (this.$store.state.device.animatedMfm ? 'animation: anime-rubberBand 1s linear infinite both;' : ''),
|
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': {
|
2019-01-27 11:32:35 +01:00
|
|
|
const direction =
|
|
|
|
token.node.props.attr == 'left' ? 'reverse' :
|
|
|
|
token.node.props.attr == 'alternate' ? 'alternate' :
|
|
|
|
'normal';
|
2020-02-13 15:20:12 +01:00
|
|
|
const style = this.$store.state.device.animatedMfm
|
2020-10-17 13:12:00 +02:00
|
|
|
? `animation: anime-spin 1.5s linear infinite; animation-direction: ${direction};` : '';
|
|
|
|
return h('span', {
|
|
|
|
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': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return h('span', {
|
|
|
|
style: this.$store.state.device.animatedMfm ? 'display: inline-block; animation: anime-jump 0.75s linear infinite;' : 'display: inline-block;'
|
2019-01-27 11:12:45 +01:00
|
|
|
}, genEl(token.children));
|
|
|
|
}
|
|
|
|
|
2019-01-27 08:31:00 +01:00
|
|
|
case 'flip': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return h('span', {
|
|
|
|
style: 'display: inline-block; transform: scaleX(-1);'
|
2019-01-27 08:18:04 +01:00
|
|
|
}, genEl(token.children));
|
|
|
|
}
|
|
|
|
|
2020-11-02 07:16:37 +01:00
|
|
|
case 'twitch': {
|
|
|
|
return h('span', {
|
|
|
|
style: this.$store.state.device.animatedMfm ? 'display: inline-block; animation: anime-twitch 0.5s ease infinite;' : 'display: inline-block;'
|
|
|
|
}, genEl(token.children));
|
|
|
|
}
|
|
|
|
|
2020-11-02 07:37:42 +01:00
|
|
|
case 'shake': {
|
|
|
|
return h('span', {
|
|
|
|
style: this.$store.state.device.animatedMfm ? 'display: inline-block; animation: anime-shake 0.5s ease infinite;' : 'display: inline-block;'
|
|
|
|
}, 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(),
|
2020-10-17 13:12:00 +02:00
|
|
|
url: token.node.props.url,
|
|
|
|
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(),
|
2020-10-17 13:12:00 +02:00
|
|
|
url: token.node.props.url,
|
|
|
|
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(),
|
2020-10-17 13:12:00 +02: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': {
|
2020-10-24 18:21:41 +02:00
|
|
|
return [h(MkA, {
|
2018-11-20 21:11:00 +01:00
|
|
|
key: Math.random(),
|
2020-10-17 13:12:00 +02:00
|
|
|
to: this.isNote ? `/tags/${encodeURIComponent(token.node.props.hashtag)}` : `/explore/tags/${encodeURIComponent(token.node.props.hashtag)}`,
|
|
|
|
style: 'color:var(--hashtag);'
|
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': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return [h(MkCode, {
|
2019-01-27 06:34:52 +01:00
|
|
|
key: Math.random(),
|
2020-10-17 13:12:00 +02:00
|
|
|
code: token.node.props.code,
|
|
|
|
lang: token.node.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(),
|
2020-10-17 13:12:00 +02:00
|
|
|
code: token.node.props.code,
|
|
|
|
lang: token.node.props.lang,
|
|
|
|
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
|
|
|
|
2018-08-05 12:20:26 +02:00
|
|
|
case 'title': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return [h('div', {
|
|
|
|
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': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return [h(MkEmoji, {
|
2018-11-20 21:11:00 +01:00
|
|
|
key: Math.random(),
|
2020-10-17 13:12:00 +02:00
|
|
|
emoji: token.node.props.emoji,
|
|
|
|
name: token.node.props.name,
|
|
|
|
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(),
|
2020-10-17 13:12:00 +02:00
|
|
|
formula: token.node.props.formula,
|
|
|
|
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(),
|
2020-10-17 13:12:00 +02:00
|
|
|
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': {
|
2020-10-17 13:12:00 +02:00
|
|
|
return [h(MkGoogle, {
|
2018-11-20 21:11:00 +01:00
|
|
|
key: Math.random(),
|
2020-10-17 13:12:00 +02:00
|
|
|
q: token.node.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: {
|
2020-10-17 13:12:00 +02:00
|
|
|
console.error('unrecognized 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
|
2020-10-17 13:12:00 +02:00
|
|
|
return h('span', genEl(ast));
|
2018-03-31 14:41:08 +02:00
|
|
|
}
|
|
|
|
});
|