mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-22 11:46:40 +00:00
[chore] Settings refactor 2: the re-refactoring-ing (#2866)
* [chore] Bit more refactoring of settings panel * fix up some remaining things * groovy baby yeah! * remove unused Suspense
This commit is contained in:
parent
7a1e639483
commit
aecf74951c
|
@ -35,10 +35,10 @@
|
||||||
"wouter": "^3.1.0"
|
"wouter": "^3.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.23.0",
|
"@babel/core": "^7.24.4",
|
||||||
"@babel/preset-env": "^7.22.20",
|
"@babel/preset-env": "^7.24.4",
|
||||||
"@babel/preset-react": "^7.22.15",
|
"@babel/preset-react": "^7.24.1",
|
||||||
"@babel/preset-typescript": "^7.23.0",
|
"@babel/preset-typescript": "^7.24.1",
|
||||||
"@browserify/envify": "^6.0.0",
|
"@browserify/envify": "^6.0.0",
|
||||||
"@browserify/uglifyify": "^6.0.0",
|
"@browserify/uglifyify": "^6.0.0",
|
||||||
"@joepie91/eslint-config": "^1.1.1",
|
"@joepie91/eslint-config": "^1.1.1",
|
||||||
|
|
|
@ -17,15 +17,11 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const React = require("react");
|
import React from "react";
|
||||||
|
|
||||||
const {
|
import { Combobox, ComboboxItem, ComboboxPopover } from "ariakit/combobox";
|
||||||
Combobox,
|
|
||||||
ComboboxItem,
|
|
||||||
ComboboxPopover,
|
|
||||||
} = require("ariakit/combobox");
|
|
||||||
|
|
||||||
module.exports = function ComboBox({ field, items, label, children, ...inputProps }) {
|
export default function ComboBox({ field, items, label, children, ...inputProps }) {
|
||||||
return (
|
return (
|
||||||
<div className="form-field combobox-wrapper">
|
<div className="form-field combobox-wrapper">
|
||||||
<label>
|
<label>
|
||||||
|
@ -48,4 +44,4 @@ module.exports = function ComboBox({ field, items, label, children, ...inputProp
|
||||||
</ComboboxPopover>
|
</ComboboxPopover>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
}
|
|
@ -17,7 +17,7 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const React = require("react");
|
import React from "react";
|
||||||
|
|
||||||
function ErrorFallback({ error, resetErrorBoundary }) {
|
function ErrorFallback({ error, resetErrorBoundary }) {
|
||||||
return (
|
return (
|
||||||
|
@ -81,4 +81,4 @@ function Error({ error }) {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = { ErrorFallback, Error };
|
export { ErrorFallback, Error };
|
|
@ -17,9 +17,9 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const React = require("react");
|
import React from "react";
|
||||||
|
|
||||||
module.exports = function FakeProfile({ avatar, header, display_name, username, role }) {
|
export default function FakeProfile({ avatar, header, display_name, username, role }) {
|
||||||
return ( // Keep in sync with web/template/profile.tmpl
|
return ( // Keep in sync with web/template/profile.tmpl
|
||||||
<div className="profile">
|
<div className="profile">
|
||||||
<div className="profile-header">
|
<div className="profile-header">
|
||||||
|
@ -49,4 +49,4 @@ module.exports = function FakeProfile({ avatar, header, display_name, username,
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
}
|
|
@ -17,16 +17,15 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const React = require("react");
|
import React from "react";
|
||||||
|
import { useVerifyCredentialsQuery } from "../lib/query/oauth";
|
||||||
|
|
||||||
const query = require("../lib/query");
|
export default function FakeToot({ children }) {
|
||||||
|
|
||||||
module.exports = function FakeToot({ children }) {
|
|
||||||
const { data: account = {
|
const { data: account = {
|
||||||
avatar: "/assets/default_avatars/GoToSocial_icon1.png",
|
avatar: "/assets/default_avatars/GoToSocial_icon1.png",
|
||||||
display_name: "",
|
display_name: "",
|
||||||
username: ""
|
username: ""
|
||||||
} } = query.useVerifyCredentialsQuery();
|
} } = useVerifyCredentialsQuery();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<article className="status expanded">
|
<article className="status expanded">
|
||||||
|
@ -54,4 +53,4 @@ module.exports = function FakeToot({ children }) {
|
||||||
</section>
|
</section>
|
||||||
</article>
|
</article>
|
||||||
);
|
);
|
||||||
};
|
}
|
|
@ -17,10 +17,10 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const React = require("react");
|
import React from "react";
|
||||||
const langs = require("langs");
|
import { all } from "langs";
|
||||||
|
|
||||||
const asElements = langs.all().map((l) => {
|
const asElements = all().map((l) => {
|
||||||
let code = l["1"].toUpperCase();
|
let code = l["1"].toUpperCase();
|
||||||
let name = l.name;
|
let name = l.name;
|
||||||
if (l.name != l.local) {
|
if (l.name != l.local) {
|
||||||
|
@ -29,6 +29,6 @@ const asElements = langs.all().map((l) => {
|
||||||
return <option key={code} value={code}>{name}</option>;
|
return <option key={code} value={code}>{name}</option>;
|
||||||
});
|
});
|
||||||
|
|
||||||
module.exports = function Languages() {
|
export default function Languages() {
|
||||||
return asElements;
|
return asElements;
|
||||||
};
|
}
|
|
@ -17,10 +17,10 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const React = require("react");
|
import React from "react";
|
||||||
|
|
||||||
module.exports = function Loading() {
|
export default function Loading() {
|
||||||
return (
|
return (
|
||||||
<i className="fa fa-spin fa-refresh loading-icon" aria-label="Loading" title="Loading" />
|
<i className="fa fa-spin fa-refresh loading-icon" aria-label="Loading" title="Loading" />
|
||||||
);
|
);
|
||||||
};
|
}
|
|
@ -17,15 +17,12 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const React = require("react");
|
import React from "react";
|
||||||
const Loading = require("./loading");
|
import Loading from "./loading";
|
||||||
const {
|
import { useVerifyCredentialsQuery, useLogoutMutation } from "../lib/query/oauth";
|
||||||
useVerifyCredentialsQuery,
|
import { useInstanceV1Query } from "../lib/query/gts-api";
|
||||||
useLogoutMutation,
|
|
||||||
} = require("../lib/query/oauth");
|
|
||||||
const { useInstanceV1Query } = require("../lib/query");
|
|
||||||
|
|
||||||
module.exports = function UserLogoutCard() {
|
export default function UserLogoutCard() {
|
||||||
const { data: profile, isLoading } = useVerifyCredentialsQuery();
|
const { data: profile, isLoading } = useVerifyCredentialsQuery();
|
||||||
const { data: instance } = useInstanceV1Query();
|
const { data: instance } = useInstanceV1Query();
|
||||||
const [logoutQuery] = useLogoutMutation();
|
const [logoutQuery] = useLogoutMutation();
|
||||||
|
@ -44,4 +41,4 @@ module.exports = function UserLogoutCard() {
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
};
|
}
|
|
@ -17,7 +17,7 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import React, { StrictMode } from "react";
|
import React, { StrictMode, useMemo } from "react";
|
||||||
import "./style.css";
|
import "./style.css";
|
||||||
|
|
||||||
import { createRoot } from "react-dom/client";
|
import { createRoot } from "react-dom/client";
|
||||||
|
@ -29,18 +29,21 @@ import Loading from "./components/loading";
|
||||||
import { Account } from "./lib/types/account";
|
import { Account } from "./lib/types/account";
|
||||||
import { BaseUrlContext, RoleContext } from "./lib/navigation/util";
|
import { BaseUrlContext, RoleContext } from "./lib/navigation/util";
|
||||||
import { SidebarMenu } from "./lib/navigation/menu";
|
import { SidebarMenu } from "./lib/navigation/menu";
|
||||||
import { UserMenu, UserRouter } from "./views/user/routes";
|
|
||||||
import { ModerationMenu, ModerationRouter } from "./views/moderation/routes";
|
|
||||||
import { AdminMenu, AdminRouter } from "./views/admin/routes";
|
|
||||||
import { Redirect, Route, Router } from "wouter";
|
import { Redirect, Route, Router } from "wouter";
|
||||||
|
import AdminMenu from "./views/admin/menu";
|
||||||
|
import ModerationMenu from "./views/moderation/menu";
|
||||||
|
import UserMenu from "./views/user/menu";
|
||||||
|
import UserRouter from "./views/user/router";
|
||||||
|
import { ErrorBoundary } from "./lib/navigation/error";
|
||||||
|
import ModerationRouter from "./views/moderation/router";
|
||||||
|
import AdminRouter from "./views/admin/router";
|
||||||
|
|
||||||
interface AppProps {
|
interface AppProps {
|
||||||
account: Account;
|
account: Account;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function App({ account }: AppProps) {
|
export function App({ account }: AppProps) {
|
||||||
const roles: string[] = [ account.role.name ];
|
const roles: string[] = useMemo(() => [ account.role.name ], [account]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<RoleContext.Provider value={roles}>
|
<RoleContext.Provider value={roles}>
|
||||||
<BaseUrlContext.Provider value={"/settings"}>
|
<BaseUrlContext.Provider value={"/settings"}>
|
||||||
|
@ -51,6 +54,7 @@ export function App({ account }: AppProps) {
|
||||||
</SidebarMenu>
|
</SidebarMenu>
|
||||||
<section className="with-sidebar">
|
<section className="with-sidebar">
|
||||||
<Router base="/settings">
|
<Router base="/settings">
|
||||||
|
<ErrorBoundary>
|
||||||
<UserRouter />
|
<UserRouter />
|
||||||
<ModerationRouter />
|
<ModerationRouter />
|
||||||
<AdminRouter />
|
<AdminRouter />
|
||||||
|
@ -60,6 +64,7 @@ export function App({ account }: AppProps) {
|
||||||
user isn't greeted with a blank page.
|
user isn't greeted with a blank page.
|
||||||
*/}
|
*/}
|
||||||
<Route><Redirect to="/user/profile" /></Route>
|
<Route><Redirect to="/user/profile" /></Route>
|
||||||
|
</ErrorBoundary>
|
||||||
</Router>
|
</Router>
|
||||||
</section>
|
</section>
|
||||||
</BaseUrlContext.Provider>
|
</BaseUrlContext.Provider>
|
||||||
|
|
|
@ -601,29 +601,31 @@ span.form-info {
|
||||||
@media screen and (max-width: 60rem) {
|
@media screen and (max-width: 60rem) {
|
||||||
/* vertical layout */
|
/* vertical layout */
|
||||||
#root {
|
#root {
|
||||||
padding: 1rem;
|
padding: 0.5rem;
|
||||||
|
margin: 0;
|
||||||
grid-template-columns: 100%;
|
grid-template-columns: 100%;
|
||||||
grid-template-rows: auto auto;
|
grid-template-rows: auto auto;
|
||||||
|
|
||||||
.sidebar {
|
div.sidebar {
|
||||||
justify-self: auto;
|
justify-self: auto;
|
||||||
margin-bottom: 2rem;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar, section.with-sidebar {
|
div.sidebar, section.with-sidebar {
|
||||||
border-top-left-radius: $br;
|
border-top-left-radius: $br;
|
||||||
border-top-right-radius: $br;
|
border-top-right-radius: $br;
|
||||||
border-bottom-left-radius: $br;
|
border-bottom-left-radius: $br;
|
||||||
border-bottom-right-radius: $br;
|
border-bottom-right-radius: $br;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar a:first-child h2 {
|
section.with-sidebar {
|
||||||
border-top-right-radius: $br;
|
grid-column: 1;
|
||||||
}
|
padding: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
section {
|
div.sidebar a:first-child h2 {
|
||||||
grid-column: 1;
|
border-top-right-radius: $br;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.user-profile .overview {
|
.user-profile .overview {
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { useInstanceKeysExpireMutation } from "../../../../lib/query";
|
|
||||||
import { TextInput } from "../../../../components/form/inputs";
|
import { TextInput } from "../../../../components/form/inputs";
|
||||||
import MutationButton from "../../../../components/form/mutation-button";
|
import MutationButton from "../../../../components/form/mutation-button";
|
||||||
import { useTextInput } from "../../../../lib/form";
|
import { useTextInput } from "../../../../lib/form";
|
||||||
|
import { useInstanceKeysExpireMutation } from "../../../../lib/query/admin";
|
||||||
|
|
||||||
export default function ExpireRemote({}) {
|
export default function ExpireRemote({}) {
|
||||||
const domainField = useTextInput("domain");
|
const domainField = useTextInput("domain");
|
||||||
|
|
|
@ -19,10 +19,10 @@
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
import { useMediaCleanupMutation } from "../../../../lib/query";
|
|
||||||
import { useTextInput } from "../../../../lib/form";
|
import { useTextInput } from "../../../../lib/form";
|
||||||
import { TextInput } from "../../../../components/form/inputs";
|
import { TextInput } from "../../../../components/form/inputs";
|
||||||
import MutationButton from "../../../../components/form/mutation-button";
|
import MutationButton from "../../../../components/form/mutation-button";
|
||||||
|
import { useMediaCleanupMutation } from "../../../../lib/query/admin";
|
||||||
|
|
||||||
export default function Cleanup({}) {
|
export default function Cleanup({}) {
|
||||||
const daysField = useTextInput("days", { defaultValue: "30" });
|
const daysField = useTextInput("days", { defaultValue: "30" });
|
||||||
|
|
|
@ -26,7 +26,7 @@ import { CategorySelect } from '../category-select';
|
||||||
import FakeToot from "../../../../components/fake-toot";
|
import FakeToot from "../../../../components/fake-toot";
|
||||||
import MutationButton from "../../../../components/form/mutation-button";
|
import MutationButton from "../../../../components/form/mutation-button";
|
||||||
import { useAddEmojiMutation } from "../../../../lib/query/admin/custom-emoji";
|
import { useAddEmojiMutation } from "../../../../lib/query/admin/custom-emoji";
|
||||||
import { useInstanceV1Query } from "../../../../lib/query";
|
import { useInstanceV1Query } from "../../../../lib/query/gts-api";
|
||||||
|
|
||||||
export default function NewEmojiForm() {
|
export default function NewEmojiForm() {
|
||||||
const shortcode = useShortcode();
|
const shortcode = useShortcode();
|
||||||
|
|
|
@ -29,7 +29,7 @@ import { TextInput } from "../../../../components/form/inputs";
|
||||||
import { useListEmojiQuery } from "../../../../lib/query/admin/custom-emoji";
|
import { useListEmojiQuery } from "../../../../lib/query/admin/custom-emoji";
|
||||||
import { CustomEmoji } from "../../../../lib/types/custom-emoji";
|
import { CustomEmoji } from "../../../../lib/types/custom-emoji";
|
||||||
|
|
||||||
export function EmojiOverview() {
|
export default function EmojiOverview() {
|
||||||
const { data: emoji = [], isLoading, isError, error } = useListEmojiQuery({ filter: "domain:local" });
|
const { data: emoji = [], isLoading, isError, error } = useListEmojiQuery({ filter: "domain:local" });
|
||||||
|
|
||||||
let content: React.JSX.Element;
|
let content: React.JSX.Element;
|
||||||
|
|
|
@ -18,66 +18,18 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { Link, Redirect, useParams } from "wouter";
|
import { Redirect, useParams } from "wouter";
|
||||||
import { useInstanceRulesQuery, useAddInstanceRuleMutation, useUpdateInstanceRuleMutation, useDeleteInstanceRuleMutation } from "../../../lib/query";
|
|
||||||
import { useBaseUrl } from "../../../lib/navigation/util";
|
import { useBaseUrl } from "../../../lib/navigation/util";
|
||||||
import { useValue, useTextInput } from "../../../lib/form";
|
import { useValue, useTextInput } from "../../../lib/form";
|
||||||
import useFormSubmit from "../../../lib/form/submit";
|
import useFormSubmit from "../../../lib/form/submit";
|
||||||
import { TextArea } from "../../../components/form/inputs";
|
import { TextArea } from "../../../components/form/inputs";
|
||||||
import MutationButton from "../../../components/form/mutation-button";
|
import MutationButton from "../../../components/form/mutation-button";
|
||||||
import { Error } from "../../../components/error";
|
|
||||||
import BackButton from "../../../components/back-button";
|
import BackButton from "../../../components/back-button";
|
||||||
import { InstanceRule, MappedRules } from "../../../lib/types/rules";
|
|
||||||
import Loading from "../../../components/loading";
|
import Loading from "../../../components/loading";
|
||||||
import FormWithData from "../../../lib/form/form-with-data";
|
import { useDeleteInstanceRuleMutation, useInstanceRulesQuery, useUpdateInstanceRuleMutation } from "../../../lib/query/admin";
|
||||||
|
import { Error } from "../../../components/error";
|
||||||
|
|
||||||
export function InstanceRules() {
|
export default function InstanceRuleDetail() {
|
||||||
return (
|
|
||||||
<>
|
|
||||||
<h1>Instance Rules</h1>
|
|
||||||
<FormWithData
|
|
||||||
dataQuery={useInstanceRulesQuery}
|
|
||||||
DataForm={InstanceRulesForm}
|
|
||||||
/>
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function InstanceRulesForm({ data: rules }: { data: MappedRules }) {
|
|
||||||
const baseUrl = useBaseUrl();
|
|
||||||
const newRule = useTextInput("text");
|
|
||||||
|
|
||||||
const [submitForm, result] = useFormSubmit({ newRule }, useAddInstanceRuleMutation(), {
|
|
||||||
changedOnly: true,
|
|
||||||
onFinish: () => newRule.reset()
|
|
||||||
});
|
|
||||||
|
|
||||||
return (
|
|
||||||
<form onSubmit={submitForm} className="new-rule">
|
|
||||||
<ol className="instance-rules">
|
|
||||||
{Object.values(rules).map((rule: InstanceRule) => (
|
|
||||||
<Link className="rule" to={`~${baseUrl}/instance-rules/${rule.id}`}>
|
|
||||||
<li>
|
|
||||||
<h2>{rule.text} <i className="fa fa-pencil edit-icon" /></h2>
|
|
||||||
</li>
|
|
||||||
<span>{new Date(rule.created_at).toLocaleString()}</span>
|
|
||||||
</Link>
|
|
||||||
))}
|
|
||||||
</ol>
|
|
||||||
<TextArea
|
|
||||||
field={newRule}
|
|
||||||
label="New instance rule"
|
|
||||||
/>
|
|
||||||
<MutationButton
|
|
||||||
disabled={newRule.value === undefined || newRule.value.length === 0}
|
|
||||||
label="Add rule"
|
|
||||||
result={result}
|
|
||||||
/>
|
|
||||||
</form>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function InstanceRuleDetail() {
|
|
||||||
const baseUrl = useBaseUrl();
|
const baseUrl = useBaseUrl();
|
||||||
const params: { ruleId: string } = useParams();
|
const params: { ruleId: string } = useParams();
|
||||||
|
|
||||||
|
@ -94,7 +46,7 @@ export function InstanceRuleDetail() {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<BackButton to={`~${baseUrl}/instance-rules`} />
|
<BackButton to={`~${baseUrl}/rules`} />
|
||||||
<EditInstanceRuleForm rule={rules[params.ruleId]} />
|
<EditInstanceRuleForm rule={rules[params.ruleId]} />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
@ -113,7 +65,7 @@ function EditInstanceRuleForm({ rule }) {
|
||||||
|
|
||||||
if (result.isSuccess || deleteResult.isSuccess) {
|
if (result.isSuccess || deleteResult.isSuccess) {
|
||||||
return (
|
return (
|
||||||
<Redirect to={`~${baseUrl}/instance-rules`} />
|
<Redirect to={`~${baseUrl}/rules`} />
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
75
web/source/settings/views/admin/instance/rules.tsx
Normal file
75
web/source/settings/views/admin/instance/rules.tsx
Normal file
|
@ -0,0 +1,75 @@
|
||||||
|
/*
|
||||||
|
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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import React from "react";
|
||||||
|
import { Link } from "wouter";
|
||||||
|
import { useInstanceRulesQuery, useAddInstanceRuleMutation } from "../../../lib/query/admin";
|
||||||
|
import { useBaseUrl } from "../../../lib/navigation/util";
|
||||||
|
import { useTextInput } from "../../../lib/form";
|
||||||
|
import useFormSubmit from "../../../lib/form/submit";
|
||||||
|
import { TextArea } from "../../../components/form/inputs";
|
||||||
|
import MutationButton from "../../../components/form/mutation-button";
|
||||||
|
import { InstanceRule, MappedRules } from "../../../lib/types/rules";
|
||||||
|
import FormWithData from "../../../lib/form/form-with-data";
|
||||||
|
|
||||||
|
export default function InstanceRules() {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<h1>Instance Rules</h1>
|
||||||
|
<FormWithData
|
||||||
|
dataQuery={useInstanceRulesQuery}
|
||||||
|
DataForm={InstanceRulesForm}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function InstanceRulesForm({ data: rules }: { data: MappedRules }) {
|
||||||
|
const baseUrl = useBaseUrl();
|
||||||
|
const newRule = useTextInput("text");
|
||||||
|
|
||||||
|
const [submitForm, result] = useFormSubmit({ newRule }, useAddInstanceRuleMutation(), {
|
||||||
|
changedOnly: true,
|
||||||
|
onFinish: () => newRule.reset()
|
||||||
|
});
|
||||||
|
|
||||||
|
return (
|
||||||
|
<form onSubmit={submitForm} className="new-rule">
|
||||||
|
<ol className="instance-rules">
|
||||||
|
{Object.values(rules).map((rule: InstanceRule) => (
|
||||||
|
<Link key={"link-"+rule.id} className="rule" to={`~${baseUrl}/rules/${rule.id}`}>
|
||||||
|
<li key={rule.id}>
|
||||||
|
<h2>{rule.text} <i className="fa fa-pencil edit-icon" /></h2>
|
||||||
|
</li>
|
||||||
|
<span>{new Date(rule.created_at).toLocaleString()}</span>
|
||||||
|
</Link>
|
||||||
|
))}
|
||||||
|
</ol>
|
||||||
|
<TextArea
|
||||||
|
field={newRule}
|
||||||
|
label="New instance rule"
|
||||||
|
/>
|
||||||
|
<MutationButton
|
||||||
|
disabled={newRule.value === undefined || newRule.value.length === 0}
|
||||||
|
label="Add rule"
|
||||||
|
result={result}
|
||||||
|
/>
|
||||||
|
</form>
|
||||||
|
);
|
||||||
|
}
|
|
@ -20,17 +20,13 @@
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
import { useTextInput, useFileInput } from "../../../lib/form";
|
import { useTextInput, useFileInput } from "../../../lib/form";
|
||||||
|
|
||||||
const useFormSubmit = require("../../../lib/form/submit").default;
|
|
||||||
|
|
||||||
import { TextInput, TextArea, FileInput } from "../../../components/form/inputs";
|
import { TextInput, TextArea, FileInput } from "../../../components/form/inputs";
|
||||||
|
|
||||||
const FormWithData = require("../../../lib/form/form-with-data").default;
|
|
||||||
import MutationButton from "../../../components/form/mutation-button";
|
import MutationButton from "../../../components/form/mutation-button";
|
||||||
|
import { useInstanceV1Query } from "../../../lib/query/gts-api";
|
||||||
import { useInstanceV1Query } from "../../../lib/query";
|
|
||||||
import { useUpdateInstanceMutation } from "../../../lib/query/admin";
|
import { useUpdateInstanceMutation } from "../../../lib/query/admin";
|
||||||
import { InstanceV1 } from "../../../lib/types/instance";
|
import { InstanceV1 } from "../../../lib/types/instance";
|
||||||
|
import FormWithData from "../../../lib/form/form-with-data";
|
||||||
|
import useFormSubmit from "../../../lib/form/submit";
|
||||||
|
|
||||||
export default function InstanceSettings() {
|
export default function InstanceSettings() {
|
||||||
return (
|
return (
|
129
web/source/settings/views/admin/menu.tsx
Normal file
129
web/source/settings/views/admin/menu.tsx
Normal file
|
@ -0,0 +1,129 @@
|
||||||
|
/*
|
||||||
|
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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { MenuItem } from "../../lib/navigation/menu";
|
||||||
|
import React from "react";
|
||||||
|
import { useHasPermission } from "../../lib/navigation/util";
|
||||||
|
|
||||||
|
/*
|
||||||
|
EXPORTED COMPONENTS
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* - /settings/admin/instance/settings
|
||||||
|
* - /settings/admin/instance/rules
|
||||||
|
* - /settings/admin/instance/rules/:ruleId
|
||||||
|
* - /settings/admin/emojis
|
||||||
|
* - /settings/admin/emojis/local
|
||||||
|
* - /settings/admin/emojis/local/:emojiId
|
||||||
|
* - /settings/admin/emojis/remote
|
||||||
|
* - /settings/admin/actions
|
||||||
|
* - /settings/admin/actions/media
|
||||||
|
* - /settings/admin/actions/keys
|
||||||
|
*/
|
||||||
|
export default function AdminMenu() {
|
||||||
|
const permissions = ["admin"];
|
||||||
|
const admin = useHasPermission(permissions);
|
||||||
|
if (!admin) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<MenuItem
|
||||||
|
name="Administration"
|
||||||
|
itemUrl="admin"
|
||||||
|
defaultChild="actions"
|
||||||
|
permissions={permissions}
|
||||||
|
>
|
||||||
|
<AdminInstanceMenu />
|
||||||
|
<AdminEmojisMenu />
|
||||||
|
<AdminActionsMenu />
|
||||||
|
</MenuItem>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
INTERNAL COMPONENTS
|
||||||
|
*/
|
||||||
|
|
||||||
|
function AdminInstanceMenu() {
|
||||||
|
return (
|
||||||
|
<MenuItem
|
||||||
|
name="Instance"
|
||||||
|
itemUrl="instance"
|
||||||
|
defaultChild="settings"
|
||||||
|
icon="fa-sitemap"
|
||||||
|
>
|
||||||
|
<MenuItem
|
||||||
|
name="Settings"
|
||||||
|
itemUrl="settings"
|
||||||
|
icon="fa-sliders"
|
||||||
|
/>
|
||||||
|
<MenuItem
|
||||||
|
name="Rules"
|
||||||
|
itemUrl="rules"
|
||||||
|
icon="fa-dot-circle-o"
|
||||||
|
/>
|
||||||
|
</MenuItem>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function AdminActionsMenu() {
|
||||||
|
return (
|
||||||
|
<MenuItem
|
||||||
|
name="Actions"
|
||||||
|
itemUrl="actions"
|
||||||
|
defaultChild="media"
|
||||||
|
icon="fa-bolt"
|
||||||
|
>
|
||||||
|
<MenuItem
|
||||||
|
name="Media"
|
||||||
|
itemUrl="media"
|
||||||
|
icon="fa-photo"
|
||||||
|
/>
|
||||||
|
<MenuItem
|
||||||
|
name="Keys"
|
||||||
|
itemUrl="keys"
|
||||||
|
icon="fa-key-modern"
|
||||||
|
/>
|
||||||
|
</MenuItem>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function AdminEmojisMenu() {
|
||||||
|
return (
|
||||||
|
<MenuItem
|
||||||
|
name="Custom Emoji"
|
||||||
|
itemUrl="emojis"
|
||||||
|
defaultChild="local"
|
||||||
|
icon="fa-smile-o"
|
||||||
|
>
|
||||||
|
<MenuItem
|
||||||
|
name="Local"
|
||||||
|
itemUrl="local"
|
||||||
|
icon="fa-home"
|
||||||
|
/>
|
||||||
|
<MenuItem
|
||||||
|
name="Remote"
|
||||||
|
itemUrl="remote"
|
||||||
|
icon="fa-cloud"
|
||||||
|
/>
|
||||||
|
</MenuItem>
|
||||||
|
);
|
||||||
|
}
|
151
web/source/settings/views/admin/router.tsx
Normal file
151
web/source/settings/views/admin/router.tsx
Normal file
|
@ -0,0 +1,151 @@
|
||||||
|
/*
|
||||||
|
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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import React from "react";
|
||||||
|
import { BaseUrlContext, useBaseUrl, useHasPermission } from "../../lib/navigation/util";
|
||||||
|
import { Redirect, Route, Router, Switch } from "wouter";
|
||||||
|
import { ErrorBoundary } from "../../lib/navigation/error";
|
||||||
|
import InstanceSettings from "./instance/settings";
|
||||||
|
import InstanceRules from "./instance/rules";
|
||||||
|
import InstanceRuleDetail from "./instance/ruledetail";
|
||||||
|
import Media from "./actions/media";
|
||||||
|
import Keys from "./actions/keys";
|
||||||
|
import EmojiOverview from "./emoji/local/overview";
|
||||||
|
import EmojiDetail from "./emoji/local/detail";
|
||||||
|
import RemoteEmoji from "./emoji/remote";
|
||||||
|
|
||||||
|
/*
|
||||||
|
EXPORTED COMPONENTS
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* - /settings/instance/settings
|
||||||
|
* - /settings/instance/rules
|
||||||
|
* - /settings/instance/rules/:ruleId
|
||||||
|
* - /settings/admin/emojis
|
||||||
|
* - /settings/admin/emojis/local
|
||||||
|
* - /settings/admin/emojis/local/:emojiId
|
||||||
|
* - /settings/admin/emojis/remote
|
||||||
|
* - /settings/admin/actions
|
||||||
|
* - /settings/admin/actions/media
|
||||||
|
* - /settings/admin/actions/keys
|
||||||
|
*/
|
||||||
|
export default function AdminRouter() {
|
||||||
|
const parentUrl = useBaseUrl();
|
||||||
|
const thisBase = "/admin";
|
||||||
|
const absBase = parentUrl + thisBase;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<BaseUrlContext.Provider value={absBase}>
|
||||||
|
<Router base={thisBase}>
|
||||||
|
<AdminInstanceRouter />
|
||||||
|
<AdminEmojisRouter />
|
||||||
|
<AdminActionsRouter />
|
||||||
|
</Router>
|
||||||
|
</BaseUrlContext.Provider>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
INTERNAL COMPONENTS
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* - /settings/admin/emojis
|
||||||
|
* - /settings/admin/emojis/local
|
||||||
|
* - /settings/admin/emojis/local/:emojiId
|
||||||
|
* - /settings/admin/emojis/remote
|
||||||
|
*/
|
||||||
|
function AdminEmojisRouter() {
|
||||||
|
const parentUrl = useBaseUrl();
|
||||||
|
const thisBase = "/emojis";
|
||||||
|
const absBase = parentUrl + thisBase;
|
||||||
|
|
||||||
|
const permissions = ["admin"];
|
||||||
|
const admin = useHasPermission(permissions);
|
||||||
|
if (!admin) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<BaseUrlContext.Provider value={absBase}>
|
||||||
|
<Router base={thisBase}>
|
||||||
|
<ErrorBoundary>
|
||||||
|
<Switch>
|
||||||
|
<Route path="/local" component={EmojiOverview} />
|
||||||
|
<Route path="/local/:emojiId" component={EmojiDetail} />
|
||||||
|
<Route path="/remote" component={RemoteEmoji} />
|
||||||
|
<Route><Redirect to="/local" /></Route>
|
||||||
|
</Switch>
|
||||||
|
</ErrorBoundary>
|
||||||
|
</Router>
|
||||||
|
</BaseUrlContext.Provider>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* - /settings/admin/actions
|
||||||
|
* - /settings/admin/actions/media
|
||||||
|
* - /settings/admin/actions/keys
|
||||||
|
*/
|
||||||
|
function AdminActionsRouter() {
|
||||||
|
const parentUrl = useBaseUrl();
|
||||||
|
const thisBase = "/actions";
|
||||||
|
const absBase = parentUrl + thisBase;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<BaseUrlContext.Provider value={absBase}>
|
||||||
|
<Router base={thisBase}>
|
||||||
|
<ErrorBoundary>
|
||||||
|
<Switch>
|
||||||
|
<Route path="/media" component={Media} />
|
||||||
|
<Route path="/keys" component={Keys} />
|
||||||
|
<Route><Redirect to="/media" /></Route>
|
||||||
|
</Switch>
|
||||||
|
</ErrorBoundary>
|
||||||
|
</Router>
|
||||||
|
</BaseUrlContext.Provider>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* - /settings/instance/settings
|
||||||
|
* - /settings/instance/rules
|
||||||
|
* - /settings/instance/rules/:ruleId
|
||||||
|
*/
|
||||||
|
function AdminInstanceRouter() {
|
||||||
|
const parentUrl = useBaseUrl();
|
||||||
|
const thisBase = "/instance";
|
||||||
|
const absBase = parentUrl + thisBase;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<BaseUrlContext.Provider value={absBase}>
|
||||||
|
<Router base={thisBase}>
|
||||||
|
<ErrorBoundary>
|
||||||
|
<Switch>
|
||||||
|
<Route path="/settings" component={InstanceSettings}/>
|
||||||
|
<Route path="/rules" component={InstanceRules} />
|
||||||
|
<Route path="/rules/:ruleId" component={InstanceRuleDetail} />
|
||||||
|
<Route><Redirect to="/settings" /></Route>
|
||||||
|
</Switch>
|
||||||
|
</ErrorBoundary>
|
||||||
|
</Router>
|
||||||
|
</BaseUrlContext.Provider>
|
||||||
|
);
|
||||||
|
}
|
|
@ -1,177 +0,0 @@
|
||||||
/*
|
|
||||||
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/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
import { MenuItem } from "../../lib/navigation/menu";
|
|
||||||
import React from "react";
|
|
||||||
import { BaseUrlContext, useBaseUrl } from "../../lib/navigation/util";
|
|
||||||
import { Route, Router, Switch } from "wouter";
|
|
||||||
import EmojiDetail from "./emoji/local/detail";
|
|
||||||
import { EmojiOverview } from "./emoji/local/overview";
|
|
||||||
import RemoteEmoji from "./emoji/remote";
|
|
||||||
import InstanceSettings from "./settings";
|
|
||||||
import { InstanceRuleDetail, InstanceRules } from "./settings/rules";
|
|
||||||
import Media from "./actions/media";
|
|
||||||
import Keys from "./actions/keys";
|
|
||||||
|
|
||||||
/*
|
|
||||||
EXPORTED COMPONENTS
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Admininistration menu. Admin actions,
|
|
||||||
* emoji import, instance settings.
|
|
||||||
*/
|
|
||||||
export function AdminMenu() {
|
|
||||||
return (
|
|
||||||
<MenuItem
|
|
||||||
name="Administration"
|
|
||||||
itemUrl="admin"
|
|
||||||
defaultChild="actions"
|
|
||||||
permissions={["admin"]}
|
|
||||||
>
|
|
||||||
<MenuItem
|
|
||||||
name="Instance Settings"
|
|
||||||
itemUrl="instance-settings"
|
|
||||||
icon="fa-sliders"
|
|
||||||
/>
|
|
||||||
<MenuItem
|
|
||||||
name="Instance Rules"
|
|
||||||
itemUrl="instance-rules"
|
|
||||||
icon="fa-dot-circle-o"
|
|
||||||
/>
|
|
||||||
<AdminEmojisMenu />
|
|
||||||
<AdminActionsMenu />
|
|
||||||
</MenuItem>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Admininistration router. Admin actions,
|
|
||||||
* emoji import, instance settings.
|
|
||||||
*/
|
|
||||||
export function AdminRouter() {
|
|
||||||
const parentUrl = useBaseUrl();
|
|
||||||
const thisBase = "/admin";
|
|
||||||
const absBase = parentUrl + thisBase;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<BaseUrlContext.Provider value={absBase}>
|
|
||||||
<Router base={thisBase}>
|
|
||||||
<Route path="/instance-settings" component={InstanceSettings}/>
|
|
||||||
<Route path="/instance-rules" component={InstanceRules} />
|
|
||||||
<Route path="/instance-rules/:ruleId" component={InstanceRuleDetail} />
|
|
||||||
<AdminEmojisRouter />
|
|
||||||
<AdminActionsRouter />
|
|
||||||
</Router>
|
|
||||||
</BaseUrlContext.Provider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
INTERNAL COMPONENTS
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
MENUS
|
|
||||||
*/
|
|
||||||
|
|
||||||
function AdminActionsMenu() {
|
|
||||||
return (
|
|
||||||
<MenuItem
|
|
||||||
name="Actions"
|
|
||||||
itemUrl="actions"
|
|
||||||
defaultChild="media"
|
|
||||||
icon="fa-bolt"
|
|
||||||
>
|
|
||||||
<MenuItem
|
|
||||||
name="Media"
|
|
||||||
itemUrl="media"
|
|
||||||
icon="fa-photo"
|
|
||||||
/>
|
|
||||||
<MenuItem
|
|
||||||
name="Keys"
|
|
||||||
itemUrl="keys"
|
|
||||||
icon="fa-key-modern"
|
|
||||||
/>
|
|
||||||
</MenuItem>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function AdminEmojisMenu() {
|
|
||||||
return (
|
|
||||||
<MenuItem
|
|
||||||
name="Custom Emoji"
|
|
||||||
itemUrl="emojis"
|
|
||||||
defaultChild="local"
|
|
||||||
icon="fa-smile-o"
|
|
||||||
>
|
|
||||||
<MenuItem
|
|
||||||
name="Local"
|
|
||||||
itemUrl="local"
|
|
||||||
icon="fa-home"
|
|
||||||
/>
|
|
||||||
<MenuItem
|
|
||||||
name="Remote"
|
|
||||||
itemUrl="remote"
|
|
||||||
icon="fa-cloud"
|
|
||||||
/>
|
|
||||||
</MenuItem>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
ROUTERS
|
|
||||||
*/
|
|
||||||
|
|
||||||
function AdminEmojisRouter() {
|
|
||||||
const parentUrl = useBaseUrl();
|
|
||||||
const thisBase = "/emojis";
|
|
||||||
const absBase = parentUrl + thisBase;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<BaseUrlContext.Provider value={absBase}>
|
|
||||||
<Router base={thisBase}>
|
|
||||||
<Switch>
|
|
||||||
<Route path="/local/:emojiId" component={EmojiDetail} />
|
|
||||||
<Route path="/local" component={EmojiOverview} />
|
|
||||||
<Route path="/remote" component={RemoteEmoji} />
|
|
||||||
<Route component={EmojiOverview}/>
|
|
||||||
</Switch>
|
|
||||||
</Router>
|
|
||||||
</BaseUrlContext.Provider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function AdminActionsRouter() {
|
|
||||||
const parentUrl = useBaseUrl();
|
|
||||||
const thisBase = "/actions";
|
|
||||||
const absBase = parentUrl + thisBase;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<BaseUrlContext.Provider value={absBase}>
|
|
||||||
<Router base={thisBase}>
|
|
||||||
<Switch>
|
|
||||||
<Route path="/media" component={Media} />
|
|
||||||
<Route path="/keys" component={Keys} />
|
|
||||||
<Route component={Media}/>
|
|
||||||
</Switch>
|
|
||||||
</Router>
|
|
||||||
</BaseUrlContext.Provider>
|
|
||||||
);
|
|
||||||
}
|
|
|
@ -19,17 +19,14 @@
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
import { useActionAccountMutation } from "../../../../lib/query";
|
import { useActionAccountMutation } from "../../../../lib/query/admin";
|
||||||
|
|
||||||
import MutationButton from "../../../../components/form/mutation-button";
|
import MutationButton from "../../../../components/form/mutation-button";
|
||||||
|
|
||||||
import useFormSubmit from "../../../../lib/form/submit";
|
import useFormSubmit from "../../../../lib/form/submit";
|
||||||
import {
|
import {
|
||||||
useValue,
|
useValue,
|
||||||
useTextInput,
|
useTextInput,
|
||||||
useBoolInput,
|
useBoolInput,
|
||||||
} from "../../../../lib/form";
|
} from "../../../../lib/form";
|
||||||
|
|
||||||
import { Checkbox, TextInput } from "../../../../components/form/inputs";
|
import { Checkbox, TextInput } from "../../../../components/form/inputs";
|
||||||
import { AdminAccount } from "../../../../lib/types/account";
|
import { AdminAccount } from "../../../../lib/types/account";
|
||||||
|
|
||||||
|
|
|
@ -19,18 +19,14 @@
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { useLocation } from "wouter";
|
import { useLocation } from "wouter";
|
||||||
|
import { useHandleSignupMutation } from "../../../../lib/query/admin";
|
||||||
import { useHandleSignupMutation } from "../../../../lib/query";
|
|
||||||
|
|
||||||
import MutationButton from "../../../../components/form/mutation-button";
|
import MutationButton from "../../../../components/form/mutation-button";
|
||||||
|
|
||||||
import useFormSubmit from "../../../../lib/form/submit";
|
import useFormSubmit from "../../../../lib/form/submit";
|
||||||
import {
|
import {
|
||||||
useValue,
|
useValue,
|
||||||
useTextInput,
|
useTextInput,
|
||||||
useBoolInput,
|
useBoolInput,
|
||||||
} from "../../../../lib/form";
|
} from "../../../../lib/form";
|
||||||
|
|
||||||
import { Checkbox, Select, TextInput } from "../../../../components/form/inputs";
|
import { Checkbox, Select, TextInput } from "../../../../components/form/inputs";
|
||||||
import { AdminAccount } from "../../../../lib/types/account";
|
import { AdminAccount } from "../../../../lib/types/account";
|
||||||
|
|
||||||
|
|
|
@ -19,12 +19,9 @@
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
import { useGetAccountQuery } from "../../../../lib/query";
|
import { useGetAccountQuery } from "../../../../lib/query/admin";
|
||||||
|
|
||||||
import FormWithData from "../../../../lib/form/form-with-data";
|
import FormWithData from "../../../../lib/form/form-with-data";
|
||||||
|
|
||||||
import FakeProfile from "../../../../components/fake-profile";
|
import FakeProfile from "../../../../components/fake-profile";
|
||||||
|
|
||||||
import { AdminAccount } from "../../../../lib/types/account";
|
import { AdminAccount } from "../../../../lib/types/account";
|
||||||
import { HandleSignup } from "./handlesignup";
|
import { HandleSignup } from "./handlesignup";
|
||||||
import { AccountActions } from "./actions";
|
import { AccountActions } from "./actions";
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { useSearchAccountsQuery } from "../../../../lib/query";
|
import { useSearchAccountsQuery } from "../../../../lib/query/admin";
|
||||||
import { AccountList } from "../../../../components/account-list";
|
import { AccountList } from "../../../../components/account-list";
|
||||||
|
|
||||||
export default function AccountsPending() {
|
export default function AccountsPending() {
|
||||||
|
|
|
@ -19,9 +19,8 @@
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
import { useLazySearchAccountsQuery } from "../../../../lib/query";
|
import { useLazySearchAccountsQuery } from "../../../../lib/query/admin";
|
||||||
import { useTextInput } from "../../../../lib/form";
|
import { useTextInput } from "../../../../lib/form";
|
||||||
|
|
||||||
import { AccountList } from "../../../../components/account-list";
|
import { AccountList } from "../../../../components/account-list";
|
||||||
import { SearchAccountParams } from "../../../../lib/types/account";
|
import { SearchAccountParams } from "../../../../lib/types/account";
|
||||||
import { Select, TextInput } from "../../../../components/form/inputs";
|
import { Select, TextInput } from "../../../../components/form/inputs";
|
||||||
|
|
|
@ -20,18 +20,14 @@
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
import { useEffect } from "react";
|
import { useEffect } from "react";
|
||||||
|
|
||||||
import { useExportDomainListMutation } from "../../../lib/query/admin/domain-permissions/export";
|
import { useExportDomainListMutation } from "../../../lib/query/admin/domain-permissions/export";
|
||||||
import useFormSubmit from "../../../lib/form/submit";
|
import useFormSubmit from "../../../lib/form/submit";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
RadioGroup,
|
RadioGroup,
|
||||||
TextArea,
|
TextArea,
|
||||||
Select,
|
Select,
|
||||||
} from "../../../components/form/inputs";
|
} from "../../../components/form/inputs";
|
||||||
|
|
||||||
import MutationButton from "../../../components/form/mutation-button";
|
import MutationButton from "../../../components/form/mutation-button";
|
||||||
|
|
||||||
import { Error } from "../../../components/error";
|
import { Error } from "../../../components/error";
|
||||||
import ExportFormatTable from "./export-format-table";
|
import ExportFormatTable from "./export-format-table";
|
||||||
|
|
||||||
|
|
|
@ -22,11 +22,8 @@ import React from "react";
|
||||||
import { useMemo } from "react";
|
import { useMemo } from "react";
|
||||||
import { Link, useLocation, useParams } from "wouter";
|
import { Link, useLocation, useParams } from "wouter";
|
||||||
import { matchSorter } from "match-sorter";
|
import { matchSorter } from "match-sorter";
|
||||||
|
|
||||||
import { useTextInput } from "../../../lib/form";
|
import { useTextInput } from "../../../lib/form";
|
||||||
|
|
||||||
import { TextInput } from "../../../components/form/inputs";
|
import { TextInput } from "../../../components/form/inputs";
|
||||||
|
|
||||||
import Loading from "../../../components/loading";
|
import Loading from "../../../components/loading";
|
||||||
import { useDomainAllowsQuery, useDomainBlocksQuery } from "../../../lib/query/admin/domain-permissions/get";
|
import { useDomainAllowsQuery, useDomainBlocksQuery } from "../../../lib/query/admin/domain-permissions/get";
|
||||||
import type { MappedDomainPerms, PermType } from "../../../lib/types/domain-permission";
|
import type { MappedDomainPerms, PermType } from "../../../lib/types/domain-permission";
|
||||||
|
|
|
@ -18,9 +18,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
import { memo, useMemo, useCallback, useEffect } from "react";
|
import { memo, useMemo, useCallback, useEffect } from "react";
|
||||||
|
|
||||||
import { isValidDomainPermission, hasBetterScope } from "../../../lib/util/domain-permission";
|
import { isValidDomainPermission, hasBetterScope } from "../../../lib/util/domain-permission";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
|
|
121
web/source/settings/views/moderation/menu.tsx
Normal file
121
web/source/settings/views/moderation/menu.tsx
Normal file
|
@ -0,0 +1,121 @@
|
||||||
|
/*
|
||||||
|
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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { MenuItem } from "../../lib/navigation/menu";
|
||||||
|
import React from "react";
|
||||||
|
import { useHasPermission } from "../../lib/navigation/util";
|
||||||
|
|
||||||
|
/*
|
||||||
|
EXPORTED COMPONENTS
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* - /settings/moderation/reports/overview
|
||||||
|
* - /settings/moderation/reports/:reportId
|
||||||
|
* - /settings/moderation/accounts/overview
|
||||||
|
* - /settings/moderation/accounts/pending
|
||||||
|
* - /settings/moderation/accounts/:accountID
|
||||||
|
* - /settings/moderation/domain-permissions/:permType
|
||||||
|
* - /settings/moderation/domain-permissions/:permType/:domain
|
||||||
|
* - /settings/moderation/domain-permissions/import-export
|
||||||
|
* - /settings/moderation/domain-permissions/process
|
||||||
|
*/
|
||||||
|
export default function ModerationMenu() {
|
||||||
|
const permissions = ["moderator"];
|
||||||
|
const moderator = useHasPermission(permissions);
|
||||||
|
if (!moderator) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<MenuItem
|
||||||
|
name="Moderation"
|
||||||
|
itemUrl="moderation"
|
||||||
|
defaultChild="reports"
|
||||||
|
permissions={permissions}
|
||||||
|
>
|
||||||
|
<ModerationReportsMenu />
|
||||||
|
<ModerationAccountsMenu />
|
||||||
|
<ModerationDomainPermsMenu />
|
||||||
|
</MenuItem>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
INTERNAL COMPONENTS
|
||||||
|
*/
|
||||||
|
|
||||||
|
function ModerationReportsMenu() {
|
||||||
|
return (
|
||||||
|
<MenuItem
|
||||||
|
name="Reports"
|
||||||
|
itemUrl="reports"
|
||||||
|
icon="fa-flag"
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function ModerationAccountsMenu() {
|
||||||
|
return (
|
||||||
|
<MenuItem
|
||||||
|
name="Accounts"
|
||||||
|
itemUrl="accounts"
|
||||||
|
defaultChild="overview"
|
||||||
|
icon="fa-users"
|
||||||
|
>
|
||||||
|
<MenuItem
|
||||||
|
name="Overview"
|
||||||
|
itemUrl="overview"
|
||||||
|
icon="fa-list"
|
||||||
|
/>
|
||||||
|
<MenuItem
|
||||||
|
name="Pending"
|
||||||
|
itemUrl="pending"
|
||||||
|
icon="fa-question"
|
||||||
|
/>
|
||||||
|
</MenuItem>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function ModerationDomainPermsMenu() {
|
||||||
|
return (
|
||||||
|
<MenuItem
|
||||||
|
name="Domain Permissions"
|
||||||
|
itemUrl="domain-permissions"
|
||||||
|
defaultChild="blocks"
|
||||||
|
icon="fa-hubzilla"
|
||||||
|
>
|
||||||
|
<MenuItem
|
||||||
|
name="Blocks"
|
||||||
|
itemUrl="blocks"
|
||||||
|
icon="fa-close"
|
||||||
|
/>
|
||||||
|
<MenuItem
|
||||||
|
name="Allows"
|
||||||
|
itemUrl="allows"
|
||||||
|
icon="fa-check"
|
||||||
|
/>
|
||||||
|
<MenuItem
|
||||||
|
name="Import/Export"
|
||||||
|
itemUrl="import-export"
|
||||||
|
icon="fa-floppy-o"
|
||||||
|
/>
|
||||||
|
</MenuItem>
|
||||||
|
);
|
||||||
|
}
|
|
@ -52,7 +52,15 @@ function ReportDetailForm({ data: report }) {
|
||||||
return (
|
return (
|
||||||
<div className="report detail">
|
<div className="report detail">
|
||||||
<div className="usernames">
|
<div className="usernames">
|
||||||
<Username user={from} /> reported <Username user={target} />
|
<Username
|
||||||
|
user={from}
|
||||||
|
link={`~/settings/moderation/accounts/${from.id}`}
|
||||||
|
/>
|
||||||
|
<> reported </>
|
||||||
|
<Username
|
||||||
|
user={target}
|
||||||
|
link={`~/settings/moderation/accounts/${target.id}`}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{report.action_taken &&
|
{report.action_taken &&
|
||||||
|
|
|
@ -19,9 +19,7 @@
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { Link } from "wouter";
|
import { Link } from "wouter";
|
||||||
|
|
||||||
import FormWithData from "../../../lib/form/form-with-data";
|
import FormWithData from "../../../lib/form/form-with-data";
|
||||||
|
|
||||||
import Username from "./username";
|
import Username from "./username";
|
||||||
import { useListReportsQuery } from "../../../lib/query/admin/reports";
|
import { useListReportsQuery } from "../../../lib/query/admin/reports";
|
||||||
|
|
||||||
|
@ -77,7 +75,7 @@ function ReportEntry({ report }) {
|
||||||
<div className={`report entry${report.action_taken ? " resolved" : ""}`}>
|
<div className={`report entry${report.action_taken ? " resolved" : ""}`}>
|
||||||
<div className="byline">
|
<div className="byline">
|
||||||
<div className="usernames">
|
<div className="usernames">
|
||||||
<Username user={from} link={false} /> reported <Username user={target} link={false} />
|
<Username user={from} /> reported <Username user={target} />
|
||||||
</div>
|
</div>
|
||||||
<h3 className="report-status">
|
<h3 className="report-status">
|
||||||
{report.action_taken ? "Resolved" : "Open"}
|
{report.action_taken ? "Resolved" : "Open"}
|
||||||
|
|
|
@ -19,8 +19,14 @@
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { Link } from "wouter";
|
import { Link } from "wouter";
|
||||||
|
import { AdminAccount } from "../../../lib/types/account";
|
||||||
|
|
||||||
export default function Username({ user, link = true }) {
|
interface UsernameProps {
|
||||||
|
user: AdminAccount;
|
||||||
|
link?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function Username({ user, link }: UsernameProps) {
|
||||||
let className = "user";
|
let className = "user";
|
||||||
let isLocal = user.domain == null;
|
let isLocal = user.domain == null;
|
||||||
|
|
||||||
|
@ -36,19 +42,25 @@ export default function Username({ user, link = true }) {
|
||||||
? { fa: "fa-home", info: "Local user" }
|
? { fa: "fa-home", info: "Local user" }
|
||||||
: { fa: "fa-external-link-square", info: "Remote user" };
|
: { fa: "fa-external-link-square", info: "Remote user" };
|
||||||
|
|
||||||
let Element: any = "div";
|
const content = (
|
||||||
let href: any = null;
|
<>
|
||||||
|
|
||||||
if (link) {
|
|
||||||
Element = Link;
|
|
||||||
href = `/settings/admin/accounts/${user.id}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
|
||||||
<Element className={className} to={href}>
|
|
||||||
<span className="acct">@{user.account.acct}</span>
|
<span className="acct">@{user.account.acct}</span>
|
||||||
<i className={`fa fa-fw ${icon.fa}`} aria-hidden="true" title={icon.info} />
|
<i className={`fa fa-fw ${icon.fa}`} aria-hidden="true" title={icon.info} />
|
||||||
<span className="sr-only">{icon.info}</span>
|
<span className="sr-only">{icon.info}</span>
|
||||||
</Element>
|
</>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (link) {
|
||||||
|
return (
|
||||||
|
<Link className={className} to={link}>
|
||||||
|
{content}
|
||||||
|
</Link>
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
return (
|
||||||
|
<div className={className}>
|
||||||
|
{content}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,51 +17,45 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { MenuItem } from "../../lib/navigation/menu";
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { BaseUrlContext, useBaseUrl } from "../../lib/navigation/util";
|
import { BaseUrlContext, useBaseUrl, useHasPermission } from "../../lib/navigation/util";
|
||||||
import { Redirect, Route, Router, Switch } from "wouter";
|
import { Redirect, Route, Router, Switch } from "wouter";
|
||||||
|
import { ReportOverview } from "./reports/overview";
|
||||||
|
import ReportDetail from "./reports/detail";
|
||||||
|
import { ErrorBoundary } from "../../lib/navigation/error";
|
||||||
|
import ImportExport from "./domain-permissions/import-export";
|
||||||
|
import DomainPermissionsOverview from "./domain-permissions/overview";
|
||||||
|
import DomainPermDetail from "./domain-permissions/detail";
|
||||||
import AccountsOverview from "./accounts";
|
import AccountsOverview from "./accounts";
|
||||||
import AccountsPending from "./accounts/pending";
|
import AccountsPending from "./accounts/pending";
|
||||||
import AccountDetail from "./accounts/detail";
|
import AccountDetail from "./accounts/detail";
|
||||||
import { ReportOverview } from "./reports/overview";
|
|
||||||
import DomainPermissionsOverview from "./domain-permissions/overview";
|
|
||||||
import DomainPermDetail from "./domain-permissions/detail";
|
|
||||||
import ImportExport from "./domain-permissions/import-export";
|
|
||||||
import ReportDetail from "./reports/detail";
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
EXPORTED COMPONENTS
|
EXPORTED COMPONENTS
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Moderation menu. Reports, accounts,
|
* - /settings/moderation/reports/overview
|
||||||
* domain permissions import + export.
|
* - /settings/moderation/reports/:reportId
|
||||||
|
* - /settings/moderation/accounts/overview
|
||||||
|
* - /settings/moderation/accounts/pending
|
||||||
|
* - /settings/moderation/accounts/:accountID
|
||||||
|
* - /settings/moderation/domain-permissions/:permType
|
||||||
|
* - /settings/moderation/domain-permissions/:permType/:domain
|
||||||
|
* - /settings/moderation/domain-permissions/import-export
|
||||||
|
* - /settings/moderation/domain-permissions/process
|
||||||
*/
|
*/
|
||||||
export function ModerationMenu() {
|
export default function ModerationRouter() {
|
||||||
return (
|
|
||||||
<MenuItem
|
|
||||||
name="Moderation"
|
|
||||||
itemUrl="moderation"
|
|
||||||
defaultChild="reports"
|
|
||||||
permissions={["moderator"]}
|
|
||||||
>
|
|
||||||
<ModerationReportsMenu />
|
|
||||||
<ModerationAccountsMenu />
|
|
||||||
<ModerationDomainPermsMenu />
|
|
||||||
</MenuItem>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Moderation router. Reports, accounts,
|
|
||||||
* domain permissions import + export.
|
|
||||||
*/
|
|
||||||
export function ModerationRouter() {
|
|
||||||
const parentUrl = useBaseUrl();
|
const parentUrl = useBaseUrl();
|
||||||
const thisBase = "/moderation";
|
const thisBase = "/moderation";
|
||||||
const absBase = parentUrl + thisBase;
|
const absBase = parentUrl + thisBase;
|
||||||
|
|
||||||
|
const permissions = ["moderator"];
|
||||||
|
const moderator = useHasPermission(permissions);
|
||||||
|
if (!moderator) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<BaseUrlContext.Provider value={absBase}>
|
<BaseUrlContext.Provider value={absBase}>
|
||||||
<Router base={thisBase}>
|
<Router base={thisBase}>
|
||||||
|
@ -77,73 +71,10 @@ export function ModerationRouter() {
|
||||||
INTERNAL COMPONENTS
|
INTERNAL COMPONENTS
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/**
|
||||||
MENUS
|
* - /settings/moderation/reports/overview
|
||||||
*/
|
* - /settings/moderation/reports/:reportId
|
||||||
|
*/
|
||||||
function ModerationReportsMenu() {
|
|
||||||
return (
|
|
||||||
<MenuItem
|
|
||||||
name="Reports"
|
|
||||||
itemUrl="reports"
|
|
||||||
icon="fa-flag"
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function ModerationAccountsMenu() {
|
|
||||||
return (
|
|
||||||
<MenuItem
|
|
||||||
name="Accounts"
|
|
||||||
itemUrl="accounts"
|
|
||||||
defaultChild="overview"
|
|
||||||
icon="fa-users"
|
|
||||||
>
|
|
||||||
<MenuItem
|
|
||||||
name="Overview"
|
|
||||||
itemUrl="overview"
|
|
||||||
icon="fa-list"
|
|
||||||
/>
|
|
||||||
<MenuItem
|
|
||||||
name="Pending"
|
|
||||||
itemUrl="pending"
|
|
||||||
icon="fa-question"
|
|
||||||
/>
|
|
||||||
</MenuItem>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function ModerationDomainPermsMenu() {
|
|
||||||
return (
|
|
||||||
<MenuItem
|
|
||||||
name="Domain Permissions"
|
|
||||||
itemUrl="domain-permissions"
|
|
||||||
defaultChild="blocks"
|
|
||||||
icon="fa-hubzilla"
|
|
||||||
>
|
|
||||||
<MenuItem
|
|
||||||
name="Blocks"
|
|
||||||
itemUrl="blocks"
|
|
||||||
icon="fa-close"
|
|
||||||
/>
|
|
||||||
<MenuItem
|
|
||||||
name="Allows"
|
|
||||||
itemUrl="allows"
|
|
||||||
icon="fa-check"
|
|
||||||
/>
|
|
||||||
<MenuItem
|
|
||||||
name="Import/Export"
|
|
||||||
itemUrl="import-export"
|
|
||||||
icon="fa-floppy-o"
|
|
||||||
/>
|
|
||||||
</MenuItem>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
ROUTERS
|
|
||||||
*/
|
|
||||||
|
|
||||||
function ModerationReportsRouter() {
|
function ModerationReportsRouter() {
|
||||||
const parentUrl = useBaseUrl();
|
const parentUrl = useBaseUrl();
|
||||||
const thisBase = "/reports";
|
const thisBase = "/reports";
|
||||||
|
@ -152,15 +83,22 @@ function ModerationReportsRouter() {
|
||||||
return (
|
return (
|
||||||
<BaseUrlContext.Provider value={absBase}>
|
<BaseUrlContext.Provider value={absBase}>
|
||||||
<Router base={thisBase}>
|
<Router base={thisBase}>
|
||||||
|
<ErrorBoundary>
|
||||||
<Switch>
|
<Switch>
|
||||||
<Route path={"/:reportId"} component={ReportDetail} />
|
<Route path={"/:reportId"} component={ReportDetail} />
|
||||||
<Route component={ReportOverview}/>
|
<Route component={ReportOverview}/>
|
||||||
</Switch>
|
</Switch>
|
||||||
|
</ErrorBoundary>
|
||||||
</Router>
|
</Router>
|
||||||
</BaseUrlContext.Provider>
|
</BaseUrlContext.Provider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* - /settings/moderation/accounts/overview
|
||||||
|
* - /settings/moderation/accounts/pending
|
||||||
|
* - /settings/moderation/accounts/:accountID
|
||||||
|
*/
|
||||||
function ModerationAccountsRouter() {
|
function ModerationAccountsRouter() {
|
||||||
const parentUrl = useBaseUrl();
|
const parentUrl = useBaseUrl();
|
||||||
const thisBase = "/accounts";
|
const thisBase = "/accounts";
|
||||||
|
@ -169,17 +107,25 @@ function ModerationAccountsRouter() {
|
||||||
return (
|
return (
|
||||||
<BaseUrlContext.Provider value={absBase}>
|
<BaseUrlContext.Provider value={absBase}>
|
||||||
<Router base={thisBase}>
|
<Router base={thisBase}>
|
||||||
|
<ErrorBoundary>
|
||||||
<Switch>
|
<Switch>
|
||||||
<Route path="/overview" component={AccountsOverview}/>
|
<Route path="/overview" component={AccountsOverview}/>
|
||||||
<Route path="/pending" component={AccountsPending}/>
|
<Route path="/pending" component={AccountsPending}/>
|
||||||
<Route path="/:accountID" component={AccountDetail}/>
|
<Route path="/:accountID" component={AccountDetail}/>
|
||||||
<Route><Redirect to="/overview"/></Route>
|
<Route><Redirect to="/overview"/></Route>
|
||||||
</Switch>
|
</Switch>
|
||||||
|
</ErrorBoundary>
|
||||||
</Router>
|
</Router>
|
||||||
</BaseUrlContext.Provider>
|
</BaseUrlContext.Provider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* - /settings/moderation/domain-permissions/:permType
|
||||||
|
* - /settings/moderation/domain-permissions/:permType/:domain
|
||||||
|
* - /settings/moderation/domain-permissions/import-export
|
||||||
|
* - /settings/moderation/domain-permissions/process
|
||||||
|
*/
|
||||||
function ModerationDomainPermsRouter() {
|
function ModerationDomainPermsRouter() {
|
||||||
const parentUrl = useBaseUrl();
|
const parentUrl = useBaseUrl();
|
||||||
const thisBase = "/domain-permissions";
|
const thisBase = "/domain-permissions";
|
||||||
|
@ -188,13 +134,15 @@ function ModerationDomainPermsRouter() {
|
||||||
return (
|
return (
|
||||||
<BaseUrlContext.Provider value={absBase}>
|
<BaseUrlContext.Provider value={absBase}>
|
||||||
<Router base={thisBase}>
|
<Router base={thisBase}>
|
||||||
|
<ErrorBoundary>
|
||||||
<Switch>
|
<Switch>
|
||||||
<Route path="/import-export" component={ImportExport} />
|
<Route path="/import-export" component={ImportExport} />
|
||||||
<Route path="/process" component={ImportExport} />
|
<Route path="/process" component={ImportExport} />
|
||||||
<Route path="/:permType/:domain" component={DomainPermDetail} />
|
|
||||||
<Route path="/:permType" component={DomainPermissionsOverview} />
|
<Route path="/:permType" component={DomainPermissionsOverview} />
|
||||||
|
<Route path="/:permType/:domain" component={DomainPermDetail} />
|
||||||
<Route><Redirect to="/blocks"/></Route>
|
<Route><Redirect to="/blocks"/></Route>
|
||||||
</Switch>
|
</Switch>
|
||||||
|
</ErrorBoundary>
|
||||||
</Router>
|
</Router>
|
||||||
</BaseUrlContext.Provider>
|
</BaseUrlContext.Provider>
|
||||||
);
|
);
|
|
@ -17,9 +17,36 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
module.exports = {
|
import { MenuItem } from "../../lib/navigation/menu";
|
||||||
...require("./gts-api"),
|
import React from "react";
|
||||||
...require("./oauth"),
|
|
||||||
...require("./user"),
|
/**
|
||||||
...require("./admin")
|
* - /settings/user/profile
|
||||||
};
|
* - /settings/user/settings
|
||||||
|
* - /settings/user/migration
|
||||||
|
*/
|
||||||
|
export default function UserMenu() {
|
||||||
|
return (
|
||||||
|
<MenuItem
|
||||||
|
name="User"
|
||||||
|
itemUrl="user"
|
||||||
|
defaultChild="profile"
|
||||||
|
>
|
||||||
|
<MenuItem
|
||||||
|
name="Profile"
|
||||||
|
itemUrl="profile"
|
||||||
|
icon="fa-user"
|
||||||
|
/>
|
||||||
|
<MenuItem
|
||||||
|
name="Settings"
|
||||||
|
itemUrl="settings"
|
||||||
|
icon="fa-cogs"
|
||||||
|
/>
|
||||||
|
<MenuItem
|
||||||
|
name="Migration"
|
||||||
|
itemUrl="migration"
|
||||||
|
icon="fa-exchange"
|
||||||
|
/>
|
||||||
|
</MenuItem>
|
||||||
|
);
|
||||||
|
}
|
|
@ -42,9 +42,10 @@ import FormWithData from "../../lib/form/form-with-data";
|
||||||
import FakeProfile from "../../components/fake-profile";
|
import FakeProfile from "../../components/fake-profile";
|
||||||
import MutationButton from "../../components/form/mutation-button";
|
import MutationButton from "../../components/form/mutation-button";
|
||||||
|
|
||||||
import { useAccountThemesQuery, useInstanceV1Query } from "../../lib/query";
|
import { useAccountThemesQuery } from "../../lib/query/user";
|
||||||
import { useUpdateCredentialsMutation } from "../../lib/query/user";
|
import { useUpdateCredentialsMutation } from "../../lib/query/user";
|
||||||
import { useVerifyCredentialsQuery } from "../../lib/query/oauth";
|
import { useVerifyCredentialsQuery } from "../../lib/query/oauth";
|
||||||
|
import { useInstanceV1Query } from "../../lib/query/gts-api";
|
||||||
|
|
||||||
export default function UserProfile() {
|
export default function UserProfile() {
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -17,49 +17,20 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { MenuItem } from "../../lib/navigation/menu";
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import { BaseUrlContext, useBaseUrl } from "../../lib/navigation/util";
|
import { BaseUrlContext, useBaseUrl } from "../../lib/navigation/util";
|
||||||
import UserProfile from "./profile";
|
|
||||||
import UserSettings from "./settings";
|
|
||||||
import UserMigration from "./migration";
|
|
||||||
import { Redirect, Route, Router, Switch } from "wouter";
|
import { Redirect, Route, Router, Switch } from "wouter";
|
||||||
|
import { ErrorBoundary } from "../../lib/navigation/error";
|
||||||
|
import UserProfile from "./profile";
|
||||||
|
import UserMigration from "./migration";
|
||||||
|
import UserSettings from "./settings";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* - /settings/user/profile
|
||||||
* Basic user menu. Profile + accounts
|
* - /settings/user/settings
|
||||||
* settings, post settings, migration.
|
* - /settings/user/migration
|
||||||
*/
|
*/
|
||||||
export function UserMenu() {
|
export default function UserRouter() {
|
||||||
return (
|
|
||||||
<MenuItem
|
|
||||||
name="User"
|
|
||||||
itemUrl="user"
|
|
||||||
defaultChild="profile"
|
|
||||||
>
|
|
||||||
{/* Profile */}
|
|
||||||
<MenuItem
|
|
||||||
name="Profile"
|
|
||||||
itemUrl="profile"
|
|
||||||
icon="fa-user"
|
|
||||||
/>
|
|
||||||
{/* Settings */}
|
|
||||||
<MenuItem
|
|
||||||
name="Settings"
|
|
||||||
itemUrl="settings"
|
|
||||||
icon="fa-cogs"
|
|
||||||
/>
|
|
||||||
{/* Migration */}
|
|
||||||
<MenuItem
|
|
||||||
name="Migration"
|
|
||||||
itemUrl="migration"
|
|
||||||
icon="fa-exchange"
|
|
||||||
/>
|
|
||||||
</MenuItem>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function UserRouter() {
|
|
||||||
const baseUrl = useBaseUrl();
|
const baseUrl = useBaseUrl();
|
||||||
const thisBase = "/user";
|
const thisBase = "/user";
|
||||||
const absBase = baseUrl + thisBase;
|
const absBase = baseUrl + thisBase;
|
||||||
|
@ -67,13 +38,14 @@ export function UserRouter() {
|
||||||
return (
|
return (
|
||||||
<BaseUrlContext.Provider value={absBase}>
|
<BaseUrlContext.Provider value={absBase}>
|
||||||
<Router base={thisBase}>
|
<Router base={thisBase}>
|
||||||
|
<ErrorBoundary>
|
||||||
<Switch>
|
<Switch>
|
||||||
<Route path="/profile" component={UserProfile} />
|
<Route path="/profile" component={UserProfile} />
|
||||||
<Route path="/settings" component={UserSettings} />
|
<Route path="/settings" component={UserSettings} />
|
||||||
<Route path="/migration" component={UserMigration} />
|
<Route path="/migration" component={UserMigration} />
|
||||||
{/* Fallback component */}
|
|
||||||
<Route><Redirect to="/profile" /></Route>
|
<Route><Redirect to="/profile" /></Route>
|
||||||
</Switch>
|
</Switch>
|
||||||
|
</ErrorBoundary>
|
||||||
</Router>
|
</Router>
|
||||||
</BaseUrlContext.Provider>
|
</BaseUrlContext.Provider>
|
||||||
);
|
);
|
|
@ -18,18 +18,19 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
import query from "../../lib/query";
|
|
||||||
import { useTextInput, useBoolInput } from "../../lib/form";
|
import { useTextInput, useBoolInput } from "../../lib/form";
|
||||||
import useFormSubmit from "../../lib/form/submit";
|
import useFormSubmit from "../../lib/form/submit";
|
||||||
import { Select, TextInput, Checkbox } from "../../components/form/inputs";
|
import { Select, TextInput, Checkbox } from "../../components/form/inputs";
|
||||||
import FormWithData from "../../lib/form/form-with-data";
|
import FormWithData from "../../lib/form/form-with-data";
|
||||||
import Languages from "../../components/languages";
|
import Languages from "../../components/languages";
|
||||||
import MutationButton from "../../components/form/mutation-button";
|
import MutationButton from "../../components/form/mutation-button";
|
||||||
|
import { useVerifyCredentialsQuery } from "../../lib/query/oauth";
|
||||||
|
import { usePasswordChangeMutation, useUpdateCredentialsMutation } from "../../lib/query/user";
|
||||||
|
|
||||||
export default function UserSettings() {
|
export default function UserSettings() {
|
||||||
return (
|
return (
|
||||||
<FormWithData
|
<FormWithData
|
||||||
dataQuery={query.useVerifyCredentialsQuery}
|
dataQuery={useVerifyCredentialsQuery}
|
||||||
DataForm={UserSettingsForm}
|
DataForm={UserSettingsForm}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
@ -50,7 +51,7 @@ function UserSettingsForm({ data }) {
|
||||||
statusContentType: useTextInput("source[status_content_type]", { source: data, defaultValue: "text/plain" }),
|
statusContentType: useTextInput("source[status_content_type]", { source: data, defaultValue: "text/plain" }),
|
||||||
};
|
};
|
||||||
|
|
||||||
const [submitForm, result] = useFormSubmit(form, query.useUpdateCredentialsMutation());
|
const [submitForm, result] = useFormSubmit(form, useUpdateCredentialsMutation());
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
@ -123,7 +124,7 @@ function PasswordChange() {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
const [submitForm, result] = useFormSubmit(form, query.usePasswordChangeMutation());
|
const [submitForm, result] = useFormSubmit(form, usePasswordChangeMutation());
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<form className="change-password" onSubmit={submitForm}>
|
<form className="change-password" onSubmit={submitForm}>
|
||||||
|
|
|
@ -25,9 +25,9 @@
|
||||||
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
|
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
|
||||||
|
|
||||||
/* Modules */
|
/* Modules */
|
||||||
"module": "commonjs", /* Specify what module code is generated. */
|
"module": "preserve", /* Specify what module code is generated. */
|
||||||
// "rootDir": "./", /* Specify the root folder within your source files. */
|
// "rootDir": "./", /* Specify the root folder within your source files. */
|
||||||
// "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */
|
"moduleResolution": "bundler", /* Specify how TypeScript looks up a file from a given module specifier. */
|
||||||
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
|
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
|
||||||
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
|
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
|
||||||
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
|
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
// "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */
|
// "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */
|
||||||
|
|
||||||
/* JavaScript Support */
|
/* JavaScript Support */
|
||||||
"allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
|
// "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
|
||||||
// "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
|
// "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
|
||||||
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
|
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
|
||||||
|
|
||||||
|
|
1081
web/source/yarn.lock
1081
web/source/yarn.lock
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue