fix: redesign cat ears (#10039)
* fix: viewing disgusting objects when user is a cat with having transparent avatar * chore: mask cat ears when useBlurEffect is enabled * fix: typo * style: add comment * chore: shrink mask * chore: blur mask * refactor: minify * chore: use SVG to determine ear color * style: comment * refactor: use `<component>` * refactor: separate cat definitions * refactor: use singleton SVG definitions * perf: use CSS instead of SVG * refactor: unused definer * refactor: not used anymore * refactor: minify * refactor: minify * fix: import
This commit is contained in:
parent
41d1b1b8c9
commit
7f9a41b05c
|
@ -1,25 +1,26 @@
|
||||||
<template>
|
<template>
|
||||||
<span v-if="!link" v-user-preview="preview ? user.id : undefined" class="_noSelect" :class="[$style.root, { [$style.cat]: user.isCat, [$style.square]: squareAvatars }]" :style="{ color }" :title="acct(user)" @click="onClick">
|
<component :is="link ? MkA : 'span'" v-user-preview="preview ? user.id : undefined" v-bind="bound" class="_noSelect" :class="[$style.root, { [$style.cat]: user.isCat, [$style.square]: squareAvatars }]" :style="{ color }" :title="acct(user)" @click="onClick">
|
||||||
<img :class="$style.inner" :src="url" decoding="async"/>
|
<img :class="$style.inner" :src="url" decoding="async"/>
|
||||||
<MkUserOnlineIndicator v-if="indicator" :class="$style.indicator" :user="user"/>
|
<MkUserOnlineIndicator v-if="indicator" :class="$style.indicator" :user="user"/>
|
||||||
<template v-if="user.isCat">
|
<div v-if="user.isCat" :class="[$style.ears, { [$style.mask]: useBlurEffect }]">
|
||||||
<div :class="$style.earLeft"/>
|
<div :class="$style.earLeft">
|
||||||
<div :class="$style.earRight"/>
|
<div v-if="useBlurEffect" :class="$style.layer">
|
||||||
</template>
|
<div :class="$style.plot" :style="{ backgroundImage: `url(${JSON.stringify(url)})` }"/>
|
||||||
</span>
|
</div>
|
||||||
<MkA v-else v-user-preview="preview ? user.id : undefined" class="_noSelect" :class="[$style.root, { [$style.cat]: user.isCat, [$style.square]: squareAvatars }]" :style="{ color }" :title="acct(user)" :to="userPage(user)" :target="target">
|
</div>
|
||||||
<img :class="$style.inner" :src="url" decoding="async"/>
|
<div :class="$style.earRight">
|
||||||
<MkUserOnlineIndicator v-if="indicator" :class="$style.indicator" :user="user"/>
|
<div v-if="useBlurEffect" :class="$style.layer">
|
||||||
<template v-if="user.isCat">
|
<div :class="$style.plot" :style="{ backgroundImage: `url(${JSON.stringify(url)})` }"/>
|
||||||
<div :class="$style.earLeft"/>
|
</div>
|
||||||
<div :class="$style.earRight"/>
|
</div>
|
||||||
</template>
|
</div>
|
||||||
</MkA>
|
</component>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { watch } from 'vue';
|
import { watch } from 'vue';
|
||||||
import * as misskey from 'misskey-js';
|
import * as misskey from 'misskey-js';
|
||||||
|
import MkA from './MkA.vue';
|
||||||
import { getStaticImageUrl } from '@/scripts/media-proxy';
|
import { getStaticImageUrl } from '@/scripts/media-proxy';
|
||||||
import { extractAvgColorFromBlurhash } from '@/scripts/extract-avg-color-from-blurhash';
|
import { extractAvgColorFromBlurhash } from '@/scripts/extract-avg-color-from-blurhash';
|
||||||
import { acct, userPage } from '@/filters/user';
|
import { acct, userPage } from '@/filters/user';
|
||||||
|
@ -27,6 +28,7 @@ import MkUserOnlineIndicator from '@/components/MkUserOnlineIndicator.vue';
|
||||||
import { defaultStore } from '@/store';
|
import { defaultStore } from '@/store';
|
||||||
|
|
||||||
const squareAvatars = $ref(defaultStore.state.squareAvatars);
|
const squareAvatars = $ref(defaultStore.state.squareAvatars);
|
||||||
|
const useBlurEffect = $ref(defaultStore.state.useBlurEffect);
|
||||||
|
|
||||||
const props = withDefaults(defineProps<{
|
const props = withDefaults(defineProps<{
|
||||||
user: misskey.entities.User;
|
user: misskey.entities.User;
|
||||||
|
@ -45,15 +47,20 @@ const emit = defineEmits<{
|
||||||
(ev: 'click', v: MouseEvent): void;
|
(ev: 'click', v: MouseEvent): void;
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
|
const bound = $computed(() => props.link
|
||||||
|
? { to: userPage(props.user), target: props.target }
|
||||||
|
: {});
|
||||||
|
|
||||||
const url = $computed(() => defaultStore.state.disableShowingAnimatedImages
|
const url = $computed(() => defaultStore.state.disableShowingAnimatedImages
|
||||||
? getStaticImageUrl(props.user.avatarUrl)
|
? getStaticImageUrl(props.user.avatarUrl)
|
||||||
: props.user.avatarUrl);
|
: props.user.avatarUrl);
|
||||||
|
|
||||||
function onClick(ev: MouseEvent) {
|
function onClick(ev: MouseEvent): void {
|
||||||
|
if (props.link) return;
|
||||||
emit('click', ev);
|
emit('click', ev);
|
||||||
}
|
}
|
||||||
|
|
||||||
let color = $ref();
|
let color = $ref<string | undefined>();
|
||||||
|
|
||||||
watch(() => props.user.avatarBlurhash, () => {
|
watch(() => props.user.avatarBlurhash, () => {
|
||||||
color = extractAvgColorFromBlurhash(props.user.avatarBlurhash);
|
color = extractAvgColorFromBlurhash(props.user.avatarBlurhash);
|
||||||
|
@ -120,6 +127,25 @@ watch(() => props.user.avatarBlurhash, () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
.cat {
|
.cat {
|
||||||
|
> .ears {
|
||||||
|
contain: strict;
|
||||||
|
position: absolute;
|
||||||
|
top: -50%;
|
||||||
|
left: -50%;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
padding: 50%;
|
||||||
|
|
||||||
|
&.mask {
|
||||||
|
-webkit-mask:
|
||||||
|
url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><filter id="a"><feGaussianBlur in="SourceGraphic" stdDeviation="1"/></filter><circle cx="16" cy="16" r="15" filter="url(%23a)"/></svg>') center / 50% 50%,
|
||||||
|
linear-gradient(#fff, #fff);
|
||||||
|
-webkit-mask-composite: destination-out, source-over;
|
||||||
|
mask:
|
||||||
|
url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><filter id="a"><feGaussianBlur in="SourceGraphic" stdDeviation="1"/></filter><circle cx="16" cy="16" r="15" filter="url(%23a)"/></svg>') exclude center / 50% 50%,
|
||||||
|
linear-gradient(#fff, #fff); // polyfill of `image(#fff)`
|
||||||
|
}
|
||||||
|
|
||||||
> .earLeft,
|
> .earLeft,
|
||||||
> .earRight {
|
> .earRight {
|
||||||
contain: strict;
|
contain: strict;
|
||||||
|
@ -128,7 +154,7 @@ watch(() => props.user.avatarBlurhash, () => {
|
||||||
width: 50%;
|
width: 50%;
|
||||||
background: currentColor;
|
background: currentColor;
|
||||||
|
|
||||||
&::before {
|
&::after {
|
||||||
contain: strict;
|
contain: strict;
|
||||||
content: '';
|
content: '';
|
||||||
display: block;
|
display: block;
|
||||||
|
@ -137,19 +163,70 @@ watch(() => props.user.avatarBlurhash, () => {
|
||||||
margin: 20%;
|
margin: 20%;
|
||||||
background: #df548f;
|
background: #df548f;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
> .layer {
|
||||||
|
contain: strict;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
width: 280%;
|
||||||
|
height: 280%;
|
||||||
|
|
||||||
|
> .plot {
|
||||||
|
contain: strict;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
clip-path: path('M0 0H1V1H0z');
|
||||||
|
transform: scale(32767);
|
||||||
|
transform-origin: 0 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
> .earLeft {
|
> .earLeft {
|
||||||
border-radius: 0 75% 75%;
|
|
||||||
transform: rotate(37.5deg) skew(30deg);
|
transform: rotate(37.5deg) skew(30deg);
|
||||||
|
|
||||||
|
&, &::after {
|
||||||
|
border-radius: 0 75% 75%;
|
||||||
|
}
|
||||||
|
|
||||||
|
> .layer {
|
||||||
|
left: 0;
|
||||||
|
transform:
|
||||||
|
skew(-30deg)
|
||||||
|
rotate(-37.5deg)
|
||||||
|
translate(-2.82842712475%, /* -2 * sqrt(2) */
|
||||||
|
-38.5857864376%); /* 40 - 2 * sqrt(2) */
|
||||||
|
|
||||||
|
> .plot {
|
||||||
|
background-position: 20% 10%; /* ~= 37.5deg */
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
> .earRight {
|
> .earRight {
|
||||||
border-radius: 75% 0 75% 75%;
|
|
||||||
transform: rotate(-37.5deg) skew(-30deg);
|
transform: rotate(-37.5deg) skew(-30deg);
|
||||||
|
|
||||||
|
&, &::after {
|
||||||
|
border-radius: 75% 0 75% 75%;
|
||||||
|
}
|
||||||
|
|
||||||
|
> .layer {
|
||||||
|
right: 0;
|
||||||
|
transform:
|
||||||
|
skew(30deg)
|
||||||
|
rotate(37.5deg)
|
||||||
|
translate(2.82842712475%, /* 2 * sqrt(2) */
|
||||||
|
-38.5857864376%); /* 40 - 2 * sqrt(2) */
|
||||||
|
|
||||||
|
> .plot {
|
||||||
|
background-position: 80% 10%; /* ~= 37.5deg */
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
|
> .ears {
|
||||||
> .earLeft {
|
> .earLeft {
|
||||||
animation: earwiggleleft 1s infinite;
|
animation: earwiggleleft 1s infinite;
|
||||||
}
|
}
|
||||||
|
@ -158,5 +235,6 @@ watch(() => props.user.avatarBlurhash, () => {
|
||||||
animation: earwiggleright 1s infinite;
|
animation: earwiggleright 1s infinite;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue