48 lines
1.2 KiB
Vue
48 lines
1.2 KiB
Vue
<template>
|
|
<span v-if="note.visibility !== 'public'" :class="$style.visibility">
|
|
<i v-if="note.visibility === 'home'" class="ph-house-bold ph-lg"></i>
|
|
<i v-else-if="note.visibility === 'followers'" class="ph-lock-simple-open-bold ph-lg"></i>
|
|
<i v-else-if="note.visibility === 'specified'" ref="specified" class="ph-envelope-simple-open-bold ph-lg"></i>
|
|
</span>
|
|
<span v-if="note.localOnly" :class="$style.localOnly"><i class="ph-hand-fist-bold ph-lg"></i></span>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue';
|
|
import XDetails from '@/components/MkUsersTooltip.vue';
|
|
import * as os from '@/os';
|
|
import { useTooltip } from '@/scripts/use-tooltip';
|
|
|
|
const props = defineProps<{
|
|
note: {
|
|
visibility: string;
|
|
localOnly?: boolean;
|
|
visibleUserIds?: string[];
|
|
},
|
|
}>();
|
|
|
|
const specified = $ref<HTMLElement>();
|
|
|
|
if (props.note.visibility === 'specified') {
|
|
useTooltip($$(specified), async (showing) => {
|
|
const users = await os.api('users/show', {
|
|
userIds: props.note.visibleUserIds,
|
|
limit: 10,
|
|
});
|
|
|
|
os.popup(XDetails, {
|
|
showing,
|
|
users,
|
|
count: props.note.visibleUserIds.length,
|
|
targetElement: specified,
|
|
}, {}, 'closed');
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.visibility, .localOnly {
|
|
margin-left: 0.5em;
|
|
}
|
|
</style>
|