import { useEffect, useRef } from 'react'
import useSettings from 'hooks/useSettings'
import useMediaQuery from 'hooks/useMediaQuery'
import { close, toggleMin, toggleMax, move, focus } from 'helpers/windowActions'
import { faArrowUp, faExpandAlt, faTimes, faCompressAlt } from '@fortawesome/free-solid-svg-icons'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
const App = ({ children, app, setApps }) => {
const { t } = useSettings()
const winRef = useRef(null)
const forceMax = useMediaQuery(`(max-width: ${app.width}), (max-height: ${app.height})`)
useEffect(() => { move(app, winRef, setApps) }, [])
return (
{ focus(app.name, setApps) }}
className={
'window' +
(app.min ? ' hidden' : '') +
(app.max || forceMax ? ' maximized' : '')
}
style={{
height: app.height,
width: app.width,
...app.pos.length
? { top: app.pos[1], left: app.pos[0] }
: {
top: `calc((( 100vh - ${app.height} ) / 2) + 2em)`,
left: `calc(( 100vw - ${app.width} ) / 2)`
}
}}
>
{t(app.name)}
{children}
{app.buttons.includes('min') && (
{ e.preventDefault(); e.stopPropagation(); toggleMin(app.name, setApps) }}>
)}
{app.buttons.includes('max') && !forceMax && (
{ e.preventDefault(); e.stopPropagation(); toggleMax(app.name, setApps) }}>
)}
{app.buttons.includes('close') && (
{ e.preventDefault(); e.stopPropagation(); close(app.name, setApps) }}>
)}
)
}
export default App