gotosocial/web/source/settings-panel/index.js

165 lines
4.2 KiB
JavaScript
Raw Normal View History

2022-09-07 12:51:16 +01:00
/*
2022-09-09 19:43:55 +01:00
GoToSocial
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
2022-09-07 12:51:16 +01:00
2022-09-09 19:43:55 +01:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
2022-09-07 12:51:16 +01:00
2022-09-09 19:43:55 +01:00
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
2022-09-07 12:51:16 +01:00
2022-09-09 19:43:55 +01:00
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
2022-09-07 12:51:16 +01:00
*/
"use strict";
const Promise = require("bluebird");
const React = require("react");
const ReactDom = require("react-dom");
2022-09-09 19:43:55 +01:00
const Redux = require("react-redux");
const { Switch } = require("wouter");
const { Provider } = require("react-redux");
const { PersistGate } = require("redux-persist/integration/react");
2022-09-07 12:51:16 +01:00
2022-09-09 19:43:55 +01:00
const { store, persistor } = require("./redux");
const api = require("./lib/api");
2022-09-09 19:43:55 +01:00
const Login = require("./components/login");
2022-09-07 12:51:16 +01:00
2022-09-10 18:23:50 +01:00
require("./style.css");
2022-09-09 00:39:43 +01:00
2022-09-09 19:43:55 +01:00
// TODO: nested categories?
2022-09-07 12:51:16 +01:00
const nav = {
2022-09-09 00:39:43 +01:00
"User": {
Component: require("./user"),
entries: {
"Profile": require("./user/profile.js"),
"Settings": require("./user/settings.js"),
"Customization": require("./user/customization.js")
}
},
"Admin": {
Component: require("./admin"),
entries: {
"Instance Settings": require("./admin/settings.js"),
"Federation": require("./admin/federation.js"),
"Customization": require("./admin/customization.js")
}
}
2022-09-07 12:51:16 +01:00
};
2022-09-09 00:39:43 +01:00
// Generate component tree from `nav` object once, as it won't change
2022-09-09 19:43:55 +01:00
const { sidebar, panelRouter } = require("./lib/generate-views")(nav);
2022-09-07 12:51:16 +01:00
function App() {
const dispatch = Redux.useDispatch();
const { loginState } = Redux.useSelector((state) => state.oauth);
const reduxTempStatus = Redux.useSelector((state) => state.temporary.status);
const [ errorMsg, setErrorMsg ] = React.useState();
const [ tokenChecked, setTokenChecked ] = React.useState(false);
React.useEffect(() => {
Promise.try(() => {
// Process OAUTH authorization token from URL if available
if (loginState == "callback") {
let urlParams = new URLSearchParams(window.location.search);
let code = urlParams.get("code");
if (code == undefined) {
setErrorMsg(new Error("Waiting for OAUTH callback but no ?code= provided. You can try logging in again:"));
} else {
return dispatch(api.oauth.fetchToken(code));
}
}
}).then(() => {
// Check currently stored auth token for validity if available
if (loginState == "callback" || loginState == "login") {
return dispatch(api.oauth.verify());
}
}).then(() => {
setTokenChecked(true);
}).catch((e) => {
setErrorMsg(e);
console.error(e.message);
});
}, []);
let ErrorElement = null;
if (errorMsg != undefined) {
ErrorElement = (
<div className="error">
<b>{errorMsg.type}</b>
<span>{errorMsg.message}</span>
</div>
);
}
const LogoutElement = (
<button className="logout" onClick={() => {dispatch(api.oauth.logout());}}>
Log out
</button>
);
if (reduxTempStatus != undefined) {
return (
<section>
{reduxTempStatus}
</section>
);
} else if (tokenChecked && loginState == "login") {
2022-09-07 12:51:16 +01:00
return (
<>
<div className="sidebar">
{sidebar}
{LogoutElement}
2022-09-07 12:51:16 +01:00
</div>
2022-09-10 18:23:50 +01:00
<section className="with-sidebar">
{ErrorElement}
2022-09-07 12:51:16 +01:00
<Switch>
{panelRouter}
</Switch>
</section>
</>
);
} else if (loginState == "none") {
return (
<Login error={ErrorElement}/>
);
2022-09-07 12:51:16 +01:00
} else {
let status;
if (loginState == "login") {
status = "Verifying stored login...";
} else if (loginState == "callback") {
status = "Processing OAUTH callback...";
}
2022-09-10 18:23:50 +01:00
return (
<section>
<div>
{status}
</div>
{ErrorElement}
{LogoutElement}
</section>
2022-09-10 18:23:50 +01:00
);
2022-09-07 12:51:16 +01:00
}
2022-09-07 12:51:16 +01:00
}
2022-09-09 19:43:55 +01:00
function Main() {
return (
<Provider store={store}>
<PersistGate loading={"loading..."} persistor={persistor}>
<App />
</PersistGate>
</Provider>
);
}
ReactDom.render(<React.StrictMode><Main /></React.StrictMode>, document.getElementById("root"));