diff --git a/ts/components/SessionQRCode.tsx b/ts/components/SessionQRCode.tsx index 3fcd56f87..f7db9e5c4 100644 --- a/ts/components/SessionQRCode.tsx +++ b/ts/components/SessionQRCode.tsx @@ -1,9 +1,19 @@ import { MouseEvent, useEffect, useRef, useState } from 'react'; import { QRCode } from 'react-qrcode-logo'; -import { CSSProperties } from 'styled-components'; -import { COLORS } from '../themes/constants/colors'; +import styled, { CSSProperties } from 'styled-components'; +import { THEME_GLOBALS } from '../themes/globals'; import { saveQRCode } from '../util/saveQRCode'; -import { Flex } from './basic/Flex'; +import { AnimatedFlex } from './basic/Flex'; + +// AnimatedFlex because we fade in the QR code a flicker on first render +const StyledQRView = styled(AnimatedFlex)<{ + size: number; +}>` + cursor: pointer; + border-radius: 10px; + overflow: hidden; + ${props => props.size && `width: ${props.size}px; height: ${props.size}px;`} +`; export type SessionQRCodeProps = { id: string; @@ -25,8 +35,8 @@ export function SessionQRCode(props: SessionQRCodeProps) { id, value, size, - backgroundColor = COLORS.WHITE, - foregroundColor = COLORS.BLACK, + backgroundColor, + foregroundColor, hasLogo, logoImage, logoSize, @@ -45,32 +55,32 @@ export function SessionQRCode(props: SessionQRCodeProps) { useEffect(() => { // Don't pass the component props to the QR component directly instead update it's props in the next render cycle to prevent janky renders - if (!loading && hasLogo && logo !== logoImage) { + if (loading) { + return; + } + + if (bgColor !== backgroundColor) { setBgColor(backgroundColor); + } + + if (fgColor !== foregroundColor) { setFgColor(foregroundColor); + } + + if (hasLogo && logo !== logoImage) { setLogo(logoImage); } - }, [backgroundColor, foregroundColor, hasLogo, loading, logo, logoImage]); + }, [backgroundColor, bgColor, fgColor, foregroundColor, hasLogo, loading, logo, logoImage]); return ( - ) => { - // event.preventDefault(); - // const fileName = `${id}-${new Date().toISOString()}.png`; - // try { - // qrRef.current?.download('png', fileName); - // } catch (e) { - // window.log.error(`Error downloading QR code: ${fileName}\n${e}`); - // } - // }} onClick={(event: MouseEvent) => { event.preventDefault(); void saveQRCode(id, { @@ -80,6 +90,9 @@ export function SessionQRCode(props: SessionQRCodeProps) { }); }} data-testId={dataTestId || 'session-qr-code'} + initial={{ opacity: 0 }} + animate={{ opacity: loading ? 0 : 1 }} + transition={{ duration: THEME_GLOBALS['--default-duration-seconds'] }} style={style} > - + ); }