add buttons with popover to choose call src device
							parent
							
								
									b31b01c97d
								
							
						
					
					
						commit
						ce79ce1f8b
					
				@ -0,0 +1,87 @@
 | 
			
		||||
import React from 'react';
 | 
			
		||||
import _ from 'lodash';
 | 
			
		||||
import styled from 'styled-components';
 | 
			
		||||
 | 
			
		||||
type SProps = {
 | 
			
		||||
  onArrowClick: (e: React.MouseEvent<HTMLDivElement>) => void;
 | 
			
		||||
  onMainButtonClick: (e: React.MouseEvent<HTMLDivElement>) => void;
 | 
			
		||||
  isMuted?: boolean;
 | 
			
		||||
  hidePopoverArrow?: boolean;
 | 
			
		||||
  iconType: 'microphone' | 'camera';
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
const StyledRoundedButton = styled.div`
 | 
			
		||||
  background-color: var(--color-cell-background);
 | 
			
		||||
  color: var(--color-text);
 | 
			
		||||
  border-radius: 50%;
 | 
			
		||||
  box-shadow: var(--color-session-shadow);
 | 
			
		||||
  cursor: pointer;
 | 
			
		||||
 | 
			
		||||
  transition-duration: 0.25s;
 | 
			
		||||
  &:hover {
 | 
			
		||||
    opacity: 1;
 | 
			
		||||
  }
 | 
			
		||||
`;
 | 
			
		||||
 | 
			
		||||
const StyledContainer = styled(StyledRoundedButton)`
 | 
			
		||||
  width: 60px;
 | 
			
		||||
  height: 60px;
 | 
			
		||||
  margin: 10px;
 | 
			
		||||
 | 
			
		||||
  opacity: 0.4;
 | 
			
		||||
  &:hover {
 | 
			
		||||
    opacity: 1;
 | 
			
		||||
  }
 | 
			
		||||
`;
 | 
			
		||||
 | 
			
		||||
const StyledMainIcon = styled.div`
 | 
			
		||||
  padding: 20px;
 | 
			
		||||
`;
 | 
			
		||||
 | 
			
		||||
const StyledArrowIcon = styled(StyledRoundedButton)`
 | 
			
		||||
  width: 35%;
 | 
			
		||||
  height: 35%;
 | 
			
		||||
  position: relative;
 | 
			
		||||
  top: -35%;
 | 
			
		||||
  right: -65%;
 | 
			
		||||
`;
 | 
			
		||||
 | 
			
		||||
const CameraIcon = (
 | 
			
		||||
  <svg viewBox="0 0 488.3 488.3" fill="currentColor">
 | 
			
		||||
    <path d="M488.3,142.5v203.1c0,15.7-17,25.5-30.6,17.7l-84.6-48.8v13.9c0,41.8-33.9,75.7-75.7,75.7H75.7C33.9,404.1,0,370.2,0,328.4   V159.9c0-41.8,33.9-75.7,75.7-75.7h221.8c41.8,0,75.7,33.9,75.7,75.7v13.9l84.6-48.8C471.3,117,488.3,126.9,488.3,142.5Z" />
 | 
			
		||||
  </svg>
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
const MicrophoneIcon = (
 | 
			
		||||
  <svg viewBox="0 0 58 58" fill="currentColor">
 | 
			
		||||
    <path d="M44,28c-0.552,0-1,0.447-1,1v6c0,7.72-6.28,14-14,14s-14-6.28-14-14v-6c0-0.553-0.448-1-1-1s-1,0.447-1,1v6c0,8.485,6.644,15.429,15,15.949V56h-5c-0.552,0-1,0.447-1,1s0.448,1,1,1h12c0.552,0,1-0.447,1-1s-0.448-1-1-1h-5v-5.051c8.356-0.52,15-7.465,15-15.949v-6C45,28.447,44.552,28,44,28zM29,46c6.065,0,11-4.935,11-11V11c0-6.065-4.935-11-11-11S18,4.935,18,11v24C18,41.065,22.935,46,29,46z" />
 | 
			
		||||
  </svg>
 | 
			
		||||
);
 | 
			
		||||
 | 
			
		||||
export const DropDownAndToggleButton = (props: SProps) => {
 | 
			
		||||
  const { iconType, hidePopoverArrow, onArrowClick, onMainButtonClick, isMuted } = props;
 | 
			
		||||
  const arrowClickHandler = (e: React.MouseEvent<HTMLDivElement>) => {
 | 
			
		||||
    e.stopPropagation();
 | 
			
		||||
    onArrowClick(e);
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  const mainButtonClickHandler = (e: React.MouseEvent<HTMLDivElement>) => {
 | 
			
		||||
    e.stopPropagation();
 | 
			
		||||
    onMainButtonClick(e);
 | 
			
		||||
  };
 | 
			
		||||
  const iconToRender =
 | 
			
		||||
    iconType === 'microphone' ? MicrophoneIcon : iconType === 'camera' ? CameraIcon : null;
 | 
			
		||||
 | 
			
		||||
  return (
 | 
			
		||||
    <StyledContainer>
 | 
			
		||||
      <StyledMainIcon onClick={mainButtonClickHandler}>{iconToRender}</StyledMainIcon>
 | 
			
		||||
      {!hidePopoverArrow && (
 | 
			
		||||
        <StyledArrowIcon onClick={arrowClickHandler}>
 | 
			
		||||
          <svg viewBox="-200 -200 640 640" fill="currentColor">
 | 
			
		||||
            <path d="M127.5 191.25L255 63.75L0 63.75L127.5 191.25Z" />
 | 
			
		||||
          </svg>
 | 
			
		||||
        </StyledArrowIcon>
 | 
			
		||||
      )}
 | 
			
		||||
    </StyledContainer>
 | 
			
		||||
  );
 | 
			
		||||
};
 | 
			
		||||
					Loading…
					
					
				
		Reference in New Issue