From 332d58027ff2dbd06247cec46ac07b9b0e4431de Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 6 Apr 2022 13:41:04 +1000 Subject: [PATCH] show draggable call container when opening settings from call convo --- .../calling/DraggableCallContainer.tsx | 10 ++++- ts/session/utils/TypedEmitter.ts | 45 ------------------- ts/session/utils/index.ts | 1 - 3 files changed, 9 insertions(+), 47 deletions(-) delete mode 100644 ts/session/utils/TypedEmitter.ts diff --git a/ts/components/calling/DraggableCallContainer.tsx b/ts/components/calling/DraggableCallContainer.tsx index b4ed84637..3de4ed894 100644 --- a/ts/components/calling/DraggableCallContainer.tsx +++ b/ts/components/calling/DraggableCallContainer.tsx @@ -9,6 +9,8 @@ import { openConversationWithMessages } from '../../state/ducks/conversations'; import { Avatar, AvatarSize } from '../avatar/Avatar'; import { useVideoCallEventsListener } from '../../hooks/useVideoEventListener'; import { VideoLoadingSpinner } from './InConversationCallContainer'; +import { getSection } from '../../state/selectors/section'; +import { SectionType } from '../../state/ducks/section'; export const DraggableCallWindow = styled.div` position: absolute; @@ -57,6 +59,7 @@ export const DraggableCallContainer = () => { const ongoingCallProps = useSelector(getHasOngoingCallWith); const selectedConversationKey = useSelector(getSelectedConversationKey); const hasOngoingCall = useSelector(getHasOngoingCall); + const selectedSection = useSelector(getSection); // the draggable container has a width of 12vw, so we just set it's X to a bit more than this const [positionX, setPositionX] = useState(window.innerWidth - (window.innerWidth * 1) / 6); @@ -99,7 +102,12 @@ export const DraggableCallContainer = () => { } }; - if (!hasOngoingCall || !ongoingCallProps || ongoingCallPubkey === selectedConversationKey) { + if ( + !hasOngoingCall || + !ongoingCallProps || + (ongoingCallPubkey === selectedConversationKey && + selectedSection.focusedSection !== SectionType.Settings) + ) { return null; } diff --git a/ts/session/utils/TypedEmitter.ts b/ts/session/utils/TypedEmitter.ts deleted file mode 100644 index a834ff6c6..000000000 --- a/ts/session/utils/TypedEmitter.ts +++ /dev/null @@ -1,45 +0,0 @@ -// Code from https://github.com/andywer/typed-emitter - -type Arguments = [T] extends [(...args: infer U) => any] ? U : [T] extends [void] ? [] : [T]; - -/** - * Type-safe event emitter. - * - * Use it like this: - * - * interface MyEvents { - * error: (error: Error) => void - * message: (from: string, content: string) => void - * } - * - * const myEmitter = new EventEmitter() as TypedEmitter - * - * myEmitter.on("message", (from, content) => { - * // ... - * }) - * - * myEmitter.emit("error", "x") // <- Will catch this type error - * - * or - * - * class MyEmitter extends EventEmitter implements TypedEventEmitter - */ -export interface TypedEventEmitter { - addListener(event: E, listener: Events[E]): this; - on(event: E, listener: Events[E]): this; - once(event: E, listener: Events[E]): this; - prependListener(event: E, listener: Events[E]): this; - prependOnceListener(event: E, listener: Events[E]): this; - - off(event: E, listener: Events[E]): this; - removeAllListeners(event?: E): this; - removeListener(event: E, listener: Events[E]): this; - - emit(event: E, ...args: Arguments): boolean; - eventNames(): Array; - listeners(event: E): Array; - listenerCount(event: E): number; - - getMaxListeners(): number; - setMaxListeners(maxListeners: number): this; -} diff --git a/ts/session/utils/index.ts b/ts/session/utils/index.ts index 9ec887fa4..c3e942bca 100644 --- a/ts/session/utils/index.ts +++ b/ts/session/utils/index.ts @@ -10,7 +10,6 @@ import * as AttachmentDownloads from './AttachmentsDownload'; import * as CallManager from './calling/CallManager'; export * from './Attachments'; -export * from './TypedEmitter'; export * from './JobQueue'; export {