mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-10-31 22:40:01 +00:00
637f188ebe
* it's happening! * aaa * fix silly whoopsie * it's working pa! it's working ma! * model report parameters * shuffle some more stuff around * getting there * oo hoo * finish tidying up for now * aaa * fix use form submit errors * peepee poo poo * aaaaa * ffff * they see me typin', they hatin' * boop * aaa * oooo * typing typing tappa tappa * almost done typing * weee * alright * push it push it real good doo doo doo doo doo doo * thingy no worky * almost done * mutation modifers not quite right * hmm * it works * view blocks + allows nicely * it works! * typia install * the old linterino * linter plz
102 lines
3.6 KiB
JavaScript
102 lines
3.6 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/>.
|
|
*/
|
|
|
|
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/store");
|
|
const { createNavigation, Menu, Item } = require("./lib/navigation");
|
|
|
|
const { Authorization } = require("./components/authorization");
|
|
const Loading = require("./components/loading");
|
|
const UserLogoutCard = require("./components/user-logout-card");
|
|
const { RoleContext } = require("./lib/navigation/util");
|
|
|
|
const DomainPerms = require("./admin/domain-permissions").default;
|
|
const DomainPermsImportExport = require("./admin/domain-permissions/import-export").default;
|
|
|
|
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")),
|
|
Item("Accounts", { icon: "fa-users", wildcard: true }, require("./admin/accounts")),
|
|
Menu("Domain Permissions", { icon: "fa-hubzilla" }, [
|
|
Item("Blocks", { icon: "fa-close", url: "block", wildcard: true }, DomainPerms),
|
|
Item("Allows", { icon: "fa-check", url: "allow", wildcard: true }, DomainPerms),
|
|
Item("Import/Export", { icon: "fa-floppy-o", url: "import-export", wildcard: true }, DomainPermsImportExport),
|
|
]),
|
|
]),
|
|
Menu("Administration", {
|
|
url: "admin",
|
|
defaultUrl: "/settings/admin/settings",
|
|
permissions: ["admin"]
|
|
}, [
|
|
Menu("Actions", { icon: "fa-bolt" }, [
|
|
Item("Media", { icon: "fa-photo" }, require("./admin/actions/media")),
|
|
Item("Keys", { icon: "fa-key-modern" }, require("./admin/actions/keys")),
|
|
]),
|
|
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"))
|
|
]),
|
|
Menu("Settings", { icon: "fa-sliders" }, [
|
|
Item("Settings", { icon: "fa-sliders", url: "" }, require("./admin/settings")),
|
|
Item("Rules", { icon: "fa-dot-circle-o", wildcard: true }, require("./admin/settings/rules"))
|
|
]),
|
|
])
|
|
]);
|
|
|
|
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}>
|
|
<Authorization App={App} />
|
|
</PersistGate>
|
|
</Provider>
|
|
);
|
|
}
|
|
|
|
const root = ReactDom.createRoot(document.getElementById("root"));
|
|
root.render(<React.StrictMode><Main /></React.StrictMode>); |