chad/client/app/components/ClientRow.vue
Никита Круглицкий 484e61f337
All checks were successful
Deploy / deploy (push) Successful in 40s
front update
2025-10-09 04:45:09 +06:00

90 lines
2.2 KiB
Vue

<template>
<div class="py-3">
<div class="flex items-center gap-3 ">
<PrimeAvatar
icon="pi pi-user"
size="small"
/>
<div class="flex-1">
<div class="text-sm leading-5 font-medium text-color whitespace-nowrap overflow-ellipsis">
{{ client.username }}
</div>
<div class="mt-1 text-xs leading-5 text-muted-color">
{{ client.id }}
</div>
</div>
<PrimeBadge v-if="client.isMe && inputMuted" severity="info" value="Muted" />
<PrimeBadge v-if="client.isMe" severity="secondary" value="You" />
<template v-if="!client.isMe">
<PrimeButton icon="pi pi-ellipsis-h" text size="small" severity="contrast" @click="menuRef?.toggle" />
<PrimeMenu ref="menu" popup :model="menuItems" style="translate: calc(-100% + 2rem) 0.5rem">
<template #start>
<div class="px-4 py-3">
<div class="flex justify-between">
<span>Volume</span>
<span>{{ volume }}</span>
</div>
<PrimeSlider v-model="volume" class="mt-4" :min="0" :max="300" :step="5" />
</div>
</template>
</PrimeMenu>
</template>
</div>
</div>
</template>
<script setup lang="ts">
import type { ChadClient } from '#shared/types'
import type { MenuItem } from 'primevue/menuitem'
const props = defineProps<{
client: ChadClient
}>()
const { inputMuted, outputMuted } = useApp()
const { getClientConsumers } = useMediasoup()
const menuRef = useTemplateRef<HTMLAudioElement>('menu')
const volume = ref(100)
const menuItems: MenuItem[] = [
{
label: 'Mute',
icon: 'pi pi-headphones',
},
{
label: 'DM',
icon: 'pi pi-comment',
disabled: true,
},
]
const audioConsumer = computed(() => {
const consumers = getClientConsumers(props.client.id)
return consumers.find(consumer => consumer.track.kind === 'audio')
})
const audioTrack = computed(() => {
return audioConsumer.value?.track
})
const { setGain } = useAudioContext(audioTrack)
watch(volume, (volume) => {
if (outputMuted.value)
return
setGain(volume * 0.01)
})
watch(outputMuted, (outputMuted) => {
setGain(outputMuted ? 0 : (volume.value * 0.01))
})
</script>