summaryrefslogtreecommitdiffstats
path: root/src/RuzDialog.js
blob: 5a8e8ea6c46760b01867ff94d6f99c3b26001787 (plain) (blame)
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import React from 'react';
import { makeStyles } from '@material-ui/core/styles';
import { Dialog, DialogContent, DialogContentText, DialogTitle, DialogActions, Button, List } from '@material-ui/core';
import { useMediaQuery, useTheme } from '@material-ui/core';
import { Divider, ListItem, ListItemAvatar, ListItemText } from '@material-ui/core';
import { AppBar, Toolbar, IconButton, Typography } from '@material-ui/core';
import CloseIcon from '@material-ui/icons/Close';


const useStyles = makeStyles(theme => ({
  paper: {
    marginTop: theme.spacing(3),
    display: 'flex',
    flexDirection: 'column',
    alignItems: 'center',
    width: '100%',
  },
  schedule: {
    width: '100%',
    backgroundColor: theme.palette.background.paper,
  },
  avatar: {
    margin: theme.spacing(1),
    backgroundColor: theme.palette.secondary.main,
  },
  stickyHeader: {
    background: 'inherit',
  },
  fixUl: {
    padding: 0,
    background: 'inherit',
  },
  centerProgress: {
    position: 'absolute',
    top: '50%',
    verticalAlign: 'middle',
  },
  dateHeader: {
    textTransform: 'capitalize',
    color: 'teal',
  },
  mobileBar: {
    position: 'relative',
  },
  mobileTitle: {
    marginLeft: theme.spacing(2),
    flex: 1,
  },
}));

function RuzDialogCard(props) {
  
  return (
    <ListItem alignItems="flex-start">
      <ListItemText
        primary={props.entry.description}
      />
    </ListItem>
  )
}

function RuzDialogList(props) {
  const item = props.item;
  const classes = useStyles();

  const entries = [
    { description: `${item.building}` },
    { description: `${item.lecturer}` },
  ];

  return (
    <List className={classes.schedule}>
      {entries.map(entry => {
        return (
          <React.Fragment>
            <RuzDialogCard entry={entry} />
            <Divider />
          </React.Fragment>
        );}
      )}
    </List>
  )
}

function MobileNavBar(props) {

  const classes = useStyles();
  const closeAction = props.closeAction;
  const title = props.title;

  return (
    <AppBar className={classes.mobileBar}>
      <Toolbar>
        <IconButton edge="start" color="inherit" onClick={closeAction} aria-label="close">
          <CloseIcon />
        </IconButton>
        <Typography variant="h6" className={classes.mobileTitle}>
          {title}
        </Typography>
      </Toolbar>
    </AppBar>
  );
}

export default function RuzDialog(props) {
  if (!props.open)
    return <React.Fragment />

  const theme = useTheme();
  const isMobile = useMediaQuery(theme.breakpoints.down('sm'));
  const closeAction = props.dialogCloseAction;
  
  return (
    <Dialog
      fullScreen={isMobile}
      fullWidth={true}
      maxWidth="xs"
      open={true}
      onClose={closeAction}
      aria-labelledby="ruz-dialog-title"
    >
      {
        isMobile ? 
        <MobileNavBar closeAction={closeAction} title={props.dialog.discipline} />
        :
        <DialogTitle id="responsive-dialog-title">{props.dialog.discipline}</DialogTitle>
      }
      <DialogContent>
        <RuzDialogList item={props.dialog} />
      </DialogContent>
      <DialogActions>
        <Button onClick={closeAction} color="primary" autoFocus>
          close
        </Button>
      </DialogActions>
    </Dialog>
  );
}