ntfy/web/src/components/ActionBar.js

54 lines
2.0 KiB
JavaScript
Raw Normal View History

2022-02-25 18:46:22 +01:00
import AppBar from "@mui/material/AppBar";
import Navigation from "./Navigation";
import Toolbar from "@mui/material/Toolbar";
import IconButton from "@mui/material/IconButton";
import MenuIcon from "@mui/icons-material/Menu";
import Typography from "@mui/material/Typography";
import SubscribeSettings from "./SubscribeSettings";
2022-02-25 18:46:22 +01:00
import * as React from "react";
2022-02-28 22:56:38 +01:00
import Box from "@mui/material/Box";
2022-03-02 22:16:30 +01:00
import {topicShortUrl} from "../app/utils";
2022-03-04 22:10:04 +01:00
import {useLocation} from "react-router-dom";
2022-02-25 18:46:22 +01:00
const ActionBar = (props) => {
2022-03-04 22:10:04 +01:00
const location = useLocation();
let title = "ntfy";
if (props.selectedSubscription) {
title = topicShortUrl(props.selectedSubscription.baseUrl, props.selectedSubscription.topic);
} else if (location.pathname === "/settings") {
title = "Settings";
}
2022-02-25 18:46:22 +01:00
return (
2022-02-26 20:22:21 +01:00
<AppBar position="fixed" sx={{
width: '100%',
2022-02-26 20:36:23 +01:00
zIndex: { sm: 1250 }, // > Navigation (1200), but < Dialog (1300)
2022-02-26 20:22:21 +01:00
ml: { sm: `${Navigation.width}px` }
}}>
2022-02-25 18:46:22 +01:00
<Toolbar sx={{pr: '24px'}}>
<IconButton
color="inherit"
edge="start"
onClick={props.onMobileDrawerToggle}
sx={{ mr: 2, display: { sm: 'none' } }}
>
<MenuIcon />
</IconButton>
2022-02-28 22:56:38 +01:00
<Box component="img" src="static/img/ntfy.svg" sx={{
display: { xs: 'none', sm: 'block' },
marginRight: '10px',
height: '28px'
}}/>
2022-02-26 20:22:21 +01:00
<Typography variant="h6" noWrap component="div" sx={{ flexGrow: 1 }}>
{title}
</Typography>
2022-03-04 22:10:04 +01:00
{props.selectedSubscription && <SubscribeSettings
2022-02-25 18:46:22 +01:00
subscription={props.selectedSubscription}
onUnsubscribe={props.onUnsubscribe}
/>}
</Toolbar>
</AppBar>
);
};
export default ActionBar;