├── .dockerignore ├── .github └── workflows │ ├── docker.yml │ └── publish.yml ├── .gitignore ├── .nvmrc ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── TODO.md ├── astro.config.mjs ├── compose.yml ├── config ├── Caddyfile └── webmanifest.mjs ├── examples ├── config-env-vars │ ├── Caddyfile │ ├── README.md │ └── compose.yml └── internal-nats-server │ ├── README.md │ ├── compose.yml │ └── config.json ├── justfile ├── package.json ├── public ├── config.json └── robots.txt ├── scripts ├── build-sw.mjs └── workbox.mjs ├── src ├── assets │ ├── nats-icon-black.svg │ ├── nats-icon-white.svg │ └── nats-icon.png ├── components │ ├── Badge.tsx │ ├── Button.tsx │ ├── Checkbox.tsx │ ├── DataCard.tsx │ ├── Dropdown.tsx │ ├── HeadMeta.astro │ ├── Indicator.tsx │ ├── Menu.tsx │ ├── MenuToggle.tsx │ ├── Modal.tsx │ ├── Notifications.tsx │ ├── Select.tsx │ ├── Sidebar.tsx │ ├── SlideOver.tsx │ ├── Tabs.tsx │ ├── Toggle.tsx │ ├── context │ │ ├── config.tsx │ │ ├── settings.tsx │ │ ├── store.tsx │ │ └── theme.tsx │ ├── dashboard │ │ ├── App.tsx │ │ ├── AppSettings.tsx │ │ ├── DataList.tsx │ │ ├── GetStarted.tsx │ │ ├── InfoList.tsx │ │ ├── InfoSection.tsx │ │ ├── InputHeader.tsx │ │ ├── ItemsList.tsx │ │ ├── Navigation.tsx │ │ ├── Providers.tsx │ │ ├── QueryClientProvider.tsx │ │ ├── Root.tsx │ │ ├── ServerForm.tsx │ │ ├── Settings.tsx │ │ ├── StackedList.tsx │ │ ├── Stats.tsx │ │ ├── connections │ │ │ ├── ConnectionDetails.tsx │ │ │ ├── ConnectionItem.tsx │ │ │ ├── ConnectionSettings.tsx │ │ │ └── options.ts │ │ ├── jetstream │ │ │ ├── AccountInfo.tsx │ │ │ ├── AccountTabs.tsx │ │ │ ├── ConsumerDetails.tsx │ │ │ ├── JetStreamInfo.tsx │ │ │ ├── JetStreamSettings.tsx │ │ │ ├── JetStreamStats.tsx │ │ │ ├── StreamConfig.tsx │ │ │ ├── StreamDetails.tsx │ │ │ ├── StreamInfo.tsx │ │ │ ├── StreamItem.tsx │ │ │ ├── StreamsList.tsx │ │ │ └── options.ts │ │ ├── pages │ │ │ ├── Connections.tsx │ │ │ ├── Info.tsx │ │ │ ├── JetStream.tsx │ │ │ └── Overview.tsx │ │ ├── queries.ts │ │ └── server │ │ │ ├── InfoCards.tsx │ │ │ ├── ServerInfo.tsx │ │ │ └── ServerStats.tsx │ └── icons │ │ ├── ArrowDown.tsx │ │ ├── ArrowUp.tsx │ │ ├── Bars.tsx │ │ ├── ChartBarSquare.tsx │ │ ├── ChatBubble.tsx │ │ ├── CheckCircle.tsx │ │ ├── ChevronDown.tsx │ │ ├── ChevronLeft.tsx │ │ ├── ChevronRight.tsx │ │ ├── ChevronUpDown.tsx │ │ ├── Close.tsx │ │ ├── Cog6ToothIcon.tsx │ │ ├── Desktop.tsx │ │ ├── EllipsisVertical.tsx │ │ ├── ExclamationTriangle.tsx │ │ ├── InfoCircle.tsx │ │ ├── Loading.tsx │ │ ├── Moon.tsx │ │ ├── Play.tsx │ │ ├── Plus.tsx │ │ ├── Server.tsx │ │ ├── Signal.tsx │ │ ├── Stop.tsx │ │ ├── Sun.tsx │ │ ├── XCircle.tsx │ │ └── index.ts ├── config.ts ├── env.d.ts ├── layouts │ ├── Base.astro │ └── Page.astro ├── lib │ ├── directives.ts │ ├── format.ts │ ├── global.ts │ ├── info.ts │ ├── jsonp.ts │ ├── localstate.ts │ ├── pagination.test.ts │ ├── pagination.ts │ ├── query-utils.ts │ ├── utils.test.ts │ └── utils.ts ├── pages │ ├── [...path].astro │ ├── about.md │ └── faq.md ├── styles │ └── global.css ├── sw-register.ts ├── sw.ts └── types │ ├── accountz.ts │ ├── accstatz.ts │ ├── common.ts │ ├── connz.ts │ ├── gatewayz.ts │ ├── healthz.ts │ ├── index.ts │ ├── info.ts │ ├── jsz.ts │ ├── leafz.ts │ ├── routez.ts │ ├── subsz.ts │ └── varz.ts ├── tailwind.config.ts └── tsconfig.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22.0 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/TODO.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/compose.yml -------------------------------------------------------------------------------- /config/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/config/Caddyfile -------------------------------------------------------------------------------- /config/webmanifest.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/config/webmanifest.mjs -------------------------------------------------------------------------------- /examples/config-env-vars/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/examples/config-env-vars/Caddyfile -------------------------------------------------------------------------------- /examples/config-env-vars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/examples/config-env-vars/README.md -------------------------------------------------------------------------------- /examples/config-env-vars/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/examples/config-env-vars/compose.yml -------------------------------------------------------------------------------- /examples/internal-nats-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/examples/internal-nats-server/README.md -------------------------------------------------------------------------------- /examples/internal-nats-server/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/examples/internal-nats-server/compose.yml -------------------------------------------------------------------------------- /examples/internal-nats-server/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/examples/internal-nats-server/config.json -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/justfile -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /public/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/public/config.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Allow: / 3 | -------------------------------------------------------------------------------- /scripts/build-sw.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/scripts/build-sw.mjs -------------------------------------------------------------------------------- /scripts/workbox.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/scripts/workbox.mjs -------------------------------------------------------------------------------- /src/assets/nats-icon-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/assets/nats-icon-black.svg -------------------------------------------------------------------------------- /src/assets/nats-icon-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/assets/nats-icon-white.svg -------------------------------------------------------------------------------- /src/assets/nats-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/assets/nats-icon.png -------------------------------------------------------------------------------- /src/components/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/Badge.tsx -------------------------------------------------------------------------------- /src/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/Button.tsx -------------------------------------------------------------------------------- /src/components/Checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/Checkbox.tsx -------------------------------------------------------------------------------- /src/components/DataCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/DataCard.tsx -------------------------------------------------------------------------------- /src/components/Dropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/Dropdown.tsx -------------------------------------------------------------------------------- /src/components/HeadMeta.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/HeadMeta.astro -------------------------------------------------------------------------------- /src/components/Indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/Indicator.tsx -------------------------------------------------------------------------------- /src/components/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/Menu.tsx -------------------------------------------------------------------------------- /src/components/MenuToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/MenuToggle.tsx -------------------------------------------------------------------------------- /src/components/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/Modal.tsx -------------------------------------------------------------------------------- /src/components/Notifications.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/Notifications.tsx -------------------------------------------------------------------------------- /src/components/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/Select.tsx -------------------------------------------------------------------------------- /src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/SlideOver.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/SlideOver.tsx -------------------------------------------------------------------------------- /src/components/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/Tabs.tsx -------------------------------------------------------------------------------- /src/components/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/Toggle.tsx -------------------------------------------------------------------------------- /src/components/context/config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/context/config.tsx -------------------------------------------------------------------------------- /src/components/context/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/context/settings.tsx -------------------------------------------------------------------------------- /src/components/context/store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/context/store.tsx -------------------------------------------------------------------------------- /src/components/context/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/context/theme.tsx -------------------------------------------------------------------------------- /src/components/dashboard/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/App.tsx -------------------------------------------------------------------------------- /src/components/dashboard/AppSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/AppSettings.tsx -------------------------------------------------------------------------------- /src/components/dashboard/DataList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/DataList.tsx -------------------------------------------------------------------------------- /src/components/dashboard/GetStarted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/GetStarted.tsx -------------------------------------------------------------------------------- /src/components/dashboard/InfoList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/InfoList.tsx -------------------------------------------------------------------------------- /src/components/dashboard/InfoSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/InfoSection.tsx -------------------------------------------------------------------------------- /src/components/dashboard/InputHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/InputHeader.tsx -------------------------------------------------------------------------------- /src/components/dashboard/ItemsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/ItemsList.tsx -------------------------------------------------------------------------------- /src/components/dashboard/Navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/Navigation.tsx -------------------------------------------------------------------------------- /src/components/dashboard/Providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/Providers.tsx -------------------------------------------------------------------------------- /src/components/dashboard/QueryClientProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/QueryClientProvider.tsx -------------------------------------------------------------------------------- /src/components/dashboard/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/Root.tsx -------------------------------------------------------------------------------- /src/components/dashboard/ServerForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/ServerForm.tsx -------------------------------------------------------------------------------- /src/components/dashboard/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/Settings.tsx -------------------------------------------------------------------------------- /src/components/dashboard/StackedList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/StackedList.tsx -------------------------------------------------------------------------------- /src/components/dashboard/Stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/Stats.tsx -------------------------------------------------------------------------------- /src/components/dashboard/connections/ConnectionDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/connections/ConnectionDetails.tsx -------------------------------------------------------------------------------- /src/components/dashboard/connections/ConnectionItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/connections/ConnectionItem.tsx -------------------------------------------------------------------------------- /src/components/dashboard/connections/ConnectionSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/connections/ConnectionSettings.tsx -------------------------------------------------------------------------------- /src/components/dashboard/connections/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/connections/options.ts -------------------------------------------------------------------------------- /src/components/dashboard/jetstream/AccountInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/jetstream/AccountInfo.tsx -------------------------------------------------------------------------------- /src/components/dashboard/jetstream/AccountTabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/jetstream/AccountTabs.tsx -------------------------------------------------------------------------------- /src/components/dashboard/jetstream/ConsumerDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/jetstream/ConsumerDetails.tsx -------------------------------------------------------------------------------- /src/components/dashboard/jetstream/JetStreamInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/jetstream/JetStreamInfo.tsx -------------------------------------------------------------------------------- /src/components/dashboard/jetstream/JetStreamSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/jetstream/JetStreamSettings.tsx -------------------------------------------------------------------------------- /src/components/dashboard/jetstream/JetStreamStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/jetstream/JetStreamStats.tsx -------------------------------------------------------------------------------- /src/components/dashboard/jetstream/StreamConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/jetstream/StreamConfig.tsx -------------------------------------------------------------------------------- /src/components/dashboard/jetstream/StreamDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/jetstream/StreamDetails.tsx -------------------------------------------------------------------------------- /src/components/dashboard/jetstream/StreamInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/jetstream/StreamInfo.tsx -------------------------------------------------------------------------------- /src/components/dashboard/jetstream/StreamItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/jetstream/StreamItem.tsx -------------------------------------------------------------------------------- /src/components/dashboard/jetstream/StreamsList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/jetstream/StreamsList.tsx -------------------------------------------------------------------------------- /src/components/dashboard/jetstream/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/jetstream/options.ts -------------------------------------------------------------------------------- /src/components/dashboard/pages/Connections.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/pages/Connections.tsx -------------------------------------------------------------------------------- /src/components/dashboard/pages/Info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/pages/Info.tsx -------------------------------------------------------------------------------- /src/components/dashboard/pages/JetStream.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/pages/JetStream.tsx -------------------------------------------------------------------------------- /src/components/dashboard/pages/Overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/pages/Overview.tsx -------------------------------------------------------------------------------- /src/components/dashboard/queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/queries.ts -------------------------------------------------------------------------------- /src/components/dashboard/server/InfoCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/server/InfoCards.tsx -------------------------------------------------------------------------------- /src/components/dashboard/server/ServerInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/server/ServerInfo.tsx -------------------------------------------------------------------------------- /src/components/dashboard/server/ServerStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/dashboard/server/ServerStats.tsx -------------------------------------------------------------------------------- /src/components/icons/ArrowDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/ArrowDown.tsx -------------------------------------------------------------------------------- /src/components/icons/ArrowUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/ArrowUp.tsx -------------------------------------------------------------------------------- /src/components/icons/Bars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/Bars.tsx -------------------------------------------------------------------------------- /src/components/icons/ChartBarSquare.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/ChartBarSquare.tsx -------------------------------------------------------------------------------- /src/components/icons/ChatBubble.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/ChatBubble.tsx -------------------------------------------------------------------------------- /src/components/icons/CheckCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/CheckCircle.tsx -------------------------------------------------------------------------------- /src/components/icons/ChevronDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/ChevronDown.tsx -------------------------------------------------------------------------------- /src/components/icons/ChevronLeft.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/ChevronLeft.tsx -------------------------------------------------------------------------------- /src/components/icons/ChevronRight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/ChevronRight.tsx -------------------------------------------------------------------------------- /src/components/icons/ChevronUpDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/ChevronUpDown.tsx -------------------------------------------------------------------------------- /src/components/icons/Close.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/Close.tsx -------------------------------------------------------------------------------- /src/components/icons/Cog6ToothIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/Cog6ToothIcon.tsx -------------------------------------------------------------------------------- /src/components/icons/Desktop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/Desktop.tsx -------------------------------------------------------------------------------- /src/components/icons/EllipsisVertical.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/EllipsisVertical.tsx -------------------------------------------------------------------------------- /src/components/icons/ExclamationTriangle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/ExclamationTriangle.tsx -------------------------------------------------------------------------------- /src/components/icons/InfoCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/InfoCircle.tsx -------------------------------------------------------------------------------- /src/components/icons/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/Loading.tsx -------------------------------------------------------------------------------- /src/components/icons/Moon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/Moon.tsx -------------------------------------------------------------------------------- /src/components/icons/Play.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/Play.tsx -------------------------------------------------------------------------------- /src/components/icons/Plus.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/Plus.tsx -------------------------------------------------------------------------------- /src/components/icons/Server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/Server.tsx -------------------------------------------------------------------------------- /src/components/icons/Signal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/Signal.tsx -------------------------------------------------------------------------------- /src/components/icons/Stop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/Stop.tsx -------------------------------------------------------------------------------- /src/components/icons/Sun.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/Sun.tsx -------------------------------------------------------------------------------- /src/components/icons/XCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/XCircle.tsx -------------------------------------------------------------------------------- /src/components/icons/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/components/icons/index.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/layouts/Base.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/layouts/Base.astro -------------------------------------------------------------------------------- /src/layouts/Page.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/layouts/Page.astro -------------------------------------------------------------------------------- /src/lib/directives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/lib/directives.ts -------------------------------------------------------------------------------- /src/lib/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/lib/format.ts -------------------------------------------------------------------------------- /src/lib/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/lib/global.ts -------------------------------------------------------------------------------- /src/lib/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/lib/info.ts -------------------------------------------------------------------------------- /src/lib/jsonp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/lib/jsonp.ts -------------------------------------------------------------------------------- /src/lib/localstate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/lib/localstate.ts -------------------------------------------------------------------------------- /src/lib/pagination.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/lib/pagination.test.ts -------------------------------------------------------------------------------- /src/lib/pagination.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/lib/pagination.ts -------------------------------------------------------------------------------- /src/lib/query-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/lib/query-utils.ts -------------------------------------------------------------------------------- /src/lib/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/lib/utils.test.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/pages/[...path].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/pages/[...path].astro -------------------------------------------------------------------------------- /src/pages/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/pages/about.md -------------------------------------------------------------------------------- /src/pages/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/pages/faq.md -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/sw-register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/sw-register.ts -------------------------------------------------------------------------------- /src/sw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/sw.ts -------------------------------------------------------------------------------- /src/types/accountz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/types/accountz.ts -------------------------------------------------------------------------------- /src/types/accstatz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/types/accstatz.ts -------------------------------------------------------------------------------- /src/types/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/types/common.ts -------------------------------------------------------------------------------- /src/types/connz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/types/connz.ts -------------------------------------------------------------------------------- /src/types/gatewayz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/types/gatewayz.ts -------------------------------------------------------------------------------- /src/types/healthz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/types/healthz.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/types/info.ts -------------------------------------------------------------------------------- /src/types/jsz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/types/jsz.ts -------------------------------------------------------------------------------- /src/types/leafz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/types/leafz.ts -------------------------------------------------------------------------------- /src/types/routez.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/types/routez.ts -------------------------------------------------------------------------------- /src/types/subsz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/types/subsz.ts -------------------------------------------------------------------------------- /src/types/varz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/src/types/varz.ts -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdawar/nats-dashboard/HEAD/tsconfig.json --------------------------------------------------------------------------------