2022-02-18 14:49:51 +00:00
|
|
|
import * as React from 'react';
|
2022-02-21 01:04:03 +00:00
|
|
|
import {useEffect, useState} from 'react';
|
2022-02-18 14:49:51 +00:00
|
|
|
import Box from '@mui/material/Box';
|
2022-02-25 01:18:46 +00:00
|
|
|
import {ThemeProvider} from '@mui/material/styles';
|
2022-02-20 00:48:33 +00:00
|
|
|
import CssBaseline from '@mui/material/CssBaseline';
|
|
|
|
import Toolbar from '@mui/material/Toolbar';
|
2022-02-28 16:52:50 +00:00
|
|
|
import Notifications from "./Notifications";
|
2022-02-20 03:26:58 +00:00
|
|
|
import theme from "./theme";
|
2022-02-24 01:30:12 +00:00
|
|
|
import connectionManager from "../app/ConnectionManager";
|
2022-02-25 17:46:22 +00:00
|
|
|
import Navigation from "./Navigation";
|
|
|
|
import ActionBar from "./ActionBar";
|
2022-03-06 05:02:27 +00:00
|
|
|
import notifier from "../app/Notifier";
|
2022-02-28 16:52:50 +00:00
|
|
|
import NoTopics from "./NoTopics";
|
2022-02-28 21:56:38 +00:00
|
|
|
import Preferences from "./Preferences";
|
2022-03-02 02:23:12 +00:00
|
|
|
import {useLiveQuery} from "dexie-react-hooks";
|
2022-03-02 21:16:30 +00:00
|
|
|
import poller from "../app/Poller";
|
|
|
|
import pruner from "../app/Pruner";
|
2022-03-03 21:52:07 +00:00
|
|
|
import subscriptionManager from "../app/SubscriptionManager";
|
|
|
|
import userManager from "../app/UserManager";
|
2022-03-04 21:10:04 +00:00
|
|
|
import {BrowserRouter, Route, Routes, useLocation, useNavigate} from "react-router-dom";
|
|
|
|
import {subscriptionRoute} from "../app/utils";
|
2022-02-25 01:18:46 +00:00
|
|
|
|
2022-03-05 13:52:52 +00:00
|
|
|
// TODO support unsubscribed routes
|
2022-03-06 03:11:32 +00:00
|
|
|
// TODO add "home" route that is selected when nothing else fits
|
2022-03-04 17:10:11 +00:00
|
|
|
// TODO new notification indicator
|
2022-03-06 03:11:32 +00:00
|
|
|
// TODO "copy url" toast
|
|
|
|
// TODO "copy link url" button
|
2022-03-06 05:02:27 +00:00
|
|
|
// TODO races when two tabs are open
|
2022-03-06 15:42:05 +00:00
|
|
|
// TODO investigate service workers
|
2022-02-26 16:51:45 +00:00
|
|
|
|
2022-02-18 19:41:01 +00:00
|
|
|
const App = () => {
|
2022-03-04 21:10:04 +00:00
|
|
|
return (
|
|
|
|
<BrowserRouter>
|
|
|
|
<ThemeProvider theme={theme}>
|
|
|
|
<CssBaseline/>
|
|
|
|
<Root/>
|
|
|
|
</ThemeProvider>
|
|
|
|
</BrowserRouter>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const Root = () => {
|
2022-02-25 01:18:46 +00:00
|
|
|
const [mobileDrawerOpen, setMobileDrawerOpen] = useState(false);
|
2022-03-06 05:02:27 +00:00
|
|
|
const [notificationsGranted, setNotificationsGranted] = useState(notifier.granted());
|
2022-03-04 21:10:04 +00:00
|
|
|
const navigate = useNavigate();
|
|
|
|
const location = useLocation();
|
2022-03-03 21:52:07 +00:00
|
|
|
const users = useLiveQuery(() => userManager.all());
|
2022-03-04 21:10:04 +00:00
|
|
|
const subscriptions = useLiveQuery(() => subscriptionManager.all());
|
2022-03-05 13:52:52 +00:00
|
|
|
const selectedSubscription = findSelected(location, subscriptions);
|
2022-03-04 21:10:04 +00:00
|
|
|
|
2022-03-06 21:35:31 +00:00
|
|
|
console.log(window.location);
|
2022-03-02 21:16:30 +00:00
|
|
|
const handleSubscribeSubmit = async (subscription) => {
|
|
|
|
console.log(`[App] New subscription: ${subscription.id}`, subscription);
|
2022-03-04 21:10:04 +00:00
|
|
|
navigate(subscriptionRoute(subscription));
|
2022-02-26 15:14:43 +00:00
|
|
|
handleRequestPermission();
|
2022-02-18 20:47:25 +00:00
|
|
|
};
|
2022-03-06 03:33:34 +00:00
|
|
|
|
2022-02-26 15:14:43 +00:00
|
|
|
const handleRequestPermission = () => {
|
2022-03-06 05:02:27 +00:00
|
|
|
notifier.maybeRequestPermission(granted => setNotificationsGranted(granted));
|
2022-02-26 15:14:43 +00:00
|
|
|
};
|
2022-03-06 03:33:34 +00:00
|
|
|
|
2022-02-24 20:17:47 +00:00
|
|
|
useEffect(() => {
|
2022-03-02 21:16:30 +00:00
|
|
|
poller.startWorker();
|
|
|
|
pruner.startWorker();
|
2022-02-26 16:45:39 +00:00
|
|
|
}, [/* initial render */]);
|
2022-03-06 03:33:34 +00:00
|
|
|
|
2022-02-21 01:04:03 +00:00
|
|
|
useEffect(() => {
|
2022-03-02 21:16:30 +00:00
|
|
|
const handleNotification = async (subscriptionId, notification) => {
|
|
|
|
try {
|
2022-03-03 21:52:07 +00:00
|
|
|
const added = await subscriptionManager.addNotification(subscriptionId, notification);
|
|
|
|
if (added) {
|
2022-03-05 13:52:52 +00:00
|
|
|
const defaultClickAction = (subscription) => navigate(subscriptionRoute(subscription)); // FIXME
|
2022-03-06 05:02:27 +00:00
|
|
|
await notifier.notify(subscriptionId, notification, defaultClickAction)
|
2022-03-03 21:52:07 +00:00
|
|
|
}
|
2022-03-02 21:16:30 +00:00
|
|
|
} catch (e) {
|
|
|
|
console.error(`[App] Error handling notification`, e);
|
|
|
|
}
|
2022-02-26 16:45:39 +00:00
|
|
|
};
|
2022-03-04 16:08:32 +00:00
|
|
|
connectionManager.registerStateListener(subscriptionManager.updateState);
|
|
|
|
connectionManager.registerNotificationListener(handleNotification);
|
|
|
|
return () => {
|
|
|
|
connectionManager.resetStateListener();
|
|
|
|
connectionManager.resetNotificationListener();
|
|
|
|
}
|
2022-03-06 03:11:32 +00:00
|
|
|
// This is for the use of 'navigate' // FIXME
|
|
|
|
//eslint-disable-next-line
|
2022-03-04 16:08:32 +00:00
|
|
|
}, [/* initial render */]);
|
2022-03-06 03:33:34 +00:00
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
connectionManager.refresh(subscriptions, users);
|
|
|
|
}, [subscriptions, users]); // Dangle!
|
|
|
|
|
2022-02-18 14:49:51 +00:00
|
|
|
return (
|
2022-03-04 21:10:04 +00:00
|
|
|
<Box sx={{display: 'flex'}}>
|
2022-02-25 01:18:46 +00:00
|
|
|
<CssBaseline/>
|
2022-03-04 21:10:04 +00:00
|
|
|
<ActionBar
|
|
|
|
subscriptions={subscriptions}
|
|
|
|
selectedSubscription={selectedSubscription}
|
|
|
|
onMobileDrawerToggle={() => setMobileDrawerOpen(!mobileDrawerOpen)}
|
|
|
|
/>
|
|
|
|
<Box component="nav" sx={{width: {sm: Navigation.width}, flexShrink: {sm: 0}}}>
|
|
|
|
<Navigation
|
|
|
|
subscriptions={subscriptions}
|
2022-02-25 01:18:46 +00:00
|
|
|
selectedSubscription={selectedSubscription}
|
2022-03-04 21:10:04 +00:00
|
|
|
mobileDrawerOpen={mobileDrawerOpen}
|
|
|
|
notificationsGranted={notificationsGranted}
|
2022-02-25 01:18:46 +00:00
|
|
|
onMobileDrawerToggle={() => setMobileDrawerOpen(!mobileDrawerOpen)}
|
2022-03-04 21:10:04 +00:00
|
|
|
onSubscribeSubmit={handleSubscribeSubmit}
|
|
|
|
onRequestPermissionClick={handleRequestPermission}
|
2022-02-25 01:18:46 +00:00
|
|
|
/>
|
2022-02-18 14:49:51 +00:00
|
|
|
</Box>
|
2022-03-04 21:10:04 +00:00
|
|
|
<Main>
|
|
|
|
<Toolbar/>
|
|
|
|
<Routes>
|
|
|
|
<Route path="/" element={<NoTopics />} />
|
|
|
|
<Route path="settings" element={<Preferences />} />
|
2022-03-05 13:52:52 +00:00
|
|
|
<Route path=":baseUrl/:topic" element={<Notifications subscription={selectedSubscription}/>} />
|
|
|
|
<Route path=":topic" element={<Notifications subscription={selectedSubscription}/>} />
|
2022-03-04 21:10:04 +00:00
|
|
|
</Routes>
|
|
|
|
</Main>
|
|
|
|
</Box>
|
2022-02-18 14:49:51 +00:00
|
|
|
);
|
|
|
|
}
|
2022-02-18 19:41:01 +00:00
|
|
|
|
2022-03-02 21:16:30 +00:00
|
|
|
const Main = (props) => {
|
|
|
|
return (
|
|
|
|
<Box
|
|
|
|
component="main"
|
|
|
|
sx={{
|
|
|
|
display: 'flex',
|
|
|
|
flexGrow: 1,
|
|
|
|
flexDirection: 'column',
|
|
|
|
padding: 3,
|
|
|
|
width: {sm: `calc(100% - ${Navigation.width}px)`},
|
|
|
|
height: '100vh',
|
|
|
|
overflow: 'auto',
|
|
|
|
backgroundColor: (theme) => theme.palette.mode === 'light' ? theme.palette.grey[100] : theme.palette.grey[900]
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{props.children}
|
|
|
|
</Box>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2022-03-05 13:52:52 +00:00
|
|
|
const findSelected = (location, subscriptions) => {
|
|
|
|
if (!subscriptions || !location) {
|
|
|
|
return null;
|
|
|
|
}
|
2022-03-06 15:42:05 +00:00
|
|
|
const [subscription] = subscriptions.filter(s => location.pathname === subscriptionRoute(s));
|
2022-03-05 13:52:52 +00:00
|
|
|
return subscription;
|
2022-03-06 21:35:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
if (location.pathname === "/" || location.pathname === "/settings") {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
if (!subscription) {
|
|
|
|
const [, topic] = location.pathname.split("/");
|
|
|
|
const subscription = {
|
|
|
|
id: topicUrl(window.location.origin, topic),
|
|
|
|
baseUrl: window.location.origin,
|
|
|
|
topic: topic,
|
|
|
|
last: ""
|
|
|
|
}
|
|
|
|
subscriptionManager.save(subscription);
|
|
|
|
return subscription;
|
|
|
|
}
|
|
|
|
|
|
|
|
*/
|
2022-03-05 13:52:52 +00:00
|
|
|
};
|
|
|
|
|
2022-02-18 19:41:01 +00:00
|
|
|
export default App;
|