import { useStore } from 'nanostores/react' import React from 'react' import styled from 'styled-components' import { cameraAllowed as cameraAllowedStore, requestCameraAllowed, } from '../stores/media' import { BaseProps } from '../types' import { isPopup } from '../utils/isPopup' import { windowOpen } from '../utils/messaging' import { Button } from './Button' const Media: React.FC = ({ className }) => { const cameraAllowed = useStore(cameraAllowedStore) const canGrant = !isPopup() const open = () => windowOpen('/') if (cameraAllowed) return null return (
The extension needs access to your camera to scan qr codes from a Parity Signer. Open it in new page and give camera access.
{!canGrant && } {canGrant && }
) } export default styled(Media)` display: flex; align-items: center; justify-content: space-between; margin: 0.5rem 0.5rem 0; padding: 0.5rem; background: ${({ theme }: BaseProps) => theme.cardBgColor}; border-radius: 0.2rem; .message { font-size: ${({ theme }: BaseProps) => theme.smallFontSize}; padding-right: 1rem; } `