File size: 7,070 Bytes
15975c4
 
 
 
 
 
82d1bab
15975c4
 
 
 
b4cb838
15975c4
 
 
 
d909077
15975c4
 
 
 
 
d909077
15975c4
 
b4cb838
15975c4
 
 
b4cb838
15975c4
 
 
 
 
 
 
 
 
 
 
 
 
b4cb838
 
 
15975c4
d909077
15975c4
35961be
 
 
 
 
 
 
 
 
 
 
 
 
15975c4
 
b4cb838
15975c4
 
35961be
d909077
 
 
 
 
 
 
15975c4
b4cb838
15975c4
 
d909077
15975c4
d909077
15975c4
b4cb838
 
15975c4
 
 
 
 
 
 
 
 
 
d909077
15975c4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86cc2b5
15975c4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86cc2b5
15975c4
 
 
 
 
 
 
 
 
 
 
86cc2b5
15975c4
 
 
 
 
 
 
 
 
 
 
 
82d1bab
15975c4
 
82d1bab
15975c4
 
 
 
 
82d1bab
 
15975c4
82d1bab
15975c4
86cc2b5
82d1bab
 
 
 
 
 
86cc2b5
 
 
 
 
 
 
82d1bab
 
86cc2b5
82d1bab
86cc2b5
 
82d1bab
15975c4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35961be
 
15975c4
 
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
import {
    AppBar,
    Box,
    Button,
    Grid,
    IconButton,
    Link,
    Modal,
    Toolbar,
    Tooltip,
    Typography,
    useMediaQuery,
    useScrollTrigger,
    useTheme
} from "@mui/material";
import { FC, useContext, useState } from "react";
import { Navigate, useLocation, useNavigate, useNavigation } from "react-router-dom";
import { ThemeModeContext, ThemeSchemeContext } from "../../theme";

import DarkIcon from "@mui/icons-material/DarkModeOutlined";
import LightIcon from "@mui/icons-material/LightModeOutlined";
import MenuIcon from "@mui/icons-material/MenuTwoTone";
import { Home } from "@mui/icons-material";

interface HeaderProps {
  onMobile?: boolean;
  window?: () => Window;
}

const MainAppBar: FC<HeaderProps> = ({ onMobile, window }) => {
  const { toggleTheme, themeMode, setThemeMode } = useContext(ThemeModeContext);

  const location = useLocation();

  const [openModal, setOpenModal] = useState(false)
  const handleOpen = () => setOpenModal(true)
  const handleClose = () => setOpenModal(false)

  const trigger = useScrollTrigger({
    disableHysteresis: true,
    threshold: 0,
    target: window ? window() : undefined,
  });
  const theme = useTheme();

  const isSxUp = useMediaQuery(theme.breakpoints.up('sm'));

  const navigate = useNavigate()


  const style_modal = {
      position: "absolute" as "absolute",
      top: !isSxUp ? "50%" : "50%",
      left: "50%",
      transform: "translate(-50%, -50%)",
      width: !isSxUp ? "97%" : "auto",
      color: "inherit",
      bgcolor: "background.paper",
      p: !isSxUp ? 4 : 4,
      borderRadius: "35px",
    }

  return (
    <>
      <AppBar position="sticky" elevation={trigger ? 0 : 0}>
        <Toolbar>
          <Grid container spacing={1} alignItems="center">
          <Grid item sx={{ display: "flex", alignItems: "center", alignContent:"center", cursor:"pointer"}} onClick={(e) => navigate('/Home')}>
            <Home sx={{pr: 1.5, fontSize:30}}/>
              <Typography
                color="inherit"
                sx={{ fontWeight: "bold", letterSpacing: 1, fontSize: 20, fontFamily:"monospace"  }}
              >
                AMP Aubay
              </Typography>
            </Grid>
            { isSxUp ? <Grid item sx={{ display: "flex", alignItems: "baseline" }} visibility={"visible"}>
              <Typography
                color="inherit"
                sx={{ fontWeight: "normal", letterSpacing: 0.5, fontSize: 20, fontFamily:"monospace", pl:1}}
              >
                // {location.pathname.replace("/", "")}
              </Typography>
            </Grid> : <Box></Box>
            }
            <Grid item xs></Grid>
            <Grid item>
              <Tooltip title="Switch Theme">
                <IconButton size="large" color="inherit" onClick={toggleTheme}>
                  {themeMode == "light" ? <DarkIcon /> : <LightIcon />}
                </IconButton>
              </Tooltip>
            </Grid>
          </Grid>
          <Button variant="tonal" color="tertiary" onClick={handleOpen}>
            About
          </Button>
          <div>
            <Modal
              open={openModal}
              onClose={handleClose}
              aria-labelledby="modal-modal-title"
              aria-describedby="modal-modal-description"
            >
              <Box sx={style_modal}>
                <Typography
                  id="modal-modal-title"
                  variant="h6"
                  sx={{
                    paddingTop: "10px",
                    fontFamily: "monospace",
                    fontStyle: "italic",
                  }}
                >
                  VST Inference 
                </Typography>

                <Typography
                  id="modal-modal-title"
                  variant="h6"
                  sx={{ paddingTop: "10px", fontFamily: "monospace" }}
                  component="h2"
                >
                  Project contributors
                </Typography>
                <Typography
                  id="modal-modal-title"
                  variant="h6"
                  sx={{ paddingTop: "10px", fontFamily: "monospace" }}
                  component="h2"
                >
                  Application & Model:
                </Typography>
                <Box sx={{ gap: "1px", marginLeft: "10px" }}>
                  <Typography
                    id="modal-modal-description"
                    paragraph
                    sx={{
                      mt: 0,
                      mb: 0,
                      fontSize: "18px",
                      fontFamily: "monospace",
                    }}
                  >
                    - Yann Derré @ UTBM
                  </Typography>
                  <Typography
                    id="modal-modal-description"
                    paragraph
                    sx={{
                      mt: 0,
                      mb: 0,
                      fontSize: "18px",
                      fontFamily: "monospace",
                    }}
                  >
                    - Anselme Canivet @ UTC
                  </Typography>
                </Box>

                <Typography
                  id="modal-modal-title"
                  variant="h6"
                  sx={{ paddingTop: "10px", fontFamily: "monospace" }}
                  component="h2"
                >
                  Extra Support model:
                </Typography>
                <Box sx={{ gap: "1px", marginLeft: "10px" }}>
                  <Link
                    id="modal-modal-description"
                    paragraph
                    
                    sx={{
                      mt: 0,
                      mb: 0,
                      fontSize: "18px",
                      fontFamily: "monospace",
                      cursor:"pointer",
                      color:"black"
                    }}
                    href="https://github.com/crodriguez1a"
                  >
                    Inversynth implementation by Carlos Rodriguez

                  </Link>
                  <Box>

                  </Box>
                  <Link
                    id="modal-modal-description"
                    paragraph
                    sx={{
                      mt: 0,
                      mb: 0,
                      fontSize: "18px",
                      fontFamily: "monospace",
                      cursor:"pointer",
                      color: "black"
                    }}
                    href="https://arxiv.org/pdf/1812.06349.pdf"
                  >
                    Inversynth model by Oren Barkan, David Tsiris, Ori Katz, Noam Koenigstein
                  </Link>
                </Box>

                <Typography
                  id="modal-modal-description"
                  sx={{ mt: 2, fontFamily: "monospace" }}
                >
                </Typography>
              </Box>
            </Modal>
          </div>
        </Toolbar>
      </AppBar>
    </>
  );
};



  
export default MainAppBar;