From c946a5a27bce8535ac8b237443a3750a78100fcb Mon Sep 17 00:00:00 2001 From: talksik Date: Sun, 19 Jun 2022 16:00:37 -0500 Subject: [PATCH] simple dialog with selections for devices although not the best UX --- .../desktop/src/tree/ConversationList.tsx | 8 ++ packages/desktop/src/tree/FooterControls.tsx | 103 ++++++++++++++++++ 2 files changed, 111 insertions(+) diff --git a/packages/desktop/src/tree/ConversationList.tsx b/packages/desktop/src/tree/ConversationList.tsx index 33473a2..7775151 100644 --- a/packages/desktop/src/tree/ConversationList.tsx +++ b/packages/desktop/src/tree/ConversationList.tsx @@ -114,6 +114,14 @@ export function ConversationList() { } > + {masterConversations[0].length === 0 && ( + + + Mark conversations as priority to hear them across the hall. + + + )} + {masterConversations[0].map((currentConversation, index) => ( Logout + + console.log('hi')} /> ); } + +function UserSettingsDialog({ open, handleClose }: { handleClose: () => void; open: boolean }) { + return ( + + + + + + + + + Media Settings + + + + + + + + Microphone + + + Your speaker selection should be done on your computer status or taskbar. Please + select distinct speaker and microphone to avoid distortion when you have bluetooth + device connected. + + + + + Video + + + + + Screen + + + + + + ); +}