123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327 |
- import {useCallback, useEffect, useRef} from 'react';
- import styled from '@emotion/styled';
- import RRWebPlayer from '@sentry-internal/rrweb-player';
- import {space} from 'sentry/styles/space';
- type RRWebEvents = ConstructorParameters<typeof RRWebPlayer>[0]['props']['events'];
- interface Props {
- className?: string;
- events?: RRWebEvents;
- }
- function BaseRRWebReplayerComponent({events, className}: Props) {
- const playerEl = useRef<HTMLDivElement>(null);
- const initPlayer = useCallback(() => {
- if (events === undefined) {
- return;
- }
- if (playerEl.current === null) {
- return;
- }
- // eslint-disable-next-line no-new
- new RRWebPlayer({
- target: playerEl.current,
- props: {events, autoPlay: false},
- });
- }, [events]);
- useEffect(() => void initPlayer(), [initPlayer]);
- return <div ref={playerEl} className={className} />;
- }
- const BaseRRWebReplayer = styled(BaseRRWebReplayerComponent)`
- .replayer-mouse {
- position: absolute;
- width: 32px;
- height: 32px;
- transition:
- left 0.05s linear,
- top 0.05s linear;
- background-size: contain;
- background-repeat: no-repeat;
- background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxMiAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAgMTZWMEwxMS42IDExLjZINC44TDQuNCAxMS43TDAgMTZaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNOS4xIDE2LjdMNS41IDE4LjJMMC43OTk5OTkgNy4xTDQuNSA1LjZMOS4xIDE2LjdaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNNC42NzQ1MSA4LjYxODUxTDIuODMwMzEgOS4zOTI3MUw1LjkyNzExIDE2Ljc2OTVMNy43NzEzMSAxNS45OTUzTDQuNjc0NTEgOC42MTg1MVoiIGZpbGw9ImJsYWNrIi8+CjxwYXRoIGQ9Ik0xIDIuNFYxMy42TDQgMTAuN0w0LjQgMTAuNkg5LjJMMSAyLjRaIiBmaWxsPSJibGFjayIvPgo8L3N2Zz4K');
- border-color: transparent;
- }
- .replayer-mouse:after {
- content: '';
- display: inline-block;
- width: 32px;
- height: 32px;
- background: ${p => p.theme.purple300};
- border-radius: 100%;
- transform: translate(-50%, -50%);
- opacity: 0.3;
- }
- .replayer-mouse.active:after {
- animation: click 0.2s ease-in-out 1;
- }
- .replayer-mouse.touch-device {
- background-image: none;
- width: 70px;
- height: 70px;
- border-radius: 100%;
- margin-left: -37px;
- margin-top: -37px;
- border: 4px solid rgba(73, 80, 246, 0);
- transition:
- left 0s linear,
- top 0s linear,
- border-color 0.2s ease-in-out;
- }
- .replayer-mouse.touch-device.touch-active {
- border-color: ${p => p.theme.purple200};
- transition:
- left 0.25s linear,
- top 0.25s linear,
- border-color 0.2s ease-in-out;
- }
- .replayer-mouse.touch-device:after {
- opacity: 0;
- }
- .replayer-mouse.touch-device.active:after {
- animation: touch-click 0.2s ease-in-out 1;
- }
- .replayer-mouse-tail {
- position: absolute;
- pointer-events: none;
- }
- @keyframes click {
- 0% {
- opacity: 0.3;
- width: 20px;
- height: 20px;
- }
- 50% {
- opacity: 0.5;
- width: 10px;
- height: 10px;
- }
- }
- @keyframes touch-click {
- 0% {
- opacity: 0;
- width: 20px;
- height: 20px;
- }
- 50% {
- opacity: 0.5;
- width: 10px;
- height: 10px;
- }
- }
- .replayer-wrapper > iframe {
- border: none;
- }
- .rr-player {
- width: auto !important;
- height: auto !important;
- }
- .rr-player__frame {
- width: 100% !important;
- border-radius: 3px 3px 0 0;
- border: 1px solid ${p => p.theme.border};
- overflow: hidden;
- }
- .rr-player iframe {
- width: 100% !important;
- height: 100% !important;
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- border: 0;
- }
- .replayer-wrapper {
- transform: scale(0.6) translate(0, 0) !important;
- transform-origin: top left;
- width: 166.66%;
- height: 166.66%;
- overflow: hidden;
- position: relative;
- box-shadow: inset 0 -1px 3px rgba(0, 0, 0, 0.08);
- }
- .replayer-mouse,
- .replayer-mouse:after {
- z-index: ${p => p.theme.zIndex.tooltip};
- }
- .rr-controller {
- width: 100%;
- display: block;
- padding: ${space(2)} 0;
- background: ${p => p.theme.background};
- border-radius: 0 0 3px 3px;
- border: 1px solid ${p => p.theme.border};
- border-top: none;
- position: relative;
- color: ${p => p.theme.textColor};
- }
- .rr-timeline {
- width: 100%;
- display: grid;
- grid-template-columns: 90px 1fr 90px;
- align-items: center;
- }
- .rr-timeline__time {
- text-align: center;
- color: ${p => p.theme.textColor};
- }
- .rr-progress {
- width: 100%;
- height: 12px;
- position: relative;
- cursor: pointer;
- &:before {
- content: '';
- background: ${p => p.theme.innerBorder};
- border-radius: 3px;
- display: block;
- height: 6px;
- position: absolute;
- left: 0;
- right: 0;
- top: 3px;
- }
- }
- .rr-progress.disabled {
- cursor: not-allowed;
- }
- .rr-progress__step {
- height: 6px;
- position: absolute;
- left: 0;
- top: 3px;
- border-radius: 3px;
- background: ${p => p.theme.purple200};
- }
- .rr-progress__handler {
- width: 20px;
- height: 20px;
- border-radius: 50%;
- position: absolute;
- top: 6px;
- transform: translate(-50%, -50%);
- background: ${p => p.theme.purple300};
- }
- .rr-controller__btns {
- display: grid;
- grid-auto-flow: column;
- grid-auto-columns: max-content;
- gap: ${space(0.75)};
- align-items: center;
- justify-content: center;
- font-size: ${p => p.theme.fontSizeSmall};
- }
- .rr-controller__btns button {
- color: ${p => p.theme.textColor};
- width: 28px;
- height: 28px;
- display: flex;
- padding: 0;
- align-items: center;
- justify-content: center;
- background: none;
- border: none;
- border-radius: 50%;
- cursor: pointer;
- transition: background 200ms ease;
- > svg {
- fill: ${p => p.theme.textColor};
- }
- }
- .rr-controller__btns button:active {
- background: ${p => p.theme.innerBorder};
- }
- .rr-controller__btns button.active {
- color: ${p => p.theme.white};
- background: ${p => p.theme.active};
- }
- .rr-controller__btns button:disabled {
- cursor: not-allowed;
- }
- .switch {
- height: 1em;
- display: flex;
- align-items: center;
- }
- .switch.disabled {
- opacity: 0.5;
- }
- .label {
- margin: 0 8px;
- }
- .switch input[type='checkbox'] {
- position: absolute;
- visibility: hidden;
- }
- .switch label {
- width: 32px;
- height: 16px;
- position: relative;
- cursor: pointer;
- display: flex;
- align-items: center;
- margin: 0;
- padding: 2px 3px;
- }
- .switch.disabled label {
- cursor: not-allowed;
- }
- .switch label:before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- border: 1px solid ${p => p.theme.border};
- border-radius: 16px;
- }
- .switch label:after {
- content: '';
- width: 10px;
- height: 10px;
- border-radius: 50%;
- transition: all 200ms ease;
- background: ${p => p.theme.border};
- z-index: 2;
- }
- .switch input[type='checkbox']:checked + label:after {
- background: ${p => p.theme.active};
- transform: translateX(16px);
- }
- `;
- export default BaseRRWebReplayer;
|