iceshrimp-legacy/src/client/app/common/views/components/mfm.ts

322 lines
8.1 KiB
TypeScript
Raw Normal View History

2018-09-11 20:32:47 +02:00
import Vue, { VNode } from 'vue';
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';
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';
import MkCode from './code.vue';
2018-11-16 09:55:48 +01:00
import MkGoogle from './google.vue';
2019-05-25 17:38:26 +02:00
import { host } from '../../../config';
import { preorderF, countNodesF } from '../../../../../prelude/tree';
function sumTextsLength(ts: MfmForest): number {
const textNodes = preorderF(ts).filter(n => n.type === 'text');
return sum(textNodes.map(x => length(x.props.text)));
}
2018-06-20 12:55:34 +02:00
export default Vue.component('misskey-flavored-markdown', {
props: {
text: {
type: String,
required: true
},
shouldBreak: {
type: Boolean,
default: true
},
plainText: {
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-01-30 07:27:54 +01:00
const ast = (this.plainText ? parsePlain : parse)(this.text);
let bigCount = 0;
let motionCount = 0;
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');
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, ' '))];
}
}
case 'bold': {
return [createElement('b', genEl(token.children))];
}
2018-08-03 16:27:37 +02: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));
}
case 'big': {
bigCount++;
2019-01-27 14:04:50 +01:00
const isLong = sumTextsLength(token.children) > 15 || countNodesF(token.children) > 5;
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
},
directives: [this.$store.state.settings.disableAnimatedMfm || isLong || isMany ? {} : {
2018-08-03 16:27:37 +02:00
name: 'animate-css',
value: { classes: 'tada', iteration: 'infinite' }
}]
}, genEl(token.children));
}
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))];
}
case 'motion': {
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;'
},
directives: [this.$store.state.settings.disableAnimatedMfm || isLong || isMany ? {} : {
2018-08-05 05:33:51 +02:00
name: 'animate-css',
value: { classes: 'rubberBand', iteration: 'infinite' }
}]
}, genEl(token.children));
}
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));
}
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;
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));
}
case 'url': {
2018-09-11 20:32:47 +02:00
return [createElement(MkUrl, {
key: Math.random(),
props: {
url: token.node.props.url,
2019-05-13 19:50:23 +02:00
rel: 'nofollow noopener',
2018-12-30 01:15:56 +01:00
},
attrs: {
2018-12-30 01:21:07 +01:00
style: 'color:var(--mfmUrl);'
}
2018-09-11 20:32:47 +02:00
})];
}
case 'link': {
2018-09-11 20:32:47 +02:00
return [createElement('a', {
attrs: {
class: 'link',
href: token.node.props.url,
2019-05-13 19:50:23 +02:00
rel: 'nofollow noopener',
target: '_blank',
title: token.node.props.url,
2018-10-08 08:47:41 +02:00
style: 'color:var(--mfmLink);'
}
}, genEl(token.children))];
}
case 'mention': {
2018-12-12 05:06:05 +01:00
return [createElement(MkMention, {
key: Math.random(),
2018-12-12 05:06:05 +01: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 05:06:05 +01: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)}`,
2018-10-08 08:47:41 +02:00
style: 'color:var(--mfmHashtag);'
}
}, `#${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 20:32:47 +02:00
})];
}
case 'quote': {
if (this.shouldBreak) {
2018-09-11 20:32:47 +02:00
return [createElement('div', {
attrs: {
class: 'quote'
}
}, genEl(token.children))];
} else {
2018-09-11 20:32:47 +02:00
return [createElement('span', {
attrs: {
class: 'quote'
}
}, genEl(token.children))];
}
}
case 'title': {
2018-09-11 20:32:47 +02:00
return [createElement('div', {
2018-04-19 08:05:39 +02:00
attrs: {
class: 'title'
}
}, genEl(token.children))];
}
2018-04-19 08:05:39 +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', {
key: Math.random(),
2018-11-05 12:49:02 +01:00
attrs: {
emoji: token.node.props.emoji,
name: token.node.props.name
2018-11-05 12:49:02 +01:00
},
props: {
customEmojis: this.customEmojis || customEmojis,
normal: this.plainText
2018-11-05 12:49:02 +01:00
}
2018-11-05 03:19:40 +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, {
key: Math.random(),
2018-11-16 09:03:52 +01: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 09:03:52 +01: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, {
key: Math.random(),
2018-04-21 11:59:16 +02:00
props: {
q: token.node.props.query
2018-04-21 11:59:16 +02:00
}
2018-09-11 20:32:47 +02:00
})];
}
2018-04-21 11:59:16 +02:00
default: {
console.log('unknown ast type:', token.node.type);
2018-09-11 20:32:47 +02:00
return [];
}
}
}));
// Parse ast to DOM
return createElement('span', genEl(ast));
}
});