aboutsummaryrefslogtreecommitdiff
path: root/src/demo/Window/Window.tsx
diff options
context:
space:
mode:
authorEugene Sokolov <eug-vs@keemail.me>2020-10-10 14:11:42 +0300
committerGitHub <noreply@github.com>2020-10-10 14:11:42 +0300
commit2f96d3e26f433a57af26ecf2ec34b9fec4183d71 (patch)
treea8c2b1daf5170923f9e7ccb46f098e30d51e8a08 /src/demo/Window/Window.tsx
parentc33c6a521325adafb250124d2814423b3a4187b5 (diff)
parent36c0a6b3e7ac72e4e787d5def6b0cc03eae7db6c (diff)
downloadreact-benzin-2f96d3e26f433a57af26ecf2ec34b9fec4183d71.tar.gz
Merge pull request #15 from eug-vs/refactor/orientation
Revise BENZIN orientation
Diffstat (limited to 'src/demo/Window/Window.tsx')
-rw-r--r--src/demo/Window/Window.tsx62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/demo/Window/Window.tsx b/src/demo/Window/Window.tsx
new file mode 100644
index 0000000..beaa672
--- /dev/null
+++ b/src/demo/Window/Window.tsx
@@ -0,0 +1,62 @@
+import React from 'react';
+
+import { Typography, Divider, makeStyles } from '@material-ui/core';
+
+import WindowSurface from './WindowSurface';
+import { SurfaceSize, SurfacePosition } from './types';
+
+
+interface PropTypes {
+ type: 'primary' | 'secondary' | 'mono';
+ name?: string;
+}
+
+
+const useStyles = makeStyles(theme => ({
+ header: {
+ padding: theme.spacing(1, 0, 1, 2),
+ background: theme.palette.background.elevation2,
+ },
+}));
+
+
+const Window: React.FC<PropTypes> = ({ type, name, children }) => {
+ const classes = useStyles();
+
+ const size: SurfaceSize = {
+ height: '85vh',
+ };
+
+ const position: SurfacePosition = {
+ bottom: '3vh',
+ };
+
+ if (type === 'primary') {
+ size.width = '63vw';
+ position.left = '2vw';
+ } else if (type === 'secondary') {
+ size.width = '31vw';
+ position.right = '2vw';
+ } else if (type === 'mono') {
+ position.left = '2vw';
+ position.right = '2vw';
+ }
+
+ return (
+ <WindowSurface
+ size={size}
+ position={position}
+ >
+ {name
+ && (
+ <div>
+ <Typography variant="h5" className={classes.header}>{name}</Typography>
+ <Divider />
+ </div>
+ )}
+ {children}
+ </WindowSurface>
+ );
+};
+
+export default Window;