mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-04-12 18:17:36 +03:00
refactor with sidebar and mobile page
This commit is contained in:
parent
7a8f93e9f5
commit
9f05ad9ff1
@ -15,20 +15,17 @@ import {
|
|||||||
AlertDialogHeader,
|
AlertDialogHeader,
|
||||||
AlertDialogTitle,
|
AlertDialogTitle,
|
||||||
} from "@/components/ui/alert-dialog";
|
} from "@/components/ui/alert-dialog";
|
||||||
import { ToggleGroup, ToggleGroupItem } from "@/components/ui/toggle-group";
|
|
||||||
import { Drawer, DrawerContent, DrawerTrigger } from "@/components/ui/drawer";
|
import { Drawer, DrawerContent, DrawerTrigger } from "@/components/ui/drawer";
|
||||||
import { Button } from "@/components/ui/button";
|
import { Button } from "@/components/ui/button";
|
||||||
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
|
import { useCallback, useEffect, useMemo, useState } from "react";
|
||||||
import useOptimisticState from "@/hooks/use-optimistic-state";
|
import useOptimisticState from "@/hooks/use-optimistic-state";
|
||||||
import { isIOS, isMobile } from "react-device-detect";
|
import { isMobile } from "react-device-detect";
|
||||||
import { FaVideo } from "react-icons/fa";
|
import { FaVideo } from "react-icons/fa";
|
||||||
import { CameraConfig, FrigateConfig } from "@/types/frigateConfig";
|
import { CameraConfig, FrigateConfig } from "@/types/frigateConfig";
|
||||||
import useSWR from "swr";
|
import useSWR from "swr";
|
||||||
import FilterSwitch from "@/components/filter/FilterSwitch";
|
import FilterSwitch from "@/components/filter/FilterSwitch";
|
||||||
import { ZoneMaskFilterButton } from "@/components/filter/ZoneMaskFilter";
|
import { ZoneMaskFilterButton } from "@/components/filter/ZoneMaskFilter";
|
||||||
import { PolygonType } from "@/types/canvas";
|
import { PolygonType } from "@/types/canvas";
|
||||||
import { ScrollArea, ScrollBar } from "@/components/ui/scroll-area";
|
|
||||||
import scrollIntoView from "scroll-into-view-if-needed";
|
|
||||||
import CameraSettingsView from "@/views/settings/CameraSettingsView";
|
import CameraSettingsView from "@/views/settings/CameraSettingsView";
|
||||||
import ObjectSettingsView from "@/views/settings/ObjectSettingsView";
|
import ObjectSettingsView from "@/views/settings/ObjectSettingsView";
|
||||||
import MotionTunerView from "@/views/settings/MotionTunerView";
|
import MotionTunerView from "@/views/settings/MotionTunerView";
|
||||||
@ -42,12 +39,33 @@ import FrigatePlusSettingsView from "@/views/settings/FrigatePlusSettingsView";
|
|||||||
import { useSearchEffect } from "@/hooks/use-overlay-state";
|
import { useSearchEffect } from "@/hooks/use-overlay-state";
|
||||||
import { useSearchParams } from "react-router-dom";
|
import { useSearchParams } from "react-router-dom";
|
||||||
import { useInitialCameraState } from "@/api/ws";
|
import { useInitialCameraState } from "@/api/ws";
|
||||||
import { isInIframe } from "@/utils/isIFrame";
|
|
||||||
import { isPWA } from "@/utils/isPWA";
|
|
||||||
import { useIsAdmin } from "@/hooks/use-is-admin";
|
import { useIsAdmin } from "@/hooks/use-is-admin";
|
||||||
import { useTranslation } from "react-i18next";
|
import { useTranslation } from "react-i18next";
|
||||||
import TriggerView from "@/views/settings/TriggerView";
|
import TriggerView from "@/views/settings/TriggerView";
|
||||||
import { CameraNameLabel } from "@/components/camera/CameraNameLabel";
|
import { CameraNameLabel } from "@/components/camera/CameraNameLabel";
|
||||||
|
import {
|
||||||
|
Sidebar,
|
||||||
|
SidebarContent,
|
||||||
|
SidebarGroup,
|
||||||
|
SidebarGroupLabel,
|
||||||
|
SidebarInset,
|
||||||
|
SidebarMenu,
|
||||||
|
SidebarMenuButton,
|
||||||
|
SidebarMenuItem,
|
||||||
|
SidebarMenuSub,
|
||||||
|
SidebarMenuSubButton,
|
||||||
|
SidebarMenuSubItem,
|
||||||
|
SidebarProvider,
|
||||||
|
} from "@/components/ui/sidebar";
|
||||||
|
import {
|
||||||
|
MobilePage,
|
||||||
|
MobilePageContent,
|
||||||
|
MobilePageHeader,
|
||||||
|
MobilePagePortal,
|
||||||
|
MobilePageTitle,
|
||||||
|
} from "@/components/mobile/MobilePage";
|
||||||
|
import { ChevronRight } from "lucide-react";
|
||||||
|
import { IoMdArrowRoundBack } from "react-icons/io";
|
||||||
|
|
||||||
const allSettingsViews = [
|
const allSettingsViews = [
|
||||||
"ui",
|
"ui",
|
||||||
@ -64,11 +82,86 @@ const allSettingsViews = [
|
|||||||
] as const;
|
] as const;
|
||||||
type SettingsType = (typeof allSettingsViews)[number];
|
type SettingsType = (typeof allSettingsViews)[number];
|
||||||
|
|
||||||
|
const settingsGroups = [
|
||||||
|
{
|
||||||
|
label: "General",
|
||||||
|
items: [
|
||||||
|
{ key: "ui", component: UiSettingsView },
|
||||||
|
{ key: "debug", component: ObjectSettingsView },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Cameras",
|
||||||
|
items: [
|
||||||
|
{ key: "cameras", component: CameraSettingsView },
|
||||||
|
{ key: "masksAndZones", component: MasksAndZonesView },
|
||||||
|
{ key: "motionTuner", component: MotionTunerView },
|
||||||
|
{ key: "triggers", component: TriggerView },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Enrichments",
|
||||||
|
items: [{ key: "enrichments", component: EnrichmentsSettingsView }],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Users",
|
||||||
|
items: [
|
||||||
|
{ key: "users", component: UsersView },
|
||||||
|
{ key: "roles", component: RolesView },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Notifications",
|
||||||
|
items: [{ key: "notifications", component: NotificationView }],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Frigate+",
|
||||||
|
items: [{ key: "frigateplus", component: FrigatePlusSettingsView }],
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
const getCurrentComponent = (page: SettingsType) => {
|
||||||
|
for (const group of settingsGroups) {
|
||||||
|
for (const item of group.items) {
|
||||||
|
if (item.key === page) {
|
||||||
|
return item.component;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
|
function MobileMenuItem({
|
||||||
|
item,
|
||||||
|
onSelect,
|
||||||
|
onClose,
|
||||||
|
}: {
|
||||||
|
item: { key: string };
|
||||||
|
onSelect: (key: string) => void;
|
||||||
|
onClose: () => void;
|
||||||
|
}) {
|
||||||
|
const { t } = useTranslation(["views/settings"]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Button
|
||||||
|
variant="ghost"
|
||||||
|
className="w-full justify-between"
|
||||||
|
onClick={() => {
|
||||||
|
onSelect(item.key);
|
||||||
|
onClose();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<div className="smart-capitalize">{t("menu." + item.key)}</div>
|
||||||
|
<ChevronRight className="h-4 w-4" />
|
||||||
|
</Button>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
export default function Settings() {
|
export default function Settings() {
|
||||||
const { t } = useTranslation(["views/settings"]);
|
const { t } = useTranslation(["views/settings"]);
|
||||||
const [page, setPage] = useState<SettingsType>("ui");
|
const [page, setPage] = useState<SettingsType>("ui");
|
||||||
const [pageToggle, setPageToggle] = useOptimisticState(page, setPage, 100);
|
const [_, setPageToggle] = useOptimisticState(page, setPage, 100);
|
||||||
const tabsRef = useRef<HTMLDivElement | null>(null);
|
const [mobileMenuOpen, setMobileMenuOpen] = useState(false);
|
||||||
|
|
||||||
const { data: config } = useSWR<FrigateConfig>("config");
|
const { data: config } = useSWR<FrigateConfig>("config");
|
||||||
|
|
||||||
@ -155,21 +248,6 @@ export default function Settings() {
|
|||||||
}
|
}
|
||||||
}, [cameras, selectedCamera, cameraEnabledStates, page]);
|
}, [cameras, selectedCamera, cameraEnabledStates, page]);
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
if (tabsRef.current) {
|
|
||||||
const element = tabsRef.current.querySelector(
|
|
||||||
`[data-nav-item="${pageToggle}"]`,
|
|
||||||
);
|
|
||||||
if (element instanceof HTMLElement) {
|
|
||||||
scrollIntoView(element, {
|
|
||||||
behavior:
|
|
||||||
isMobile && isIOS && !isPWA && isInIframe ? "auto" : "smooth",
|
|
||||||
inline: "start",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, [tabsRef, pageToggle]);
|
|
||||||
|
|
||||||
useSearchEffect("page", (page: string) => {
|
useSearchEffect("page", (page: string) => {
|
||||||
if (allSettingsViews.includes(page as SettingsType)) {
|
if (allSettingsViews.includes(page as SettingsType)) {
|
||||||
// Restrict viewer to UI settings
|
// Restrict viewer to UI settings
|
||||||
@ -196,50 +274,74 @@ export default function Settings() {
|
|||||||
document.title = t("documentTitle.default");
|
document.title = t("documentTitle.default");
|
||||||
}, [t]);
|
}, [t]);
|
||||||
|
|
||||||
return (
|
if (isMobile) {
|
||||||
<div className="flex size-full flex-col p-2">
|
return (
|
||||||
<div className="relative flex h-11 w-full items-center justify-between">
|
<div className="flex size-full flex-col">
|
||||||
<ScrollArea className="w-full whitespace-nowrap">
|
<div className="sticky -top-2 z-50 mb-2 flex items-center justify-center bg-background p-4">
|
||||||
<div ref={tabsRef} className="flex flex-row">
|
<Button
|
||||||
<ToggleGroup
|
className="absolute left-0 rounded-lg"
|
||||||
className="*:rounded-md *:px-3 *:py-4"
|
aria-label="Open menu"
|
||||||
type="single"
|
size="sm"
|
||||||
size="sm"
|
onClick={() => setMobileMenuOpen(true)}
|
||||||
value={pageToggle}
|
>
|
||||||
onValueChange={(value: SettingsType) => {
|
<IoMdArrowRoundBack className="h-5 w-5 text-secondary-foreground" />
|
||||||
if (value) {
|
</Button>
|
||||||
// Restrict viewer navigation
|
<h2 className="text-lg font-semibold smart-capitalize">
|
||||||
if (!isAdmin && !allowedViewsForViewer.includes(value)) {
|
{t("menu." + page)}
|
||||||
setPageToggle("ui");
|
</h2>
|
||||||
} else {
|
</div>
|
||||||
setPageToggle(value);
|
<MobilePage open={mobileMenuOpen} onOpenChange={setMobileMenuOpen}>
|
||||||
}
|
<MobilePagePortal>
|
||||||
}
|
<MobilePageContent>
|
||||||
}}
|
<MobilePageHeader>
|
||||||
>
|
<MobilePageTitle>
|
||||||
{visibleSettingsViews.map((item) => (
|
{t("settings", { ns: "common" })}
|
||||||
<ToggleGroupItem
|
</MobilePageTitle>
|
||||||
key={item}
|
</MobilePageHeader>
|
||||||
className={`flex scroll-mx-10 items-center justify-between gap-2 ${page == "ui" ? "last:mr-20" : ""} ${pageToggle == item ? "" : "*:text-muted-foreground"}`}
|
<div className="p-4">
|
||||||
value={item}
|
{settingsGroups.map((group) => {
|
||||||
data-nav-item={item}
|
const filteredItems = group.items.filter((item) =>
|
||||||
aria-label={t("selectItem", {
|
visibleSettingsViews.includes(item.key as SettingsType),
|
||||||
ns: "common",
|
);
|
||||||
item: t("menu." + item),
|
if (filteredItems.length === 0) return null;
|
||||||
})}
|
return (
|
||||||
>
|
<div key={group.label} className="mb-4">
|
||||||
<div className="smart-capitalize">{t("menu." + item)}</div>
|
<h3 className="mb-2 text-sm font-medium text-muted-foreground">
|
||||||
</ToggleGroupItem>
|
{group.label}
|
||||||
))}
|
</h3>
|
||||||
</ToggleGroup>
|
{filteredItems.map((item) => (
|
||||||
<ScrollBar orientation="horizontal" className="h-0" />
|
<MobileMenuItem
|
||||||
</div>
|
key={item.key}
|
||||||
</ScrollArea>
|
item={item}
|
||||||
{(page == "debug" ||
|
onSelect={(key) => {
|
||||||
page == "cameras" ||
|
if (
|
||||||
page == "masksAndZones" ||
|
!isAdmin &&
|
||||||
page == "motionTuner" ||
|
!allowedViewsForViewer.includes(
|
||||||
page == "triggers") && (
|
key as SettingsType,
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
setPageToggle("ui");
|
||||||
|
} else {
|
||||||
|
setPageToggle(key as SettingsType);
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
onClose={() => setMobileMenuOpen(false)}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</div>
|
||||||
|
</MobilePageContent>
|
||||||
|
</MobilePagePortal>
|
||||||
|
</MobilePage>
|
||||||
|
{[
|
||||||
|
"debug",
|
||||||
|
"cameras",
|
||||||
|
"masksAndZones",
|
||||||
|
"motionTuner",
|
||||||
|
"triggers",
|
||||||
|
].includes(page) && (
|
||||||
<div className="ml-2 flex flex-shrink-0 items-center gap-2">
|
<div className="ml-2 flex flex-shrink-0 items-center gap-2">
|
||||||
{page == "masksAndZones" && (
|
{page == "masksAndZones" && (
|
||||||
<ZoneMaskFilterButton
|
<ZoneMaskFilterButton
|
||||||
@ -256,49 +358,165 @@ export default function Settings() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</div>
|
<div className="mt-2 flex h-full w-full flex-col items-start md:h-dvh md:pb-24">
|
||||||
<div className="mt-2 flex h-full w-full flex-col items-start md:h-dvh md:pb-24">
|
<div className="flex-1 overflow-auto p-2">
|
||||||
{page == "ui" && <UiSettingsView />}
|
{(() => {
|
||||||
{page == "enrichments" && (
|
const CurrentComponent = getCurrentComponent(page);
|
||||||
<EnrichmentsSettingsView setUnsavedChanges={setUnsavedChanges} />
|
if (!CurrentComponent) return null;
|
||||||
)}
|
return (
|
||||||
{page == "debug" && (
|
<CurrentComponent
|
||||||
<ObjectSettingsView selectedCamera={selectedCamera} />
|
selectedCamera={selectedCamera}
|
||||||
)}
|
setUnsavedChanges={setUnsavedChanges}
|
||||||
{page == "cameras" && (
|
selectedZoneMask={filterZoneMask}
|
||||||
<CameraSettingsView
|
/>
|
||||||
selectedCamera={selectedCamera}
|
);
|
||||||
setUnsavedChanges={setUnsavedChanges}
|
})()}
|
||||||
/>
|
</div>
|
||||||
)}
|
</div>
|
||||||
{page == "masksAndZones" && (
|
{confirmationDialogOpen && (
|
||||||
<MasksAndZonesView
|
<AlertDialog
|
||||||
selectedCamera={selectedCamera}
|
open={confirmationDialogOpen}
|
||||||
selectedZoneMask={filterZoneMask}
|
onOpenChange={() => setConfirmationDialogOpen(false)}
|
||||||
setUnsavedChanges={setUnsavedChanges}
|
>
|
||||||
/>
|
<AlertDialogContent>
|
||||||
)}
|
<AlertDialogHeader>
|
||||||
{page == "motionTuner" && (
|
<AlertDialogTitle>
|
||||||
<MotionTunerView
|
{t("dialog.unsavedChanges.title")}
|
||||||
selectedCamera={selectedCamera}
|
</AlertDialogTitle>
|
||||||
setUnsavedChanges={setUnsavedChanges}
|
<AlertDialogDescription>
|
||||||
/>
|
{t("dialog.unsavedChanges.desc")}
|
||||||
)}
|
</AlertDialogDescription>
|
||||||
{page === "triggers" && (
|
</AlertDialogHeader>
|
||||||
<TriggerView
|
<AlertDialogFooter>
|
||||||
selectedCamera={selectedCamera}
|
<AlertDialogCancel onClick={() => handleDialog(false)}>
|
||||||
setUnsavedChanges={setUnsavedChanges}
|
{t("button.cancel", { ns: "common" })}
|
||||||
/>
|
</AlertDialogCancel>
|
||||||
)}
|
<AlertDialogAction onClick={() => handleDialog(true)}>
|
||||||
{page == "users" && <UsersView />}
|
{t("button.save", { ns: "common" })}
|
||||||
{page == "roles" && <RolesView />}
|
</AlertDialogAction>
|
||||||
{page == "notifications" && (
|
</AlertDialogFooter>
|
||||||
<NotificationView setUnsavedChanges={setUnsavedChanges} />
|
</AlertDialogContent>
|
||||||
)}
|
</AlertDialog>
|
||||||
{page == "frigateplus" && (
|
|
||||||
<FrigatePlusSettingsView setUnsavedChanges={setUnsavedChanges} />
|
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<SidebarProvider>
|
||||||
|
<Sidebar variant="inset" className="relative">
|
||||||
|
<SidebarContent className="bg-background">
|
||||||
|
<SidebarMenu>
|
||||||
|
{settingsGroups.map((group) => {
|
||||||
|
const filteredItems = group.items.filter((item) =>
|
||||||
|
visibleSettingsViews.includes(item.key as SettingsType),
|
||||||
|
);
|
||||||
|
if (filteredItems.length === 0) return null;
|
||||||
|
return (
|
||||||
|
<SidebarGroup key={group.label}>
|
||||||
|
<SidebarGroupLabel>{group.label}</SidebarGroupLabel>
|
||||||
|
{filteredItems.length === 1 ? (
|
||||||
|
<SidebarMenu>
|
||||||
|
<SidebarMenuItem>
|
||||||
|
<SidebarMenuButton
|
||||||
|
isActive={page === filteredItems[0].key}
|
||||||
|
onClick={() => {
|
||||||
|
if (
|
||||||
|
!isAdmin &&
|
||||||
|
!allowedViewsForViewer.includes(
|
||||||
|
filteredItems[0].key as SettingsType,
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
setPageToggle("ui");
|
||||||
|
} else {
|
||||||
|
setPageToggle(
|
||||||
|
filteredItems[0].key as SettingsType,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<div className="smart-capitalize">
|
||||||
|
{t("menu." + filteredItems[0].key)}
|
||||||
|
</div>
|
||||||
|
</SidebarMenuButton>
|
||||||
|
</SidebarMenuItem>
|
||||||
|
</SidebarMenu>
|
||||||
|
) : (
|
||||||
|
<SidebarMenuSub>
|
||||||
|
{filteredItems.map((item) => (
|
||||||
|
<SidebarMenuSubItem key={item.key}>
|
||||||
|
<SidebarMenuSubButton
|
||||||
|
isActive={page === item.key}
|
||||||
|
onClick={() => {
|
||||||
|
if (
|
||||||
|
!isAdmin &&
|
||||||
|
!allowedViewsForViewer.includes(
|
||||||
|
item.key as SettingsType,
|
||||||
|
)
|
||||||
|
) {
|
||||||
|
setPageToggle("ui");
|
||||||
|
} else {
|
||||||
|
setPageToggle(item.key as SettingsType);
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<div className="smart-capitalize">
|
||||||
|
{t("menu." + item.key)}
|
||||||
|
</div>
|
||||||
|
</SidebarMenuSubButton>
|
||||||
|
</SidebarMenuSubItem>
|
||||||
|
))}
|
||||||
|
</SidebarMenuSub>
|
||||||
|
)}
|
||||||
|
</SidebarGroup>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</SidebarMenu>
|
||||||
|
</SidebarContent>
|
||||||
|
</Sidebar>
|
||||||
|
<SidebarInset>
|
||||||
|
<div className="flex h-full flex-col">
|
||||||
|
<div className="border-b p-4">
|
||||||
|
<h1 className="text-lg font-medium">Settings</h1>
|
||||||
|
</div>
|
||||||
|
{[
|
||||||
|
"debug",
|
||||||
|
"cameras",
|
||||||
|
"masksAndZones",
|
||||||
|
"motionTuner",
|
||||||
|
"triggers",
|
||||||
|
].includes(page) && (
|
||||||
|
<div className="flex items-center justify-end gap-2 border-b p-2">
|
||||||
|
{page == "masksAndZones" && (
|
||||||
|
<ZoneMaskFilterButton
|
||||||
|
selectedZoneMask={filterZoneMask}
|
||||||
|
updateZoneMaskFilter={setFilterZoneMask}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
|
<CameraSelectButton
|
||||||
|
allCameras={cameras}
|
||||||
|
selectedCamera={selectedCamera}
|
||||||
|
setSelectedCamera={setSelectedCamera}
|
||||||
|
cameraEnabledStates={cameraEnabledStates}
|
||||||
|
currentPage={page}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<div className="flex-1 overflow-auto p-2">
|
||||||
|
{(() => {
|
||||||
|
const CurrentComponent = getCurrentComponent(page);
|
||||||
|
if (!CurrentComponent) return null;
|
||||||
|
return (
|
||||||
|
<CurrentComponent
|
||||||
|
selectedCamera={selectedCamera}
|
||||||
|
setUnsavedChanges={setUnsavedChanges}
|
||||||
|
selectedZoneMask={filterZoneMask}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
})()}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</SidebarInset>
|
||||||
{confirmationDialogOpen && (
|
{confirmationDialogOpen && (
|
||||||
<AlertDialog
|
<AlertDialog
|
||||||
open={confirmationDialogOpen}
|
open={confirmationDialogOpen}
|
||||||
@ -324,7 +542,7 @@ export default function Settings() {
|
|||||||
</AlertDialogContent>
|
</AlertDialogContent>
|
||||||
</AlertDialog>
|
</AlertDialog>
|
||||||
)}
|
)}
|
||||||
</div>
|
</SidebarProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user