Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
fix: microphone and camera select issue in legacy call (#12105)
Browse files Browse the repository at this point in the history
Signed-off-by: Murat Ersin <muratersin@yahoo.com>
  • Loading branch information
Murat Ersin committed Jan 4, 2024
1 parent 9350583 commit baaf8ad
Showing 1 changed file with 20 additions and 24 deletions.
44 changes: 20 additions & 24 deletions src/components/views/voip/LegacyCallView/LegacyCallViewButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

import React, { ComponentProps, createRef, useState } from "react";
import React, { ComponentProps, createRef, useState, forwardRef } from "react";
import classNames from "classnames";
import { MatrixCall } from "matrix-js-sdk/src/webrtc/call";

Expand Down Expand Up @@ -48,30 +48,26 @@ type ButtonProps = Omit<ComponentProps<typeof AccessibleTooltipButton>, "title"
offLabel?: string;
};

const LegacyCallViewToggleButton: React.FC<ButtonProps> = ({
children,
state: isOn,
className,
onLabel,
offLabel,
...props
}) => {
const classes = classNames("mx_LegacyCallViewButtons_button", className, {
mx_LegacyCallViewButtons_button_on: isOn,
mx_LegacyCallViewButtons_button_off: !isOn,
});
const LegacyCallViewToggleButton = forwardRef<HTMLElement, ButtonProps>(
({ children, state: isOn, className, onLabel, offLabel, ...props }, ref) => {
const classes = classNames("mx_LegacyCallViewButtons_button", className, {
mx_LegacyCallViewButtons_button_on: isOn,
mx_LegacyCallViewButtons_button_off: !isOn,
});

return (
<AccessibleTooltipButton
className={classes}
title={isOn ? onLabel : offLabel}
alignment={Alignment.Top}
{...props}
>
{children}
</AccessibleTooltipButton>
);
};
return (
<AccessibleTooltipButton
ref={ref}
className={classes}
title={isOn ? onLabel : offLabel}
alignment={Alignment.Top}
{...props}
>
{children}
</AccessibleTooltipButton>
);
},
);

interface IDropdownButtonProps extends ButtonProps {
deviceKinds: MediaDeviceKindEnum[];
Expand Down

0 comments on commit baaf8ad

Please sign in to comment.