mirror of
https://github.com/idanoo/autobrr
synced 2025-07-27 02:39:13 +00:00
feat(irc): improve list view (#466)
* feat(irc): add irc status examples * feat(irc): add dropdown menu to list * feat(irc): update heroicons and add expand button * feat(irc): update heroicons and add expand button
This commit is contained in:
parent
f5faf066a9
commit
300418b9f1
34 changed files with 478 additions and 258 deletions
|
@ -1,15 +1,15 @@
|
|||
import { NavLink, Outlet, useLocation } from "react-router-dom";
|
||||
import {NavLink, Outlet, useLocation} from "react-router-dom";
|
||||
import {
|
||||
BellIcon,
|
||||
ChatAlt2Icon,
|
||||
ChatBubbleLeftRightIcon,
|
||||
CogIcon,
|
||||
CollectionIcon,
|
||||
DownloadIcon,
|
||||
FolderArrowDownIcon,
|
||||
KeyIcon,
|
||||
RectangleStackIcon,
|
||||
RssIcon
|
||||
} from "@heroicons/react/outline";
|
||||
} from "@heroicons/react/24/outline";
|
||||
|
||||
import { classNames } from "../utils";
|
||||
import {classNames} from "../utils";
|
||||
|
||||
interface NavTabType {
|
||||
name: string;
|
||||
|
@ -20,12 +20,12 @@ interface NavTabType {
|
|||
const subNavigation: NavTabType[] = [
|
||||
{ name: "Application", href: "", icon: CogIcon },
|
||||
{ name: "Indexers", href: "indexers", icon: KeyIcon },
|
||||
{ name: "IRC", href: "irc", icon: ChatAlt2Icon },
|
||||
{ name: "IRC", href: "irc", icon: ChatBubbleLeftRightIcon },
|
||||
{ name: "Feeds", href: "feeds", icon: RssIcon },
|
||||
{ name: "Clients", href: "clients", icon: DownloadIcon },
|
||||
{ name: "Clients", href: "clients", icon: FolderArrowDownIcon },
|
||||
{ name: "Notifications", href: "notifications", icon: BellIcon },
|
||||
{ name: "API keys", href: "api-keys", icon: KeyIcon },
|
||||
{ name: "Releases", href: "releases", icon: CollectionIcon }
|
||||
{ name: "Releases", href: "releases", icon: RectangleStackIcon }
|
||||
// {name: 'Regex Playground', href: 'regex-playground', icon: CogIcon, current: false}
|
||||
// {name: 'Rules', href: 'rules', icon: ClipboardCheckIcon, current: false},
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue