Update chat events/transcription flow and container startup fixes

This commit is contained in:
Ruslan Bakiev
2026-02-19 12:54:16 +07:00
parent 7cc86579b2
commit 3ac487c25b
27 changed files with 3888 additions and 780 deletions

View File

@@ -12,6 +12,7 @@ const props = defineProps<{
modelValue: string;
room: string;
placeholder?: string;
plain?: boolean;
}>();
const emit = defineEmits<{
@@ -130,8 +131,8 @@ onBeforeUnmount(() => {
</script>
<template>
<div class="space-y-3">
<div class="flex flex-wrap items-center justify-between gap-2 rounded-xl border border-base-300 bg-base-100 p-2">
<div :class="props.plain ? 'space-y-2' : 'space-y-3'">
<div :class="props.plain ? 'flex flex-wrap items-center justify-between gap-2 bg-transparent p-0' : 'flex flex-wrap items-center justify-between gap-2 rounded-xl border border-base-300 bg-base-100 p-2'">
<div class="flex flex-wrap items-center gap-1">
<button
class="btn btn-xs"
@@ -173,7 +174,7 @@ onBeforeUnmount(() => {
<p class="px-1 text-xs text-base-content/60">Live: {{ peerCount }}</p>
</div>
<div class="rounded-xl border border-base-300 bg-base-100 p-2">
<div :class="props.plain ? 'bg-transparent p-0' : 'rounded-xl border border-base-300 bg-base-100 p-2'">
<EditorContent :editor="editor" class="contact-editor min-h-[420px]" />
</div>
</div>