mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 22:03:08 +02:00
48 lines
1.3 KiB
Vue
48 lines
1.3 KiB
Vue
<template>
|
|
<span v-if="note.visibility !== 'public'" :class="$style.visibility" :title="i18n.ts._visibility[note.visibility]">
|
|
<i v-if="note.visibility === 'home'" class="ti ti-home"></i>
|
|
<i v-else-if="note.visibility === 'followers'" class="ti ti-lock-open"></i>
|
|
<i v-else-if="note.visibility === 'specified'" ref="specified" class="ti ti-mail"></i>
|
|
</span>
|
|
<span v-if="note.localOnly" :class="$style.localOnly" :title="i18n.ts._visibility['localOnly']"><i class="ti ti-world-off"></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';
|
|
import { i18n } from '@/i18n';
|
|
|
|
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>
|