mirror of
https://github.com/Qortal/chrome-extension.git
synced 2025-04-03 19:15:52 +00:00
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
import React, { useContext, useEffect, useRef } from 'react'
|
|
import { AppViewer } from './AppViewer'
|
|
import Frame from 'react-frame-component';
|
|
import { MyContext } from '../../App';
|
|
|
|
const AppViewerContainer = ({app, isSelected, hide}) => {
|
|
const { rootHeight } = useContext(MyContext);
|
|
const frameRef = useRef(null);
|
|
|
|
|
|
return (
|
|
<Frame id={`browser-iframe-${app?.tabId}` } ref={frameRef} head={
|
|
<>
|
|
{/* Inject styles directly into the iframe */}
|
|
<style>
|
|
{`
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
/* Hide scrollbars for all elements */
|
|
* {
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
scrollbar-width: none; /* Firefox */
|
|
}
|
|
*::-webkit-scrollbar {
|
|
display: none; /* Chrome, Safari, Opera */
|
|
}
|
|
`}
|
|
</style>
|
|
</>
|
|
} style={{
|
|
height: `calc(${rootHeight} - 60px - 45px)`,
|
|
border: 'none',
|
|
width: '100%',
|
|
display: (!isSelected || hide) && 'none'
|
|
}} ><AppViewer app={app} /></Frame>
|
|
)
|
|
}
|
|
|
|
export default AppViewerContainer |