mirror of
https://github.com/Qortal/chrome-extension.git
synced 2025-04-04 19:25:53 +00:00
53 lines
1.6 KiB
TypeScript
53 lines
1.6 KiB
TypeScript
import React, { useContext, useEffect, useRef } from 'react'
|
|
import { AppViewer } from './AppViewer'
|
|
import Frame from 'react-frame-component';
|
|
import { MyContext } from '../../App';
|
|
import { subscribeToEvent, unsubscribeFromEvent } from '../../utils/events';
|
|
|
|
const AppViewerContainer = ({app, isSelected, hide}) => {
|
|
const { rootHeight } = useContext(MyContext);
|
|
const frameRef = useRef(null);
|
|
|
|
const refreshAppFunc = (e) => {
|
|
console.log('getting refresh', e)
|
|
};
|
|
|
|
// useEffect(() => {
|
|
// subscribeToEvent("refreshAPp", refreshAppFunc);
|
|
|
|
// return () => {
|
|
// unsubscribeFromEvent("refreshApp", refreshAppFunc);
|
|
// };
|
|
// }, []);
|
|
|
|
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 - 20px)`,
|
|
border: 'none',
|
|
width: '100%',
|
|
display: (!isSelected || hide) && 'none'
|
|
}} ><AppViewer app={app} /></Frame>
|
|
)
|
|
}
|
|
|
|
export default AppViewerContainer |