refactor(frontend): MFMコンポーネントのリファクタ & パフォーマンスを改善
This commit is contained in:
parent
e126083e10
commit
7b012967d9
|
@ -1,8 +1,8 @@
|
||||||
/* eslint-disable @typescript-eslint/explicit-function-return-type */
|
/* eslint-disable @typescript-eslint/explicit-function-return-type */
|
||||||
import { StoryObj } from '@storybook/vue3';
|
import { StoryObj } from '@storybook/vue3';
|
||||||
import MkMisskeyFlavoredMarkdown from './MkMisskeyFlavoredMarkdown.vue';
|
|
||||||
import { within } from '@storybook/testing-library';
|
import { within } from '@storybook/testing-library';
|
||||||
import { expect } from '@storybook/jest';
|
import { expect } from '@storybook/jest';
|
||||||
|
import MkMisskeyFlavoredMarkdown from './MkMisskeyFlavoredMarkdown.ts';
|
||||||
export const Default = {
|
export const Default = {
|
||||||
render(args) {
|
render(args) {
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -360,5 +360,8 @@ export default function(props: {
|
||||||
}
|
}
|
||||||
}).flat(Infinity) as (VNode | string)[];
|
}).flat(Infinity) as (VNode | string)[];
|
||||||
|
|
||||||
return h('span', genEl(ast, props.rootScale ?? 1));
|
return h('span', {
|
||||||
|
// https://codeday.me/jp/qa/20190424/690106.html
|
||||||
|
style: props.nowrap ? 'white-space: pre; word-wrap: normal; overflow: hidden; text-overflow: ellipsis;' : 'white-space: pre-wrap;',
|
||||||
|
}, genEl(ast, props.rootScale ?? 1));
|
||||||
}
|
}
|
|
@ -1,171 +0,0 @@
|
||||||
<template>
|
|
||||||
<MfmCore :text="text" :plain="plain" :nowrap="nowrap" :author="author" :isNote="isNote" :class="[$style.root, { [$style.nowrap]: nowrap }]"/>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script lang="ts" setup>
|
|
||||||
import { } from 'vue';
|
|
||||||
import MfmCore from '@/components/mfm';
|
|
||||||
|
|
||||||
const props = withDefaults(defineProps<{
|
|
||||||
text: string;
|
|
||||||
plain?: boolean;
|
|
||||||
nowrap?: boolean;
|
|
||||||
author?: any;
|
|
||||||
isNote?: boolean;
|
|
||||||
}>(), {
|
|
||||||
plain: false,
|
|
||||||
nowrap: false,
|
|
||||||
author: null,
|
|
||||||
isNote: true,
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style lang="scss">
|
|
||||||
._mfm_blur_ {
|
|
||||||
filter: blur(6px);
|
|
||||||
transition: filter 0.3s;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
filter: blur(0px);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.mfm-x2 {
|
|
||||||
--mfm-zoom-size: 200%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mfm-x3 {
|
|
||||||
--mfm-zoom-size: 400%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mfm-x4 {
|
|
||||||
--mfm-zoom-size: 600%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mfm-x2, .mfm-x3, .mfm-x4 {
|
|
||||||
font-size: var(--mfm-zoom-size);
|
|
||||||
|
|
||||||
.mfm-x2, .mfm-x3, .mfm-x4 {
|
|
||||||
/* only half effective */
|
|
||||||
font-size: calc(var(--mfm-zoom-size) / 2 + 50%);
|
|
||||||
|
|
||||||
.mfm-x2, .mfm-x3, .mfm-x4 {
|
|
||||||
/* disabled */
|
|
||||||
font-size: 100%;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes mfm-spin {
|
|
||||||
0% { transform: rotate(0deg); }
|
|
||||||
100% { transform: rotate(360deg); }
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes mfm-spinX {
|
|
||||||
0% { transform: perspective(128px) rotateX(0deg); }
|
|
||||||
100% { transform: perspective(128px) rotateX(360deg); }
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes mfm-spinY {
|
|
||||||
0% { transform: perspective(128px) rotateY(0deg); }
|
|
||||||
100% { transform: perspective(128px) rotateY(360deg); }
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes mfm-jump {
|
|
||||||
0% { transform: translateY(0); }
|
|
||||||
25% { transform: translateY(-16px); }
|
|
||||||
50% { transform: translateY(0); }
|
|
||||||
75% { transform: translateY(-8px); }
|
|
||||||
100% { transform: translateY(0); }
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes mfm-bounce {
|
|
||||||
0% { transform: translateY(0) scale(1, 1); }
|
|
||||||
25% { transform: translateY(-16px) scale(1, 1); }
|
|
||||||
50% { transform: translateY(0) scale(1, 1); }
|
|
||||||
75% { transform: translateY(0) scale(1.5, 0.75); }
|
|
||||||
100% { transform: translateY(0) scale(1, 1); }
|
|
||||||
}
|
|
||||||
|
|
||||||
// const val = () => `translate(${Math.floor(Math.random() * 20) - 10}px, ${Math.floor(Math.random() * 20) - 10}px)`;
|
|
||||||
// let css = '';
|
|
||||||
// for (let i = 0; i <= 100; i += 5) { css += `${i}% { transform: ${val()} }\n`; }
|
|
||||||
@keyframes mfm-twitch {
|
|
||||||
0% { transform: translate(7px, -2px) }
|
|
||||||
5% { transform: translate(-3px, 1px) }
|
|
||||||
10% { transform: translate(-7px, -1px) }
|
|
||||||
15% { transform: translate(0px, -1px) }
|
|
||||||
20% { transform: translate(-8px, 6px) }
|
|
||||||
25% { transform: translate(-4px, -3px) }
|
|
||||||
30% { transform: translate(-4px, -6px) }
|
|
||||||
35% { transform: translate(-8px, -8px) }
|
|
||||||
40% { transform: translate(4px, 6px) }
|
|
||||||
45% { transform: translate(-3px, 1px) }
|
|
||||||
50% { transform: translate(2px, -10px) }
|
|
||||||
55% { transform: translate(-7px, 0px) }
|
|
||||||
60% { transform: translate(-2px, 4px) }
|
|
||||||
65% { transform: translate(3px, -8px) }
|
|
||||||
70% { transform: translate(6px, 7px) }
|
|
||||||
75% { transform: translate(-7px, -2px) }
|
|
||||||
80% { transform: translate(-7px, -8px) }
|
|
||||||
85% { transform: translate(9px, 3px) }
|
|
||||||
90% { transform: translate(-3px, -2px) }
|
|
||||||
95% { transform: translate(-10px, 2px) }
|
|
||||||
100% { transform: translate(-2px, -6px) }
|
|
||||||
}
|
|
||||||
|
|
||||||
// const val = () => `translate(${Math.floor(Math.random() * 6) - 3}px, ${Math.floor(Math.random() * 6) - 3}px) rotate(${Math.floor(Math.random() * 24) - 12}deg)`;
|
|
||||||
// let css = '';
|
|
||||||
// for (let i = 0; i <= 100; i += 5) { css += `${i}% { transform: ${val()} }\n`; }
|
|
||||||
@keyframes mfm-shake {
|
|
||||||
0% { transform: translate(-3px, -1px) rotate(-8deg) }
|
|
||||||
5% { transform: translate(0px, -1px) rotate(-10deg) }
|
|
||||||
10% { transform: translate(1px, -3px) rotate(0deg) }
|
|
||||||
15% { transform: translate(1px, 1px) rotate(11deg) }
|
|
||||||
20% { transform: translate(-2px, 1px) rotate(1deg) }
|
|
||||||
25% { transform: translate(-1px, -2px) rotate(-2deg) }
|
|
||||||
30% { transform: translate(-1px, 2px) rotate(-3deg) }
|
|
||||||
35% { transform: translate(2px, 1px) rotate(6deg) }
|
|
||||||
40% { transform: translate(-2px, -3px) rotate(-9deg) }
|
|
||||||
45% { transform: translate(0px, -1px) rotate(-12deg) }
|
|
||||||
50% { transform: translate(1px, 2px) rotate(10deg) }
|
|
||||||
55% { transform: translate(0px, -3px) rotate(8deg) }
|
|
||||||
60% { transform: translate(1px, -1px) rotate(8deg) }
|
|
||||||
65% { transform: translate(0px, -1px) rotate(-7deg) }
|
|
||||||
70% { transform: translate(-1px, -3px) rotate(6deg) }
|
|
||||||
75% { transform: translate(0px, -2px) rotate(4deg) }
|
|
||||||
80% { transform: translate(-2px, -1px) rotate(3deg) }
|
|
||||||
85% { transform: translate(1px, -3px) rotate(-10deg) }
|
|
||||||
90% { transform: translate(1px, 0px) rotate(3deg) }
|
|
||||||
95% { transform: translate(-2px, 0px) rotate(-3deg) }
|
|
||||||
100% { transform: translate(2px, 1px) rotate(2deg) }
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes mfm-rubberBand {
|
|
||||||
from { transform: scale3d(1, 1, 1); }
|
|
||||||
30% { transform: scale3d(1.25, 0.75, 1); }
|
|
||||||
40% { transform: scale3d(0.75, 1.25, 1); }
|
|
||||||
50% { transform: scale3d(1.15, 0.85, 1); }
|
|
||||||
65% { transform: scale3d(0.95, 1.05, 1); }
|
|
||||||
75% { transform: scale3d(1.05, 0.95, 1); }
|
|
||||||
to { transform: scale3d(1, 1, 1); }
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes mfm-rainbow {
|
|
||||||
0% { filter: hue-rotate(0deg) contrast(150%) saturate(150%); }
|
|
||||||
100% { filter: hue-rotate(360deg) contrast(150%) saturate(150%); }
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<style lang="scss" module>
|
|
||||||
.root {
|
|
||||||
white-space: pre-wrap;
|
|
||||||
|
|
||||||
&.nowrap {
|
|
||||||
white-space: pre;
|
|
||||||
word-wrap: normal; // https://codeday.me/jp/qa/20190424/690106.html
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { App } from 'vue';
|
import { App } from 'vue';
|
||||||
|
|
||||||
import Mfm from './global/MkMisskeyFlavoredMarkdown.vue';
|
import Mfm from './global/MkMisskeyFlavoredMarkdown.ts';
|
||||||
import MkA from './global/MkA.vue';
|
import MkA from './global/MkA.vue';
|
||||||
import MkAcct from './global/MkAcct.vue';
|
import MkAcct from './global/MkAcct.vue';
|
||||||
import MkAvatar from './global/MkAvatar.vue';
|
import MkAvatar from './global/MkAvatar.vue';
|
||||||
|
|
|
@ -483,3 +483,140 @@ hr {
|
||||||
transform: scaleX(1.00) scaleY(1.00) ;
|
transform: scaleX(1.00) scaleY(1.00) ;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// MFM -----------------------------
|
||||||
|
|
||||||
|
._mfm_blur_ {
|
||||||
|
filter: blur(6px);
|
||||||
|
transition: filter 0.3s;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
filter: blur(0px);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfm-x2 {
|
||||||
|
--mfm-zoom-size: 200%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfm-x3 {
|
||||||
|
--mfm-zoom-size: 400%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfm-x4 {
|
||||||
|
--mfm-zoom-size: 600%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mfm-x2, .mfm-x3, .mfm-x4 {
|
||||||
|
font-size: var(--mfm-zoom-size);
|
||||||
|
|
||||||
|
.mfm-x2, .mfm-x3, .mfm-x4 {
|
||||||
|
/* only half effective */
|
||||||
|
font-size: calc(var(--mfm-zoom-size) / 2 + 50%);
|
||||||
|
|
||||||
|
.mfm-x2, .mfm-x3, .mfm-x4 {
|
||||||
|
/* disabled */
|
||||||
|
font-size: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes mfm-spin {
|
||||||
|
0% { transform: rotate(0deg); }
|
||||||
|
100% { transform: rotate(360deg); }
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes mfm-spinX {
|
||||||
|
0% { transform: perspective(128px) rotateX(0deg); }
|
||||||
|
100% { transform: perspective(128px) rotateX(360deg); }
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes mfm-spinY {
|
||||||
|
0% { transform: perspective(128px) rotateY(0deg); }
|
||||||
|
100% { transform: perspective(128px) rotateY(360deg); }
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes mfm-jump {
|
||||||
|
0% { transform: translateY(0); }
|
||||||
|
25% { transform: translateY(-16px); }
|
||||||
|
50% { transform: translateY(0); }
|
||||||
|
75% { transform: translateY(-8px); }
|
||||||
|
100% { transform: translateY(0); }
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes mfm-bounce {
|
||||||
|
0% { transform: translateY(0) scale(1, 1); }
|
||||||
|
25% { transform: translateY(-16px) scale(1, 1); }
|
||||||
|
50% { transform: translateY(0) scale(1, 1); }
|
||||||
|
75% { transform: translateY(0) scale(1.5, 0.75); }
|
||||||
|
100% { transform: translateY(0) scale(1, 1); }
|
||||||
|
}
|
||||||
|
|
||||||
|
// const val = () => `translate(${Math.floor(Math.random() * 20) - 10}px, ${Math.floor(Math.random() * 20) - 10}px)`;
|
||||||
|
// let css = '';
|
||||||
|
// for (let i = 0; i <= 100; i += 5) { css += `${i}% { transform: ${val()} }\n`; }
|
||||||
|
@keyframes mfm-twitch {
|
||||||
|
0% { transform: translate(7px, -2px) }
|
||||||
|
5% { transform: translate(-3px, 1px) }
|
||||||
|
10% { transform: translate(-7px, -1px) }
|
||||||
|
15% { transform: translate(0px, -1px) }
|
||||||
|
20% { transform: translate(-8px, 6px) }
|
||||||
|
25% { transform: translate(-4px, -3px) }
|
||||||
|
30% { transform: translate(-4px, -6px) }
|
||||||
|
35% { transform: translate(-8px, -8px) }
|
||||||
|
40% { transform: translate(4px, 6px) }
|
||||||
|
45% { transform: translate(-3px, 1px) }
|
||||||
|
50% { transform: translate(2px, -10px) }
|
||||||
|
55% { transform: translate(-7px, 0px) }
|
||||||
|
60% { transform: translate(-2px, 4px) }
|
||||||
|
65% { transform: translate(3px, -8px) }
|
||||||
|
70% { transform: translate(6px, 7px) }
|
||||||
|
75% { transform: translate(-7px, -2px) }
|
||||||
|
80% { transform: translate(-7px, -8px) }
|
||||||
|
85% { transform: translate(9px, 3px) }
|
||||||
|
90% { transform: translate(-3px, -2px) }
|
||||||
|
95% { transform: translate(-10px, 2px) }
|
||||||
|
100% { transform: translate(-2px, -6px) }
|
||||||
|
}
|
||||||
|
|
||||||
|
// const val = () => `translate(${Math.floor(Math.random() * 6) - 3}px, ${Math.floor(Math.random() * 6) - 3}px) rotate(${Math.floor(Math.random() * 24) - 12}deg)`;
|
||||||
|
// let css = '';
|
||||||
|
// for (let i = 0; i <= 100; i += 5) { css += `${i}% { transform: ${val()} }\n`; }
|
||||||
|
@keyframes mfm-shake {
|
||||||
|
0% { transform: translate(-3px, -1px) rotate(-8deg) }
|
||||||
|
5% { transform: translate(0px, -1px) rotate(-10deg) }
|
||||||
|
10% { transform: translate(1px, -3px) rotate(0deg) }
|
||||||
|
15% { transform: translate(1px, 1px) rotate(11deg) }
|
||||||
|
20% { transform: translate(-2px, 1px) rotate(1deg) }
|
||||||
|
25% { transform: translate(-1px, -2px) rotate(-2deg) }
|
||||||
|
30% { transform: translate(-1px, 2px) rotate(-3deg) }
|
||||||
|
35% { transform: translate(2px, 1px) rotate(6deg) }
|
||||||
|
40% { transform: translate(-2px, -3px) rotate(-9deg) }
|
||||||
|
45% { transform: translate(0px, -1px) rotate(-12deg) }
|
||||||
|
50% { transform: translate(1px, 2px) rotate(10deg) }
|
||||||
|
55% { transform: translate(0px, -3px) rotate(8deg) }
|
||||||
|
60% { transform: translate(1px, -1px) rotate(8deg) }
|
||||||
|
65% { transform: translate(0px, -1px) rotate(-7deg) }
|
||||||
|
70% { transform: translate(-1px, -3px) rotate(6deg) }
|
||||||
|
75% { transform: translate(0px, -2px) rotate(4deg) }
|
||||||
|
80% { transform: translate(-2px, -1px) rotate(3deg) }
|
||||||
|
85% { transform: translate(1px, -3px) rotate(-10deg) }
|
||||||
|
90% { transform: translate(1px, 0px) rotate(3deg) }
|
||||||
|
95% { transform: translate(-2px, 0px) rotate(-3deg) }
|
||||||
|
100% { transform: translate(2px, 1px) rotate(2deg) }
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes mfm-rubberBand {
|
||||||
|
from { transform: scale3d(1, 1, 1); }
|
||||||
|
30% { transform: scale3d(1.25, 0.75, 1); }
|
||||||
|
40% { transform: scale3d(0.75, 1.25, 1); }
|
||||||
|
50% { transform: scale3d(1.15, 0.85, 1); }
|
||||||
|
65% { transform: scale3d(0.95, 1.05, 1); }
|
||||||
|
75% { transform: scale3d(1.05, 0.95, 1); }
|
||||||
|
to { transform: scale3d(1, 1, 1); }
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes mfm-rainbow {
|
||||||
|
0% { filter: hue-rotate(0deg) contrast(150%) saturate(150%); }
|
||||||
|
100% { filter: hue-rotate(360deg) contrast(150%) saturate(150%); }
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue