iceshrimp-legacy/packages/client/src/components/MkReactionsViewer.vue

77 lines
1.4 KiB
Vue
Raw Normal View History

2018-02-07 10:34:43 +01:00
<template>
2023-07-17 00:33:17 +02:00
<div
ref="reactionsEl"
class="reactions-list swiper-no-swiping tdflqwzn"
:class="{ isMe }"
>
2023-04-08 02:01:42 +02:00
<XReaction
v-for="(count, reaction) in note.reactions"
:key="reaction"
:reaction="reaction"
:count="count"
:is-initial="initialReactions.has(reaction)"
:note="note"
@reacted="reactionsEl.scrollTo(0, 0)"
2023-04-08 02:01:42 +02:00
/>
</div>
2018-02-07 10:34:43 +01:00
</template>
<script lang="ts" setup>
2023-06-27 05:22:43 +02:00
import { computed, ref } from "vue";
2023-04-08 02:01:42 +02:00
import * as misskey from "calckey-js";
import { $i } from "@/account";
import XReaction from "@/components/MkReactionsViewer.reaction.vue";
const props = defineProps<{
note: misskey.entities.Note;
}>();
2023-06-27 05:22:43 +02:00
const reactionsEl = ref<HTMLElement>();
const initialReactions = new Set(Object.keys(props.note.reactions));
const isMe = computed(() => $i && $i.id === props.note.userId);
2018-02-07 10:41:48 +01:00
</script>
<style lang="scss" scoped>
2023-06-27 05:22:43 +02:00
.reactions-list {
2023-04-08 02:01:42 +02:00
margin-top: 0.2em;
2023-01-10 03:53:39 +01:00
width: 100%;
2023-06-27 05:22:43 +02:00
display: flex;
overflow-x: auto;
margin-inline: -24px;
padding-inline: 22px 160px;
mask: linear-gradient(
to right,
transparent,
black 24px calc(100% - 160px),
transparent
);
-webkit-mask: linear-gradient(
to right,
transparent,
black 24px calc(100% - 160px),
transparent
);
2023-06-27 05:22:43 +02:00
scrollbar-width: none;
pointer-events: none;
:deep(*) {
pointer-events: all;
}
2023-06-27 05:22:43 +02:00
&::-webkit-scrollbar {
display: none;
}
2023-04-08 02:01:42 +02:00
&:empty {
display: none;
}
2018-02-07 10:41:48 +01:00
&.isMe {
> span {
cursor: default !important;
}
}
}
2018-02-07 10:41:48 +01:00
</style>