Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | 19x 19x 19x 19x 19x 19x | import { ReactElement, useEffect } from "react"; import { FullScreenLyrics, MiniPlayer } from "components"; import { ContextMenuContextProvider } from "context/ContextMenuContext"; import { useDisableGlobalContextMenu, useSpotify } from "hooks"; export const DPIPLyrics = (): ReactElement => { const { pipWindow } = useSpotify(); useDisableGlobalContextMenu(pipWindow.current ?? undefined); useEffect(() => { Iif (!pipWindow.current) return; const { document: pipDoc } = pipWindow.current; pipDoc.documentElement.style.cssText = ""; pipDoc.body.style.cssText = ""; pipDoc.body.style.margin = "0"; pipDoc.body.style.padding = "0"; pipDoc.body.style.minHeight = "100svh"; pipDoc.body.style.display = "contents"; const style = document.createElement("style"); style.textContent = ` * { margin: 0; padding: 0; box-sizing: border-box; } html,body{ height: 100svh; width: 100vw; max-height: 100svh; min-height: 100svh; overflow: hidden; background-color: black; display: contents; position: fixed; } `; pipDoc.head.appendChild(style); return () => { pipDoc.documentElement.style.cssText = ""; pipDoc.body.style.cssText = ""; pipDoc.head.removeChild(style); }; }, [pipWindow]); return ( <ContextMenuContextProvider document={pipWindow.current?.document}> <div className="pipApp" style={{ width: "100%", height: "100svh", display: "flex", flexDirection: "column", }} > <MiniPlayer document={pipWindow.current?.document} /> <FullScreenLyrics document={pipWindow.current?.document} /> </div> <div id="contextMenu"></div> </ContextMenuContextProvider> ); }; export default DPIPLyrics; |