mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
0746ef741a
* change header image alignment (cherry picked from commit df1bb339a5c597a2b668cedb3dafec5a390df120) * big mess navigation refactor * bit of cleanup * minor css tweaks * fix error rendering code for remote emoji * refactor navigation structure code * refactor styling * fix className * stash * restructure navigation generation * url wildcard formatting * remove un-implemented User menu entry * remove commented lines * clarify permissions check * invert permissions logic for clarity
93 lines
3 KiB
JavaScript
93 lines
3 KiB
JavaScript
/*
|
|
GoToSocial
|
|
Copyright (C) GoToSocial Authors admin@gotosocial.org
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
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.
|
|
|
|
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.
|
|
|
|
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/>.
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const React = require("react");
|
|
const ReactDom = require("react-dom/client");
|
|
const { Provider } = require("react-redux");
|
|
const { PersistGate } = require("redux-persist/integration/react");
|
|
|
|
const { store, persistor } = require("./redux");
|
|
const { createNavigation, Menu, Item } = require("./lib/navigation");
|
|
|
|
const AuthorizationGate = require("./components/authorization");
|
|
const Loading = require("./components/loading");
|
|
const UserLogoutCard = require("./components/user-logout-card");
|
|
const { RoleContext } = require("./lib/navigation/util");
|
|
|
|
require("./style.css");
|
|
|
|
const { Sidebar, ViewRouter } = createNavigation("/settings", [
|
|
Menu("User", [
|
|
Item("Profile", { icon: "fa-user" }, require("./user/profile")),
|
|
Item("Settings", { icon: "fa-cogs" }, require("./user/settings")),
|
|
]),
|
|
Menu("Moderation", {
|
|
url: "admin",
|
|
permissions: ["admin"]
|
|
}, [
|
|
Item("Reports", { icon: "fa-flag", wildcard: true }, require("./admin/reports")),
|
|
Menu("Federation", { icon: "fa-hubzilla" }, [
|
|
Item("Federation", { icon: "fa-hubzilla", url: "", wildcard: true }, require("./admin/federation")),
|
|
Item("Import/Export", { icon: "fa-floppy-o", wildcard: true }, require("./admin/federation/import-export")),
|
|
])
|
|
]),
|
|
Menu("Administration", {
|
|
url: "admin",
|
|
defaultUrl: "/settings/admin/settings",
|
|
permissions: ["admin"]
|
|
}, [
|
|
Item("Actions", { icon: "fa-bolt" }, require("./admin/actions")),
|
|
Menu("Custom Emoji", { icon: "fa-smile-o" }, [
|
|
Item("Local", { icon: "fa-home", wildcard: true }, require("./admin/emoji/local")),
|
|
Item("Remote", { icon: "fa-cloud" }, require("./admin/emoji/remote"))
|
|
]),
|
|
Item("Settings", { icon: "fa-sliders" }, require("./admin/settings"))
|
|
])
|
|
]);
|
|
|
|
function App({ account }) {
|
|
const permissions = [account.role.name];
|
|
|
|
return (
|
|
<RoleContext.Provider value={permissions}>
|
|
<div className="sidebar">
|
|
<UserLogoutCard />
|
|
<Sidebar />
|
|
</div>
|
|
<section className="with-sidebar">
|
|
<ViewRouter />
|
|
</section>
|
|
</RoleContext.Provider>
|
|
);
|
|
}
|
|
|
|
function Main() {
|
|
return (
|
|
<Provider store={store}>
|
|
<PersistGate loading={<section><Loading /></section>} persistor={persistor}>
|
|
<AuthorizationGate App={App} />
|
|
</PersistGate>
|
|
</Provider>
|
|
);
|
|
}
|
|
|
|
const root = ReactDom.createRoot(document.getElementById("root"));
|
|
root.render(<React.StrictMode><Main /></React.StrictMode>); |